From 1692f200538aa3e3c88746c1740e57c33c8a4e55 Mon Sep 17 00:00:00 2001 From: Patrick Goldinger Date: Sat, 3 Jun 2023 02:23:39 +0200 Subject: [PATCH 1/5] Move ICU4C utils to devtools module --- utils/devtools.py | 131 +-------------------------------- utils/devtools/__init__.py | 0 utils/devtools/icu4c.py | 145 +++++++++++++++++++++++++++++++++++++ 3 files changed, 147 insertions(+), 129 deletions(-) create mode 100644 utils/devtools/__init__.py create mode 100755 utils/devtools/icu4c.py diff --git a/utils/devtools.py b/utils/devtools.py index 4d54b00..d0b591e 100755 --- a/utils/devtools.py +++ b/utils/devtools.py @@ -15,136 +15,9 @@ # limitations under the License. import argparse -import flutils import os -import re -import subprocess import sys - - -ICU4C_RELEASE_TAG_REGEX = re.compile(r"^release-(?P\d+)-(?P\d+)$") -ICU4C_VERSION_REGEX = re.compile(r"^(?P\d+)\.(?P\d+)$") -ICU4C_CMAKE_VERSION_MAJOR_REGEX = re.compile(r"set\(ICU_VERSION_MAJOR\s+\d+\)") -ICU4C_CMAKE_VERSION_MINOR_REGEX = re.compile(r"set\(ICU_VERSION_MINOR\s+\d+\)") -ICU4C_CMAKE_VERSION_MAJOR_TEMPLATE = "set(ICU_VERSION_MAJOR {version})" -ICU4C_CMAKE_VERSION_MINOR_TEMPLATE = "set(ICU_VERSION_MINOR {version})" - -ICU4C_MODULE_DIR = os.path.join(os.path.dirname(flutils.dir_of(__file__)), "icu4c") -ICU4C_SOURCE_DIR = os.path.join(ICU4C_MODULE_DIR, "icu") -ICU4C_CMAKE_FILE = os.path.join(ICU4C_MODULE_DIR, "CMakeLists.txt") - - -def get_current_tag(cwd: str) -> str | None: - result = subprocess.run( - ["git", "log", "-n1", "--pretty='%h'"], - capture_output=True, - text=True, - cwd=cwd, - ) - if result.returncode != 0: - return None - result = subprocess.run( - ["git", "describe", "--exact-match", "--tags", result.stdout.strip()[1:-1]], - capture_output=True, - text=True, - cwd=cwd, - ) - if result.returncode != 0: - return None - tag_name = result.stdout.strip() - return tag_name - - -def icu4c_upgrade(new_version: str, skip_confirm: bool) -> int: - result = re.match(ICU4C_VERSION_REGEX, new_version.strip()) - if result and result.group("MAJOR") and result.group("MINOR"): - new_version_major = int(result.group("MAJOR")) - new_version_minor = int(result.group("MINOR")) - new_icu4c_tag = f"release-{new_version_major}-{new_version_minor}" - else: - print(f"FATAL: Given version string '{new_version}' is not a valid version! Aborting.") - return - - if not os.path.exists(os.path.join(ICU4C_SOURCE_DIR, ".git")): - print( - f"FATAL: ICU4C source directory '{ICU4C_SOURCE_DIR}' is not a git repo! Did you forget to checkout the \ - git submodules? Aborting." - ) - return - - old_icu4c_tag = get_current_tag(ICU4C_SOURCE_DIR) - if old_icu4c_tag is None: - print( - "FATAL: ICU4C source directory is not checked out to a tag. Abort to prevent losing potentially unsaved changes." - ) - return - - result = re.match(ICU4C_RELEASE_TAG_REGEX, old_icu4c_tag) - if result and result.group("MAJOR") and result.group("MINOR"): - old_version_major = int(result.group("MAJOR")) - old_version_minor = int(result.group("MINOR")) - else: - print("FATAL: ICU4C repo checked out at '{icu4c_tag}' is not a valid tag for upgrading! Aborting.") - return - - print(f"Begin upgrading ICU4C") - print(f" Repository: {ICU4C_SOURCE_DIR}") - print(f" Current version: {old_icu4c_tag}") - print(f" New version: {new_icu4c_tag}") - - if new_version_major == old_version_major and new_version_minor == old_version_minor: - print("FATAL: Current version same as version to upgrade to! Aborting.") - return - if ( - new_version_major < old_version_major - or new_version_major == old_version_major - and new_version_minor < old_version_minor - ): - print("FATAL: Current version more recent than version to upgrade to! Aborting.") - return - - if not skip_confirm: - flutils.print_separator() - result = flutils.ask_yes_no_question("Please check the upgrade info. Proceed upgrading?") - if result: - print("Proceeding.") - else: - print("Aborting.") - return os.EX_NOINPUT - - flutils.print_separator() - print(f"Fetching updated repository info...") - result = subprocess.run(["git", "fetch"], cwd=ICU4C_SOURCE_DIR) - if result.returncode != 0: - print(f"FATAL: Git fetch failed with exit code {result.returncode}! Aborting.") - - flutils.print_separator() - print(f"Upgrading...") - result = subprocess.run(["git", "checkout", new_icu4c_tag], cwd=ICU4C_SOURCE_DIR) - if result.returncode != 0: - print(f"FATAL: Git checkout failed with exit code {result.returncode}! Aborting.") - - flutils.print_separator() - print(f"Adjusting version numbers in '{ICU4C_CMAKE_FILE}'...") - with open(ICU4C_CMAKE_FILE, "rt") as cmake_file: - cmake_contents = cmake_file.read() - cmake_contents = re.sub( - ICU4C_CMAKE_VERSION_MAJOR_REGEX, - ICU4C_CMAKE_VERSION_MAJOR_TEMPLATE.format(version=new_version_major), - cmake_contents, - ) - cmake_contents = re.sub( - ICU4C_CMAKE_VERSION_MINOR_REGEX, - ICU4C_CMAKE_VERSION_MINOR_TEMPLATE.format(version=new_version_minor), - cmake_contents, - ) - with open(ICU4C_CMAKE_FILE, "wt") as cmake_file: - cmake_file.write(cmake_contents) - - flutils.print_separator() - print("Completed! Don't forget to commit the new submodule ref so it persists!") - - return os.EX_OK +from devtools import icu4c def main() -> None: @@ -170,7 +43,7 @@ def main() -> None: ret_code = os.EX_OK if args.command == "icu4c": - ret_code = icu4c_upgrade(args.upgrade, args.y) + ret_code = icu4c.upgrade(args.upgrade, args.y) else: raise ValueError("Unreachable") diff --git a/utils/devtools/__init__.py b/utils/devtools/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/utils/devtools/icu4c.py b/utils/devtools/icu4c.py new file mode 100755 index 0000000..3c7cd81 --- /dev/null +++ b/utils/devtools/icu4c.py @@ -0,0 +1,145 @@ +#!/usr/bin/env python3 + +# Copyright 2023 Patrick Goldinger +# +# 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. + +import flutils +import os +import re +import subprocess + + +ICU4C_RELEASE_TAG_REGEX = re.compile(r"^release-(?P\d+)-(?P\d+)$") +ICU4C_VERSION_REGEX = re.compile(r"^(?P\d+)\.(?P\d+)$") +ICU4C_CMAKE_VERSION_MAJOR_REGEX = re.compile(r"set\(ICU_VERSION_MAJOR\s+\d+\)") +ICU4C_CMAKE_VERSION_MINOR_REGEX = re.compile(r"set\(ICU_VERSION_MINOR\s+\d+\)") +ICU4C_CMAKE_VERSION_MAJOR_TEMPLATE = "set(ICU_VERSION_MAJOR {version})" +ICU4C_CMAKE_VERSION_MINOR_TEMPLATE = "set(ICU_VERSION_MINOR {version})" + +ICU4C_MODULE_DIR = os.path.join(os.path.dirname(flutils.dir_of(__file__)), "../icu4c") +ICU4C_SOURCE_DIR = os.path.join(ICU4C_MODULE_DIR, "icu") +ICU4C_CMAKE_FILE = os.path.join(ICU4C_MODULE_DIR, "CMakeLists.txt") + + +def get_current_tag(cwd: str) -> str | None: + result = subprocess.run( + ["git", "log", "-n1", "--pretty='%h'"], + capture_output=True, + text=True, + cwd=cwd, + ) + if result.returncode != 0: + return None + result = subprocess.run( + ["git", "describe", "--exact-match", "--tags", result.stdout.strip()[1:-1]], + capture_output=True, + text=True, + cwd=cwd, + ) + if result.returncode != 0: + return None + tag_name = result.stdout.strip() + return tag_name + + +def upgrade(new_version: str, skip_confirm: bool) -> int: + result = re.match(ICU4C_VERSION_REGEX, new_version.strip()) + if result and result.group("MAJOR") and result.group("MINOR"): + new_version_major = int(result.group("MAJOR")) + new_version_minor = int(result.group("MINOR")) + new_icu4c_tag = f"release-{new_version_major}-{new_version_minor}" + else: + print(f"FATAL: Given version string '{new_version}' is not a valid version! Aborting.") + return + + if not os.path.exists(os.path.join(ICU4C_SOURCE_DIR, ".git")): + print( + f"FATAL: ICU4C source directory '{ICU4C_SOURCE_DIR}' is not a git repo! Did you forget to checkout the \ + git submodules? Aborting." + ) + return + + old_icu4c_tag = get_current_tag(ICU4C_SOURCE_DIR) + if old_icu4c_tag is None: + print( + "FATAL: ICU4C source directory is not checked out to a tag. Abort to prevent losing potentially unsaved changes." + ) + return + + result = re.match(ICU4C_RELEASE_TAG_REGEX, old_icu4c_tag) + if result and result.group("MAJOR") and result.group("MINOR"): + old_version_major = int(result.group("MAJOR")) + old_version_minor = int(result.group("MINOR")) + else: + print("FATAL: ICU4C repo checked out at '{icu4c_tag}' is not a valid tag for upgrading! Aborting.") + return + + print(f"Begin upgrading ICU4C") + print(f" Repository: {ICU4C_SOURCE_DIR}") + print(f" Current version: {old_icu4c_tag}") + print(f" New version: {new_icu4c_tag}") + + if new_version_major == old_version_major and new_version_minor == old_version_minor: + print("FATAL: Current version same as version to upgrade to! Aborting.") + return + if ( + new_version_major < old_version_major + or new_version_major == old_version_major + and new_version_minor < old_version_minor + ): + print("FATAL: Current version more recent than version to upgrade to! Aborting.") + return + + if not skip_confirm: + flutils.print_separator() + result = flutils.ask_yes_no_question("Please check the upgrade info. Proceed upgrading?") + if result: + print("Proceeding.") + else: + print("Aborting.") + return os.EX_NOINPUT + + flutils.print_separator() + print(f"Fetching updated repository info...") + result = subprocess.run(["git", "fetch"], cwd=ICU4C_SOURCE_DIR) + if result.returncode != 0: + print(f"FATAL: Git fetch failed with exit code {result.returncode}! Aborting.") + + flutils.print_separator() + print(f"Upgrading...") + result = subprocess.run(["git", "checkout", new_icu4c_tag], cwd=ICU4C_SOURCE_DIR) + if result.returncode != 0: + print(f"FATAL: Git checkout failed with exit code {result.returncode}! Aborting.") + + flutils.print_separator() + print(f"Adjusting version numbers in '{ICU4C_CMAKE_FILE}'...") + with open(ICU4C_CMAKE_FILE, "rt") as cmake_file: + cmake_contents = cmake_file.read() + cmake_contents = re.sub( + ICU4C_CMAKE_VERSION_MAJOR_REGEX, + ICU4C_CMAKE_VERSION_MAJOR_TEMPLATE.format(version=new_version_major), + cmake_contents, + ) + cmake_contents = re.sub( + ICU4C_CMAKE_VERSION_MINOR_REGEX, + ICU4C_CMAKE_VERSION_MINOR_TEMPLATE.format(version=new_version_minor), + cmake_contents, + ) + with open(ICU4C_CMAKE_FILE, "wt") as cmake_file: + cmake_file.write(cmake_contents) + + flutils.print_separator() + print("Completed! Don't forget to commit the new submodule ref so it persists!") + + return os.EX_OK From f1027f52f325d445c25b51b27b6ab456f377b7c6 Mon Sep 17 00:00:00 2001 From: Patrick Goldinger Date: Sat, 3 Jun 2023 16:24:58 +0200 Subject: [PATCH 2/5] Add new corpusdata download tool --- data/corpusdata-config.json | 94 ++++++++++++++ utils/build_dictionary.py | 4 +- utils/devtools.py | 23 +++- utils/devtools/corpusdata.py | 230 ++++++++++++++++++++++++++++++++++ utils/flutils.py | 7 +- utils/googlengram_download.py | 98 --------------- 6 files changed, 354 insertions(+), 102 deletions(-) create mode 100644 data/corpusdata-config.json create mode 100755 utils/devtools/corpusdata.py delete mode 100755 utils/googlengram_download.py diff --git a/data/corpusdata-config.json b/data/corpusdata-config.json new file mode 100644 index 0000000..f4879eb --- /dev/null +++ b/data/corpusdata-config.json @@ -0,0 +1,94 @@ +{ + "wiktextract": { + "excludedSourceElements": [ "lang", "sounds", "forms", "hyphenation", "wikipedia", "translations", "examples", + "synonyms", "raw_glosses", "glosses", "antonyms", "derived", "head_templates", "etymology_text", + "etymology_templates", "etymology_number", "inflection_templates", "descendants" ], + "sources": { + "en": { + "url": "https://kaikki.org/dictionary/English/words/kaikki.org-dictionary-English-words.json", + "file": "kaikki.org-dictionary-English-words.json" + }, + "de": { + "url": "https://kaikki.org/dictionary/German/words/kaikki.org-dictionary-German-words.json", + "file": "kaikki.org-dictionary-German-words.json" + }, + "fr": { + "url": "https://kaikki.org/dictionary/French/words/kaikki.org-dictionary-French-words.json", + "file": "kaikki.org-dictionary-French-words.json" + }, + "it": { + "url": "https://kaikki.org/dictionary/Italian/words/kaikki.org-dictionary-Italian-words.json", + "file": "kaikki.org-dictionary-Italian-words.json" + }, + "es": { + "url": "https://kaikki.org/dictionary/Spanish/words/kaikki.org-dictionary-Spanish-words.json", + "file": "kaikki.org-dictionary-Spanish-words.json" + }, + "pt": { + "url": "https://kaikki.org/dictionary/Portuguese/words/kaikki.org-dictionary-Portuguese-words.json", + "file": "kaikki.org-dictionary-Portuguese-words.json" + }, + "pl": { + "url": "https://kaikki.org/dictionary/Polish/words/kaikki.org-dictionary-Polish-words.json", + "file": "kaikki.org-dictionary-Polish-words.json" + }, + "ru": { + "url": "https://kaikki.org/dictionary/Russian/words/kaikki.org-dictionary-Russian-words.json", + "file": "kaikki.org-dictionary-Russian-words.json" + } + } + }, + "googlengram": { + "sources": { + "en-US": { + "url_1gram": "https://storage.googleapis.com/books/ngrams/books/20200217/eng-us/eng-us-1-ngrams_exports.html", + "url_2gram": "https://storage.googleapis.com/books/ngrams/books/20200217/eng-us/eng-us-2-ngrams_exports.html", + "url_3gram": "https://storage.googleapis.com/books/ngrams/books/20200217/eng-us/eng-us-3-ngrams_exports.html", + "url_4gram": "https://storage.googleapis.com/books/ngrams/books/20200217/eng-us/eng-us-4-ngrams_exports.html", + "url_5gram": "https://storage.googleapis.com/books/ngrams/books/20200217/eng-us/eng-us-5-ngrams_exports.html" + }, + "en-GB": { + "url_1gram": "https://storage.googleapis.com/books/ngrams/books/20200217/eng-gb/eng-gb-1-ngrams_exports.html", + "url_2gram": "https://storage.googleapis.com/books/ngrams/books/20200217/eng-gb/eng-gb-2-ngrams_exports.html", + "url_3gram": "https://storage.googleapis.com/books/ngrams/books/20200217/eng-gb/eng-gb-3-ngrams_exports.html", + "url_4gram": "https://storage.googleapis.com/books/ngrams/books/20200217/eng-gb/eng-gb-4-ngrams_exports.html", + "url_5gram": "https://storage.googleapis.com/books/ngrams/books/20200217/eng-gb/eng-gb-5-ngrams_exports.html" + }, + "de": { + "url_1gram": "https://storage.googleapis.com/books/ngrams/books/20200217/ger/ger-1-ngrams_exports.html", + "url_2gram": "https://storage.googleapis.com/books/ngrams/books/20200217/ger/ger-2-ngrams_exports.html", + "url_3gram": "https://storage.googleapis.com/books/ngrams/books/20200217/ger/ger-3-ngrams_exports.html", + "url_4gram": "https://storage.googleapis.com/books/ngrams/books/20200217/ger/ger-4-ngrams_exports.html", + "url_5gram": "https://storage.googleapis.com/books/ngrams/books/20200217/ger/ger-5-ngrams_exports.html" + }, + "fr": { + "url_1gram": "https://storage.googleapis.com/books/ngrams/books/20200217/fre/fre-1-ngrams_exports.html", + "url_2gram": "https://storage.googleapis.com/books/ngrams/books/20200217/fre/fre-2-ngrams_exports.html", + "url_3gram": "https://storage.googleapis.com/books/ngrams/books/20200217/fre/fre-3-ngrams_exports.html", + "url_4gram": "https://storage.googleapis.com/books/ngrams/books/20200217/fre/fre-4-ngrams_exports.html", + "url_5gram": "https://storage.googleapis.com/books/ngrams/books/20200217/fre/fre-5-ngrams_exports.html" + }, + "it": { + "url_1gram": "https://storage.googleapis.com/books/ngrams/books/20200217/ita/ita-1-ngrams_exports.html", + "url_2gram": "https://storage.googleapis.com/books/ngrams/books/20200217/ita/ita-2-ngrams_exports.html", + "url_3gram": "https://storage.googleapis.com/books/ngrams/books/20200217/ita/ita-3-ngrams_exports.html", + "url_4gram": "https://storage.googleapis.com/books/ngrams/books/20200217/ita/ita-4-ngrams_exports.html", + "url_5gram": "https://storage.googleapis.com/books/ngrams/books/20200217/ita/ita-5-ngrams_exports.html" + }, + "es": { + "url_1gram": "https://storage.googleapis.com/books/ngrams/books/20200217/spa/spa-1-ngrams_exports.html", + "url_2gram": "https://storage.googleapis.com/books/ngrams/books/20200217/spa/spa-2-ngrams_exports.html", + "url_3gram": "https://storage.googleapis.com/books/ngrams/books/20200217/spa/spa-3-ngrams_exports.html", + "url_4gram": "https://storage.googleapis.com/books/ngrams/books/20200217/spa/spa-4-ngrams_exports.html", + "url_5gram": "https://storage.googleapis.com/books/ngrams/books/20200217/spa/spa-5-ngrams_exports.html" + }, + "ru": { + "url_1gram": "https://storage.googleapis.com/books/ngrams/books/20200217/rus/rus-1-ngrams_exports.html", + "url_2gram": "https://storage.googleapis.com/books/ngrams/books/20200217/rus/rus-2-ngrams_exports.html", + "url_3gram": "https://storage.googleapis.com/books/ngrams/books/20200217/rus/rus-3-ngrams_exports.html", + "url_4gram": "https://storage.googleapis.com/books/ngrams/books/20200217/rus/rus-4-ngrams_exports.html", + "url_5gram": "https://storage.googleapis.com/books/ngrams/books/20200217/rus/rus-5-ngrams_exports.html" + } + } + } +} diff --git a/utils/build_dictionary.py b/utils/build_dictionary.py index 7c847f2..c3e0892 100755 --- a/utils/build_dictionary.py +++ b/utils/build_dictionary.py @@ -19,7 +19,7 @@ import os import sys import time -import googlengram_download +from devtools import corpusdata import googlengram_wordlist DATA_DIR = os.path.join(flutils.dir_of(__file__), "../data/dicts/v0~draft1") @@ -101,7 +101,7 @@ def build_dictionary(language_code: str) -> int: flutils.print_large_separator() print("Download Google Ngram data\n") - ret_code = googlengram_download.download_ngram_data(googlengram_url, tmp_dir) + ret_code = corpusdata.download_googlengram_specific_data(googlengram_url, tmp_dir) if ret_code != os.EX_OK: print(f"FATAL: Failed to download Google Ngram data! Aborting.") return ret_code diff --git a/utils/devtools.py b/utils/devtools.py index d0b591e..d7f42fe 100755 --- a/utils/devtools.py +++ b/utils/devtools.py @@ -17,7 +17,7 @@ import argparse import os import sys -from devtools import icu4c +from devtools import icu4c, corpusdata def main() -> None: @@ -39,11 +39,32 @@ def main() -> None: help="if specified skips the confirmation dialog (for script mode)", ) + corpusdata_parser = subparsers.add_parser( + "corpusdata-download", + help="helps downloading corpusdata", + description="Utility which downloads Wiktextract and Google Ngram partition files from their respecitve sources and stores them in given dst dir.", + epilog="See https://storage.googleapis.com/books/ngrams/books/datasetsv3.html for an overview of Google Ngram data.", + ) + corpusdata_parser.add_argument( + "--corpus-config", + type=str, + required=True, + help="path for the corpus download config", + ) + corpusdata_parser.add_argument( + "--dst-dir", + type=str, + required=True, + help="path for the dst corpus dir", + ) + args = parser.parse_args() ret_code = os.EX_OK if args.command == "icu4c": ret_code = icu4c.upgrade(args.upgrade, args.y) + elif args.command == "corpusdata-download": + ret_code = corpusdata.download_all(args.corpus_config, args.dst_dir) else: raise ValueError("Unreachable") diff --git a/utils/devtools/corpusdata.py b/utils/devtools/corpusdata.py new file mode 100755 index 0000000..0ed605f --- /dev/null +++ b/utils/devtools/corpusdata.py @@ -0,0 +1,230 @@ +#!/usr/bin/env python3 + +# Copyright 2023 Patrick Goldinger +# +# 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. + +import flutils +import json +import os +import re +import time + + +HTML_LINK_SCRAPING_REGEX = r"
  • .*<\/a><\/li>" + + +class CorpusConfig: + def __init__(self) -> None: + self.wiktextract = WiktextractCorpusConfig() + self.googlengram = GoogleNgramCorpusConfig() + + +class WiktextractCorpusConfig: + def __init__(self) -> None: + self.excluded_source_elements: list[str] = [] + self.sources: dict[str, self.SourceInfo] = {} + + class SourceInfo: + def __init__(self, url: str, file: str) -> None: + self.url: str = url + self.file: str = file + + +class GoogleNgramCorpusConfig: + def __init__(self) -> None: + self.sources: dict[str, self.SourceInfo] = {} + + class SourceInfo: + def __init__(self, url_1gram: str, url_2gram: str, url_3gram: str, url_4gram: str, url_5gram: str) -> None: + self.url_1gram: str = url_1gram + self.url_2gram: str = url_2gram + self.url_3gram: str = url_3gram + self.url_4gram: str = url_4gram + self.url_5gram: str = url_5gram + + +def parse_json_to_corpus_config(file_path) -> CorpusConfig: + with open(file_path) as f: + data = json.load(f) + + config = CorpusConfig() + + # Parse wiktextract data + wiktextract_data = data.get("wiktextract") + if wiktextract_data: + wiktextract_config = config.wiktextract + + excluded_source_elements = wiktextract_data.get("excludedSourceElements") + if excluded_source_elements: + wiktextract_config.excluded_source_elements = excluded_source_elements + + sources = wiktextract_data.get("sources") + if sources: + for source_name, source_info in sources.items(): + url = source_info.get("url") + file = source_info.get("file") + if url and file: + source = WiktextractCorpusConfig.SourceInfo(url, file) + wiktextract_config.sources[source_name] = source + + # Parse googlengram data + googlengram_data = data.get("googlengram") + if googlengram_data: + googlengram_config = config.googlengram + + sources = googlengram_data.get("sources") + if sources: + for source_name, source_info in sources.items(): + url_1gram = source_info.get("url_1gram") + url_2gram = source_info.get("url_2gram") + url_3gram = source_info.get("url_3gram") + url_4gram = source_info.get("url_4gram") + url_5gram = source_info.get("url_5gram") + + if url_1gram and url_2gram and url_3gram and url_4gram and url_5gram: + source = GoogleNgramCorpusConfig.SourceInfo(url_1gram, url_2gram, url_3gram, url_4gram, url_5gram) + googlengram_config.sources[source_name] = source + + return config + + +def filter_json_data(corpus_config: CorpusConfig, json_data): + filtered_json_data = { + key: value for key, value in json_data.items() if key not in corpus_config.wiktextract.excluded_source_elements + } + if "senses" in filtered_json_data: + filtered_json_data["senses"] = [ + { + key: value + for key, value in sense.items() + if key not in corpus_config.wiktextract.excluded_source_elements + } + for sense in filtered_json_data["senses"] + ] + return filtered_json_data + + +def filter_wiktextract_file(corpus_config: CorpusConfig, kaikki_path: str) -> None: + kaikki_tmp_path = f"{kaikki_path}.tmp" + with open(kaikki_path, "r") as kaikki_file: + with open(kaikki_tmp_path, "w") as kaikki_tmp_file: + for line in kaikki_file: + json_data = json.loads(line) + filtered_json_data = filter_json_data(corpus_config, json_data) + kaikki_tmp_file.write(json.dumps(filtered_json_data)) + kaikki_tmp_file.write("\n") + os.remove(kaikki_path) + os.rename(kaikki_tmp_path, kaikki_path) + + +def download_wiktextract(corpus_config: CorpusConfig, dst_dir: str) -> int: + flutils.print_header("DOWNLOAD WIKTEXTRACT") + for lang_tag, source in corpus_config.wiktextract.sources.items(): + print(f"[{lang_tag}]") + kaikki_path = os.path.join(dst_dir, source.file) + if os.path.exists(kaikki_path): + print(f"Skip {kaikki_path} (already exists)") + flutils.print_separator() + continue + print(f"Download {kaikki_path}") + ret_code = flutils.download(url=source.url, to_file=kaikki_path) + if ret_code != 0: + print(f"WARN: Failed to complete download (error code {ret_code})") + os.remove(kaikki_path) + flutils.print_separator() + continue + print(f"Filtering {kaikki_path}") + filter_wiktextract_file(corpus_config, kaikki_path) + flutils.print_separator() + + return os.EX_OK + + +def download_googlengram_specific_data(index_file_url: str, dst_dir: str) -> int: + if os.path.isfile(dst_dir): + print(f"FATAL: Given output directory path '{dst_dir}' is a file! Aborting.") + return os.EX_USAGE + os.makedirs(dst_dir, exist_ok=True) + + index_name = index_file_url.split("/")[-1] + index_file_path = os.path.join(dst_dir, index_name) + indexed_links: list[str] = [] + + print(f"Download ngram index") + ret_code = flutils.download(url=index_file_url, to_file=index_file_path) + if ret_code != os.EX_OK: + print(f"FATAL: Index file download failed with error code {ret_code}! Aborting.") + return ret_code + + with open(index_file_path, "r") as index_file: + for line in index_file: + link_match = re.search(HTML_LINK_SCRAPING_REGEX, line) + if link_match: + link = link_match.group(1) + indexed_links.append(link) + os.remove(index_file_path) + print(f"Discovered and queued {len(indexed_links)} partition files to be downloaded") + + for link in indexed_links: + partition_name = link.split("/")[-1] + partition_path = os.path.join(dst_dir, partition_name) + if os.path.exists(partition_path): + print(f"Skip {partition_name} (already exists)") + continue + print(f"Download {partition_name}") + ret_code = flutils.download(url=link, to_file=partition_path) + if ret_code != 0: + print(f"WARN: Failed to complete download (error code {ret_code})") + + return os.EX_OK + + +def download_googlengram_data(corpus_config: CorpusConfig, dst_dir: str) -> int: + flutils.print_header("DOWNLOAD GOOGLENGRAM") + for lang_tag, source in corpus_config.googlengram.sources.items(): + print(f"[{lang_tag}]") + lang_specific_dir = os.path.join(dst_dir, lang_tag) + download_googlengram_specific_data(source.url_1gram, lang_specific_dir) + # download_googlengram_specific_data(source.url_2gram, lang_specific_dir) + # download_googlengram_specific_data(source.url_3gram, lang_specific_dir) + # download_googlengram_specific_data(source.url_4gram, lang_specific_dir) + # download_googlengram_specific_data(source.url_5gram, lang_specific_dir) + flutils.print_separator() + + return os.EX_OK + + +def download_all(corpus_config_path: str, corpusdata_dir: str) -> int: + corpus_config = parse_json_to_corpus_config(corpus_config_path) + + wiktextract_dir = os.path.join(corpusdata_dir, "wiktextract") + os.makedirs(wiktextract_dir, exist_ok=True) + googlengram_dir = os.path.join(corpusdata_dir, "googlengram") + os.makedirs(googlengram_dir, exist_ok=True) + + start_time = time.time() + download_wiktextract(corpus_config, wiktextract_dir) + end_time = time.time() + elapsed_time = end_time - start_time + print(f"Finished in {elapsed_time:.2f}s") + + flutils.print_large_separator() + + start_time = time.time() + download_googlengram_data(corpus_config, googlengram_dir) + end_time = time.time() + elapsed_time = end_time - start_time + print(f"Finished in {elapsed_time:.2f}s") + + return os.EX_OK diff --git a/utils/flutils.py b/utils/flutils.py index 6148101..6581d10 100644 --- a/utils/flutils.py +++ b/utils/flutils.py @@ -65,12 +65,17 @@ def train_wordscores(dict_path: str, wordlist_path: str, score_threshold: str) - ).returncode +def print_header(title: str) -> None: + print(f">>> {title} <<<") + print("-" * (len(title) + 8)) + + def print_separator() -> None: print("-----") def print_large_separator() -> None: - print("\n=====") + print("\n=====\n") def ask_yes_no_question(question) -> bool: diff --git a/utils/googlengram_download.py b/utils/googlengram_download.py deleted file mode 100755 index 7a6d049..0000000 --- a/utils/googlengram_download.py +++ /dev/null @@ -1,98 +0,0 @@ -#!/usr/bin/env python3 - -# Copyright 2023 Patrick Goldinger -# -# 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. - -import argparse -import flutils -import os -import re -import sys -import time - -HTML_LINK_SCRAPING_REGEX = r"
  • .*<\/a><\/li>" - - -def download_ngram_data(index_file_url: str, dst_dir: str) -> int: - if os.path.isfile(dst_dir): - print(f"FATAL: Given output directory path '{dst_dir}' is a file! Aborting.") - return os.EX_USAGE - os.makedirs(dst_dir, exist_ok=True) - - index_name = index_file_url.split("/")[-1] - index_file_path = os.path.join(dst_dir, index_name) - indexed_links: list[str] = [] - - print(f"Download ngram index") - ret_code = flutils.download(url=index_file_url, to_file=index_file_path) - if ret_code != os.EX_OK: - print(f"FATAL: Index file download failed with error code {ret_code}! Aborting.") - return ret_code - - with open(index_file_path, "r") as index_file: - for line in index_file: - link_match = re.search(HTML_LINK_SCRAPING_REGEX, line) - if link_match: - link = link_match.group(1) - indexed_links.append(link) - os.remove(index_file_path) - print(f"Discovered and queued {len(indexed_links)} partition files to be downloaded") - flutils.print_separator() - - for link in indexed_links: - partition_name = link.split("/")[-1] - partition_path = os.path.join(dst_dir, partition_name) - if os.path.exists(partition_path): - print(f"Skip {partition_name} (already exists)") - continue - print(f"Download {partition_name}") - ret_code = flutils.download(url=link, to_file=partition_path) - if ret_code != 0: - print(f"WARN: Failed to complete download (error code {ret_code})") - - return os.EX_OK - - -def main() -> None: - parser = argparse.ArgumentParser( - description="Utility which downloads unigram/ngram partition files from a Google Ngram Viewer export and stores them in given path.", - epilog="See https://storage.googleapis.com/books/ngrams/books/datasetsv3.html for an overview of Google Ngram data.", - ) - parser.add_argument( - "--url", - type=str, - required=True, - help="the URL of the Google Ngram data HTML page, e.g.: https://storage.googleapis.com/books/ngrams/books/20200217/eng/eng-1-ngrams_exports.html", - ) - parser.add_argument( - "--dst-dir", - type=str, - required=True, - help="the output directory path, will be created if it does not exist", - ) - args = parser.parse_args() - - start_time = time.time() - ret_code = download_ngram_data(args.url, args.dst_dir) - if ret_code != os.EX_OK: - sys.exit(ret_code) - end_time = time.time() - elapsed_time = end_time - start_time - flutils.print_separator() - print(f"Finished in {elapsed_time:.2f}s") - sys.exit(os.EX_OK) - - -if __name__ == "__main__": - main() From ae6636002be8410cedd0b5c201bef5349036695b Mon Sep 17 00:00:00 2001 From: Patrick Goldinger Date: Fri, 30 Jun 2023 18:29:59 +0200 Subject: [PATCH 3/5] Add pre-filtering of wiktextract data files --- .vscode/c_cpp_properties.json | 28 +++++++++++----------- data/corpusdata-config.json | 24 ++++++++++++------- utils/devtools/corpusdata.py | 45 +++++++++++++++++------------------ 3 files changed, 52 insertions(+), 45 deletions(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 1ed47ef..f17f0d7 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -1,15 +1,15 @@ { - "version": 4, - "configurations": [ - { - "name": "Linux", - "intelliSenseMode": "linux-clang-x64", - "compileCommands": "${workspaceFolder}/build/debug/compile_commands.json", - "defines": [], - "compilerPath": "/usr/bin/clang", - "cStandard": "c17", - "cppStandard": "c++20", - "configurationProvider": "ms-vscode.cmake-tools" - } - ] -} \ No newline at end of file + "version": 4, + "configurations": [ + { + "name": "Linux", + "intelliSenseMode": "linux-clang-x64", + "compileCommands": "${workspaceFolder}/build/release/compile_commands.json", + "defines": [ ], + "compilerPath": "/usr/bin/clang", + "cStandard": "c17", + "cppStandard": "c++20", + "configurationProvider": "ms-vscode.cmake-tools" + } + ] +} diff --git a/data/corpusdata-config.json b/data/corpusdata-config.json index f4879eb..3d26358 100644 --- a/data/corpusdata-config.json +++ b/data/corpusdata-config.json @@ -6,35 +6,43 @@ "sources": { "en": { "url": "https://kaikki.org/dictionary/English/words/kaikki.org-dictionary-English-words.json", - "file": "kaikki.org-dictionary-English-words.json" + "originalFile": "kaikki.org-dictionary-English-words.json", + "filteredFile": "kaikki.org-dictionary-English-words.jsonl" }, "de": { "url": "https://kaikki.org/dictionary/German/words/kaikki.org-dictionary-German-words.json", - "file": "kaikki.org-dictionary-German-words.json" + "originalFile": "kaikki.org-dictionary-German-words.json", + "filteredFile": "kaikki.org-dictionary-German-words.jsonl" }, "fr": { "url": "https://kaikki.org/dictionary/French/words/kaikki.org-dictionary-French-words.json", - "file": "kaikki.org-dictionary-French-words.json" + "originalFile": "kaikki.org-dictionary-French-words.json", + "filteredFile": "kaikki.org-dictionary-French-words.jsonl" }, "it": { "url": "https://kaikki.org/dictionary/Italian/words/kaikki.org-dictionary-Italian-words.json", - "file": "kaikki.org-dictionary-Italian-words.json" + "originalFile": "kaikki.org-dictionary-Italian-words.json", + "filteredFile": "kaikki.org-dictionary-Italian-words.jsonl" }, "es": { "url": "https://kaikki.org/dictionary/Spanish/words/kaikki.org-dictionary-Spanish-words.json", - "file": "kaikki.org-dictionary-Spanish-words.json" + "originalFile": "kaikki.org-dictionary-Spanish-words.json", + "filteredFile": "kaikki.org-dictionary-Spanish-words.jsonl" }, "pt": { "url": "https://kaikki.org/dictionary/Portuguese/words/kaikki.org-dictionary-Portuguese-words.json", - "file": "kaikki.org-dictionary-Portuguese-words.json" + "originalFile": "kaikki.org-dictionary-Portuguese-words.json", + "filteredFile": "kaikki.org-dictionary-Portuguese-words.jsonl" }, "pl": { "url": "https://kaikki.org/dictionary/Polish/words/kaikki.org-dictionary-Polish-words.json", - "file": "kaikki.org-dictionary-Polish-words.json" + "originalFile": "kaikki.org-dictionary-Polish-words.json", + "filteredFile": "kaikki.org-dictionary-Polish-words.jsonl" }, "ru": { "url": "https://kaikki.org/dictionary/Russian/words/kaikki.org-dictionary-Russian-words.json", - "file": "kaikki.org-dictionary-Russian-words.json" + "originalFile": "kaikki.org-dictionary-Russian-words.json", + "filteredFile": "kaikki.org-dictionary-Russian-words.jsonl" } } }, diff --git a/utils/devtools/corpusdata.py b/utils/devtools/corpusdata.py index 0ed605f..7f47817 100755 --- a/utils/devtools/corpusdata.py +++ b/utils/devtools/corpusdata.py @@ -36,9 +36,10 @@ def __init__(self) -> None: self.sources: dict[str, self.SourceInfo] = {} class SourceInfo: - def __init__(self, url: str, file: str) -> None: + def __init__(self, url: str, original_file: str, filtered_file: str) -> None: self.url: str = url - self.file: str = file + self.original_file: str = original_file + self.filtered_file: str = filtered_file class GoogleNgramCorpusConfig: @@ -73,9 +74,10 @@ def parse_json_to_corpus_config(file_path) -> CorpusConfig: if sources: for source_name, source_info in sources.items(): url = source_info.get("url") - file = source_info.get("file") - if url and file: - source = WiktextractCorpusConfig.SourceInfo(url, file) + original_file = source_info.get("originalFile") + filtered_file = source_info.get("filteredFile") + if url and original_file and filtered_file: + source = WiktextractCorpusConfig.SourceInfo(url, original_file, filtered_file) wiktextract_config.sources[source_name] = source # Parse googlengram data @@ -115,37 +117,34 @@ def filter_json_data(corpus_config: CorpusConfig, json_data): return filtered_json_data -def filter_wiktextract_file(corpus_config: CorpusConfig, kaikki_path: str) -> None: - kaikki_tmp_path = f"{kaikki_path}.tmp" +def filter_wiktextract_file(corpus_config: CorpusConfig, kaikki_path: str, filtered_kaikki_path: str) -> None: with open(kaikki_path, "r") as kaikki_file: - with open(kaikki_tmp_path, "w") as kaikki_tmp_file: + with open(filtered_kaikki_path, "w") as filtered_kaikki_file: for line in kaikki_file: json_data = json.loads(line) filtered_json_data = filter_json_data(corpus_config, json_data) - kaikki_tmp_file.write(json.dumps(filtered_json_data)) - kaikki_tmp_file.write("\n") - os.remove(kaikki_path) - os.rename(kaikki_tmp_path, kaikki_path) + filtered_kaikki_file.write(json.dumps(filtered_json_data)) + filtered_kaikki_file.write("\n") def download_wiktextract(corpus_config: CorpusConfig, dst_dir: str) -> int: flutils.print_header("DOWNLOAD WIKTEXTRACT") for lang_tag, source in corpus_config.wiktextract.sources.items(): print(f"[{lang_tag}]") - kaikki_path = os.path.join(dst_dir, source.file) + kaikki_path = os.path.join(dst_dir, source.original_file) + filtered_kaikki_path = os.path.join(dst_dir, source.filtered_file) if os.path.exists(kaikki_path): print(f"Skip {kaikki_path} (already exists)") - flutils.print_separator() - continue - print(f"Download {kaikki_path}") - ret_code = flutils.download(url=source.url, to_file=kaikki_path) - if ret_code != 0: - print(f"WARN: Failed to complete download (error code {ret_code})") - os.remove(kaikki_path) - flutils.print_separator() - continue + else: + print(f"Download {kaikki_path}") + ret_code = flutils.download(url=source.url, to_file=kaikki_path) + if ret_code != 0: + print(f"WARN: Failed to complete download (error code {ret_code})") + os.remove(kaikki_path) + flutils.print_separator() + continue print(f"Filtering {kaikki_path}") - filter_wiktextract_file(corpus_config, kaikki_path) + filter_wiktextract_file(corpus_config, kaikki_path, filtered_kaikki_path) flutils.print_separator() return os.EX_OK From 9b3f73405f02a34ef10ba4b8e7861659321c0acd Mon Sep 17 00:00:00 2001 From: Patrick Goldinger Date: Tue, 18 Jul 2023 23:11:31 +0200 Subject: [PATCH 4/5] Rework utils/devtools structure --- utils/build_all_dictionaries.py | 3 +- utils/build_dictionary.py | 90 +++++++++-------- utils/convert_dictionaries_to_extensions.py | 2 +- utils/devtools/corpusconfig.py | 106 ++++++++++++++++++++ utils/devtools/corpusdata.py | 84 +--------------- utils/{ => devtools}/flutils.py | 4 +- utils/devtools/icu4c.py | 2 +- utils/googlengram_wordlist.py | 2 +- 8 files changed, 163 insertions(+), 130 deletions(-) create mode 100644 utils/devtools/corpusconfig.py rename utils/{ => devtools}/flutils.py (92%) diff --git a/utils/build_all_dictionaries.py b/utils/build_all_dictionaries.py index 2c17b06..5641c90 100755 --- a/utils/build_all_dictionaries.py +++ b/utils/build_all_dictionaries.py @@ -14,18 +14,17 @@ # See the License for the specific language governing permissions and # limitations under the License. -import flutils import os import sys import time import build_dictionary import convert_dictionaries_to_extensions +from devtools import flutils def main() -> None: start_time = time.time() for lang_code in build_dictionary.LANGUAGE_MAPPING.keys(): - print(f"-> LANGUAGE: {lang_code}") build_dictionary.build_dictionary(lang_code) flutils.print_large_separator() convert_dictionaries_to_extensions.convert_dictionaries_to_extensions(build_dictionary.DATA_DIR) diff --git a/utils/build_dictionary.py b/utils/build_dictionary.py index c3e0892..026ee73 100755 --- a/utils/build_dictionary.py +++ b/utils/build_dictionary.py @@ -15,15 +15,16 @@ # limitations under the License. import argparse -import flutils import os import sys import time -from devtools import corpusdata import googlengram_wordlist +from devtools import corpusdata, flutils DATA_DIR = os.path.join(flutils.dir_of(__file__), "../data/dicts/v0~draft1") TMP_DIR = os.path.join(DATA_DIR, ".tmp/{lang}") +CORPUSDATA_DIR = os.path.join(flutils.dir_of(__file__), "../data/.corpusdata") +CORPUSDATA_CONFIG_PATH = os.path.join(flutils.dir_of(__file__), "../data/corpusdata-config.json") CONFIG_PATH = os.path.join(flutils.dir_of(__file__), "../data/wiktextract-config.json") DST_DICTIONARY = os.path.join(DATA_DIR, "words_{lang}.fldic") SCORE_THRESHOLD = 2 @@ -33,83 +34,86 @@ FILTER_NAME = "filter_name" LANGUAGE_MAPPING = { "en-US": { - WIKTEXTRACT: "https://kaikki.org/dictionary/English/kaikki.org-dictionary-English.json", - GOOGLENGRAM: "https://storage.googleapis.com/books/ngrams/books/20200217/eng-us/eng-us-1-ngrams_exports.html", + WIKTEXTRACT: "en", + GOOGLENGRAM: "en-US", FILTER_NAME: "en", }, "en-GB": { - WIKTEXTRACT: "https://kaikki.org/dictionary/English/kaikki.org-dictionary-English.json", - GOOGLENGRAM: "https://storage.googleapis.com/books/ngrams/books/20200217/eng-gb/eng-gb-1-ngrams_exports.html", + WIKTEXTRACT: "en", + GOOGLENGRAM: "en-GB", FILTER_NAME: "en", }, "de": { - WIKTEXTRACT: "https://kaikki.org/dictionary/German/kaikki.org-dictionary-German.json", - GOOGLENGRAM: "https://storage.googleapis.com/books/ngrams/books/20200217/ger/ger-1-ngrams_exports.html", + WIKTEXTRACT: "de", + GOOGLENGRAM: "de", FILTER_NAME: "de", }, "fr": { - WIKTEXTRACT: "https://kaikki.org/dictionary/French/kaikki.org-dictionary-French.json", - GOOGLENGRAM: "https://storage.googleapis.com/books/ngrams/books/20200217/fre/fre-1-ngrams_exports.html", + WIKTEXTRACT: "fr", + GOOGLENGRAM: "fr", FILTER_NAME: "root", }, "es": { - WIKTEXTRACT: "https://kaikki.org/dictionary/Spanish/kaikki.org-dictionary-Spanish.json", - GOOGLENGRAM: "https://storage.googleapis.com/books/ngrams/books/20200217/spa/spa-1-ngrams_exports.html", + WIKTEXTRACT: "es", + GOOGLENGRAM: "es", FILTER_NAME: "root", }, "it": { - WIKTEXTRACT: "https://kaikki.org/dictionary/Italian/kaikki.org-dictionary-Italian.json", - GOOGLENGRAM: "https://storage.googleapis.com/books/ngrams/books/20200217/ita/ita-1-ngrams_exports.html", + WIKTEXTRACT: "it", + GOOGLENGRAM: "it", FILTER_NAME: "root", }, "ru": { - WIKTEXTRACT: "https://kaikki.org/dictionary/Russian/kaikki.org-dictionary-Russian.json", - GOOGLENGRAM: "https://storage.googleapis.com/books/ngrams/books/20200217/rus/rus-1-ngrams_exports.html", + WIKTEXTRACT: "ru", + GOOGLENGRAM: "ru", FILTER_NAME: "root", }, } -def build_dictionary(language_code: str) -> int: - tmp_dir = TMP_DIR.format(lang=language_code) +def build_dictionary(lang_code: str) -> int: + print(f"-> LANGUAGE: {lang_code}") + corpusdata_config = corpusdata.parse_json_to_corpus_config(CORPUSDATA_CONFIG_PATH) + + tmp_dir = TMP_DIR.format(lang=lang_code) if os.path.isfile(tmp_dir): print(f"FATAL: Given temporary directory path '{tmp_dir}' is a file! Aborting.") return os.EX_USAGE os.makedirs(tmp_dir, exist_ok=True) - language_config = LANGUAGE_MAPPING.get(language_code, None) - if language_code is None: - print(f"FATAL: Language '{language_code}' is unsupported! Aborting.") + language_config = LANGUAGE_MAPPING.get(lang_code, None) + if lang_code is None: + print(f"FATAL: Language '{lang_code}' is unsupported! Aborting.") return os.EX_USAGE - wiktextract_url = language_config[WIKTEXTRACT] - googlengram_url = language_config[GOOGLENGRAM] + wiktextract_lang = language_config[WIKTEXTRACT] + googlengram_lang = language_config[GOOGLENGRAM] filter_name = language_config[FILTER_NAME] flutils.print_large_separator() - print("Download wiktextract data\n") - wiktextract_name = wiktextract_url.split("/")[-1] - wiktextract_path = os.path.join(tmp_dir, wiktextract_name) - if os.path.exists(wiktextract_path): - print(f"Skip {wiktextract_name} (already exists)") - else: - print(f"Download {wiktextract_name}") - ret_code = flutils.download(url=wiktextract_url, to_file=wiktextract_path) - if ret_code != os.EX_OK: - print(f"FATAL: Failed to download wiktextract file (error code {ret_code})! Aborting.") - return ret_code - flutils.print_large_separator() - - print("Download Google Ngram data\n") - ret_code = corpusdata.download_googlengram_specific_data(googlengram_url, tmp_dir) - if ret_code != os.EX_OK: - print(f"FATAL: Failed to download Google Ngram data! Aborting.") - return ret_code + print("Check if wiktextract data exists...") + tmp_path = corpusdata_config.wiktextract.data_file(wiktextract_lang) + tmp_path = os.path.join(CORPUSDATA_DIR, tmp_path) if tmp_path is not None else None + if tmp_path is None or not os.path.exists(tmp_path) or not os.path.isfile(tmp_path): + print(f"FATAL: Couldn't find required wiktextract source data! Aborting.") + return 1 + print(f"Found at {tmp_path}") + wiktextract_path = tmp_path + flutils.print_separator() + + print("Check if Google Ngram data exists...") + tmp_path = corpusdata_config.googlengram.data_dir(googlengram_lang) + tmp_path = os.path.join(CORPUSDATA_DIR, tmp_path) if tmp_path is not None else None + if tmp_path is None or not os.path.exists(tmp_path) or not os.path.isdir(tmp_path): + print(f"FATAL: Couldn't find required googlengram source data! Aborting.") + return 1 + print(f"Found at {tmp_path}") + googlengram_dir = tmp_path flutils.print_large_separator() print("Build dictionary with wiktextract data\n") stats_path = os.path.join(tmp_dir, "wiktextract_stats.json") - dictionary_path = DST_DICTIONARY.format(lang=language_code) + dictionary_path = DST_DICTIONARY.format(lang=lang_code) ret_code = flutils.prep_wiktextract(wiktextract_path, dictionary_path, CONFIG_PATH, filter_name, stats_path) if ret_code != os.EX_OK: print(f"FATAL: Failed to build dictionary (error code {ret_code})! Aborting.") @@ -119,7 +123,7 @@ def build_dictionary(language_code: str) -> int: print("Build filtered wordlist from Google Ngram data\n") wordlist_path = os.path.join(tmp_dir, "wordlist.txt") exclude_filters = googlengram_wordlist.parse_exclude_filters(CONFIG_PATH, filter_name) - ret_code = googlengram_wordlist.generate_wordlist(tmp_dir, wordlist_path, exclude_filters) + ret_code = googlengram_wordlist.generate_wordlist(googlengram_dir, wordlist_path, exclude_filters) if ret_code != os.EX_OK: print(f"FATAL: Failed to build filtered wordlist (error code {ret_code})! Aborting.") return ret_code diff --git a/utils/convert_dictionaries_to_extensions.py b/utils/convert_dictionaries_to_extensions.py index a02a071..9c8afd7 100755 --- a/utils/convert_dictionaries_to_extensions.py +++ b/utils/convert_dictionaries_to_extensions.py @@ -14,12 +14,12 @@ # See the License for the specific language governing permissions and # limitations under the License. -import flutils import os import sys import time import zipfile import build_dictionary +from devtools import flutils EXTENSION_ID_TEMPLATE = "org.florisboard.dictionaries.{lang_code}" diff --git a/utils/devtools/corpusconfig.py b/utils/devtools/corpusconfig.py new file mode 100644 index 0000000..6f85217 --- /dev/null +++ b/utils/devtools/corpusconfig.py @@ -0,0 +1,106 @@ +#!/usr/bin/env python3 + +# Copyright 2023 Patrick Goldinger +# +# 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. + +import json + + +class CorpusConfig: + def __init__(self) -> None: + self.wiktextract = WiktextractCorpusConfig() + self.googlengram = GoogleNgramCorpusConfig() + + +class WiktextractCorpusConfig: + ID: str = "wiktextract" + + def __init__(self) -> None: + self.excluded_source_elements: list[str] = [] + self.sources: dict[str, WiktextractCorpusConfig.SourceInfo] = {} + + def data_file(self, lang: str) -> str | None: + if lang in self.sources: + return f"{self.ID}/{self.sources[lang].filtered_file}" + return None + + class SourceInfo: + def __init__(self, url: str, original_file: str, filtered_file: str) -> None: + self.url: str = url + self.original_file: str = original_file + self.filtered_file: str = filtered_file + + +class GoogleNgramCorpusConfig: + ID: str = "googlengram" + + def __init__(self) -> None: + self.sources: dict[str, GoogleNgramCorpusConfig.SourceInfo] = {} + + def data_dir(self, lang: str) -> str | None: + if lang in self.sources: + return f"{self.ID}/{lang}" + return None + + class SourceInfo: + def __init__(self, url_1gram: str, url_2gram: str, url_3gram: str, url_4gram: str, url_5gram: str) -> None: + self.url_1gram: str = url_1gram + self.url_2gram: str = url_2gram + self.url_3gram: str = url_3gram + self.url_4gram: str = url_4gram + self.url_5gram: str = url_5gram + + +def parse_json_to_corpus_config(file_path) -> CorpusConfig: + with open(file_path) as f: + data = json.load(f) + + config = CorpusConfig() + + # Parse wiktextract data + wiktextract_data = data.get(WiktextractCorpusConfig.ID) + if wiktextract_data: + excluded_source_elements: list[str] | None = wiktextract_data.get("excludedSourceElements") + if excluded_source_elements: + config.wiktextract.excluded_source_elements = excluded_source_elements + + sources = wiktextract_data.get("sources") + if sources: + for source_name, source_info in sources.items(): + url = source_info.get("url") + original_file = source_info.get("originalFile") + filtered_file = source_info.get("filteredFile") + if url and original_file and filtered_file: + config.wiktextract.sources[source_name] = WiktextractCorpusConfig.SourceInfo( + url, original_file, filtered_file + ) + + # Parse googlengram data + googlengram_data = data.get(GoogleNgramCorpusConfig.ID) + if googlengram_data: + sources = googlengram_data.get("sources") + if sources: + for source_name, source_info in sources.items(): + url_1gram = source_info.get("url_1gram") + url_2gram = source_info.get("url_2gram") + url_3gram = source_info.get("url_3gram") + url_4gram = source_info.get("url_4gram") + url_5gram = source_info.get("url_5gram") + + if url_1gram and url_2gram and url_3gram and url_4gram and url_5gram: + config.googlengram.sources[source_name] = GoogleNgramCorpusConfig.SourceInfo( + url_1gram, url_2gram, url_3gram, url_4gram, url_5gram + ) + + return config diff --git a/utils/devtools/corpusdata.py b/utils/devtools/corpusdata.py index 7f47817..c8834a0 100755 --- a/utils/devtools/corpusdata.py +++ b/utils/devtools/corpusdata.py @@ -14,93 +14,17 @@ # See the License for the specific language governing permissions and # limitations under the License. -import flutils import json import os import re import time +from devtools import flutils +from devtools.corpusconfig import * HTML_LINK_SCRAPING_REGEX = r"
  • .*<\/a><\/li>" -class CorpusConfig: - def __init__(self) -> None: - self.wiktextract = WiktextractCorpusConfig() - self.googlengram = GoogleNgramCorpusConfig() - - -class WiktextractCorpusConfig: - def __init__(self) -> None: - self.excluded_source_elements: list[str] = [] - self.sources: dict[str, self.SourceInfo] = {} - - class SourceInfo: - def __init__(self, url: str, original_file: str, filtered_file: str) -> None: - self.url: str = url - self.original_file: str = original_file - self.filtered_file: str = filtered_file - - -class GoogleNgramCorpusConfig: - def __init__(self) -> None: - self.sources: dict[str, self.SourceInfo] = {} - - class SourceInfo: - def __init__(self, url_1gram: str, url_2gram: str, url_3gram: str, url_4gram: str, url_5gram: str) -> None: - self.url_1gram: str = url_1gram - self.url_2gram: str = url_2gram - self.url_3gram: str = url_3gram - self.url_4gram: str = url_4gram - self.url_5gram: str = url_5gram - - -def parse_json_to_corpus_config(file_path) -> CorpusConfig: - with open(file_path) as f: - data = json.load(f) - - config = CorpusConfig() - - # Parse wiktextract data - wiktextract_data = data.get("wiktextract") - if wiktextract_data: - wiktextract_config = config.wiktextract - - excluded_source_elements = wiktextract_data.get("excludedSourceElements") - if excluded_source_elements: - wiktextract_config.excluded_source_elements = excluded_source_elements - - sources = wiktextract_data.get("sources") - if sources: - for source_name, source_info in sources.items(): - url = source_info.get("url") - original_file = source_info.get("originalFile") - filtered_file = source_info.get("filteredFile") - if url and original_file and filtered_file: - source = WiktextractCorpusConfig.SourceInfo(url, original_file, filtered_file) - wiktextract_config.sources[source_name] = source - - # Parse googlengram data - googlengram_data = data.get("googlengram") - if googlengram_data: - googlengram_config = config.googlengram - - sources = googlengram_data.get("sources") - if sources: - for source_name, source_info in sources.items(): - url_1gram = source_info.get("url_1gram") - url_2gram = source_info.get("url_2gram") - url_3gram = source_info.get("url_3gram") - url_4gram = source_info.get("url_4gram") - url_5gram = source_info.get("url_5gram") - - if url_1gram and url_2gram and url_3gram and url_4gram and url_5gram: - source = GoogleNgramCorpusConfig.SourceInfo(url_1gram, url_2gram, url_3gram, url_4gram, url_5gram) - googlengram_config.sources[source_name] = source - - return config - - def filter_json_data(corpus_config: CorpusConfig, json_data): filtered_json_data = { key: value for key, value in json_data.items() if key not in corpus_config.wiktextract.excluded_source_elements @@ -207,9 +131,9 @@ def download_googlengram_data(corpus_config: CorpusConfig, dst_dir: str) -> int: def download_all(corpus_config_path: str, corpusdata_dir: str) -> int: corpus_config = parse_json_to_corpus_config(corpus_config_path) - wiktextract_dir = os.path.join(corpusdata_dir, "wiktextract") + wiktextract_dir = os.path.join(corpusdata_dir, WiktextractCorpusConfig.ID) os.makedirs(wiktextract_dir, exist_ok=True) - googlengram_dir = os.path.join(corpusdata_dir, "googlengram") + googlengram_dir = os.path.join(corpusdata_dir, GoogleNgramCorpusConfig.ID) os.makedirs(googlengram_dir, exist_ok=True) start_time = time.time() diff --git a/utils/flutils.py b/utils/devtools/flutils.py similarity index 92% rename from utils/flutils.py rename to utils/devtools/flutils.py index 6581d10..655f6ed 100644 --- a/utils/flutils.py +++ b/utils/devtools/flutils.py @@ -30,7 +30,7 @@ def download(url: str, to_file: str | None = None) -> int: def prep_wiktextract(wiktextract_path: str, dict_path: str, config_path: str, filter_name: str, stats_path: str) -> int: - nlptools_executable = os.path.join(dir_of(__file__), "../build/release/bin/nlptools") + nlptools_executable = os.path.join(dir_of(__file__), "../../build/release/bin/nlptools") return subprocess.run( [ nlptools_executable, @@ -50,7 +50,7 @@ def prep_wiktextract(wiktextract_path: str, dict_path: str, config_path: str, fi def train_wordscores(dict_path: str, wordlist_path: str, score_threshold: str) -> int: - nlptools_executable = os.path.join(dir_of(__file__), "../build/release/bin/nlptools") + nlptools_executable = os.path.join(dir_of(__file__), "../../build/release/bin/nlptools") return subprocess.run( [ nlptools_executable, diff --git a/utils/devtools/icu4c.py b/utils/devtools/icu4c.py index 3c7cd81..a3004d7 100755 --- a/utils/devtools/icu4c.py +++ b/utils/devtools/icu4c.py @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -import flutils +import utils.devtools.flutils as flutils import os import re import subprocess diff --git a/utils/googlengram_wordlist.py b/utils/googlengram_wordlist.py index 22f4d5a..67b8628 100755 --- a/utils/googlengram_wordlist.py +++ b/utils/googlengram_wordlist.py @@ -15,7 +15,6 @@ # limitations under the License. import argparse -import flutils import gzip import json import os @@ -24,6 +23,7 @@ import time from concurrent.futures import ProcessPoolExecutor from typing import Pattern, Tuple +from devtools import flutils def parse_line(line: str) -> Tuple[str, int]: From 5f2bf3886e3c18a40478f04c0f37c45581926e8a Mon Sep 17 00:00:00 2001 From: Patrick Goldinger Date: Tue, 18 Jul 2023 23:11:55 +0200 Subject: [PATCH 5/5] Add slightlly reworked dictionaries --- CMakePresets.json | 4 +- .../org.florisboard.dictionaries.de.flex | Bin 4316905 -> 4333564 bytes .../org.florisboard.dictionaries.en-GB.flex | Bin 7758497 -> 7810269 bytes .../org.florisboard.dictionaries.en-US.flex | Bin 9741094 -> 9815008 bytes .../org.florisboard.dictionaries.es.flex | Bin 6623216 -> 6640784 bytes .../org.florisboard.dictionaries.fr.flex | Bin 4024752 -> 4034848 bytes .../org.florisboard.dictionaries.it.flex | Bin 5933449 -> 5937283 bytes .../org.florisboard.dictionaries.ru.flex | Bin 7860880 -> 7875857 bytes data/dicts/v0~draft1/words_de.fldic | 1038 ++- data/dicts/v0~draft1/words_en-GB.fldic | 4357 ++++++++++++- data/dicts/v0~draft1/words_en-US.fldic | 5776 ++++++++++++++++- data/dicts/v0~draft1/words_es.fldic | 1261 +++- data/dicts/v0~draft1/words_fr.fldic | 850 ++- data/dicts/v0~draft1/words_it.fldic | 431 +- data/dicts/v0~draft1/words_ru.fldic | 691 +- 15 files changed, 13494 insertions(+), 914 deletions(-) diff --git a/CMakePresets.json b/CMakePresets.json index 19bbc27..6115ed3 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -13,8 +13,8 @@ "binaryDir": "${sourceDir}/build/${presetName}", "cacheVariables": { "BUILD_SHARED_LIBS": true, - "CMAKE_C_COMPILER": "clang", - "CMAKE_CXX_COMPILER": "clang++", + "CMAKE_C_COMPILER": "/home/patrick/tools/llvm/16.0.3/bin/clang", + "CMAKE_CXX_COMPILER": "/home/patrick/tools/llvm/16.0.3/bin/clang++", "CMAKE_EXPERIMENTAL_CXX_MODULE_CMAKE_API": "2182bf5c-ef0d-489a-91da-49dbc3090d2a", "CMAKE_ARCHIVE_OUTPUT_DIRECTORY": "${sourceDir}/build/${presetName}/bin", "CMAKE_LIBRARY_OUTPUT_DIRECTORY": "${sourceDir}/build/${presetName}/bin", diff --git a/data/dicts/v0~draft1/org.florisboard.dictionaries.de.flex b/data/dicts/v0~draft1/org.florisboard.dictionaries.de.flex index 564ccf4ff155cfddf4785c412d27dafec4fd6f0d..9af525de14cabc42adf1ffa12fa7e96d1948f7d2 100644 GIT binary patch delta 18229 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 diff --git a/data/dicts/v0~draft1/org.florisboard.dictionaries.en-GB.flex b/data/dicts/v0~draft1/org.florisboard.dictionaries.en-GB.flex index 48fbfa15c1b6cb373b3e774042f8bc8e5d89a24a..17c2ca8f0fce16d10fcfc3ac0b10ad714b29e972 100644 GIT binary patch delta 61433 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 diff --git a/data/dicts/v0~draft1/org.florisboard.dictionaries.en-US.flex b/data/dicts/v0~draft1/org.florisboard.dictionaries.en-US.flex index 3d8498caf69b041b0f78d5e4378a8273858a5659..da13ddec5d38f23fefd95f548c01d976cb6f79a9 100644 GIT binary patch delta 84291 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�dA3PNA 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 U&p3ALma`leKfU$;{_p?(9~{0FV*mgE delta 31469 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 diff --git a/data/dicts/v0~draft1/org.florisboard.dictionaries.fr.flex b/data/dicts/v0~draft1/org.florisboard.dictionaries.fr.flex index b23618a94278676600c6d03d6b440cd5910add2e..a548dfe5eb91c5f15c00a94629d92e8267d5ec77 100644 GIT binary patch delta 12191 zcmZWv33wD$wtly>bXRp}gAfwJ9uf#^?F$Ja0wRlS0*WY7>2#8YPIuEwAQ9)eqvA>& zOGigkT)-7<@v7)3FQel!I_S7Nqoa=d^4v#7XWoCR6J*}_@qOmps=8hG+;jf(pa0gL zKYz<^xam7qvUFiVVda0(f9F2%)!vfTzS2eft5uIqPv}2gGULB~x}-Pb+gvo>5p1dV z6W=w$u}fzQvTDeB?(BjsMS*ZfL@;$(&ixQr>I=lW1znddx%b%MDFH#YRoRlv+;zdJ ztYpKcNZLuq>26)iJsEny7jOhcRTWF?-BR{~5KRlJW@)yZn_u3|0`YEKwM;YjNX1=3 zk)T9=#s9e#=T=dVuF)$GI+q$bMMuaunCD+5=)W|Th&x?Ryvc4 zwhD@D7^du5*|4Chh9c{|KaETK1w+*h!^&-_Ka+)`krZA{R!m!wavwCj&q9%GG!~BI%ok|e9QRGTlfrlJ|VgsJzQpzRB0V&n=-GbAlns8_O(lkIY1 zf~={Mq2-1cI|~DC2|>|J$?VNdKYf@J?uf>tf+DGwcuXXdiFCFkFo6kQH#RksYchhV zz!SYr^JX!gpv_h-P0PL1{1B^Yk2_&OH_1=O#GI&S%Bli)Y&&W@D``n|#iJV%ZEb=f zOTEL6z95uNM|u)*_*RyU-1SEX3Pk)QOjXg8-kr1mSsKZ}g?+nH5kb=pJ$Kz46CU&K zQEk)eeeT#37FydPDZ#QWHD}Jdra*Aw838ebP<>{>0e_?uYtyve z3m2{_kG049c6VVr5Ii=5viI$Uve*h=DzYTwl}i>47eX;CB9eu}DB8xY+y@VI;TBDk z?B17FO%oy+@|CVB_nvsEPw0%q1l80`BX{BI9jr7NiDyzy8gGO3O1W`sxDON3YRIKn z;VY*qp{__Y1+S?J){`qTV+qzW1Nwp#{HM95Ib=Ubj zF|(#9xr?2H1*I*CY`fFxWChj6;&UfOe#Jy59c_t{t84;4Lb;6Osbd`;=lKt4U+%x{P#*|weAaOTZS=#0Xv_z|sFJbS%A-i_Z^>|FBfb6Hhn6H6CQ@3t+1&xqEKkQxJ^z-JVGcrm6!;Pr18@1prVKBTDYn zdxo+AftMuX+QvOA3WA+@L6i*x0hc?FJEkZU>%!|I`Zb#GUk|*qjiqK0i)y?Y)$Tg0x$1l^WQJ2&l-W*<-`n`%WIng~NR*Z%0+g?`Ft4UV7v z`!k9IbB+^C0D#i_yQh~0mY#r6vH^xA&#Wl$XB>bRR(k4l)kP(l%}zR<$a>+g(aGB(ewrMFM{5y?yWR6cLihZ|s$oTlc|g=Fei$rYh%hA0A?2n64sJvF_a;cNGju z;i?3nSH(q<))cPExthr$V*ffC3nvE$FYXi zzTJc^lBv_&gjNDD#n9;Qjs!gK2)d@`Uie`?6C&BoG_8d^J9J@Tu&Zx(4>rb-kha(U z>lPqnH|Cars%|r5NudQV1%Ndaek)_YXTfMZ0k`Qkl8?6)upPiq6`-!`{O3Y8hY8`R zg9?aW4YO+yLbUx@6|0s%2VMMAN7Pbqtqh0>V>C4p{Qmd%%xv*kW9+v8On zQ&IT!gIFCCV;LtE?F9D7{Ncf@(HDp!2SFz+_isbki(-m$Qd2a^a`#lRM+5B$Q1B6p zZy3s&{o?urZby=7w!3pAlY)pC1XuqfKY64dDwfibY$u=wiH>^VxlYz!cb)VJNbacpKVoTAzbU@%O6>NxfQD{DnT z&m%AjvMsw64Qy%vWJN+fm3dPG+u{Qw!8R&zpThS{VD~X`$%?R29-U*W@l27 zDRUg4F?hsci)I6OcWW&X1ycO>yTi)M& zyXe&v-Nc0$ss39~-7u3) z7>XA~ZU6vnya`GRRv;s_-OFaOu@bm3Wrbzn$`X~Ho@8_`9z7dg_hl(l+l!Ti)laW{! z*^JsPOB!D^j~()b29gs@SL3r5u#XCBTGu-*v{=M}xHJ+cGYah1W!|uaEfYcsKt263 zJg&K!li1yraG|7$OFJI#jYq>#Y@2DRZuM$5JU|5;P-?o3tJychf%6o4;02N)E{&4e z4pt<~DDZC0$!tfk9fb^YV?LelJDDj=qMb$?Mk|OS-0=Dc`2N2!w}~+FE}-KA)yFTr zyM{?(I^yBGC9Ayb6gIC=0O(2<7>VL8TgNKJXcuzNuu<#zx^--uuiir(yp}00O*!qb z@D_ma!xpHfq`B|6u&c!O#Ci`DWr=SNv-*G>qe|PiJ4M@XS+ck+8-=e^Sh$Jest?!{ z9*SZC&fVP`*!KcTDWVZwqkDafRR`vrKwJnxd|!;M56oW*;5Su+5AS3ZJ|Uc-LJeqg z8x!oKKr0$06|91nCfU>I6p(F-WFtymO0ynT6W-uZVb^6%5|<~u>MEPIswnQFEE^-X zdR?Vv0XWuY*~vcdc^So7UNTIgf1%kWIkH51q$8 zL`6&{2^M9Yzqyq?7zpJdOfk^+$!_oE?27XBk$5zd?#A9D%w*H#qpx6VSru3%_8cVP zghZ+(0w$-RnwxIVc6K4yIp{7yqvHN+J3D<2>VSdWJOL=&?)2RQ?-8ejnS#|yHBHya zL@`Ia0c6SO`lWUmx^3_)dfB7CK)4&>4Q9iSzlweDE9r?jorz7+a1WS?&1YZ3R3EYw z^hH*9`dT(2AP}=q3^c9o)jQens!pH>E+QDk6%iP44WNtf-O1Jz`FntjAUNE=n_c7^ z9ziEctP4Gnr0^H+VEA5aN?t-86p*_Hs26%FzOpLh>jSx}vzb{zYTkX?~Yg~Ist+j|$awgkzn^14Cfp9#Lt)TO{`q~Z$rns# z(Y7M?BmjK_XRCw^F;@a?-p$zoHabdsprVgeY;l#dAsTn$8%Wmx`NKLi(={Jt>w>Kj zU^jBi0Nd$(kbUNLJ*k8jkU)8U#(p-R1)VfeOK=NG<^S_Ad!r!agz*^mA3B4?uYQb4 zOpN#4hN%q*7yR)9?CQedP6l;6hMfUE%c^*y(}ki%cmPo5Yo1`M&=Yy;1mIlecm07q z#QdFzaYd4N#D&sDx*YyHF`0oYv3`nKo- zm2{%pn!Dw8pD{U1l_@{FDLUb3-cAeXb(O<5uoM7k^1E;MJrl4p-FO7t(R&VE8@zVJ z5MixJQynpgF^Z&Y&iBO-ZLO-{k>bQ$4PaZ=%n*PsnY^JW&iuC5t+6x5n-A;?hUT!X5BWG)?`yt?LFq=Go%2 zO!!km=j1+A=$}%P$a>%gswE;$$@12(+5Fu?|ApKA#3H~kdAsYsb8IlyohAq&Ws(aI z`ClK#-+R&jYgQ|^^t%+$ZsiS{#sbB0uYK7+l|S>ce@IZErN|l>tNYs9{^$Il;JOZe zapODw@7|yVA)6gaU?CXK6ssn@^rfw?y)UN}Z zhEOkJ8qh)A=K{jzfhdTDO?!EgAiS;@c?_2~&J=b^quYsRB+vjF=*&gxx(7z^I?zA) z9}{1ECKQkZN!u1Jc>zug}ExwttVB^^?Qw&2}@RD%s4k_1K1^bdI8 za>M|_1PthtYl0`US}e{a|KaW=g%w;3c@Vj+XxzLuxT2yETcYu^?+n&VsPOie?#+_U z1GSm|`o*9V6gz=Tm=vNK|NO1s9|rp=Tp{T3JHHNIBJ!qx2LI0XjR}2R#7l}pn~V9@ zQ0TOVLZH0C-%>&)40Rl3jhw26CKVUsX$S#aoE{oA+>btz^gKRxRp`gl{74`u2sW?2 zKXm29=@5LPkn<3G@DxHy3@2KS9D}#e*8KY*#x&F7yZ#p190XM)GKV&eSA80qSveRS z%md|cq60ILW~uL6TJk}mpUxf7SZ$SyO1NB9dR1Mq05umVbznm2Fyu8(7LeC3HkRJe z79ch&Sy;`c%S%fZlw}gBBr!{rcR0x8XS`mzG(jE$E}%ruFZ*eWfZT_>K^MtYQ1J(N-(~ z!Va1MGCajp_U0ptvJ-)qztKxoD9ilP;pHpFR?{pdXfVP8EnA|MvI;Cq;(s}+ykclg zJ`JHfV&WdiEo8&1=mpt_W>xum<|qBf&~*OK6U$fo`0A6()e`r%_Hvzn z++M!CQbcPVM~)B(TU*LER}~^|Y`%MY`O_ndpvn zQ2tnLBQ*6`ln6XB%n)1AtF;iK0zeL1Kp-8_^6P?%#|taqPV_6dvDFDvCRy&XK*coC zYw;9J4O|ISyjv@5fUvm%+pY5x$5s65txB&{E0`0qjpsK-llj4dLFu7h5#xC^z`Ci6h2vycDqIJQ^X{-}RRU%6AdSu_g7<^|~|1pSV|Hqv~ zkobL}%B9D-#Vadc<8QC5taJn9G1&qdeD-PO%jbKEOuP@b-k%O&pjkC#-P-om?*RoBkogYT}I#3qT6PKdBx=%G&>uqfJ4 zDEmz>5H*8uyr=3qKQH4|Pf7xXlTES=Klnk_@)_>9`k}}3bp6nh(h{i7Abj2wC?Qv< zLq97O`&oekB3SZfld*j@ps*vznA{pE9)C@?r{lFr%)q)n8Zg4QBPd6HAD@woxYItjXlVTB_&zLj&hX=zeX! zDq8*QAu&Y=swmL9`G`nOOL?G&=AypnjBL#fRROBHNMnr;y13?!;y@d8bQD*`ePDY{ zLotyQRd-+AUZV_gsF?$;ZF6E_heUEn&Jr)`t*H;v2^oY)fT+eBuCG}s5E_7im=-YR z+}mpGGMw^)QbR4}58hwnNH`C`UK6P=|Da~;;9{)80&raNW6ic1EkaUkLw#|8U0`nm z7I8~i8nCb=d*Bk@pO_^*uCO(KmSA4a5Gzf~}cUHoO6Ag1ZjgIP9ok)%vUl!}Oae{7s>u zsTSAo8umhifaC`z*a!~ai^FD~L2VxJ9PN%fb6M>s{=l-@PfEl*ZNd?c&aXeM_L%X5 zQI*go;jK}mXg(YH{rdT}^8@|(tMHLqYo916!dk(~-n^*xv3mE0J+&9}se5a8R1Wbr zTou~~&U=W_s{Hql*M9%G;GMmKAWD4SeZxPWYKjO3;1d-s#B<)Da0dG3t%MgH2#J0Z z*Kl&e-+6aN|NmyV z0ttHWkdaRoEsCTlq)6IFb;{p~nfu4E3dp|R<3|i)(*L*<(F3g_T|07XjUVx;*{aGv z*G9g(va~(x#ObsGKWdsP|I2NCRjX=mo$FagUx@q;K&Ll*>4(Q%q;e=d=8__60Dmi=sg$#l-P8hbX8NH=OU4{G z8sv$3JpM#t%v@0*B!EbRyesM%Q{5~eEOkgcfQFj;#~ktz`-Y6bLl2I*X=io*3>z(t zCC2inW}v0uKYZ6IV}A+-F-DaD$6`9aHad24cMy0_BppLYqj$#MC1MFsW_a|ou|v-< zLh}pXWYTpnOz}fCMN-=Qm>cWfA3g!O4y8^N(FUd*05na4R$lvM0I`pP#Yg?FZg#2X zCL4-AKlP7wKLiDjVL)J3`SGvTeKo?J^s_T&1;L}*)x4jg{qoa>YNZ%adoSb|^z?gt>w`?3Db@geX%$h8zVpk<@R zHoOPQ2at6SSq-xUv=tP>Sgd6?tQk}fO@jarC*H^<7Eo`{% zj*xe5PbGmuXZ$}JYF#1Pg-kZ^#R+e^bo}DQf_KOUWd-H&FXM~qq1>YGnn3h(*o3DG z#kTxG63)c=vBeWU@i*dY5YK@SV#TDBq_0Cf_n|rb#YQk$d{XIzKb=@a_@eT!BNHxr z&+nll7Sg@2@sWaxa1`J+(EH*G0hLc#(l`>Ql?kfgC}T38wY2eju>mqwO9EWqYyF_; zYhtqF$T2LCHpN)ecwlNFSc1Yoy|A%(y!*|b#?5YgZ)3ar%HGDbyXf9VOYARsINIT7 z-rKmKY#iyI5CjxUOnPSzm<(rQSPNN{6p|(JCk`|&b&82qBL>UrCf;1Edlb<^Moi`W*Z3Gnd)jT5WI(#{0Vw^9y-Su{%;e_EY5M@7zo4f3M) zi5E97-H5LkP;`s%t2mBgG~T*>(yvQ{ z(0-^B$H!nY|N4eW7uJ*|pxD>^0WRl>0(>(D6?&0g$2UoC4+>U zJRJ_7z6l#1IWQqN@2k|(V{l!KsL$w^RJ(&yN2`c=l zifN067eleo(5#nDop#kt|DD2HSm;txktAB{eljBUo8)qeKJTJOCJmYucS6*Ja%4aQ z>^JF2Ix-wE=}~+UWDg8@Q<>O#?*_=**jNRLareP#V?OC$JwA;x_|yBP-{AYNn3ML> z58OzV`PxUM9Y)A$1$PCG%hav@__cI(eUw_w<4{DQU0^v5bBuJW-`SA<1-6McbAh<{^1m&0Qnm$o+qG*Bgq0q`=N96_ogpI<$*7t=i>mREt~I8 zaR3N;=7zx=YJc)0LW{}a`WI| z&f3h62aitlhlpW-Kxd#_Ab}v1 zs&6qPv0{8$siHy6R9GKA!`J@RT2aXFd)xAl!ABfO81#mGpU-Zus{skck~ImhfB2A! z&ee5Z)nNanqWqVWC<;!1#uujj%Cvq3mQD!y{&suINIJXp01hV)u5`Y=9N)E3Pl>ML zjPvci_ds0tF5?41KF*l_-HGH}Xmko6a_Mw+C_m|z>6^*|`34`N%M>lYL+ak_}<78nkQ7;ZXGySM(6fH1O$hdlF`q(K|S^7)}m@SL=1OMP` z9Fg(m6Pf~LM`Lq{VE3Kh4qc1R*A-;cVGFy99`+a8i({2+uNdPSS2t`neOijmf$$xn zlWv?bx(lqPYlGe`X#A<>y<;_9B`$1t(B?ya!|UOMvhUWzKZ#&CY*9b~Y>u!oCwAoU z0Nw$jbar-Ao8N@^LcfSM3bmSqP+$c}8NSp!VgOVa)v^BuFgD=%%L|%T7X}De2!Hv+ zB~4;cKEhG`C$DH)KIM3PREBDTRv%@tZ#P2i@NklPFbErPt9POQP8QMzj*_0}u54gEZpF8kWINKfCGa#Yegq2d@0+ z=bIi5jOzC#in&UwJHojjW)M;T@mkaV8lRxJyS{EZt{6Tyaj@|5*G+d!Dk7Cy;+KtT zJ~lkG%j3`ZECO>Rov!@r0lg2N-Ml|k5^e1UB%-y$8N0^MyR3O-h*|_3`16C;Hcz># zieQi)&2)Eq43k`HneG?z3}qxSPERT`X=R7+=-Z7w139QwW>};A^l1aU%NH-3abBsv n?@^o?AkLpZZN@6003X`B6QeWi|M#W6yAfl>+b*AhZ}I;RH?>b) delta 4302 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 AegFUf diff --git a/data/dicts/v0~draft1/org.florisboard.dictionaries.it.flex b/data/dicts/v0~draft1/org.florisboard.dictionaries.it.flex index 67066082327f05aa5f1b45cde73039fb00726377..f1aba3b7091c68ab15a4eef235e9c36b3659d38a 100644 GIT binary patch delta 5419 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 delta 2493 zcmZ8j4OA0X7VbP9ctBDZE0=GcGa?Nb=&Ut$5w5%M+cyM2I!&a zU|Hk^_-&+a+xG5T!JR#W zlY-3yQ>ftXS99p#H?RF18T{@&S9-AgcCRu>-F-;bzk-^pBxjV=dHj)~Zcf0SRB8`} z;xy{*iO}a$>*Y99NNrSNZW$$y!y+$LqQ~=HRE3r>&rl;!@1WKxu;W>3s|>cilsz0z z9H8D;zjQsZv}lv|GClTtPUM`@H?qVkildxWw?;ktspti+{A`eZoz z;^~(&@o)j%9f8PlIz|rT61r1{Gu3p20+(xPl?u0fbgL3=tLSejGzaLjvB-OxZi*(y zyXlq4>7g^iNMJ903#)tS0SdYM=ymCM^Bi3qNhW?mXTkjmO%-CNUN#hl&UD$8QgpV< zc5guDh^*lE=zK!nRgZ_hlsj1rjL7>Hi2*lbGVy|0Yg$oO9WI#?vTEk1sS1g2v-601 zj2X=XcZ%UnV#iGe9XC~vvQW#^w<)N@)E!~u4=S}DCsgXq99iQ~&%v-m{YfJ^(WhRA z$^+`lPb=Mw#l#r}o}`&HRZ5Sa5d@AC5HM-FGsuKxn&@yJV>MZM8x}3o=pI53G+a`c zmob@57(B1Zk3#Ynn$9kq^F=J%rDG-%uYnq0*)7o4I>i?}ZFGH^@^1V@-S&8QIs06ivS*h~4B|q+FKVug7`>>_O-4gIJ zyk+cbi(e9ElSqeaqLynz?6{_=LW=mBqui74aT>>6SgrS=#4*_=gfE(-mc*jGGpb}1 zhu1{EU5O1t(fg}X?+skL*4xR45n3_X-E7l+4>l9Yt!Hibp^+!c>sjkKU9G|e8ibmll+FseM> zmViGH@G~|uZyQ7HEe$@;*a)el$m8?iX}X41wZm>ZZ_RD&IVnOIHX z&iRR7euIA=pVYrHoRN}avvGJKGx=ON)?1QK`%tncd7lEm{3$u&kfGAI4`c?xYb+*~c@g`mr4(lNtPB9qBHF z+O!4m)}@_DR(cuE$k}WbF?oF&lGmrdRV4l}n2sL?r~mcCP%pi`J7cv>FQwYo;%RTX z*NP^={woeOl2L+Ub#Df$duQmn#kJWpCCkLx>{)T!&^+4O^9%zua(=f_8<$ z4{?irHn!-EbuVMWMdK?k;nOEgnd`!(rncBE#(vs-KtuX9W)D&$%stPCgq-R(w^E@8 zBg_Nl9aqiC$hc~LD+B+E;e;C0wQ^Cj$)>$rtr*|SA->o0%Y1S26$>U`;r$x2?-rkk z!CU+j^TZ0P6%|&SM=K5$*f3Nev^LKcGQ? zv#Un2X-3wNK3a->rLWB+?F*b>vT#y0HkM>HhpO^oN!Cb6;knW*eMqW!ZDAI!EzHj5 zVD8NRVybB9%Z8yZXJ{CakL3m;v2|1KuAkyU4%-6(cgxsrW3t;Nr^tTF;iy2@M-JyO zzC1GLS)aH$VJge|;j@L;LIIG|$BP<6 zflPm`DE2k6sN+G&7NDr3cyO7Ra@s#U7?`+J}5=s z2Mcp}kyb1MttgwY3UfQkG#jOl{UuH(Mb1;sZahUh{S~1}ZZCGuqGF{aw2fuqUX5|4 zP)nPZI<22!jkUa^lh6a@X+#((p93rIRY5dTuGd7^SzDZm1xa z3#&%(Sy9!wb{sodtPz+;-G$sXp0& zv>&S#7T7af5xFRT*mc85N{EXi2Z*aeCLP1bUE;F;-#LsF>~z@`w>P?^liGg(&I_z= diff --git a/data/dicts/v0~draft1/org.florisboard.dictionaries.ru.flex b/data/dicts/v0~draft1/org.florisboard.dictionaries.ru.flex index b5e2cbd11947e2f177312fbc852ddac1a074d611..87bd7b5dd91bfeee9ca9d80cb703cbdc58dee622 100644 GIT binary patch delta 14005 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 bneDx}(rW+D&+MBnt~6sG9JmVqLhb(n7#KIT delta 3053 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 diff --git a/data/dicts/v0~draft1/words_de.fldic b/data/dicts/v0~draft1/words_de.fldic index d49a6ae..c0e1eaf 100644 --- a/data/dicts/v0~draft1/words_de.fldic +++ b/data/dicts/v0~draft1/words_de.fldic @@ -14,6 +14,7 @@ ACE 255915 ADAC 223606 ADHS 402083 ADS 220281 +ADTs 1652 AG 14144106 AI 2123752 AIDS 799963 @@ -503,6 +504,7 @@ Abfahrthalle 109 Abfahrtshalle 2331 Abfahrtshallen 199 Abfahrtsliste 95 +Abfahrtstafel 1489 Abfahrtszeit 36550 Abfall 5196990 Abfallbehälter 27796 @@ -907,6 +909,7 @@ Abmeiern 563 Abmelden 17807 Abmeldens 407 Abmeldung 163158 +Abmeldungen 62529 Abmelken 5300 Abmelkens 395 Abmessen 105666 @@ -1234,6 +1237,8 @@ Absicherung 1885956 Absicherungen 73062 Absicht 30252156 Absichten 7787528 +Absichtlichkeit 208897 +Absichtlichkeiten 3893 Absichtserklärung 146054 Absichtserklärungen 127263 Absiedler 1294 @@ -2014,6 +2019,7 @@ Adverbialbestimmung 29727 Adverbialsatz 22205 Adverbien 659925 Adverbs 91323 +Advocaten 486537 Advokat 1033614 Advokaten 1348514 Advokatin 6185 @@ -2023,6 +2029,7 @@ Adäquatheit 125912 Aerobic 58278 Aerobics 2707 Aerobier 19563 +Aerobiern 5324 Aerobiers 199 Aerobiologie 2466 Aerobiont 236 @@ -2276,6 +2283,7 @@ Aisches 987 p Aistersheim 7401 Ajatollah 23708 Ajatollahs 4484 +Ajax 328968 Akademie 21977298 Akademieausgabe 40263 Akademieausgaben 615 @@ -2466,6 +2474,7 @@ Akzentes 50595 Akzents 98663 Akzentuieren 7399 Akzentuierung 676930 +Akzentuierungen 112193 Akzentverschiebung 158693 Akzeptanz 3315688 Akzeptieren 196312 @@ -2838,6 +2847,7 @@ Allgemeinsprache 39288 Allgemeinsprachen 199 Allgemeinwissen 100271 Allgemeinwissens 13630 +Allgemeinwohl 161238 Allgemeinzustand 584886 Allgemeinzustande 18576 Allgemeinzustandes 155679 @@ -3125,6 +3135,7 @@ Altflickern 487 Altflickers 493 Altfranzösisch 23974 Altfriesisch 4474 +Altfränkisch 2569 Altgeige 2621 Altgeorgisch 486 Altglas 26743 @@ -3171,6 +3182,7 @@ Altpersisch 8526 Altportugiesisch 544 Altposaune 8944 Altpreußisch 1983 +Altprovenzalisch 1532 Altrei 6643 Altrosa 10803 Altruismus 357413 @@ -3345,6 +3357,7 @@ Ambra 158690 Ambrosia 173097 Ambulanz 325677 Ambulanzen 84840 +Ameischen 723 Ameise 483260 Ameisen 1839188 Ameisenalgorithmus 1531 @@ -3373,6 +3386,7 @@ Ameisenstaates 5042 Ameisenstaats 623 Ameisensäure 1095461 Ameisenwürger 1214 +Ameislein 821 Amelie 523290 Amen 2746294 Americium 11999 @@ -3506,6 +3520,7 @@ Ampere 598494 Amperes 34542 Amperewindung 1725 Ampfer 49094 +Amphe 419 Amphetamin 78487 Amphetamine 56722 Amphetaminen 21224 @@ -3684,6 +3699,7 @@ Ananasse 2523 Ananassen 1108 Ananassäfte 264 Ananassäften 199 +Ananke 46657 Anapher 134830 Anaphern 54234 Anaphrodisiaka 263 @@ -4241,6 +4257,7 @@ Ankreuzen 57362 Ankreuzens 951 Ankucken 245 Ankunft 9965899 +Ankunftstafel 893 Ankunftszeit 67661 Ankunftszeiten 32285 Ankurbeln 9827 @@ -5048,6 +5065,7 @@ Anzeigensparte 267 Anzeiger 2602327 Anzeigern 12601 Anzeigers 199004 +Anzeigetafel 42959 Anzetteln 3509 Anzettelns 216 Anziehen 863571 @@ -5221,6 +5239,8 @@ Apophthegmen 26379 Apophänie 2395 Apoplexie 369398 Apoplexien 74024 +Aporie 401029 +Aporien 304945 Apostasie 97028 Apostat 53476 Apostaten 117518 @@ -5563,6 +5583,8 @@ Arbeitspflichten 24799 Arbeitspflichtige 1020 Arbeitspflichtigen 3155 Arbeitspflichtiger 127 +Arbeitsplatte 138664 +Arbeitsplatten 12062 Arbeitsplatz 4424751 Arbeitsplatze 29005 Arbeitsplatzes 670852 @@ -6139,6 +6161,7 @@ Arzthelfers 531 Arztkittel 30051 Arztkitteln 1385 Arztkittels 2927 +Arztkoffer 16086 Arztpraxen 116527 Arztpraxis 186580 Arztserie 4068 @@ -6177,6 +6200,7 @@ Aschkenasi 14531 Aschkenasim 30581 Aschkuchen 1951 Ascorbinsäure 304127 +Asemissen 10821 Aser 26954 Aserbaidschan 172562 Aserbaidschaner 14560 @@ -6258,6 +6282,7 @@ Assays 29279 Asse 205416 Assel 65346 Asseln 106381 +Asselspinne 311 Assembler 87779 Assemblern 4124 Assemblers 7506 @@ -6791,6 +6816,8 @@ Aufführungen 2487058 Aufgabe 68778919 Aufgaben 39475874 Aufgabenbuch 9637 +Aufgabenliste 23704 +Aufgabenlisten 5557 Aufgabenübertragungsgesetz 351 Aufgang 923364 Aufgange 126500 @@ -6836,6 +6863,9 @@ Aufklärung 16179072 Aufklärungen 564669 Aufklärungsdrohne 2874 Aufklärungsdrohnen 3419 +Aufklärungsflugzeug 12391 +Aufklärungsflugzeuge 17796 +Aufklärungsflugzeuges 1853 Aufkommen 2118061 Aufkommens 183045 Aufladung 449771 @@ -7247,6 +7277,7 @@ Ausbaus 383349 Ausbausprache 3818 Ausbausprachen 3101 Ausbauten 108424 +Ausbessern 101013 Ausbeute 4720349 Ausbeuten 562235 Ausbeuter 311870 @@ -7728,6 +7759,7 @@ Aussteiger 112920 Aussteller 1898428 Ausstellern 230159 Ausstellers 389167 +Ausstellfenster 1915 Ausstellung 15725500 Ausstellungen 3873049 Ausstellungsobjekt 14948 @@ -7893,6 +7925,7 @@ Authentisierung 37271 Authentisierungen 555 Authentizität 1427673 Authentizitäten 1079 +Author 227073 Autismus 383109 Autist 19601 Auto 11869457 @@ -8025,6 +8058,8 @@ Autoomnibussen 635 Autoomnibusses 125 Autopilot 80371 Autopiloten 54814 +Autopoiese 49776 +Autopoiesis 132770 Autopsie 1071795 Autopsien 85998 Autor 25485361 @@ -8236,10 +8271,13 @@ BGH 6269016 BGS 113953 BH 729090 BIP 1034210 +BIW 4606 +BK 658999 BKA 406030 BKS 71010 BL 614216 BLZ 274999 +BMBF 292048 BMVIT 5790 BMW 1007937 BND 360781 @@ -8254,6 +8292,7 @@ BVG 352096 BW 583641 BWL 206460 BaWü 9764 +Baal 725595 Baathismus 1241 Baba 445763 Babbeln 2361 @@ -8311,6 +8350,7 @@ Bachchöre 107 Bache 721507 Bachelor 786015 Bachelorarbeit 108380 +Bachelorarbeiten 7704 Bachelorgrad 2319 Bachelors 15128 Bachelorthesis 5105 @@ -8444,7 +8484,11 @@ Bademäntel 25706 Bademänteln 12178 Baden 18780127 Baden-Württemberg 107 +Badener 410233 +Badenerin 1085 Badens 508805 +Badenser 39317 +Badenserin 989 Badeort 227410 Badeorte 162475 Badeorten 98659 @@ -8537,6 +8581,8 @@ Bahnmomente 3919 Bahnmomenten 1041 Bahnmomentes 961 Bahnmoments 870 +Bahnradfahrer 387 +Bahnradsport 1501 Bahnstation 298657 Bahnstationen 53776 Bahnsteig 590055 @@ -8575,6 +8621,7 @@ Bajonetten 139603 Bajonettes 2040 Bajonetts 14499 Bajuware 3427 +Bajuwarin 435 Bake 101415 Bakelit 44146 Bakelits 1643 @@ -8789,6 +8836,8 @@ Bananenrepubliken 4131 Bananensaft 3257 Bananenschale 18234 Bananenschalen 11113 +Bananenschnecke 277 +Banat 491283 Banause 32803 Banausen 71467 Band 55678207 @@ -9028,6 +9077,7 @@ Barmixer 11469 Barmixerin 283 Barmixern 335 Barmixers 679 +Barntrup 16701 Barock 2320599 Barocke 120670 Barockmaler 16310 @@ -9570,10 +9620,12 @@ Bauxits 20000 Bauzeit 684304 Bauzeiten 54099 Bayer 3358357 +Bayerin 9101 Bayern 18404474 Bayerns 1932377 Bayers 58200 Bayreuth 2205250 +Bayrin 2181 Bazi 18828 Bazillen 1337832 Bazillenträger 110588 @@ -9635,6 +9687,7 @@ Bearbeitungen 1969014 Bearbeitungsdauer 44138 Beat 655829 Beate 1338769 +Beatles 286424 Beatmung 645973 Beatmungen 9549 Beatmungsgerät 48399 @@ -10314,6 +10367,7 @@ Beistrichen 3058 Beistrichs 2287 Beistände 74140 Beiständen 18976 +Beiständin 3689 Beisätze 23582 Beitel 22576 Beiteln 1109 @@ -10778,7 +10832,7 @@ Bergtales 1834 Bergtals 1531 Bergtapir 668 Bergtürke 97 p -Bergtürken 2145 p +Bergtürken 2145 Bergung 413845 Bergungen 13640 Bergwand 124023 @@ -10852,6 +10906,7 @@ Bernsteinen 4439 Bernsteines 5142 Bernsteins 294147 Bernsteinsäure 492582 +Bernsteinzimmer 26553 Berolinismen 2059 Berolinismus 3242 Berserker 128494 @@ -11311,6 +11366,8 @@ Betise 3682 Betisen 1713 Betlehem 65151 Beton 3049202 +Betone 50547 +Betonen 183379 Betongold 3251 Betonierer 3682 Betonklotz 34640 @@ -12047,6 +12104,8 @@ Bilds 148994 Bildschirm 2581394 Bildschirmabzug 1479 Bildschirmabzüge 783 +Bildschirmaufnahme 1351 +Bildschirmaufnahmen 681 Bildschirme 242786 Bildschirmen 196146 Bildschirmes 13441 @@ -12216,6 +12275,7 @@ Bindungswinkels 1526 Bingelkraut 17239 Bingo 139437 Binkel 5356 +Binkerl 1770 Binnendeutsch 3294 Binnenflexion 703 Binnenflüchtling 105 @@ -12262,6 +12322,7 @@ Biobauer 6247 Biobauern 16176 Biochemie 946613 Biochemiker 101741 +Biochemikerin 5176 Biodeutsche 473 Biodeutschen 511 Biodeutscher 109 @@ -12314,6 +12375,9 @@ Biologismus 79524 Biolumineszenz 13950 Bioläden 15170 Biom 10767 +Biomarker 31423 +Biomarkern 6491 +Biomarkers 3813 Biomasse 528791 Biomaterial 6137 Biomaterialien 15913 @@ -12638,6 +12702,7 @@ Blaufuchsfelle 263 Blaufuchsfellen 111 Blaufüchse 4285 Blaufüchsen 1700 +Blauhelm 18441 Blaukehlchen 34943 Blaukehlchens 3849 Blaukohl 2381 @@ -12896,8 +12961,11 @@ Blockflöten 66245 Blockhaus 237685 Blockhauses 37510 Blockhäuser 81741 +Blockierer 13708 +Blockiererin 109 Blockierung 397734 Blockierungen 97261 +Blockpartei 28709 Blocks 848464 Blocksatz 34113 Blocksatzes 3020 @@ -13151,6 +13219,7 @@ Bluttransfusionen 146418 Blutung 4893759 Blutungen 4817421 Blutuntersuchung 348827 +Blutvergiessen 99774 Blutvergießen 647649 Blutvergiftung 161544 Blutvergiftungen 13247 @@ -13488,6 +13557,7 @@ Bombenabwurf 27386 Bombenabwurfes 1061 Bombenabwurfs 3820 Bombenabwürfe 21725 +Bombenabwürfen 7661 Bombendrohung 14790 Bombenerfolg 11353 Bombenerfolge 672 @@ -13800,6 +13870,7 @@ Boykottes 4392 Boykotts 111327 Boys 356876 Bozen 1543236 +Bra 139157 Brache 455451 Brachen 85458 Brachet 38642 @@ -13847,6 +13918,7 @@ Brandeis 168749 Brandeisen 22978 Brandenburg 9483197 Brandenburger 1028374 +Brandenburgerin 2732 Brandenburgern 50548 Brandenburgers 29106 Brandes 1586368 @@ -13913,6 +13985,7 @@ Brasiliens 806069 Brasse 29344 Brassen 59027 Brat 74031 +Bratan 5185 Bratapfel 11078 Bratapfelkuchen 281 Bratapfels 471 @@ -14050,6 +14123,7 @@ Bravour 341993 Bravouren 3971 Bravur 5165 Bravuren 165 +Bre 118535 Break 223587 Breaks 18627 Brecheisen 89255 @@ -14308,6 +14382,8 @@ Briefzustellers 267 Brieföffner 50918 Brieföffnern 797 Brieföffners 2241 +Bries 821976 +Briese 973098 Brigade 3368789 Brigadeführer 73878 Brigadeführers 6663 @@ -14662,6 +14738,7 @@ Bruttoreaktionen 2748 Bruttosozialprodukt 399969 Bruttosozialproduktes 69217 Bruttosozialprodukts 212976 +Brutus 1312986 Brutzeit 223013 Brutzeiten 5861 Brägen 4676 @@ -14742,6 +14819,7 @@ Brüllern 947 Brüllers 657 Brüllwürfel 245 Brünette 132433 +Brünetter 1131 Brünfte 225 Brünhild 138208 Brünhilde 28948 @@ -15014,10 +15092,17 @@ Bumerangs 25334 Bummel 143231 Bummelant 3192 Bummelantentum 2404 +Bummelantin 151 Bummelbahn 2057 Bummelbahnen 147 Bummeln 55174 Bummels 4120 +Bummelzug 21326 +Bummelzuge 779 +Bummelzuges 819 +Bummelzugs 281 +Bummelzüge 2711 +Bummelzügen 1292 Bummler 50182 Bummlerin 627 Bummlerinnen 215 @@ -15335,6 +15420,7 @@ Butterpilz 3581 Butterröhrling 269 Butterschmalz 103281 Butterschnitte 5241 +Butterschnitten 4858 Buttersoße 2252 Buttersäure 501430 Buttersäuren 5511 @@ -15666,6 +15752,10 @@ Bühnenvorhangs 1609 Bühnenvorhänge 1773 Bühnenvorhängen 553 Bühnenwerk 98779 +Bühnenwerke 137081 +Bühnenwerken 68469 +Bühnenwerkes 19058 +Bühnenwerks 10406 Bündchen 87919 Bünde 721639 Bündel 4739059 @@ -15737,6 +15827,7 @@ Bürgerwehren 54174 Bürgschaft 2118643 Bürgschaften 539391 Büro 8610017 +Büroangestellter 20958 Bürogebäude 173631 Bürogebäuden 33857 Bürogebäudes 30922 @@ -15845,6 +15936,7 @@ Cadmiumsulfids 1714 Cadmiumtellurid 3186 Cadmiumverbindung 2761 Cadmiumverbindungen 7969 +Caduceus 44110 Caesar 3576484 Caesium 85923 Caesiums 10851 @@ -15960,6 +16052,8 @@ Cappuccino 184087 Cappuccinos 6666 Caprice 85719 Capricen 40060 +Caprihose 5613 +Caprihosen 2561 Caprinsäure 32037 Caprolactam 22145 Caprolactams 2393 @@ -16186,6 +16280,8 @@ Charisma 614649 Charismas 47717 Charismata 9914 Charismen 100180 +Charkiw 6384 +Charkow 409644 Charlotte 4496277 Charlotten 175847 Charlottens 101473 @@ -16480,6 +16576,8 @@ Chorgesang 274988 Chorgesanges 29104 Chorgesangs 20942 Chorgesänge 67666 +Chorhemd 28284 +Chorherr 242210 Chorizo 16149 Chorknabe 29813 Chorknaben 83138 @@ -16504,6 +16602,8 @@ Chose 47724 Chosen 27277 Chosrau 35382 Chrestomathie 235090 +Chrisam 33824 +Chrisma 38534 Christ 6970575 Christa 1872129 Christabend 41055 @@ -16780,6 +16880,7 @@ Cofaktoren 23823 Cofaktors 4596 Coffein 361638 Coffeins 46569 +Cognac 496785 Coiffeur 35169 Coiffeure 5285 Coiffeurin 193 @@ -16831,6 +16932,7 @@ Communitys 35487 Compi 9529 Compiler 304132 Compis 274 +Compromisse 27461 Computer 6994228 Computergehäuse 2445 Computerindustrie 36873 @@ -16854,6 +16956,8 @@ Concierge 102424 Concorde 142021 Conduite 70164 Confitüre 1354 +Conflicte 182683 +Connaisseur 11726 Connellit 921 Connellite 79 Constanze 492832 @@ -16869,6 +16973,7 @@ Contenance 78517 Content 832780 Contergan 59221 Contra 655397 +Contraste 157028 Conurbation 3071 Cookie 98458 Cookies 147620 @@ -16902,6 +17007,7 @@ Corsage 11473 Corsagen 1862 Cortison 272113 Cortisons 13357 +Costüme 78585 Cottage 297736 Cottbus 748224 Cottbuser 54356 @@ -17114,12 +17220,15 @@ Cörpers 36067 D 45643937 DACH 32623 DACHs 762 +DAG 241773 DAU 17617 DAX 327248 DB 2008743 +DBD 102586 DBVS 6821 DEST 7695 DFB 268581 +DFF 48278 DFÜ 29690 DG 407292 DGB 1596520 @@ -17214,6 +17323,9 @@ Dachzeilen 625 Dachziegel 292938 Dachziegeln 127644 Dachziegels 6491 +Dachüberstand 11661 +Dachüberstandes 1291 +Dachüberstände 5567 Dackel 204531 Dackeln 7877 Dackels 10518 @@ -17491,6 +17603,7 @@ Datenblätter 23994 Datenblättern 19433 Datenerhebung 648903 Datenfernübertragung 68467 +Datenjournalismus 4109 Datenkrake 1752 Datenkraken 2043 Datenleck 1629 @@ -17562,6 +17675,7 @@ Daueraufenthalten 453 Daueraufenthaltes 822 Daueraufenthalts 1519 Dauerauftrag 29672 +Dauerbrenner 58110 Dauerdialyse 3349 Dauerform 39504 Dauerformen 79020 @@ -17689,6 +17803,7 @@ Deckung 6416242 Deckungen 164835 Decorator 8409 Decorators 1576 +Deeplink 356 Deern 54927 Deerns 9439 Deeskalation 55947 @@ -17900,6 +18015,7 @@ Dendrochronologien 129 Dendrologie 29146 Denglisch 12415 Denguefieber 18917 +Denim 13630 Denis 1562908 Denise 672079 Denkanstoß 50746 @@ -18109,6 +18225,7 @@ Determinismen 9043 Determinismus 773861 Detlef 947471 Detlev 635178 +Detmold 912453 Detonation 336084 Detonationen 158713 Detonationsgeschwindigkeit 27047 @@ -18396,6 +18513,10 @@ Dickschädels 1191 Dickte 7972 Dicyanoargentat 109 Didaktik 1846757 +Didaktiker 82558 +Didaktikerin 738 +Didaktikerinnen 812 +Didaktikers 7399 Dieb 2008590 Diebe 1181644 Dieben 314973 @@ -18561,6 +18682,7 @@ Diglycerid 5111 Diglyceride 11563 Diglyceriden 6678 Diglycerids 805 +Dignitar 1950 Digraph 10957 Digraphen 13423 Dihydrat 32603 @@ -18667,6 +18789,7 @@ Dinukleotiden 823 Dinukleotids 424 Diode 273318 Dioden 239286 +Dioning 1319 Diopsid 205751 Dioptrie 25046 Diorama 54919 @@ -18918,6 +19041,7 @@ Dithionite 858 Dithioniten 241 Dithionits 747 Dithionsäure 9859 +Dithmarschen 254536 Dito 79718 Ditos 1029 Diuretika 227788 @@ -19024,6 +19148,7 @@ Doktorväter 4062 Doktorvätern 2463 Doktrin 1981130 Doktrinen 358082 +Doktrinär 42334 Doku 130476 Dokument 5902038 Dokumentarfilm 343451 @@ -19048,6 +19173,7 @@ Dolchstoß 123311 Dolchstoßes 6358 Dolchstoßlegende 74627 Dolchstoßlegenden 3949 +Dolchstoßlüge 1867 Dolchstöße 7078 Dolde 103805 Dolden 181679 @@ -19087,6 +19213,7 @@ Domestizierung 89285 Domestizierungen 673 Domeykit 4958 Domeykits 519 +Domherr 685886 Domina 204733 Dominanz 2278790 Dominanzen 22879 @@ -19112,6 +19239,7 @@ Domizil 432867 Domizile 19428 Domizilen 5060 Domizils 56989 +Domkapitel 1513717 Domkirche 520588 Domkirchen 35000 Dompfaff 28603 @@ -19242,6 +19370,7 @@ Doppelhauses 11749 Doppelhaushälfte 24683 Doppelhaushälften 5691 Doppelherrschaft 45436 +Doppelhochzeit 48257 Doppelhäuser 28861 Doppelhäusern 12526 Doppelidentität 7943 @@ -19324,6 +19453,7 @@ Dorfbewohner 715554 Dorfbewohnerin 5665 Dorfbewohnern 185940 Dorfbewohners 10417 +Dorfbild 23029 Dorfe 4362692 Dorfes 3685333 Dorfgastein 4704 @@ -19390,7 +19520,7 @@ Dosennahrung 2073 Dosenpfand 7220 Dosenpfandes 871 Dosenpfands 903 -Dosenöffner 29268 +Dosenöffner 29268 p Dosenöffnern 1245 Dosenöffners 1213 Dosierung 2201568 @@ -19607,6 +19737,7 @@ Drehungen 762947 Drehzahl 1183570 Drehzahlen 337283 Drehzahlmesser 18184 +Drehzahlmessern 573 Drehzahlmessers 1811 Drei 13911670 Dreibein 51306 @@ -19789,10 +19920,13 @@ Drogenhandel 150617 Drogenhandels 41275 Drogenhändler 52771 Drogenhändlerin 755 +Drogenhändlern 13163 Drogenhändlers 3021 Drogenkonsum 207184 Drogenkonsument 4798 Drogenkonsumenten 38841 +Drogenkonsumraum 1353 +Drogenkonsumräume 1377 Drogenkonsums 43730 Drogenkrieg 9737 Drogenkriege 1103 @@ -19894,8 +20028,12 @@ Druckmessung 147248 Druckmittel 376229 Druckmitteln 21807 Druckmittels 15369 +Druckraum 35440 +Druckraumes 4139 +Druckraums 980 Druckregler 66833 Druckreglers 8512 +Druckräume 4048 Drucks 1824565 Drucksache 2310974 Drucksachen 1377178 @@ -20019,6 +20157,7 @@ Dukatenfalters 110 Duktilität 53818 Duldung 1365768 Dult 24916 +Duma 407960 Dummbart 8192 Dummbatz 1062 Dummchen 38746 @@ -20100,6 +20239,7 @@ Dur 2551555 Duraluminium 12824 Duraluminiums 737 Durchblick 298460 +Durchblutung 867842 Durchbläuen 129 Durchbrechen 213472 Durchbringen 7382 @@ -20118,6 +20258,7 @@ Durcheinanders 55259 Durcheinanderwürfeln 1927 Durcheinanderwürfelns 97 Durchfahren 89414 +Durchfahrt 636893 Durchfall 1417923 Durchflusszytophotometrie 335 Durchflußzytophotometrie 457 @@ -20160,6 +20301,7 @@ Durchmischen 44635 Durchmischung 373173 Durchmischungen 5639 Durchnagen 1604 +Durchreiche 29121 Durchreise 484150 Durchreisen 12312 Durchreisens 331 @@ -20362,10 +20504,11 @@ Döllinger 483778 Dölsach 9914 Döneken 808 Dönekes 1201 -Döner 83081 Dönerfleisch 895 Dönern 861 Döners 1394 +Dönerteller 705 +Dörentrup 5617 Dörfchen 457174 Dörfchens 58976 Dörfer 5848920 @@ -20520,6 +20663,7 @@ Ecgonin 22556 Echo 3582845 Echokammer 5409 Echolalie 37178 +Echolot 65867 Echos 340573 Echse 105936 Echsen 161679 @@ -20819,6 +20963,8 @@ Ehrenworten 1127 Ehrenwortes 16935 Ehrenworts 9412 Ehrenzeichen 472281 +Ehrerbietung 814185 +Ehrerbietungen 6741 Ehrfurcht 3738450 Ehrgeiz 3556710 Ehrgeize 107702 @@ -20929,6 +21075,7 @@ Eierchen 25447 Eierdotter 5815 Eierfrucht 7437 Eierfrüchte 3480 +Eierhandgranate 4451 Eierklar 21632 Eierklars 3910 Eierkopf 12404 @@ -21040,6 +21187,7 @@ Eigenschaftsworts 3129 Eigenschaftswörter 78122 Eigenschaftswörtern 29514 Eigensinn 898661 +Eigenthume 207870 Eigentor 32983 Eigentore 5007 Eigentoren 821 @@ -21075,6 +21223,7 @@ Eihülle 94040 Eike 375494 Eiklar 75725 Eiklars 10599 +Eil 337891 Eiland 501998 Eilande 202281 Eilanden 82797 @@ -21160,6 +21309,7 @@ Einbürgern 6204 Einbürgerung 594386 Einbürgerungen 85444 Eindampfung 48006 +Eindeutigkeit 1059839 Eindringen 4330677 Eindringling 545791 Eindringlinge 564762 @@ -21335,6 +21485,7 @@ Einheitsgröße 6840 Einheitspartei 816745 Einheitspsychose 6004 Einheitsstaat 326510 +Einheitsvektor 62360 Einheitswurst 331 Einhorn 581303 Einhorne 3133 @@ -21346,7 +21497,6 @@ Einigkeit 2834365 Einigung 5953492 Einigungen 77585 Einjährige 91535 -Einjähriger 33608 Einkapselung 71664 Einkauf 1867083 Einkaufe 47364 @@ -21546,6 +21696,7 @@ Einschreibens 7884 Einschreibung 262956 Einschreiten 1041470 Einschreitens 110589 +Einschrift 4559 Einschränkung 8454582 Einschränkungen 4397011 Einschub 517974 @@ -21743,6 +21894,7 @@ Einwohner 11956385 Einwohnergemeinde 92889 Einwohnerin 22026 Einwohnerinnen 39353 +Einwohnermeldeamt 53372 Einwohnern 4436877 Einwohners 59125 Einwohnerzahl 1404699 @@ -21869,6 +22021,8 @@ Eisenarsenide 437 Eisenarseniden 109 Eisenbahn 9658598 Eisenbahnen 5705762 +Eisenbahnstation 189870 +Eisenbahnstationen 67041 Eisenbahnunterführung 5687 Eisenbahnwagen 459580 Eisenbahnüberführung 6020 @@ -22116,6 +22270,7 @@ Ektoparasit 5435 Ektoplasma 72572 Ektoplasmas 14987 Ektoplasmen 777 +Ekuador 125543 Ekzem 636925 Ekzeme 234942 Ekzemen 143466 @@ -22474,6 +22629,7 @@ Elternabends 5987 Elternhaus 1730575 Elternschaft 376105 Elternschaften 4979 +Elterntaxi 194 Elternteil 965337 Elternteile 263316 Elternteilen 89154 @@ -22576,11 +22732,13 @@ Empfangs 313778 Empfangschef 37264 Empfangsdame 96567 Empfangsdamen 6946 +Empfangsgebäude 86137 Empfangsgerät 38482 Empfangsgeräte 34392 Empfangsgeräten 13124 Empfangsgerätes 4615 Empfangsgeräts 2560 +Empfangshalle 114542 Empfangsherr 865 Empfangsherren 295 Empfangszimmer 111585 @@ -22621,6 +22779,7 @@ Emporstreben 39895 Empowerment 247907 Empörung 2940917 Empörungen 182416 +Empörungswelle 2341 Emsigkeit 141729 Emsigkeiten 233 Emsland 172054 @@ -23215,6 +23374,7 @@ Entwürfe 4947925 Entwürfen 1983891 Entzaubern 1957 Entzauberung 228142 +Entzauberungen 3952 Entzug 896358 Entzuge 2331 Entzuges 27793 @@ -23260,6 +23420,7 @@ Epen 873184 Epenthese 24987 Ephedrin 86132 Ephedrins 9886 +Epheu 223395 Epibiont 803 Epichlorhydrin 37438 Epichlorhydrins 3155 @@ -23468,6 +23629,7 @@ Erdbodens 370500 Erdböden 7116 Erde 57396910 Erden 9962469 +Erdenball 15643 Erdenbürger 70952 Erdenbürgerin 1917 Erdenbürgerinnen 277 @@ -23878,6 +24040,7 @@ Ernteertrags 9928 Ernteerträge 178787 Ernteerträgen 27416 Erntehelfer 29088 +Erntemenge 60069 Erntemonat 9247 Erntemonate 4023 Erntemonates 600 @@ -24243,6 +24406,7 @@ Eschenholze 1049 Eschenholzes 2035 Eschenhölzer 332 Escher 729203 +Escherich 282858 Eschscholtz 32693 Esel 3479595 Eselchen 38458 @@ -24710,8 +24874,12 @@ Exkanzler 9128 Exklave 75700 Exklaven 44597 Exklusivbericht 4015 +Exklusivberichte 1012 +Exklusivberichts 95 Exklusivinterview 11770 +Exklusivinterviews 1974 Exklusivmeldung 1140 +Exklusivmeldungen 679 Exkommunist 2334 Exkrement 19056 Exkremente 291623 @@ -24823,6 +24991,7 @@ Externist 4372 Externisten 10204 Externistin 657 Externistinnen 367 +Extertal 10950 Extinktion 324520 Extinktionen 38835 Extinktionskoeffizient 48574 @@ -25460,6 +25629,7 @@ Fanatikern 107660 Fanatikers 44622 Fanatismus 1383318 Fanblock 5920 +Fandango 35428 Fanfare 151705 Fanfaren 162609 Fanfaronade 2636 @@ -25818,6 +25988,7 @@ Federzeichnungen 270026 Fee 1413806 Feed 124380 Feedback 1464927 +Feedbacks 119419 Feeds 49697 Feeling 106561 Feen 547729 @@ -25870,6 +26041,7 @@ Fehlerfreiheit 45986 Fehlerhaftigkeit 244589 Fehlerlosigkeit 25447 Fehlermeldung 184232 +Fehlermeldungen 95315 Fehlern 3144442 Fehlernährung 67878 Fehlernährungen 1674 @@ -25969,6 +26141,8 @@ Feilbietungen 13411 Feile 426581 Feilen 282904 Feim 4826 +Feime 9857 +Feimen 15996 Feinbäcker 2630 Feinbäckerin 127 Feinbäckern 299 @@ -26096,7 +26270,9 @@ Feldsalat 67145 Feldsalate 195 Feldsalates 362 Feldsalats 397 +Feldscher 78227 Feldschere 11163 +Feldscherers 2390 Feldschers 8022 Feldschlacht 213689 Feldschwirl 4000 @@ -26493,6 +26669,8 @@ Festkörperspeichern 195 Festland 1924507 Festlegung 5682326 Festlegungen 905298 +Festlichkeit 302454 +Festlichkeiten 787145 Festmahl 445186 Festmahle 63422 Festmahles 13610 @@ -27232,8 +27410,12 @@ Fitz 302622 Fitzel 4497 Fitzelchen 20474 Fixer 46272 +Fixerbesteck 915 +Fixerin 2707 Fixern 6245 Fixers 2055 +Fixerstube 529 +Fixerstuben 2033 Fixie 6835 Fixierbad 40232 Fixierbads 179 @@ -28110,6 +28292,7 @@ Fokussen 1816 Folge 81439665 Folgeerkrankung 10847 Folgeerkrankungen 78635 +Folgejahr 171297 Folgemonat 15888 Folgemonate 3315 Folgemonats 19278 @@ -28128,6 +28311,7 @@ Foliensätze 2429 Foliensätzen 705 Folklore 744414 Folkloren 861 +Folkmar 24589 Followen 150 Follower 83760 Followerin 247 @@ -28402,6 +28586,7 @@ Frachtschiffe 89850 Frachtschiffen 40983 Frachtschiffes 9661 Frachtschiffs 3303 +Frachtsegler 5098 Frachtzug 2939 Frachtzuges 334 Frachtzüge 3273 @@ -28724,6 +28909,8 @@ Freilaufes 1657 Freilaufs 2401 Freileitung 76008 Freileitungen 158073 +Freilichtbühne 57070 +Freilichtbühnen 13463 Freilichtmuseen 39904 Freilichtmuseum 163135 Freilichtmuseums 37663 @@ -28826,6 +29013,7 @@ Fremdbestandteils 91 Fremdbestimmung 278106 Fremdbestimmungen 8101 Fremde 8666294 +Fremdeln 12176 Fremden 9037331 Fremdenfeindlichkeit 279590 Fremdenfeindlichkeiten 229 @@ -29154,6 +29342,7 @@ Frostschutzmittel 28715 Frostwinter 1856 Frostwinters 235 Frottee 19742 +Frotteur 2030 Frotzelei 7950 Frucht 9960877 Fruchtbarkeit 3330345 @@ -29166,6 +29355,7 @@ Fruchtfleisches 36253 Fruchtfleischs 1310 Fruchtfliege 18495 Fruchtfliegen 17352 +Fruchtfolge 359651 Fruchtgenuss 13331 Fruchtknoten 695267 Fruchtknotens 166644 @@ -29203,6 +29393,7 @@ Frächterei 636 Fräcke 22279 Fräcken 17821 Fränkel 569441 +Fränkin 6347 Fränkisch 60757 Fräser 212750 Fräsern 19280 @@ -29396,6 +29587,10 @@ Fundamentalismus 409631 Fundamentalist 21385 Fundamentalisten 185861 Fundamentalsatz 148399 +Fundamentalsatze 12065 +Fundamentalsatzes 33375 +Fundamentalsätze 56828 +Fundamentalsätzen 15903 Fundamente 1684345 Fundamenten 533878 Fundamentes 136756 @@ -29858,7 +30053,10 @@ Förderbandes 17531 Förderbands 1848 Förderbänder 65900 Förderbändern 28487 +Fördergeld 2595 Fördergelder 48065 +Fördergeldern 17185 +Fördergeldes 137 Förderland 3279 Förderlandes 529 Förderländer 18333 @@ -30575,6 +30773,8 @@ Gastmahls 71607 Gastmähler 76244 Gastmählern 79897 Gastritis 513971 +Gastrolle 44115 +Gastrollen 66162 Gastronomie 423091 Gasts 31772 Gastschüler 7506 @@ -31170,6 +31370,7 @@ Gegackers 565 Gegaffe 901 Gegebenheit 839512 Gegebenheiten 4895834 +Gegenangriff 353905 Gegenanzeige 59036 Gegenanzeigen 113591 Gegenargument 213540 @@ -31217,6 +31418,8 @@ Gegenpart 140627 Gegenpol 615909 Gegenpäpste 20806 Gegenpäpsten 6108 +Gegenreaktion 124789 +Gegenreaktionen 55776 Gegenreformation 998407 Gegenrichtung 209855 Gegenrichtungen 4445 @@ -31255,6 +31458,7 @@ Gegenteile 194316 Gegenteilen 7083 Gegenteiles 14237 Gegenteils 282047 +Gegentheile 681000 Gegenwart 40391811 Gegenwartsbezogenheit 17388 Gegenwartsform 24917 @@ -31319,6 +31523,7 @@ Geheimdienst 586559 Geheimdienste 341175 Geheimdiensten 108696 Geheimdienstes 237586 +Geheimer 1582536 Geheimfavorit 919 Geheimfavoriten 505 Geheimgang 59839 @@ -31409,6 +31614,7 @@ Gehsteige 42447 Gehsteigen 30938 Gehsteiges 5444 Gehsteigs 9282 +Gehstock 86234 Gehweg 244306 Gehwege 81003 Gehwegen 46780 @@ -31770,6 +31976,7 @@ Geleitzüge 32928 Geleitzügen 12216 Gelen 149216 Gelenk 2319293 +Gelenkbus 3864 Gelenke 2826747 Gelenken 1246048 Gelenkes 655034 @@ -32051,6 +32258,7 @@ Genetikerin 4502 Genetikerinnen 409 Genetikern 16875 Genetikers 8135 +Genette 166406 Genf 6003836 Genfer 2472535 Genfern 22112 @@ -32221,6 +32429,7 @@ Gereiße 807 Gerenne 23037 Gerersdorf 4197 Geretsberg 2465 +Gergen 43506 Gerhard 12244922 Gerhardt 1181215 Gericht 23027405 @@ -32264,6 +32473,7 @@ Gerichtssaales 14739 Gerichtssaals 19719 Gerichtsschöffe 4739 Gerichtsschöffen 15894 +Gerichtsstab 12421 Gerichtssäle 18907 Gerichtssälen 29248 Gerichtsurkunde 26151 @@ -32483,6 +32693,11 @@ Gesamtverband 195108 Gesamtverbands 6930 Gesamtverbände 4617 Gesamtverbänden 4719 +Gesamtwerk 829123 +Gesamtwerke 27014 +Gesamtwerken 5098 +Gesamtwerkes 261011 +Gesamtwerks 142153 Gesamtzahl 2919821 Gesamtzahlen 98170 Gesamtzusammenhang 480806 @@ -32549,6 +32764,9 @@ Geschichtsquellen 573900 Geschichtsschreiber 1239941 Geschichtsschreibung 3097055 Geschichtswissenschaft 2625137 +Geschichtswissenschaftler 33597 +Geschichtswissenschaftlern 7973 +Geschichtswissenschaftlers 2480 Geschick 5358601 Geschicke 1523844 Geschicken 174677 @@ -32669,6 +32887,7 @@ Geschwindigkeitsmesser 59044 Geschwindigkeitsmessern 6393 Geschwindigkeitsmessers 6287 Geschwindigkeitsregelanlage 819 +Geschwirr 18981 Geschwist 1143 Geschwister 4174817 Geschwisterchen 36106 @@ -32873,6 +33092,7 @@ Gesichtspunkts 45346 Gesichtsschleier 17551 Gesichtsverletzung 5009 Gesichtsverletzungen 16034 +Gesichtsverlust 79428 Gesichtszug 11454 Gesichtszuge 4105 Gesichtszuges 365 @@ -33470,6 +33690,7 @@ Gilbert 1642235 Gilbhart 1527 Gilde 784439 Gilden 539378 +Gilgamesch 222149 Gimpel 142128 Gimpeln 8374 Gimpels 7690 @@ -33482,6 +33703,7 @@ Ginkgos 2062 Ginko 8245 Ginkos 171 Ginster 193261 +Ginsterkatze 5815 Ginstern 2703 Ginsters 13810 Gipfel 7186753 @@ -33697,10 +33919,12 @@ Glaubensgemeinschaft 283889 Glaubenssatz 223412 Glaubensschwester 2972 Glaubensschwestern 3540 +Glauber 66627 Glaubersalz 438154 Glaubhaftigkeit 99724 Glaubwürdigkeit 2750700 Glaubwürdigkeiten 4455 +Glaukom 476701 Glaukophan 46870 Glazial 66450 Glazialzeit 23746 @@ -34092,8 +34316,12 @@ Glühweins 2804 Glühwendel 5589 Glühwendeln 933 Glühwurm 16718 +Glühwurmes 247 +Glühwurms 2643 Glühwürmchen 122515 Glühwürmchens 3338 +Glühwürmer 8710 +Glühwürmern 1909 Gmund 38789 Gmunden 358693 Gnade 15266502 @@ -34323,6 +34551,7 @@ Goswin 129236 Gote 88439 Goten 960738 Gotenburg 32871 +Goth 230195 Gotha 3693795 Gothenburg 127805 Gotik 1029410 @@ -34507,6 +34736,7 @@ Grammatikers 99532 Grammatikfehler 15880 Grammatikfehlern 3054 Grammatikfehlers 211 +Grammatur 1889 Gramme 308039 Grammen 500173 Grammofon 13656 @@ -34618,6 +34848,7 @@ Graubrotes 367 Graubrots 221 Graubruststrandläufer 411 Graubünden 1068188 +Grauchen 10642 Grauelben 1027 Grauen 2401228 Grauens 358319 @@ -35035,6 +35266,7 @@ Großraming 12050 Großraum 361043 Großraumbüro 63957 Großrazzia 6679 +Großrazzien 2245 Großrechner 83662 Großriedenthal 467 Großrußbach 2919 @@ -35101,6 +35333,7 @@ Gruft 1119694 Gruften 10591 Grufti 10661 Gruftie 6557 +Grufties 11717 Gruftis 6901 Grumach 51707 Grumbeere 983 @@ -35110,6 +35343,8 @@ Grummets 6174 Grund 125096670 Grundabsicht 25094 Grundart 21393 +Grundausbildung 348454 +Grundausbildungen 3435 Grundausstattung 208013 Grundausstattungen 3285 Grundbedeutung 466532 @@ -35286,6 +35521,7 @@ Gräberin 487 Gräberinnen 153 Gräbern 2383977 Gräbers 4392 +Gräfenberg 90190 Gräfin 6149705 Gräfinnen 92207 Grän 102815 @@ -35735,6 +35971,7 @@ Göttergatte 15105 Göttergatten 11526 Göttergattin 2201 Göttergattinnen 119 +Götterlied 3361 Göttern 4693940 Götterspeise 36172 Götterspeisen 1864 @@ -36025,6 +36262,8 @@ Haftbefehlen 11969 Haftbefehles 4581 Haftbefehls 127596 Haftentschädigung 19286 +Haftnotiz 3924 +Haftnotizen 7710 Haftpflicht 802566 Haftpflichten 2627 Haftpflichtversicherung 428520 @@ -36602,6 +36841,7 @@ Handrührgerät 23809 Handrührgeräte 460 Handrührgerätes 4628 Handrührgeräts 16064 +Handschar 12870 Handschelle 28123 Handschellen 533299 Handschlag 453906 @@ -36621,6 +36861,7 @@ Handschuhfächer 392 Handschuhfächern 395 Handschuhs 35607 Handseife 2500 +Handspeiche 2143 Handspiel 7700 Handspiele 901 Handspielen 335 @@ -36825,6 +37066,7 @@ Hartloten 1858 Hartlots 337 Hartlöten 27373 Hartlötens 1043 +Hartmann 5987545 Hartmetall 109848 Hartmetalle 38697 Hartmetallen 25343 @@ -36852,6 +37094,10 @@ Hasardeurs 2987 Hasch 69227 Haschee 6178 Haschees 553 +Hascher 35801 +Hascherin 625 +Haschern 3969 +Haschers 483 Haschisch 285320 Haschischöl 2054 Hase 1578413 @@ -37133,6 +37379,7 @@ Hauptsturmführers 7733 Hauptstädte 435806 Hauptstück 895245 Hauptstücke 347280 +Hauptstücken 93516 Hauptstückes 87187 Hauptstücks 54885 Hauptsätze 344161 @@ -37285,6 +37532,7 @@ Hausfriedensbrüche 1301 Hausfriedensbrüchen 477 Hausgast 15801 Hausgott 19381 +Hausgotte 771 Hausgottes 2594 Hausgotts 407 Hausgrille 5133 @@ -37339,6 +37587,7 @@ Hauskatze 110609 Hauskatzen 44993 Hauskirchen 14771 Hausknecht 240204 +Hauslamm 215 Hauslehrerin 17433 Hausleiten 6011 Hausmann 969664 @@ -37605,6 +37854,7 @@ Heftpflasters 10497 Hefts 83092 Heftzwecke 3242 Heftzwecken 8314 +Hegel 10426989 Hegelsch 1986 Hegemonie 1227642 Hegen 172694 @@ -37897,6 +38147,7 @@ Held 7308833 Helden 13412656 Heldenberg 9895 Heldenmut 214127 +Heldensage 521332 Heldentat 211187 Heldentaten 429914 Heldentenor 39739 @@ -38060,6 +38311,8 @@ Henkels 98441 Henker 1546498 Henkern 97566 Henkers 214400 +Henkersmahl 4777 +Henkersmahlzeit 30683 Henna 90055 Henne 1158187 Hennegau 294051 @@ -38207,6 +38460,8 @@ Herkules 1317438 Herkunft 16432921 Herkunftsbezeichnung 87008 Herkunftsbezeichnungen 43143 +Herkunftsdeutsche 295 +Herkunftsdeutschen 435 Herkunftsland 391295 Herkunftslande 3648 Herkunftslandes 80863 @@ -38369,6 +38624,7 @@ Herzensgüte 270696 Herzenslust 340060 Herzes 8940 Herzfrequenz 602262 +Herzhaftigkeit 73250 Herzinfarkt 753286 Herzinfarkte 47831 Herzinfarkten 26371 @@ -38441,6 +38697,7 @@ Hesperien 41485 Hesse 3230705 Hessemann 277 Hessen 10290525 +Hessin 12482 Hete 44760 Heten 7375 Heteroaromat 239 @@ -38478,6 +38735,7 @@ Hetzers 11695 Hetzjagd 125211 Hetzjagden 16829 Heu 2924023 +Heuaufguss 4344 Heuballen 36637 Heuchelei 1282782 Heucheleien 19848 @@ -38591,6 +38849,7 @@ Hickhack 24555 Hickhacks 1351 Hicksen 2605 Hidschab 7228 +Hidschabs 763 Hidschra 25110 Hieb 1109011 Hiebe 612688 @@ -38612,6 +38871,7 @@ Highlight 194754 Highlights 231355 Hightech 161084 Hijab 7556 +Hijabs 445 Hilbertraum 24715 Hilbertraumes 4006 Hilbertraums 2121 @@ -38983,6 +39243,7 @@ Historikerin 165282 Historikerinnen 55305 Historikern 1201333 Historikers 1138710 +Historikerstreit 103010 Historiolinguistik 2989 Historismen 6416 Historismus 1094292 @@ -39010,6 +39271,8 @@ Hitzeschilder 427 Hitzeschildern 127 Hitzeschildes 1027 Hitzeschilds 321 +Hitzewallung 6910 +Hitzewallungen 68622 Hitzewelle 69283 Hitzewellen 32030 Hitzfeld 17012 @@ -39498,6 +39761,7 @@ Holzhammers 3921 Holzhauer 192267 Holzhaus 165936 Holzhausen 271754 +Holzhauser 26755 Holzhauses 20565 Holzhämmer 3059 Holzhämmern 4617 @@ -39542,6 +39806,7 @@ Holzschnittes 99040 Holzschnitts 65754 Holzschraube 13188 Holzschrauben 54169 +Holzschuppen 70148 Holzschutz 71902 Holzschutzes 10741 Holzschutzmittel 59337 @@ -39602,6 +39867,7 @@ Homonymen 35679 Homonyms 5169 Homophobie 46066 Homos 21459 +Homosexualer 272 Homosexualität 1059927 Homosexualitäten 5808 Homosexuelle 294086 @@ -40275,6 +40541,7 @@ Häme 135363 Hämen 1083 Hämerythrin 3268 Hämerythrins 323 +Hämling 3779 Hämmchen 571 Hämmel 26188 Hämmer 366693 @@ -41071,6 +41338,7 @@ Imsterberg 1710 Inaktivieren 16094 Inaktivierung 416718 Inaktivierungen 4265 +Inanspruchnahme 3000517 Inauguration 92129 Inaugurationen 1755 Inbegriff 2643778 @@ -41173,12 +41441,12 @@ Individuen 18255575 Individuum 12039068 Individuums 5680642 Indiz 1928130 -Indize 1214 Indizes 1077503 Indizien 1421537 Indizienbeweis 52175 Indizierung 168949 Indoeuropäer 26309 +Indoeuropäisch 4414 Indogermanisch 32795 Indogermanistik 65520 Indoiranisch 2084 @@ -41543,6 +41811,8 @@ Innervillgraten 5673 Innichen 107643 Innovation 2764968 Innovationen 2275524 +Innovator 66310 +Innovatorin 935 Innozenz 768866 Innsbruck 6100772 Innsbrucker 799596 @@ -41633,6 +41903,7 @@ Installationen 408633 Installer 21200 Instandhaltung 1326835 Instandhaltungen 30127 +Instandsetzen 22352 Instandsetzung 735683 Instantkaffee 12863 Instanz 7669688 @@ -41832,6 +42103,7 @@ Interregnums 120928 Interrogativpronomen 26566 Interrogativpronomens 3217 Interrogativpronomina 8639 +Intersektionalität 48078 Intersexualität 81130 Intersubjektivität 320012 Intervall 2618844 @@ -41908,6 +42180,7 @@ Investoren 1907529 Investors 209524 Involution 682186 Involutionen 104284 +Inwohner 160373 Inzenhof 1009 Inzest 298057 Inzestes 12340 @@ -42523,6 +42796,8 @@ Jesuiten 4509825 Jesum 1035181 Jesus 19223313 Jet 563694 +Jetlag 54005 +Jetlags 3453 Jeton 20656 Jetons 48354 Jets 165637 @@ -42985,7 +43260,9 @@ KMU 724712 KP 1176466 KPz 6242 KS 588272 +KSG 18105 KT 270925 +KVO 47865 KW 871257 KZ 2238620 Kaaba 115440 @@ -43018,6 +43295,8 @@ Kabeljaus 22999 Kabelmesser 1018 Kabeln 338914 Kabels 279482 +Kabelsalat 8077 +Kabelsalats 203 Kabelschneider 408 Kabine 1244400 Kabinen 303689 @@ -43072,6 +43351,7 @@ Kadis 32267 Kadmierung 404 Kadmium 245281 Kadmiums 23208 +Kaduzeus 229 Kaempfer 61322 Kaff 201784 Kaffe 603383 @@ -43105,6 +43385,7 @@ Kaffeemühle 60680 Kaffeemühlen 18564 Kaffeepad 881 Kaffeepause 70289 +Kaffeepausen 12485 Kaffees 405870 Kaffeesatz 55922 Kaffeesatze 1911 @@ -43421,6 +43702,7 @@ Kalküle 105327 Kalküls 185629 Kalle 540684 Kallen 47899 +Kalletal 4123 Kallham 4658 Kalligraphie 182559 Kalmar 120568 @@ -43724,6 +44006,7 @@ Kanonier 134050 Kanoniere 154637 Kanonieren 43448 Kanoniers 13452 +Kanoniker 793576 Kanonizität 26999 Kanons 669401 Kant 15776389 @@ -43869,6 +44152,7 @@ Kappes 55016 Kappsäge 1609 Kaprice 14823 Kapricen 13056 +Kapriole 9562 Kaprize 5940 Kaprizen 10100 Kaprun 56632 @@ -44177,6 +44461,7 @@ Karwochen 3603 Karyatide 37987 Karyatiden 127354 Karyopse 9408 +Karzer 87727 Karzinom 1257572 Karzinome 552069 Karzinomen 280906 @@ -44446,7 +44731,6 @@ Katzentüren 174 Katzenwelpe 524 Katzenwelpen 7400 Katzenzunge 3997 -Kauderwelsch 167503 Kauderwelschs 1681 Kauf 8824665 Kaufbeuren 220392 @@ -44536,6 +44820,7 @@ Kaysers 309272 Kazike 36971 Kea 56744 Kebab 36089 +Kebap 5979 Kebse 21516 Kebsehe 3684 Kebsen 6663 @@ -44692,6 +44977,7 @@ Kelvins 11643 Kemalismus 24992 Kemenate 105230 Kemeten 2198 +Kempen 426074 Kempf 297980 Kempten 971763 Kenia 563629 @@ -44700,6 +44986,7 @@ Kenianerin 1963 Kenianerinnen 766 Kennelbach 9667 Kenner 4266033 +Kennerin 58532 Kenners 216351 Kennerschaft 135941 Kenning 71116 @@ -44808,6 +45095,7 @@ Kerngehäuse 53521 Kerngehäusen 1715 Kerngehäuses 1909 Kernikterus 26542 +Kerninflation 8339 Kernisomer 171 Kernisomere 551 Kernisomeren 569 @@ -45159,6 +45447,7 @@ Kimberlit 21627 Kimberlite 10884 Kimberliten 6471 Kimberlits 1891 +Kimchi 70702 Kimm 82414 Kimme 58530 p Kimmen 8293 @@ -45654,6 +45943,8 @@ Klassenbewusstsein 39597 Klassenbewusstseins 9195 Klassenbewußtsein 286665 Klassenbewußtseins 85262 +Klassenbuch 47343 +Klassenbucheintrag 1099 Klassenerhalt 10249 Klassenkamerad 43880 Klassenkameraden 308337 @@ -45772,6 +46063,9 @@ Klebestifte 2495 Klebestiftes 105 Klebestifts 107 Klebestreifen 74462 +Klebezettel 34495 +Klebezetteln 6662 +Klebezettels 765 Klebrand 460 Klebrande 115 Klebränder 209 @@ -46013,12 +46307,12 @@ Klimaaktivisten 523 Klimaaktivistin 189 Klimaanlage 432164 Klimaanlagen 187240 -Klimae 239 Klimaerwärmung 49388 Klimaerwärmungen 309 Klimaforschung 53031 Klimaforschungen 513 Klimahysterie 747 +Klimakanzlerin 817 Klimakatastrophe 43190 Klimakiller 4842 Klimakompensation 341 @@ -46026,7 +46320,12 @@ Klimakrise 8288 Klimaleugner 1147 Klimaneutralität 4831 Klimanotstand 364 +Klimapolitik 92121 Klimas 1461637 +Klimaschutz 277329 +Klimaschutzgesetz 2177 +Klimaschützer 2832 +Klimaschützerin 110 Klimata 38568 Klimate 266934 Klimatisierung 113819 @@ -46035,6 +46334,7 @@ Klimaveränderung 52465 Klimaveränderungen 75956 Klimawandel 422233 Klimawandels 155566 +Klimaziel 2229 Klimbim 29161 Klimmzug 25305 Klinge 2239737 @@ -46101,6 +46401,7 @@ Klonen 191856 Kloni 9902 Klons 28728 Klonus 29769 +Klopa 687 Klopapier 74587 Klopapierrolle 6590 Klopfer 158132 @@ -46140,6 +46441,7 @@ Klugscheißern 2243 p Klugscheißers 399 p Klumpen 1245095 Klumpens 27300 +Klunker 45897 Klunte 702 Kluppe 51748 Kläffen 40094 @@ -46304,6 +46606,7 @@ Kniffs 5299 Knifte 1611 Kniften 286 Knigge 363516 +Knilch 15036 Knipp 26750 Knipser 16979 Knipserin 259 @@ -46328,6 +46631,7 @@ Knoblauchbrote 276 Knoblauchbutter 5079 Knoblauche 628 Knoblauches 771 +Knoblauchkröte 7940 Knoblauchpresse 8710 Knoblauchpressen 299 Knoblauchpulver 13878 @@ -46533,6 +46837,8 @@ Koblach 8843 Koblenz 2881521 Kobold 427865 Kobolde 220522 +Kobolden 64190 +Koboldes 2969 Koboldmaki 3755 Koboldmakis 3091 Kobolds 27365 @@ -46658,6 +46964,8 @@ Kohlenhydratsynthese 3612 Kohlenhydratsynthesen 115 Kohlenmonoxid 175318 Kohlenmonoxids 6799 +Kohlenpott 15395 +Kohlenpotts 1291 Kohlenstoff 4235155 Kohlenstoffatom 293761 Kohlenstoffatome 294487 @@ -47777,6 +48085,7 @@ Koproduzent 7632 Koproduzenten 13207 Koproduzentin 789 Koproduzentinnen 134 +Kopräsenz 36592 Kopte 22837 Kopten 198562 Koptin 2803 @@ -48237,6 +48546,7 @@ Krankheitsbilder 793084 Krankheitsbildes 512610 Krankheitsbilds 9804 Krankheitsdauer 342842 +Krankheitseinsicht 91168 Krankheitserreger 709262 Krankheitserregern 200666 Krankheitserregers 55151 @@ -48290,6 +48600,7 @@ Krautes 121851 Krautrock 5927 Krautrocks 123 Krauts 53420 +Krautsalat 25221 Krautwickel 5612 Krawall 112936 Krawalle 86633 @@ -48876,6 +49187,7 @@ Kronprinzessin 240869 Kronrat 92122 Kronsbeere 2646 Kronsbeeren 5073 +Kronstadt 543912 Kronstorf 8891 Krontaube 2609 Krontauben 2377 @@ -48907,6 +49219,9 @@ Krummhölzer 4518 Krummhölzern 1559 Krummlauf 379 Krummnußbaum 2677 +Krummsäbel 31984 +Krummsäbeln 4483 +Krummsäbels 2349 Krupp 1486000 Krupps 85860 Kruste 1079290 @@ -49221,6 +49536,7 @@ Kulturimperialismus 26520 Kulturkampf 467916 Kulturkampfes 193957 Kulturkampfs 35119 +Kulturkrampf 135 Kulturkreis 621055 Kulturkreise 226199 Kulturkreisen 192767 @@ -49762,6 +50078,7 @@ Kuscheltiere 32842 Kuscheltieren 9517 Kuscheltieres 709 Kuscheltiers 893 +Kuseng 509 Kusine 232051 Kusinen 43277 Kuss 3448026 @@ -49787,6 +50104,8 @@ Kuverts 67610 Kuvertüre 59575 Kuvertüren 2697 Kuwait 328205 +Kuwaiter 3439 +Kuwaiterin 303 Kuß 1643434 Kwajalein 3989 Kwalm 92 @@ -49962,6 +50281,7 @@ Kölnischwasser 12391 Kölnischwassers 401 Kölsch 97405 Kölschrock 154 +Köm 57838 König 84917344 Könige 17637096 Königen 2551327 @@ -50377,6 +50697,7 @@ Labormassstab 925 Labormaus 5382 Labormaßstab 22430 Laborratte 10141 +Laborratten 12120 Labors 403954 Laborärzte 3287 Laborärzten 1086 @@ -50444,6 +50765,7 @@ Ladegeräten 6603 Ladegerätes 3011 Ladegeräts 1605 Ladekabel 19579 +Ladekabeln 425 Ladekabels 553 Ladelehre 433 Ladelehren 221 @@ -50511,7 +50833,6 @@ Lagerbier 49324 Lagerbiere 8673 Lagerbieres 2596 Lagerbiers 1620 -Lagere 5442 Lagerfeuer 462304 Lagerfeuern 36579 Lagerfeuers 41680 @@ -50610,6 +50931,8 @@ Lakritze 30917 Lakritzen 15250 Lakritzes 244 Laktose 231733 +Laktoseintoleranz 30965 +Laktoseintoleranzen 125 Lallname 926 Lallnamen 3155 Lallwort 4857 @@ -50722,6 +51045,7 @@ Landesministerium 18581 Landesministeriums 9019 Landesministern 6679 Landesministers 5543 +Landespolizei 119543 Landesrat 224109 Landesregierung 2885585 Landesregierungen 646317 @@ -50900,6 +51224,7 @@ Langenegg 8269 Langenfeld 116671 Langenfelds 1353 Langenrohr 2647 +Langensee 34752 Langenstein 144899 Langenwang 13287 Langenzersdorf 15128 @@ -50911,6 +51236,8 @@ Langhantel 23135 Langkampfen 6053 Langlebigkeit 206793 Langlieger 1651 +Langläufer 17333 +Langläuferin 595 Langmut 161171 Langmütigkeit 4063 Langobarde 18520 @@ -51186,6 +51513,7 @@ Laufes 498784 Lauffeuer 189935 Lauffeuern 461 Lauffeuers 1424 +Lauflänge 49395 Laufmasche 13619 Laufmaschen 10223 Laufpass 54106 @@ -51216,6 +51544,8 @@ Laufzeiten 341057 Laufzeitumgebung 26764 Lauge 1943330 Laugen 605155 +Laugenbrezel 3869 +Laugengebäck 3323 Laugensalz 38369 Laugensalze 21420 Laugensalzen 7483 @@ -51580,6 +51910,7 @@ Lederhandschuhe 48913 Lederhandschuhen 16981 Lederhandschuhes 215 Lederhandschuhs 653 +Lederhaut 334446 Lederhose 106987 Lederhosen 88190 Lederjacke 300891 @@ -51593,6 +51924,7 @@ Ledermantels 3657 Ledermäntel 6784 Ledermänteln 7535 Ledern 26899 +Lederriemen 222952 Leders 230432 Lederschlaufe 8864 Lederschlaufen 6633 @@ -51780,6 +52112,7 @@ Leibchen 123732 Leibchens 8274 Leibe 4908461 Leibeigener 83359 +Leibeigenschaft 1017118 Leiben 33486 Leiber 1133720 Leibern 385327 @@ -52014,6 +52347,8 @@ Leitmotivs 43605 Leitpfosten 6041 Leitplanke 49109 Leitplanken 69084 +Leitstelle 229789 +Leitstellen 36493 Leitton 76538 Leittones 4602 Leittons 9285 @@ -52048,6 +52383,7 @@ Lektor 707515 Lektüre 8003574 Lektüren 202412 Lemberg 1886105 +Lemgo 362584 Lemma 601718 Lemmaliste 3443 Lemmalisten 469 @@ -52097,6 +52433,10 @@ Lenkstange 78410 Lenkstangen 18631 Lenkung 1316696 Lenkungen 14046 +Lenkungsausschuss 57968 +Lenkungsausschusses 23877 +Lenkungsausschuß 31035 +Lenkungsausschüsse 3644 Lenkwaffe 11360 Lenkwaffenkreuzer 1064 Lenkwaffenzerstörer 2697 @@ -52128,6 +52468,7 @@ Leopardinnen 482 Leopold 7562774 Leopoldschlag 5620 Leopoldsdorf 28333 +Leopoldshöhe 13244 Lepidolith 44947 Lepidolithe 2671 Lepidolithen 1075 @@ -52222,6 +52563,7 @@ Lesungen 886226 Letalität 390718 Lethargie 415908 Lethe 142831 +Letscho 3358 Lette 177889 Letten 987719 Letter 403029 @@ -52348,7 +52690,11 @@ Lexika 549651 Lexiken 9662 Lexikograf 1830 Lexikografen 5232 +Lexikografie 10092 +Lexikografin 195 +Lexikograph 57225 Lexikographie 433501 +Lexikographin 655 Lexikologie 128049 Lexikon 5132022 Lexikons 399114 @@ -53120,6 +53466,7 @@ Logikgattern 1209 Logikgatters 269 Logis 426576 Logistik 1521440 +Logo 575390 Logopäde 9350 Logopädie 76101 Lohe 382664 @@ -53215,6 +53562,7 @@ Lorbeerschneeball 95 Lorchel 10562 Lorcheln 12512 Lord 7710687 +Lorde 14939 Lordschaft 154390 Lore 640726 Loren 182415 @@ -53365,6 +53713,7 @@ Lufthafen 3858 Lufthafens 777 Lufthauch 154133 Luftherrschaft 34103 +Lufthoheit 34178 Lufthäfen 3093 Lufthülle 105439 Lufthüllen 2571 @@ -53385,6 +53734,7 @@ Luftloches 2311 Luftlochs 826 Luftlöcher 113489 Luftlöchern 45547 +Luftmatratze 55713 Luftmine 12796 Luftminen 13426 Luftnummer 6913 @@ -53465,6 +53815,7 @@ Luftzutritt 514054 Luftzutritts 22467 Luftzüge 27630 Luftüberlegenheit 38749 +Lug 330856 Luis 1344306 Luisa 624704 Luise 3647285 @@ -53899,6 +54250,7 @@ Lüfterflügels 251 Lüftern 13648 Lüfters 14634 Lüftung 785584 +Lügde 24106 Lüge 5008938 Lügen 3042613 Lügendetektor 30090 @@ -53954,12 +54306,14 @@ Maare 75924 Maaren 138784 Maares 15149 Maars 11552 +Maas 1854262 Maastricht 923323 Maat 175539 Maate 17003 Maaten 16026 Maates 1434 Maats 10894 +Maaß 1220368 Macao 159502 Macaron 3541 Macchie 37281 @@ -54076,6 +54430,7 @@ Maffia 19427 Maffias 405 Mafia 579659 Mafias 3536 +Mafiatorte 392 Mafiosi 57813 Mafioso 43505 Mafiosos 1125 @@ -55277,6 +55632,8 @@ Mastdarmakrobat 45 p Maste 126282 Masten 689686 Master 1475903 +Masterarbeit 406221 +Masterarbeiten 8915 Mastering 21321 Masterings 417 Mastermind 14171 @@ -55294,6 +55651,7 @@ Mastsau 1462 p Masturbation 263487 Masturbationen 3265 Mastvieh 71432 +Mastzelle 14984 Masure 7753 Masuren 260982 Masurin 1125 @@ -55428,6 +55786,7 @@ Mauleseln 54461 Maulesels 11869 Maulficker 123 p Maulheld 16698 +Maulhelden 34491 Maulheldin 147 Maulhure 539 p Maulkorb 128767 @@ -55577,6 +55936,7 @@ Mechanismus 6285506 Mechatronik 48210 Mechthild 534317 MeckPomm 690 +Meckes 4622 Mecklenburg 4556114 Mecklenburger 301118 Mecklenburgern 22089 @@ -56099,6 +56459,10 @@ Menschenkenntnis 513550 Menschenkenntnisse 5958 Menschenkenntnissen 877 Menschenkind 360907 +Menschenkinder 316856 +Menschenkindern 149150 +Menschenkindes 35894 +Menschenkinds 1555 Menschenkunde 123415 Menschenleben 1620911 Menschenlebens 452349 @@ -56115,6 +56479,7 @@ Menschenrechts 108548 Menschenrechtsverletzung 33413 Menschenrechtsverletzungen 325200 Menschenscheu 42729 +Menschenschlag 187446 Menschenseele 667995 Menschenseelen 125280 Menschenskind 58388 @@ -56248,6 +56613,7 @@ Messen 3557775 Messer 8438137 Messerchen 92332 Messerchens 7824 +Messerfuß 226 Messerlein 5576 Messern 528087 Messers 619032 @@ -56651,6 +57017,7 @@ Mietshäuser 75906 Mietshäusern 49837 Mietskaserne 70504 Mietskasernen 119245 +Mietsoldat 801 Mietvertrag 503281 Mietvertrage 10952 Mietvertrages 111855 @@ -57004,9 +57371,12 @@ Minenministerium 321 Minenministeriums 193 Minenräumboot 1665 Minenräumboote 3865 +Minenräumbooten 1235 Minenräumer 6560 +Minenräumern 925 Minenräumers 255 Minenräumpanzer 1065 +Minenräumpanzern 123 Minenräumpanzers 133 Minensuchhund 161 Minensuchhunde 239 @@ -57164,6 +57534,11 @@ Mischelementen 2310 Mischelements 617 Mischen 776604 Mischendorf 933 +Mischgetränk 4536 +Mischgetränke 7022 +Mischgetränken 2052 +Mischgetränkes 199 +Mischgetränks 261 Mischkristall 117247 Mischkristalle 331046 Mischkristallen 173743 @@ -57550,6 +57925,8 @@ Mittelstand 1445257 Mittelstands 127565 Mittelstreckenrakete 8387 Mittelstreckenraketen 158945 +Mittelstädte 93679 +Mittelstädten 102205 Mittelstände 30907 Mittelweg 658425 Mittelwege 25399 @@ -57569,6 +57946,7 @@ Mittelwörtern 3160 Mitten 2549097 Mitternacht 4250567 Mitternachtsblau 3266 +Mitternachtsformel 1605 Mitternachtssonne 46789 Mitternächte 8781 Mitternächten 5552 @@ -57624,6 +58002,7 @@ Mixe 14501 Mixer 203388 Mixern 2738 Mixers 7521 +Mixstab 7673 Mixtur 307080 Mixturen 117531 Mizzi 126813 @@ -57770,7 +58149,7 @@ Mohnkapseln 18077 Mohnkuchen 22667 Mohnkuchens 407 Mohns 52087 -Mohr 2474719 +Mohr 2474719 p Mohren 489879 Mohrenkopf 30352 Mohrenland 27054 @@ -58053,6 +58432,7 @@ Monoxide 3647 Monoxiden 219 Monoxids 167 Monozyt 7647 +Monschau 82700 Monster 1224596 Monsters 101591 Monsterwelle 5059 @@ -58152,6 +58532,7 @@ Mopse 3995 Mopses 9895 Mora 289355 Moral 10996893 +Moralapostel 32500 Moralen 76011 Moralin 9594 Moralins 1508 @@ -58316,6 +58697,8 @@ Motiv 11891397 Motivation 5440990 Motive 12090064 Motiven 4588766 +Motivierung 879005 +Motivierungen 74381 Motivs 1119513 Motor 5812001 Motorblock 23959 @@ -58615,7 +58998,6 @@ Musizieren 445431 Muskarin 39051 Muskat 171767 Muskatblüte 17550 -Muskate 5489 Muskaten 8321 Muskates 178 Muskatgeschmack 1920 @@ -58720,12 +59102,14 @@ Mutterböden 1684 Muttererde 45946 Muttererden 138 Muttergesellschaft 365850 +Muttergesellschaften 55352 Muttergestein 133871 Muttergesteine 30539 Muttergesteinen 10252 Muttergesteins 29707 Muttergottes 451499 Muttergöttin 75157 +Mutterisch 273 Mutterkorn 286526 Mutterkorne 5803 Mutterkornes 19148 @@ -60207,6 +60591,7 @@ Natriumtetraborat 5008 Natriumthiosulfat 150838 Natriumthiosulfats 6535 Natriumverbindung 64200 +Natriumverbindungen 42861 Natriämie 220 Natron 4871221 Natronfeldspat 10460 @@ -60608,7 +60993,6 @@ Neptunium 13816 Neptuniums 2279 Neptuns 70051 Nerd 51409 -Nerden 2623 Nerds 29005 Nerv 2382261 Nerve 173775 @@ -60625,6 +61009,9 @@ Nervenkitzeln 497 Nervenkitzels 5157 Nervenklinik 229071 Nervenknoten 64958 +Nervenkostüm 35580 +Nervenkostüme 384 +Nervenkostüms 1867 Nervenkrieg 26541 Nervenkriege 279 Nervenkriegen 83 @@ -60807,6 +61194,9 @@ Neukombination 42164 Neukombinationen 20320 Neukölln 389907 Neuland 886791 +Neulande 9566 +Neulandes 23564 +Neulands 12095 Neulatein 12746 Neulateins 1520 Neulengbach 43824 @@ -60962,6 +61352,8 @@ Neuzustande 195 Neuzustandes 305 Nevada 564374 Nevadas 13820 +Newcomer 101842 +Newcomerin 3608 News 1764132 Newsfeed 16454 Newsletter 538621 @@ -61121,6 +61513,7 @@ Niederschlägen 768168 Niederschrift 2372709 Niederschriften 367210 Niedersorbisch 4481 +Niedersächsin 893 Niedersächsisch 12764 Niederthalheim 1673 Niedertracht 252107 @@ -61209,6 +61602,8 @@ Niggli 131080 Nihilismus 947172 Nihilist 65990 Nihilisten 132425 +Nikab 1571 +Nikabs 163 Nike 549966 Nikitsch 15211 Niklas 1447374 @@ -61369,6 +61764,7 @@ Nomina 840794 Nominalklammer 3997 Nominalklasse 4380 Nominalphrase 125615 +Nominalsatz 56179 Nominalwert 137276 Nominativ 892510 Nominative 62671 @@ -61397,6 +61793,8 @@ Nonnen 1906972 Nonnenfalter 3458 Nonnenkloster 273487 Nonplusultra 51482 +Nonprofitorganisation 399 +Nonprofitunternehmen 195 Nonsens 167638 Noosphäre 16454 Noppe 10794 @@ -61666,6 +62064,7 @@ Notverkaufs 1546 Notverkäufe 8462 Notverkäufen 5294 Notverordnung 287226 +Notverordnungen 160849 Notwehr 721709 Notwendigkeit 25565319 Notwendigkeiten 1468476 @@ -61702,6 +62101,7 @@ Nuancen 1167751 Nubien 328805 Nubuk 882 Nubukleder 726 +Nuclein 108608 Nucleinsäure 162286 Nucleinsäuren 162740 Nucleotid 35437 @@ -62304,6 +62704,7 @@ Obszönitäten 54530 Obwalden 214493 Occasion 51055 Occopirmus 165 +Oceane 109186 Ochlokratie 42387 Ochs 639342 Ochse 415937 @@ -62345,6 +62746,7 @@ Odysseen 10229 Oekonometrie 1912 Oerlikon 195782 Oerlikons 674 +Oerlinghausen 44012 Ofen 7470633 Ofenbrot 384 Ofenhandschuh 905 @@ -62515,6 +62917,7 @@ Olbendorf 6563 Olbrecht 5493 Oldenbourg 1001697 Oldenburg 3962372 +Oldesloe 122722 Oldtimer 125971 Oldtimern 11573 Oldtimers 7102 @@ -62669,6 +63072,7 @@ Onomatopöie 25723 Onomatopöien 8374 Ontogenese 491290 Ontologie 1469787 +Onus 21361 Onyx 157748 Oolith 129403 Oolithe 99541 @@ -62767,6 +63171,7 @@ Optikerinnen 171 Optikern 23381 Optikers 19616 Optima 105731 +Optimalität 63112 Optimierung 2658762 Optimierungen 102448 Optimierungswunsch 181 @@ -63052,6 +63457,7 @@ Ortsteine 3245 Ortsteinen 1737 Ortsteines 1477 Ortsteins 9104 +Ortsvektor 59823 Ortswechsel 293494 Ortung 277133 Orvieto 232226 @@ -63153,6 +63559,7 @@ Ostfrankreich 44748 Ostfrankreichs 6891 Ostfriese 18947 Ostfriesen 85208 +Ostfriesin 2506 Ostfriesland 766600 Ostfränkisch 6867 Ostgebiete 315987 @@ -63583,6 +63990,7 @@ Pandemien 22866 Pandora 484378 Pandorabüchse 14029 Pandorabüchsen 509 +Pandschab 62558 Pandschabi 4190 Paneel 39229 Panel 465039 @@ -63673,6 +64081,7 @@ Panzerglas 31953 Panzerglases 445 Panzergläser 318 Panzergläsern 203 +Panzergrenadier 23566 Panzerhaubitze 6954 Panzerjäger 25208 Panzerjägern 3557 @@ -63740,6 +64149,7 @@ Papierdeutsch 8281 Papiere 5063007 Papieren 1891734 Papieres 298940 +Papierfabrik 399308 Papierflieger 14441 Papierfliegern 1207 Papierfliegers 407 @@ -64476,6 +64886,7 @@ Pelzhandschuhe 6005 Pelzhandschuhen 2790 Pelzhändler 43083 Pelzkappe 22954 +Pelzmacher 1236 Pelzmantel 129676 Pelzmantels 6986 Pelzmäntel 26502 @@ -64648,6 +65059,7 @@ Perikard 194954 Perikarditis 237294 Periklas 28953 Perineum 110560 +Perinäum 41767 Periodat 1471 Periodate 721 Periodaten 768 @@ -64787,6 +65199,7 @@ Personenbeschreibung 72006 Personenfreizügigkeit 17420 Personenkraftwagen 271960 Personenkraftwagens 12605 +Personenkult 124425 Personenschützer 23198 Personenschützern 3489 Personenschützers 825 @@ -64858,6 +65271,8 @@ Petersil 6199 Petersilie 648762 Petersilien 17630 Petersiliensoße 1075 +Petersilienwurzel 20298 +Petersilienwurzeln 11982 Peterskirchen 11823 Peterwagen 3971 Petitesse 5649 @@ -65020,6 +65435,7 @@ Pfeifens 13110 Pfeifente 9347 Pfeifer 633506 Pfeiffer 2376317 +Pfeifhase 5328 Pfeil 3636611 Pfeile 2485442 Pfeilen 763625 @@ -65037,6 +65453,7 @@ Pfennig 2405667 Pfennige 1312253 Pfennigen 359181 Pfennigfuchser 10617 +Pfennigfuchserin 343 Pfennigfuchsern 693 Pfennigfuchsers 295 Pfennigs 103597 @@ -65301,6 +65718,8 @@ Pfädchen 4287 Pfädchens 111 Pfähle 821716 Pfählen 529799 +Pfälzer 685717 +Pfälzerin 7411 Pfälzisch 14274 Pfänden 7717 Pfändens 597 @@ -65361,7 +65780,11 @@ Pharmaexporte 159 Pharmaindustrie 176448 Pharmainformation 147 Pharmaka 385057 +Pharmakokinetik 187350 +Pharmakologe 33454 +Pharmakologen 76510 Pharmakologie 800967 +Pharmakologin 1278 Pharmakon 63004 Pharmakons 40203 Pharmalobby 2540 @@ -65371,6 +65794,7 @@ Pharmazeutik 20141 Pharmazeutika 82500 Pharmazie 746294 Pharyngalisierung 1177 +Pharyngitis 160348 Phase 20334360 Phasen 8874583 Phasendiagramm 41883 @@ -65918,6 +66342,7 @@ Pistolen 905768 Pistorius 177928 Pitten 48917 Pitzenberg 1320 +Pivitsheide 3620 Pixel 407704 Pixeln 77211 Pixels 23548 @@ -65947,6 +66372,7 @@ Placeboeffekten 1495 Placeboeffektes 1085 Placeboeffekts 1777 Placebos 42628 +Placken 16316 Plackerei 107545 Plafond 186173 Plafonds 84387 @@ -66296,6 +66722,7 @@ Plutokratie 88274 Plutonium 225634 Plutoniums 22535 Plutos 105776 +Pluviale 51950 Pluvialzeit 15984 Pluvialzeiten 7184 Plädoyer 1078961 @@ -66370,6 +66797,7 @@ Podiumsgespräche 5839 Podiumsgesprächen 3900 Podiumsgespräches 1375 Podiumsgesprächs 2889 +Poem 317865 Poesie 13693936 Poesiealben 12017 Poesiealbum 48062 @@ -66858,6 +67286,7 @@ Positionen 9740231 Positionierung 1283246 Positionierungen 129736 Positionspapier 115209 +Positionsvektor 1852 Positiv 945457 Positive 1576525 Positiven 516172 @@ -67037,6 +67466,7 @@ Praktikanten 537955 Praktikantin 107149 Praktikantinnen 36421 Praktiken 3137378 +Praktiker 2396666 Praktikum 1138399 Praktikums 151431 Praline 48000 @@ -67224,6 +67654,7 @@ Prinzipe 457861 Prinzipes 194523 Prinzipia 4937 Prinzipien 13204541 +Prinzipienreiter 15449 Prinzips 3356498 Prion 53477 Prionen 29922 @@ -67325,6 +67756,7 @@ Problemlösungen 558801 Problems 6857136 Problemstellung 1598002 Procedere 131903 +Processe 2001930 Prochaska 99543 Prochazka 52491 Prochnow 29801 @@ -67677,8 +68109,12 @@ Proustit 14993 Proustite 309 Proustits 519 Proveis 13288 +Provence 1166772 Provenienz 1696867 Provenienzen 205255 +Provenzale 23638 +Provenzalin 2139 +Provenzalisch 22649 Proviant 1135988 Proviante 3351 Provianten 246 @@ -67811,6 +68247,7 @@ Präpositionalphrasen 46024 Präpositionen 1018985 Präpositiv 5427 Prärie 259418 +Präriehund 5599 Prärien 99771 Präsens 1325913 Präsent 139011 @@ -67861,6 +68298,7 @@ Prätorianers 1725 Prävalenz 547726 Prävention 1689568 Präventionen 7014 +Präventivhaft 7316 Präventivkrieg 81510 Präventivschlag 30663 Präverb 13280 @@ -67932,6 +68370,8 @@ Psalme 50166 Psalmen 2319473 Psalmes 83450 Psalms 388249 +Pseudoanglizismen 1323 +Pseudoanglizismus 578 Pseudoargument 821 Pseudoephedrin 11754 Pseudoephedrins 2244 @@ -68024,6 +68464,7 @@ Publizistin 54984 Puchenau 8322 Puchenstuben 5995 Puck 202948 +Puckel 15382 Pucking 3231 Pucks 16145 Puddelverfahren 10556 @@ -68127,6 +68568,7 @@ Pumpernickel 71156 Pumpernickeln 189 Pumpernickels 2553 Pumps 174964 +Puncte 1649481 Punk 357915 Punker 37004 Punkerin 7864 @@ -68314,6 +68756,7 @@ Pyruvaten 189 Pyruvats 5504 Python 337663 Pythons 20185 +Pyxis 74968 Pz 68772 PzB 1205 Pächter 2399967 @@ -68640,6 +69083,7 @@ Quergriffe 1288 Quergriffen 535 Quergriffes 331 Quergriffs 257 +Querholz 73226 Querkopf 48953 Querkopfe 747 Querkopfes 1476 @@ -68750,6 +69194,8 @@ RKL 4509 RKO 30403 RKU 6468 RMH 2611 +RNA 686216 +RNS 643322 RW 285643 RWE 247563 RZ 175143 @@ -68761,6 +69207,7 @@ Rabatt 679581 Rabatte 310591 Rabatten 154872 Rabatts 27676 +Rabatz 15684 Rabauke 14307 Rabauken 34073 Rabaul 25759 @@ -68958,6 +69405,7 @@ Raffzähne 1991 Raffzähnen 1507 Rage 335634 Raggal 3892 +Ragnarök 33290 Ragnitz 11170 Ragout 101618 Ragouts 21047 @@ -69026,6 +69474,7 @@ Ramadan 162532 Ramasuri 833 Rambazamba 2711 Rambert 37715 +Ramen 86457 Ramin 76802 Ramingstein 11438 Rammbock 42377 @@ -69294,6 +69743,7 @@ Ratsversammlungen 29645 Ratte 2164429 Ratten 3906966 Rattenberg 113310 +Rattenfalle 9550 Rattenfänger 139755 Rattengift 65967 Rattengifte 2135 @@ -69538,7 +69988,10 @@ Rautenkreuze 171 Rautenkränze 259 Rautenzeichen 948 Rautezeichen 1138 +Rave 165914 Ravelsbach 12726 +Raver 28353 +Raverin 405 Raxendorf 2109 Rayon 294649 Razemat 7463 @@ -69557,6 +70010,7 @@ Reagenzgläsern 53731 Reagenzien 495633 Reaktion 28743096 Reaktionen 11236924 +Reaktionismus 1581 Reaktionsbildung 40069 Reaktionsfreudigkeit 7715 Reaktionsfähigkeit 615015 @@ -69819,6 +70273,7 @@ Rechtssprichwörtern 4565 Rechtsstaat 1344869 Rechtsstaaten 34629 Rechtsstaats 231289 +Rechtsstab 5993 Rechtsstreit 1181419 Rechtsstreite 166953 Rechtsstreiten 23634 @@ -70014,6 +70469,7 @@ Regelmäßigkeit 1629159 Regelmäßigkeiten 308712 Regeln 21168497 Regelsatz 56464 +Regelschmerzen 8136 Regelstab 3123 Regelstabs 234 Regelstudienzeit 50220 @@ -70331,6 +70787,7 @@ Reifens 177621 Reifenwechsel 12138 Reifeprüfung 432715 Reifes 54053 +Reifezeugnis 167611 Reifizierung 16884 Reifizierungen 1477 Reifrock 65314 @@ -70608,6 +71065,7 @@ Reklamationen 421246 Reklame 1175487 Reklamen 73020 Reklamespot 619 +Reklametafel 13409 Rekombination 283856 Rekombinationen 29223 Rekommandeur 1337 @@ -70872,7 +71330,6 @@ Requisition 262929 Requisitionen 230745 Resch 266063 Resektion 1716078 -Reservat 262206 Reservate 136248 Reservaten 76239 Reservates 17320 @@ -71161,6 +71618,7 @@ Rheumas 4936 Rheumatismen 153835 Rheumatismus 984857 Rhinitis 319517 +Rhinopharyngitis 11731 Rhinozeros 79887 Rhinozerosse 10343 Rhizom 282335 @@ -71262,6 +71720,7 @@ Richtschnur 1509806 Richtschnüre 1907 Richtung 79364838 Richtungen 13674421 +Richtungsvektor 14619 Ricin 74402 Ricins 11850 Ricke 94827 @@ -71317,6 +71776,7 @@ Riesenkalmar 2809 Riesenkalmare 1589 Riesenkalmaren 441 Riesenkalmars 525 +Riesenkompliment 945 Riesenrad 83739 Riesenrades 5023 Riesenrads 4671 @@ -71565,6 +72025,7 @@ Rochen 254230 Rochens 8220 Rochus 336647 Rock 5233329 +Rockall 10144 Rockband 47693 Rockbands 17168 Rocke 233187 @@ -71693,6 +72154,9 @@ Rolf 4533474 Rollade 915 Rolladen 40330 Rollassel 1229 +Rollator 67650 +Rollatoren 9440 +Rollators 4485 Rollback 27052 Rollbahn 107784 Rollbahnen 33106 @@ -71883,6 +72347,7 @@ Rostkatze 187 Rostlaube 16064 Rostlauben 2629 Rostock 4747357 +Rostpilz 16370 Rostschutz 47697 Rostschutze 121 Rostschutzes 5162 @@ -72203,6 +72668,8 @@ Rumpelkammern 14003 Rumpelstilzchen 88232 Rumpelstilzchens 3562 Rumpf 2915704 +Rumpfbeuge 9053 +Rumpfbeugen 16413 Rumpfe 374950 Rumpfes 934517 Rumpfs 65947 @@ -72305,6 +72772,9 @@ Russischen 2329559 Russischs 315 Russistik 14008 Russland 7096200 +Russlanddeutsche 26164 +Russlanddeutschen 47754 +Russlanddeutscher 3953 Russlands 1405101 Russophilie 8784 Rust 581441 @@ -72349,6 +72819,8 @@ Ruße 17170 Rußen 39324 Rußes 25782 Rußland 18850487 +Rußlanddeutsche 20701 +Rußlanddeutscher 3163 Rußlands 3945399 Rußpartikel 14268 Rußpartikeln 5816 @@ -72426,8 +72898,10 @@ Röhrchens 217073 Röhre 6782574 Röhren 5247121 Röhrenbach 6101 +Röhrenbildschirm 929 Röhrenblüte 875 Röhrenblüten 11692 +Röhrenfernseher 6262 Röhrenspinne 531 Röhrenspinnen 985 Röhricht 233439 @@ -72532,7 +73006,6 @@ Rückendeckungen 1173 Rückenlage 823248 Rückenlehne 298350 Rückenmark 2627528 -Rückenmarke 254323 Rückenmarkes 766899 Rückenmarks 1649603 Rückens 1025492 @@ -72719,6 +73192,7 @@ Rührgerät 9598 Rührgeräte 2017 Rührgerätes 1239 Rührgeräts 815 +Rührkuchen 8784 Rührung 1565708 Rülps 5772 Rülpse 839 @@ -72754,6 +73228,7 @@ Rüttgers 79673 S 78342814 SA 3211694 SB 967225 +SBZ 1199055 SEV 149943 SG 635769 SGB 2640952 @@ -72797,6 +73272,8 @@ Saarbrückers 143 Saarburg 171356 Saargebiet 404920 Saarland 1327636 +Saarländer 67923 +Saarländerin 1374 Saat 2219117 Saaten 606855 Saatkartoffel 4893 @@ -72871,6 +73348,7 @@ Sachverstand 395186 Sachverständige 1683781 Sachverständiger 763565 Sachwalter 557926 +Sachwalters 74030 Sachwalterschaft 15547 Sack 4401805 Sacke 324303 @@ -72897,6 +73375,7 @@ Sacklöcher 3316 Sacklöchern 2415 Sackmesser 5288 Sackmessers 221 +Sackpfeife 46003 Sackratte 926 p Sackratten 1644 Sacks 189912 @@ -73058,6 +73537,7 @@ Salpetererden 1309 Salpeters 278741 Salpetersäure 6985324 Salpetersäureherstellung 1667 +Salsa 97483 Salti 13457 Salto 215948 Saltos 21386 @@ -73529,6 +74009,7 @@ Satzenden 6036 Satzendes 2748 Satzes 7040278 Satzgegenstand 26459 +Satzglied 166065 Satzkonstruktion 57974 Satzlehre 167106 Satzlehren 1794 @@ -73838,6 +74319,8 @@ Schafehüten 3801 Schafen 1549377 Schafes 275686 Schaff 421683 +Schaffell 50908 +Schaffenskraft 311320 Schaffhausen 1671746 Schaffleisch 60646 Schaffleische 309 @@ -74214,6 +74697,9 @@ Schaumkronen 56996 Schaumkunststoff 5007 Schaumkunststoffe 6848 Schaumkunststoffes 135 +Schaumkuss 1079 +Schaumküsse 1889 +Schaumküssen 457 Schaumlöffel 39020 Schaumlöffeln 1347 Schaumlöffels 2553 @@ -74457,6 +74943,9 @@ Schererei 25245 Scherflein 193918 Scherge 59386 Schergen 444956 +Schergin 5652 +Scherginnen 135 +Scheriat 9954 Scherkraft 30582 Schermesser 35569 Schermodul 5649 @@ -74661,6 +75150,8 @@ Schiffshebewerks 2135 Schiffsheck 4061 Schiffskatastrophe 11616 Schiffskatastrophen 5643 +Schiffskompass 1991 +Schiffskompaß 3265 Schiffskörper 142888 Schiffskörpern 8681 Schiffskörpers 72914 @@ -75014,6 +75505,7 @@ Schlagringes 1265 Schlagrings 1187 Schlags 112241 Schlagsahne 167401 +Schlagschatten 215542 Schlagschrauber 4120 Schlagschraubern 785 Schlagschraubers 302 @@ -75059,6 +75551,7 @@ Schlammschlacht 21189 Schlampe 375952 p Schlampen 50183 p Schlampenschlepper 151 p +Schlamper 5359 Schlamperei 122726 Schlampigkeit 19758 Schland 2580 @@ -75066,6 +75559,8 @@ Schlanders 70428 Schlands 111 Schlange 5485196 Schlangen 2930296 +Schlangenbiss 47939 +Schlangenbiß 43872 Schlangengrube 23816 Schlangengruben 1628 Schlangengurke 3461 @@ -75120,6 +75615,7 @@ Schlaumeierin 653 Schlaumeiern 2031 Schlaumeiers 937 Schlawiner 26245 +Schlawinerin 267 Schlechtigkeit 628143 Schlecker 38687 Schleckern 900 @@ -75128,6 +75624,7 @@ Schleckzeug 627 Schleedorf 3253 Schlegeln 36420 Schlegels 1144409 +Schlehdorn 31407 Schlehe 49847 Schlehen 82428 Schleichweg 32194 @@ -75186,10 +75683,13 @@ Schleimlöser 1926 Schleims 128712 Schleißheim 130704 Schlemihl 126565 +Schlemmer 352287 +Schlemmerin 401 Schlemper 4159 Schlendrian 307737 Schlenker 132140 Schlenkers 2869 +Schlenki 147 Schleppe 262126 Schleppen 158317 Schlepper 638995 @@ -75329,6 +75829,8 @@ Schluck 2961406 Schluckauf 101533 Schluckaufs 1839 Schlucke 142538 +Schlucker 145907 +Schluckerin 631 Schluckes 5114 Schluckimpfung 16561 Schlucks 5489 @@ -75521,6 +76023,7 @@ Schmarrn 67233 Schmarrns 214 Schmattes 1129 Schmatz 68082 +Schmatzer 23670 Schmauch 43133 Schmauchspur 611 Schmaus 345897 @@ -75623,6 +76126,7 @@ Schmetterlingsraupe 5807 Schmetterlingsraupen 37313 Schmid 4316997 Schmidt 19824496 +Schmidts 925757 Schmied 1649334 Schmiede 1556205 Schmiedeeisen 416074 @@ -76159,6 +76663,8 @@ Schoggi 2657 Schoki 7285 Schoko 94778 Schokokuss 3040 +Schokoküsse 3872 +Schokoküssen 1109 Schokolade 1656014 Schokoladen 113601 Schokoladeneis 21274 @@ -76613,6 +77119,7 @@ Schulabschluss 290143 Schulanfänger 66288 Schulanfängerin 1249 Schulanfängerinnen 4411 +Schulanfängern 26404 Schulanfängers 4224 Schularbeit 192611 Schularbeiten 212363 @@ -76647,8 +77154,12 @@ Schuldenbremsen 3181 Schuldenerlass 32019 Schuldenfalle 22790 Schuldenfallen 557 +Schuldengrenze 4188 +Schuldengrenzen 1957 Schuldenkrise 92632 Schuldenkrisen 6534 +Schuldenobergrenze 1839 +Schuldenobergrenzen 323 Schuldenschnitt 13713 Schuldenschnitte 1104 Schuldenschnitten 377 @@ -76816,6 +77327,7 @@ Schuppentiere 8626 Schuppentieres 873 Schuppentiers 617 Schur 363774 +Schurigelei 703 Schurke 442003 Schurken 699355 Schurkenstaat 9650 @@ -76988,6 +77500,8 @@ Schwaden 291413 Schwadens 3538 Schwadorf 18186 Schwadron 350013 +Schwadroneur 9378 +Schwafelei 1749 Schwager 2923955 Schwagers 412564 Schwalbe 942543 @@ -77208,6 +77722,7 @@ Schwebfliegen 28162 Schwechat 167650 Schwede 350294 Schweden 14046227 +Schwedenbombe 591 Schwedens 1153443 Schwedentrunk 4005 Schwedentrunkes 97 @@ -77478,6 +77993,7 @@ Schwertscheide 51698 Schwertschlucken 450 Schwertschluckens 109 Schwertschlucker 5046 +Schwertschluckerin 307 Schwertschluckern 547 Schwertschluckers 337 Schwertwal 9274 @@ -77769,6 +78285,7 @@ Schälers 794 Schälke 17974 Schälken 5121 Schälle 26587 +Schändlichkeit 122389 Schändung 239525 Schändungen 26694 Schänke 78367 @@ -77954,6 +78471,7 @@ Schützlings 106401 Sciencefiction 22870 Scientologie 1904 Scientology 130947 +Sclaven 920456 Scoop 12814 Scoops 2496 Scooter 38540 @@ -78151,6 +78669,7 @@ Seemänner 32825 Seemännern 8867 Seen 4952912 Seenot 118109 +Seeohr 2541 Seeotter 20785 Seeottern 8556 Seeotters 1589 @@ -78345,6 +78864,7 @@ Seifenlagerstätten 8927 Seifenoper 35121 Seifenopern 26594 Seifenspender 9470 +Seifenstein 13298 Seifert 906436 Seifigkeit 619 Seigniorage 13986 @@ -78510,6 +79030,7 @@ Selan 3455 Selane 213 Selbst 31008313 Selbstachtung 528690 +Selbstand 22024 Selbstanzeige 193000 Selbstanzeigen 34607 Selbstaufopferung 203327 @@ -78826,6 +79347,7 @@ Sendereihe 108352 Sendereihen 20630 Sendern 283918 Senders 487153 +Sendeschluss 5223 Sendling 118956 Sendung 5828135 Sendungen 2780669 @@ -78911,6 +79433,7 @@ Separatismus 239173 Separatist 22991 Separatisten 254921 Separatistin 1375 +Separatorenfleisch 2727 Separee 26264 Separees 11709 Sephardi 9620 @@ -79013,6 +79536,7 @@ Servicewagen 4257 Servicewahrnehmung 211 Serviceweg 129 Servicewelle 1503 +Servicewellen 2063 Servicewerkstatt 1327 Servicewerkzeuge 81 Servicewert 591 @@ -79028,6 +79552,7 @@ Serviettenringe 6945 Serviettenringes 339 Serviettenrings 134 Servilität 65394 +Servolenkung 27138 Servomotor 36600 Servomotoren 20828 Servomotors 12839 @@ -79443,6 +79968,11 @@ Silanen 6453 Silans 2113 Silbe 3091757 Silben 2388025 +Silbenanlaut 14663 +Silbenanlaute 1418 +Silbenanlauten 223 +Silbenanlautes 247 +Silbenanlauts 484 Silbenkurzwort 405 Silbenschrift 47226 Silbenschriften 6247 @@ -79812,6 +80342,7 @@ Siphon 60868 Siphons 27777 Sippe 1882808 Sippen 871586 +Sippenhaft 40540 Sippschaft 226020 Sippschaften 26179 Sirene 546666 @@ -79847,6 +80378,7 @@ Sittiche 28816 Sittichen 12821 Sittichs 6115 Sittlichkeit 4789628 +Sittsamkeit 187637 Situation 43983956 Situationen 9958512 Situationismus 6338 @@ -79938,6 +80470,7 @@ Skandalartikel 809 Skandale 330748 Skandalen 113117 Skandalnudel 2233 +Skandalon 71156 Skandals 147502 Skandinavien 1551580 Skandinaviens 252566 @@ -80013,6 +80546,7 @@ Sklaventreiber 23550 Sklaverei 2650423 Sklavin 1029560 Sklavinnen 424395 +Sklera 436864 Skopje 122407 Skorbut 316959 Skorbute 1473 @@ -80122,6 +80656,7 @@ SoLaWi 325 Soap 129382 Sobek 67590 Sobotka 68319 +Socialisten 143667 Socke 125318 Sockel 1933978 Sockelleiste 8039 @@ -80157,6 +80692,7 @@ Sofia 1635281 Sofie 313778 Sofis 4507 Soforthilfe 76549 +Softeis 11048 Softie 18279 Softies 7920 Software 5013417 @@ -80342,6 +80878,9 @@ Sommerzeit 304768 Sommerzeiten 5333 Somnambulismus 208828 Sonar 41618 +Sonare 3312 +Sonaren 611 +Sonars 2743 Sonate 1334626 Sonaten 649606 Sonatine 51692 @@ -80352,6 +80891,10 @@ Sonderangebote 82645 Sonderangeboten 34815 Sonderangebotes 1289 Sonderangebots 4079 +Sonderausschuss 23607 +Sonderausschusses 88306 +Sonderausschuß 119795 +Sonderausschüsse 24877 Sonderausstattung 26120 Sonderausstattungen 13887 Sonderbarkeit 118740 @@ -80595,6 +81138,7 @@ Sonntagsbrötchen 1426 Sonntagsfahrer 5547 Sonntagsfahrern 589 Sonntagsfahrers 121 +Sonntagsfrage 20127 Sonntagskind 57257 Sonntagskleidung 11243 Sonntagsschrift 775 @@ -80775,7 +81319,7 @@ Spachteln 15935 Spachtels 3225 Spacken 4003 p Spacko 4174 p -Spackos 1337 p +Spackos 1337 Spagat 196208 Spagate 1371 Spagaten 401 @@ -80959,6 +81503,7 @@ Specke 11283 Specken 6030 Speckes 14468 Specks 36007 +Speckstein 159668 Spediteur 372653 Spedition 319235 Speditionen 64509 @@ -81052,6 +81597,10 @@ Speisesälen 23523 Speisetafel 8862 Speisetafeln 2256 Speisewagen 136448 +Speiseöl 113061 +Speiseöle 44905 +Speiseöles 589 +Speiseöls 2075 Speiskammer 3228 Speisopfer 82611 Speisopfern 4995 @@ -81468,6 +82017,9 @@ Spinzustände 4069 Spinzuständen 1550 Spion 766525 Spionage 594244 +Spionageflugzeug 3313 +Spionageflugzeuge 1819 +Spionageflugzeuges 629 Spionagering 6731 Spionageringe 877 Spionageringen 265 @@ -82322,6 +82874,7 @@ Stabilisierungsmittels 595 Stabilität 6272564 Stabkirche 18869 Stabkirchen 16151 +Stabmixer 31350 Stabreim 115941 Stabreime 16173 Stabreimen 10395 @@ -82330,6 +82883,7 @@ Stabreims 18222 Stabs 362750 Stabsarzt 459047 Stabschef 251250 +Stabsunteroffizier 10266 Stabwanze 1175 Stabwanzen 321 Stachel 1517738 @@ -82668,6 +83222,7 @@ Standpunkte 7569729 Standpunkten 486392 Standpunktes 1016929 Standpunkts 301280 +Standrecht 91421 Stands 249956 Standuhr 125663 Standuhren 21768 @@ -82828,6 +83383,7 @@ Staudämme 73011 Staudämmen 38238 Staue 11482 Stauen 38234 +Stauffacher 116096 Staugefahr 1765 Staugefahren 177 Staumauer 117227 @@ -83111,6 +83667,8 @@ Stellenwerts 69127 Stellenwertsystem 11219 Stellenwertsysteme 2293 Stellenwertsystems 3471 +Stellmacher 169716 +Stellmacherin 1041 Stellplatz 117825 Stellplatze 965 Stellplatzes 6425 @@ -83122,6 +83680,7 @@ Stellungnahme 7259440 Stellungnahmen 2191441 Stellungskrieg 118131 Stellungskriege 14501 +Stellungskriegen 1217 Stellungskrieges 31245 Stellungskriegs 4059 Stellvertreter 5729681 @@ -83301,6 +83860,10 @@ Steuerbordes 103 Steuerbords 2379 Steuerdomizil 5591 Steuerelement 96803 +Steuerelemente 114466 +Steuerelementen 31560 +Steuerelementes 2215 +Steuerelements 22376 Steuererhöhung 151608 Steuererklärung 312223 Steuererklärungen 111978 @@ -83455,6 +84018,7 @@ Stiefvaters 103163 Stiefväter 11928 Stiefvätern 4381 Stiege 602543 +Stiegelitz 734 Stiegen 314144 Stieglitz 324880 Stieglitze 19634 @@ -83464,6 +84028,7 @@ Stiel 2878366 Stiele 977979 Stielen 408410 Stieles 402485 +Stielhandgranate 2251 Stielmus 3261 Stiels 164543 Stier 2302698 @@ -83487,6 +84052,7 @@ Stiftes 1451193 Stifts 977202 Stiftsfräulein 20277 Stiftsfräuleins 3157 +Stiftsherr 41397 Stiftshütte 172166 Stiftskirche 779952 Stiftskirchen 61954 @@ -83618,6 +84184,10 @@ Stirlingmotor 6337 Stirlingmotoren 2272 Stirlingmotors 2245 Stirn 14899161 +Stirnband 136786 +Stirnbandes 6927 +Stirnbands 1255 +Stirnbänder 18455 Stirne 2520178 Stirnen 264169 Stirnhöhle 273150 @@ -84437,6 +85007,7 @@ Strukturbaum 30305 Strukturbaumes 2073 Strukturbaums 2539 Strukturbäume 4132 +Strukturbäumen 2433 Strukturchemie 30402 Struktureinheit 40413 Struktureinheiten 64193 @@ -85124,6 +85695,7 @@ Sumpfrohrsängers 2109 Sumpfwiese 18964 Sumpfwiesen 58775 Sund 613108 +Sundanesisch 1823 Sunde 236297 Sundes 92002 Sunna 133452 @@ -85140,6 +85712,8 @@ Superhelden 74571 Superheldin 8193 Superjumbo 410 Superjumbos 247 +Superkleber 4107 +Superklebers 129 Superlativ 320170 Superlative 165667 Superlativs 38795 @@ -85209,6 +85783,8 @@ Supraleitern 43049 Supraleiters 19527 Supraleitung 100485 Suprematie 270427 +Suprematismus 39280 +Suprematist 1296 Sure 554754 Suren 136017 Surfbrett 41942 @@ -85234,6 +85810,7 @@ Susanna 915573 Susanne 3066779 Sushi 134259 Sushis 2771 +Susi 565633 Suspendierung 247954 Suspendierungen 5981 Suspension 1404515 @@ -85333,6 +85910,8 @@ Synapsen 324386 Synchronfirma 453 Synchronisation 391911 Synchronisationen 9133 +Synchronisierung 172633 +Synchronisierungen 6630 Synchronizität 55353 Synchronizitäten 5022 Synchronsprecher 10635 @@ -85404,6 +85983,8 @@ Systeme 18467013 Systemen 6974319 Systemes 596899 Systemfehler 29769 +Systempartei 1569 +Systemparteien 6373 Systempresse 1720 Systems 21572620 Systemzwang 48008 @@ -85414,9 +85995,11 @@ Systemzwänge 10750 Systemzwängen 7803 Systole 592079 Systolen 59161 +Szenar 23049 Szenarien 1094533 Szenario 1401576 Szenarios 180396 +Szenarium 187351 Szene 13852277 Szenen 6133006 Szeneviertel 9016 @@ -86034,6 +86617,7 @@ Tandes 13789 Tandler 145264 Tands 3524 Tang 506115 +Tanga 198137 Tange 81495 Tangen 52512 Tangens 77550 @@ -86188,6 +86772,7 @@ Tapsen 10274 Tara 596878 Taragewicht 8750 Taragewichte 1239 +Taragewichten 157 Taragewichtes 933 Taragewichts 775 Tarantel 118146 @@ -86264,6 +86849,8 @@ Taschengelder 4221 Taschengeldern 1144 Taschengeldes 26947 Taschengelds 3337 +Taschenkompass 1667 +Taschenkompaß 2664 Taschenlampe 843100 Taschenlampen 153780 Taschenmesser 262295 @@ -86365,6 +86952,7 @@ Tatzelwurms 1281 Tatzelwürmer 857 Tatzelwürmern 209 Tatzen 191406 +Tatüs 576 Tatütata 8779 Tau 1464733 Taubblindheit 2303 @@ -86377,9 +86965,11 @@ Taubenhauses 2227 Taubenhäuser 6565 Taubenhäusern 2463 Taubenschlag 123237 +Taubenschlage 12401 Taubenschlages 4633 Taubenschlags 4429 Taubenschläge 13783 +Taubenschlägen 10141 Taubensport 1369 Taubensports 259 Taubenzüchter 14990 @@ -86467,6 +87057,7 @@ Tauschwert 370837 Tauschwerte 51254 Tauschwerten 16905 Tauschwertes 42741 +Tauschwerthe 29179 Tauschwerts 37842 Tausend 3371258 Tausende 4462187 @@ -86624,7 +87215,6 @@ Teezeremonie 30967 Tefillin 21544 Tegel 595935 Teheran 758662 -Teich 2014561 Teiche 1209877 Teichen 747504 Teiches 328927 @@ -86659,6 +87249,7 @@ Teigware 9765 Teigwaren 166410 Teil 174532787 Teilarbeitslosigkeit 4469 +Teilbarkeit 296063 Teilchen 5597072 Teilchenbeschleuniger 40632 Teilchenbeschleunigern 13911 @@ -86831,6 +87422,7 @@ Telexe 2048 Telexen 587 Telexes 109 Telfs 66306 +Telkes 1295 Teller 4474126 Tellerchen 57351 Tellerchens 1261 @@ -87092,6 +87684,8 @@ Testaments 3136262 Testamentsvollstrecker 389971 Testamentsvollstreckerin 7264 Testamentsvollstreckerinnen 275 +Testamentsvollstreckern 31140 +Testamentsvollstreckers 96601 Testbild 18356 Teste 204324 Testen 457863 @@ -87811,6 +88405,7 @@ Tischgenossen 146054 Tischgenossin 3587 Tischgenossinnen 1275 Tischgesellschaft 139667 +Tischgesellschaften 13546 Tischgespräch 57418 Tischgespräche 74578 Tischgespräches 2794 @@ -87968,6 +88563,8 @@ Todesmärschen 9516 Todesopfer 213228 Todesopfern 46707 Todesopfers 2549 +Todesqual 30743 +Todesqualen 35605 Todesrune 1323 Todesrunen 588 Todessehnsucht 123319 @@ -88031,6 +88628,7 @@ Tofus 774 Toga 334304 Togo 706236 Togoer 3513 +Togoers 201 Tohuwabohu 80975 Tohuwabohus 2991 Toilette 2209087 @@ -88087,6 +88685,8 @@ Tomatensäften 488 Tombola 53841 Tombolas 4406 Tombolen 1300 +Tomboy 8597 +Tomboys 558 Tommy 639704 Tomografie 13976 Tomographie 131483 @@ -88695,6 +89295,7 @@ Trauerweiden 59234 Trauerzug 125243 Traufe 196396 Traufen 26212 +Traufstreifen 510 Traum 14228334 Trauma 2741166 Traumarbeit 84434 @@ -88707,6 +89308,7 @@ Traume 1320945 Traumen 607226 Traumes 856349 Traumfrau 96722 +Traumhochzeit 17475 Traumjob 51704 Traumland 86972 Traummann 87809 @@ -88732,6 +89334,7 @@ Traute 138645 Trauung 1272112 Trauungen 242729 Trauzeuge 76986 +Trauzeugin 26702 Travertin 128075 Travestie 181689 Trebe 6526 @@ -89258,6 +89861,7 @@ Trompetenspielern 133 Trompetenspielers 133 Trope 49327 Tropen 1991366 +Tropenfrucht 1717 Tropenhelm 31887 Tropeninsel 7786 Tropenklima 49803 @@ -89322,6 +89926,7 @@ Truck 304141 Trude 341206 Trudeln 44732 Trudelns 1061 +Trug 980462 Trugbild 269272 Trugschluss 144804 Trugschlusse 5534 @@ -89734,6 +90339,9 @@ Twist 131631 Twists 5159 Twitter 479368 Twitterer 6243 +Twitterern 1407 +Twitterers 368 +Twitterin 117 Tychit 921 Typ 15788976 Typberatung 2497 @@ -89754,10 +90362,14 @@ Typisierung 658140 Typisierungen 113908 Typlokalität 20890 Typlokalitäten 2452 +Typograf 8603 Typografie 116691 Typografien 1169 +Typografin 382 +Typograph 41047 Typographie 306025 Typographien 6298 +Typographin 282 Typs 2790272 Typschild 791 Typsystem 5631 @@ -89775,6 +90387,7 @@ Tyrannenmordes 18316 Tyrannenmords 5814 Tyrannenmörder 37304 Tyrannenmörders 2725 +Tyrrhener 56134 TÜV 226746 Täfelchen 526485 Täfelung 64680 @@ -90637,6 +91250,7 @@ Undercut 2991 Underdog 20764 Underdogs 14408 Underground 180709 +Underscore 799 Undichtigkeit 86299 Undichtigkeiten 147717 Undine 333810 @@ -90763,6 +91377,8 @@ Ungnade 1068022 Ungunst 707999 Ungunsten 677341 Unheil 3590065 +Unheiligkeit 19040 +Unheiligkeiten 263 Unheils 466693 Unhold 223489 Unholde 121133 @@ -90932,6 +91548,7 @@ Unsummen 111688 Untat 273555 Untaten 377706 Untauglichkeit 204814 +Unteilbarkeit 244261 Unter 74962803 Unterabsatz 109024 Unterabschnitt 474227 @@ -90944,6 +91561,10 @@ Unterarmes 168141 Unterarmmuskel 1016 Unterarms 198540 Unterart 484383 +Unterausschuss 45078 +Unterausschusses 165440 +Unterausschuß 310007 +Unterausschüsse 88141 Unterbau 1263651 Unterbegriff 52109 Unterbegriffe 47016 @@ -91041,6 +91662,7 @@ Unterholze 17361 Unterholzes 47990 Unterhose 339092 Unterhosen 230860 +Unterhund 1073 Unterhändler 714706 Unterhändlerin 8560 Unterhändlerinnen 1227 @@ -91379,6 +92001,7 @@ Unzukömmlichkeiten 112112 Unzulänglichkeit 1799180 Unzulässigkeit 602966 Unzuverlässigkeit 533561 +Unzweideutigkeit 19062 Unzähmbarkeit 1587 Unähnlichkeit 152899 Unähnlichkeiten 30780 @@ -91600,6 +92223,7 @@ Urtexte 78128 Urtexten 9518 Urtextes 103617 Urtexts 4297 +Urtheile 3363311 Urtheilen 788812 Urtier 18186 Urtiere 25392 @@ -91844,6 +92468,7 @@ Variieren 129729 Varizellen 108532 Vasall 418667 Vasallen 1575056 +Vasallenstaat 54962 Vasallin 5659 Vasallinnen 731 Vasalls 872 @@ -93211,6 +93836,7 @@ Vermögensanhäufung 2797 Vermögenslage 265522 Vermögenslagen 4205 Vermögensverteilung 144178 +Vermögensverteilungen 2174 Vermögenswert 253393 Vermüllen 253 Vermüllung 7261 @@ -93288,6 +93914,7 @@ Verpflichtungen 7218077 Verpfänden 10355 Verpfändung 933115 Verpissen 2009 +Verpixelung 1057 Verplappern 615 Verplempern 1517 Verprassen 3799 @@ -93635,6 +94262,7 @@ Versionierung 22111 Versionierungen 665 Versionsgeschichte 2098 Versionsverwaltung 14331 +Versippung 23421 Versklaven 1796 Versklaver 1923 Versklavung 312297 @@ -93716,6 +94344,7 @@ Versteherin 1307 Verstehern 873 Verstehers 587 Versteifen 9573 +Versteifung 373227 Versteigerer 56519 Versteigern 5821 Versteigerung 1392965 @@ -94586,6 +95215,8 @@ Vogel 10567072 Vogelbeere 31185 Vogelbeeren 48355 Vogelbeobachter 11177 +Vogelbeobachterin 239 +Vogelbeobachtern 1506 Vogelbeobachters 253 Vogelfalle 4471 Vogelfeder 22948 @@ -94632,6 +95263,7 @@ Vogelschwärme 21288 Vogelschützer 7460 Vogelspinne 20822 Vogelspinnen 19537 +Vogelsteller 62220 Vogelzug 70210 Vogelzuges 27556 Vogelzugs 7409 @@ -95062,6 +95694,7 @@ Vorfahrin 18791 Vorfahrinnen 6186 Vorfahrt 129544 Vorfahrten 2293 +Vorfahrtsstraße 3285 Vorfall 2997106 Vorfalle 165527 Vorfalles 108534 @@ -95172,6 +95805,7 @@ Vorjahreszeiträume 143 Vorjahreszeiträumen 645 Vorjahrs 112759 Vorkammer 210460 +Vorkasse 38748 Vorkehrung 243671 Vorkehrungen 2299947 Vorkommen 14407205 @@ -95454,6 +96088,7 @@ Vorwands 9566 Vorwegnahme 522030 Vorweihnachtszeit 55540 Vorwerk 441019 +Vorwinter 23446 Vorwissen 843674 Vorwissens 63901 Vorwitz 129905 @@ -95587,6 +96222,7 @@ Völkerschaften 1471196 Völkerverständigung 195889 Völkerwanderung 862955 Völkerwanderungen 109109 +Völkerwanderungszeit 267458 Völklingen 101374 Völklingens 570 Völle 113690 @@ -96824,10 +97460,12 @@ Wavellit 13306 Wavellite 545 Wavelliten 371 Wavellits 961 +Waver 6014 Waßmuth 7803 Wearable 14440 Web 2593442 Webbrowser 98358 +Webbrowsern 5615 Webbrowsers 7318 Webdichte 4098 Webdichten 672 @@ -97276,6 +97914,7 @@ Weinberg 1405923 Weinberge 1021415 Weinbergen 483466 Weinberges 60063 +Weinbergpfirsich 584 Weinbergs 108933 Weinbergschnecke 45466 Weinbergschnecken 22621 @@ -97792,6 +98431,11 @@ Weltstadt 402239 Weltstar 25431 Weltstädte 47494 Weltstädten 31055 +Weltumsegler 47495 +Weltumseglerin 819 +Weltumseglerinnen 141 +Weltumseglern 2257 +Weltumseglers 7841 Weltuntergang 295646 Weltunterganges 18774 Weltuntergangs 48054 @@ -97865,6 +98509,7 @@ Werbeprospekts 1635 Werber 424804 Werbespot 109289 Werbespots 180806 +Werbetafel 14634 Werbeverbot 42442 Werbeverbote 16516 Werbeverboten 3365 @@ -97979,6 +98624,7 @@ Werten 8629459 Werterhaltung 53274 Wertes 4194497 Wertgegenstand 24201 +Werthe 7503766 Wertigkeit 1135341 Wertigkeiten 102109 Wertkonflikt 10486 @@ -98075,6 +98721,7 @@ Westfale 62583 Westfalen 7770208 Westflämisch 346 Westfriesisch 1630 +Westfränkisch 1043 Westfälin 3993 Westfälinnen 337 Westfälisch 35884 @@ -98200,7 +98847,6 @@ Wichsern 5034 Wichsers 1311 Wichsvorlage 5418 Wichsvorlagen 1534 -Wicht 335680 Wichte 129356 Wichtel 71124 Wichteln 10721 @@ -98357,6 +99003,7 @@ Wiederbelebungen 13274 Wiedereinführung 660292 Wiedereinführungen 673 Wiedereingliederung 365700 +Wiedereingliederungen 1308 Wiedereinsetzung 756479 Wiedereinsetzungen 2655 Wiedereintrittskörper 3527 @@ -98366,6 +99013,8 @@ Wiederentdeckungen 12330 Wiedererkennen 304829 Wiederfinden 147238 Wiedergabe 7191138 +Wiedergabeliste 19879 +Wiedergabelisten 13435 Wiedergaben 305238 Wiedergeben 70335 Wiedergeburt 2555307 @@ -98522,6 +99171,7 @@ Wildtiers 1123 Wildvogel 7958 Wildvogels 917 Wildvögel 13607 +Wildvögeln 10897 Wildwasser 62699 Wildwassers 4822 Wildziege 10356 @@ -99068,6 +99718,7 @@ Wohltäters 56319 Wohltätigkeit 522865 Wohltätigkeiten 4911 Wohltätigkeitsorganisation 16881 +Wohltätigkeitsveranstaltung 24222 Wohlwollen 2461911 Wohlwollens 497982 Wohneinheit 68413 @@ -99160,6 +99811,7 @@ Wolff 5172774 Wolfgang 17626288 Wolfgangs 169420 Wolfhard 73296 +Wolfi 88927 Wolfpassing 26415 Wolfram 3388370 Wolframcarbid 10704 @@ -99184,6 +99836,7 @@ Wolfsfells 567 Wolfsgraben 8804 Wolfsgrube 17259 Wolfsgruben 29307 +Wolfsmagen 1177 Wolfsmaul 1280 Wolfsmilch 58161 Wolfspinne 1828 @@ -99270,6 +99923,11 @@ Wortanfang 58204 Wortanfangs 2418 Wortanfänge 6194 Wortanfängen 2703 +Wortanlaut 26145 +Wortanlaute 961 +Wortanlauten 121 +Wortanlautes 891 +Wortanlauts 1012 Wortart 216867 Wortarten 373776 Wortbildung 871140 @@ -99351,6 +100009,7 @@ Wrestling 31339 Wringen 4448 Wruke 3181 Wruken 10173 +WtB 3341 Wucher 827003 Wucherblume 15851 Wucherblumen 4366 @@ -99512,6 +100171,7 @@ Wurzelkanäle 39833 Wurzelkanälen 12813 Wurzellosigkeit 27441 Wurzeln 13274660 +Wurzelpetersilie 4086 Wurzelstock 204655 Wurzelwachstum 66089 Wurzelwachstumes 135 @@ -99720,6 +100380,8 @@ Würde 17525049 Würdelosigkeit 42622 Würdemann 6887 Würden 3248538 +Würdenträger 876363 +Würdenträgerin 2321 Würdigen 123819 Würdigung 5871182 Würdtwein 88525 @@ -99977,6 +100639,7 @@ Zahlung 9291141 Zahlungen 3727910 Zahlungsart 31063 Zahlungsarten 17351 +Zahlungsausfall 15227 Zahlungsdienstleister 46151 Zahlungsfrist 117698 Zahlungsmittel 822720 @@ -100497,6 +101160,8 @@ Zeiträume 2004760 Zeiträumen 999936 Zeitscheibe 12622 Zeitscheiben 10811 +Zeitschleife 17870 +Zeitschleifen 4216 Zeitschlitz 7168 Zeitschlitze 7797 Zeitschlitzen 3359 @@ -100547,6 +101212,7 @@ Zeitungsverlage 52991 Zeitungsverlagen 21478 Zeitungsverlages 6971 Zeitungsverlags 5989 +Zeitungswissen 1492 Zeitvergeudung 51646 Zeitvergeudungen 571 Zeitverschwendung 224689 @@ -100565,6 +101231,7 @@ Zeitwörtern 105421 Zeitz 522126 Zeitzeuge 109239 Zeitzeugen 459264 +Zeitzeugin 34706 Zeitzone 51482 Zeitzonen 59922 Zeitzonendifferenz 105 @@ -101651,6 +102318,7 @@ Zuckerrübensirup 7668 Zuckers 1379018 Zuckerschale 8239 Zuckerschalen 1539 +Zuckerschlecken 39480 Zuckerschote 887 Zuckerschoten 26333 Zuckerschälchen 918 @@ -101723,6 +102391,7 @@ Zugange 38917 Zuganges 118826 Zugangs 823518 Zugangsberechtigung 32047 +Zugangsdaten 50586 Zugangskontrolle 31314 Zugbegleiter 27305 Zugbegleiterin 4647 @@ -102468,6 +103137,7 @@ Zwischenspiel 460977 Zwischenspiele 146344 Zwischenspieles 4593 Zwischenstadt 21249 +Zwischensteg 2209 Zwischenstock 12223 Zwischenstopp 116593 Zwischenstufe 441367 @@ -103743,6 +104413,7 @@ abgesagtem 605 abgesagten 28416 abgesagter 48183 abgesagtes 627 +abgesandt 531043 abgesattelt 15839 abgesaugt 635519 abgeschabt 132834 @@ -103835,6 +104506,7 @@ abgeschüttelt 240427 abgeschüttet 7772 abgesehen 24063599 abgeseilt 19171 +abgesendet 206341 abgesenkt 263904 abgesessen 98628 abgesetzt 4595451 @@ -103997,6 +104669,7 @@ abgeändert 2124413 abgeätzt 7868 abgibst 17817 abgibt 1648399 +abgießen 128120 abging 632841 abginge 57002 abgingen 229158 @@ -104133,6 +104806,8 @@ abholzen 20043 abholzt 3255 abholzte 1600 abholzten 1906 +abhorreszieren 139 +abhorrieren 323 abhusten 7738 abhält 435688 abhältst 3335 @@ -104217,6 +104892,7 @@ abkehrt 33899 abkehrte 16217 abkehrten 6537 abkehrtest 81 +abketten 13837 abklappern 24819 abklatsche 724 abklatschen 9072 @@ -104343,6 +105019,7 @@ ablehnte 1349007 ablehnten 535085 ablehntest 1613 ablehntet 561 +ableisten 78592 ableitbar 454863 ableitbare 108471 ableitbarem 719 @@ -104654,6 +105331,9 @@ absah 167295 absahen 24738 absahnen 10646 absaht 140 +absandte 50379 +absandten 6676 +absandtest 271 absatteln 8955 absatzweise 76617 absatzweisem 1327 @@ -104756,6 +105436,7 @@ abschließet 556 abschließt 899803 abschloss 241806 abschlossen 128857 +abschlägig 172664 abschlösse 13454 abschlössen 48560 abschmecken 328274 @@ -104922,7 +105603,13 @@ abseitigsten 3449 abseitigster 143 abseits 2814148 abseitsverdächtiger 125 +absende 13910 absenden 151781 +absendend 2431 +absendest 437 +absendet 36208 +absendete 10375 +absendeten 2216 absenkbar 2423 absenkbare 2982 absenkbarem 664 @@ -105361,6 +106048,7 @@ abtretend 4972 abtrieb 15937 abtriebe 1170 abtrieben 7263 +abtrinken 1940 abtrocknen 166779 abtrocknend 7066 abtropfen 358032 @@ -105701,6 +106389,7 @@ abzuschwächen 510672 abzuschätzen 856817 abzuschütteln 509555 abzusehen 2292151 +abzusenden 174790 abzuspalten 112845 abzuspielen 88559 abzustechen 29819 @@ -106090,18 +106779,6 @@ ackert 34690 ackerte 21501 ackerten 10325 ackre 1423 -active 870359 -activem 32774 -activen 731585 -activer 150781 -activere 3083 -activerem 155 -activeren 3016 -activerer 187 -activeres 1161 -actives 77861 -activste 839 -activsten 1623 adaptier 485 adaptiere 2583 adaptieren 171582 @@ -108398,6 +109075,7 @@ anfingest 1139 anfinget 934 anfingst 11566 anfingt 5574 +anfixen 948 anflehen 155911 anflehend 13471 anfocht 24387 @@ -108553,6 +109231,7 @@ angefeuchtetem 35812 angefeuchteten 120827 angefeuchteter 23632 angefeuchtetes 49375 +angefixt 6228 angeflanscht 20636 angeflanschte 3422 angeflanschtem 3829 @@ -108940,6 +109619,7 @@ angesteuert 184493 angestiegen 981543 angestiftet 252402 angestimmt 250200 +angestochen 108096 angestoßen 461068 angestrebt 3610671 angestrebte 1672307 @@ -109042,6 +109722,9 @@ anglikanischem 4376 anglikanischen 299128 anglikanischer 32134 anglikanisches 2798 +anglisieren 4000 +anglisiert 12227 +anglisierte 7712 angloamerikanisch 6654 angloamerikanische 67871 angloamerikanischem 5136 @@ -110175,6 +110858,7 @@ anstaust 84 anstaut 13102 anstaute 4277 anstauten 2304 +anstechen 26671 anstecke 18080 anstecken 376417 ansteckend 517507 @@ -110425,6 +111109,8 @@ anthropozentrischem 1652 anthropozentrischen 77339 anthropozentrischer 13632 anthropozentrisches 6223 +anthue 15884 +anthut 67169 antiamerikanisch 11280 antiamerikanische 29512 antiamerikanischem 755 @@ -110944,6 +111630,7 @@ anzuerkennen 4588432 anzufahren 60087 anzufangen 2230338 anzufassen 311750 +anzufixen 565 anzufragen 178909 anzuführen 3479827 anzufüllen 91878 @@ -112504,6 +113191,7 @@ aufbieten 464730 aufbinden 76416 aufbindend 1610 aufblasbar 4260 +aufblasbare 27595 aufblase 3027 aufblasen 75109 aufblasend 1674 @@ -112542,6 +113230,7 @@ aufbrachst 965 aufbracht 8630 aufbranden 3993 aufbrandend 930 +aufbraten 698 aufbrauchen 46947 aufbrause 1756 aufbrausen 50648 @@ -112688,6 +113377,9 @@ auffindend 1025 aufflammen 122472 aufflammend 13345 auffliegen 170970 +aufflog 82638 +aufflogen 30112 +aufflogst 101 auffordere 74349 auffordern 1190118 auffordernd 236583 @@ -112806,6 +113498,7 @@ aufgefangenes 12658 aufgefasst 3155485 aufgefaßt 5496866 aufgeflammt 53678 +aufgeflogen 118519 aufgefordert 5812268 aufgefressen 265470 aufgefunden 3758812 @@ -113844,6 +114537,8 @@ auftauen 85391 auftauend 3842 aufteilen 520790 aufteilend 3493 +aufthue 8663 +aufthut 77622 auftischen 107631 auftragen 482540 auftragend 5577 @@ -116473,6 +117168,7 @@ außenpolitischen 1863375 außenpolitischer 312812 außenpolitisches 106557 außenstehende 87851 +außenweltlich 1180 außer 48321411 außerbewusst 488 außerbewusste 278 @@ -116538,6 +117234,7 @@ außersinnliche 13984 außersinnlicher 4609 außerstand 18728 außerstande 804740 +außerweltlich 9579 außgebaut 282 außgebildet 511 außgebreitet 10156 @@ -116818,6 +117515,7 @@ bairischem 14554 bairischen 582261 bairischer 53149 bairisches 19196 +bajuwarisch 7359 bakteriell 108196 bakterielle 683375 bakteriellem 12113 @@ -116977,7 +117675,6 @@ banalsten 36707 banalster 3658 banalstes 380 bananig 105 -band 2285083 bandagiere 564 bandagieren 8345 bandagiert 38467 @@ -117261,6 +117958,7 @@ batistene 983 batistenem 85 batistenen 1132 batistenes 495 +batst 3588 batteriebetrieben 5056 batteriebetriebene 15498 batteriebetriebenem 482 @@ -117604,6 +118302,11 @@ becher 86258 bechere 1199 becheret 1100 becherförmig 59339 +becherförmige 42170 +becherförmigem 2224 +becherförmigen 57467 +becherförmiger 7851 +becherförmiges 6925 bechern 11545 bechernd 437 becherst 124 @@ -117612,6 +118315,11 @@ becherte 3532 becherten 3183 bechre 351 beckenförmig 6223 +beckenförmige 8133 +beckenförmigem 211 +beckenförmigen 8499 +beckenförmiger 1265 +beckenförmiges 689 beckmesserisch 7517 beckmesserische 2160 beckmesserischem 147 @@ -120102,6 +120810,7 @@ belgischem 69103 belgischen 2672566 belgischer 272489 belgisches 77123 +belieben 493472 beliebig 5968628 beliebige 4465758 beliebigem 303023 @@ -120261,6 +120970,7 @@ bemanntes 13026 bemaß 46793 bemaßen 18407 bemaßt 7068 +bemeistern 206967 bemerkbar 8403280 bemerkbare 365967 bemerkbarem 14577 @@ -123675,29 +124385,20 @@ bienne 2900 biennen 1580 bienner 311 biennes 1309 -bier 404162 -biere 19605 biereifrig 362 biereifrigen 121 -bieren 14045 -bierend 283 bierernst 9626 bierernste 1727 bierernstem 259 bierernsten 1881 bierernster 1017 bierernstes 319 -bieret 730 bierselig 3309 bierselige 3785 bierseligem 371 bierseligen 6067 bierseliger 2266 bierseliges 640 -bierst 115 -biert 15459 -bierte 3700 -bierten 4538 biete 1477660 bieten 26223881 bietend 128905 @@ -124113,6 +124814,7 @@ bistabiles 2477 biste 64183 bists 29123 bisweilen 11857334 +bitt 787663 bitte 25891868 bitten 12632789 bittend 600397 @@ -127062,7 +127764,6 @@ citynahen 6465 citynaher 1608 citynahes 503 claviform 575 -clean 143543 clever 265139 clustern 8537 cobaltblau 193 @@ -128216,8 +128917,6 @@ demolire 1221 demolirend 201 demoliret 2752 demolirt 34509 -demolirte 9152 -demolirten 9269 demonstrativ 787522 demonstrative 308748 demonstrativem 22430 @@ -128892,6 +129591,11 @@ deutschstämmigen 82776 deutschstämmiger 20617 deutschstämmiges 693 deutschtümeln 221 +deutschtürkisch 265 +deutschtürkische 3889 +deutschtürkischen 8441 +deutschtürkischer 1023 +deutschtürkisches 405 deverbativ 1265 deverbative 4361 deverbativem 102 @@ -129951,6 +130655,7 @@ dogmatisches 120734 dogmatischste 877 dogmatischsten 1587 doktern 7031 +doktrinär 96794 dokumentiere 32248 dokumentieren 2002069 dokumentierend 13464 @@ -129960,6 +130665,11 @@ dokumentiert 3875380 dokumentierte 591979 dokumentierten 549289 doldenförmig 4828 +doldenförmige 2251 +doldenförmigem 119 +doldenförmigen 3297 +doldenförmiger 428 +doldenförmiges 219 dolent 12344 doll 143903 dollarisieren 107 @@ -131408,6 +132118,7 @@ durchgesehen 704127 durchgesessen 6816 durchgesetzt 4355244 durchgespielt 215608 +durchgestochen 25996 durchgestrichen 301116 durchgeströmt 1403 durchgesägt 27583 @@ -131713,6 +132424,7 @@ durchstechen 98123 durchstehen 227890 durchsteigen 8425 durchstellen 18483 +durchstochen 192829 durchstreiche 5355 durchstreichen 143137 durchstreichend 4554 @@ -131771,9 +132483,9 @@ durchtriebensten 3249 durchtriebenster 334 durchvögeln 5631 p durchvögelst 191 p -durchvögelt 695 p -durchvögelte 882 p -durchvögelten 281 p +durchvögelt 695 +durchvögelte 882 +durchvögelten 281 durchwach 763 durchwache 1571 durchwachen 17071 @@ -133104,7 +133816,6 @@ eiltest 7936 eiltet 3046 eim 711056 ein 2410463047 -eina 40800 einander 67368764 einarbeiten 218237 einarmig 22164 @@ -135833,6 +136544,11 @@ ellenlangen 56342 ellenlanger 7861 ellenlanges 6656 ellipsenförmig 13394 +ellipsenförmige 15422 +ellipsenförmigem 1307 +ellipsenförmigen 15800 +ellipsenförmiger 3069 +ellipsenförmiges 2120 elliptisch 817074 elliptische 750565 elliptischem 65242 @@ -136194,6 +136910,7 @@ emsigstem 1627 emsigsten 20354 emsigster 7286 emsigstes 569 +emulgieren 19678 emulieren 7747 emuliert 9316 emulierte 1789 @@ -136854,6 +137571,7 @@ entflammten 100348 entflammtest 535 entflammtet 115 entflechten 26840 +entflicht 5133 entflieh 13772 entfliehe 32889 entfliehen 1420485 @@ -136863,6 +137581,8 @@ entfliehet 12018 entfliehst 10285 entflieht 324147 entfließen 17118 +entflocht 1509 +entflochten 17321 entfloh 480978 entflohen 659024 entflohst 2800 @@ -137169,6 +137889,7 @@ entionisiertes 2304 entjuden 1715 entjungfern 17045 entjungfert 33229 +entkalken 11183 entkam 487664 entkamen 180824 entkamst 1582 @@ -137431,6 +138152,10 @@ entmutigst 572 entmutigt 290896 entmutigte 41875 entmutigten 30724 +entmündigen 38882 +entmündigend 3015 +entmündigt 138296 +entmündigte 18927 entnahm 1119810 entnahmen 209250 entnahmst 485 @@ -137473,6 +138198,7 @@ entpackten 2217 entpuppen 185426 entpuppt 587564 entpuppte 376165 +entrahmen 5269 entrann 128191 entraten 311657 entre 1378065 @@ -138068,6 +138794,7 @@ entwischten 27611 entwischtest 113 entwischtet 102 entworfen 4327560 +entwunden 107272 entwurzeln 68867 entwässer 408 entwässere 1513 @@ -138691,6 +139418,7 @@ erdrückte 99073 erdrückten 45790 erdrücktest 91 erdulden 947933 +erdverwachsen 1413 erdähnlich 3229 erdähnliche 8308 erdähnlichem 167 @@ -143677,6 +144405,8 @@ fermionisches 131 fern 12383546 fernab 382441 fernbleiben 151032 +fernd 15208 +ferndig 158 ferne 4622860 fernem 222305 fernen 4629333 @@ -143725,6 +144455,7 @@ fernster 38777 fernstes 4294 fernsteuern 12096 fernsähen 174 +fernt 131155 fernzuhalten 994964 fernzusehen 28990 ferrimagnetisch 1146 @@ -144841,6 +145572,11 @@ flaschengrünem 1868 flaschengrünen 11323 flaschengrüner 2251 flaschengrünes 1940 +flashe 65 +flashen 1786 +flasht 1005 +flashte 524 +flashten 160 flatter 17233 flattere 9944 flatterhaft 41368 @@ -147074,6 +147810,8 @@ frottiert 10348 frottierte 9912 frottierten 1586 frotzeln 6836 +frotzelt 7951 +frotzelte 44924 fruchtbar 3432100 fruchtbare 2217480 fruchtbarem 137435 @@ -147647,6 +148385,11 @@ fächerartigen 17455 fächerartiger 3840 fächerartiges 2858 fächerförmig 215007 +fächerförmige 57372 +fächerförmigem 2442 +fächerförmigen 49779 +fächerförmiger 13576 +fächerförmiges 7703 fächern 47469 fächle 3036 fädeln 25426 @@ -149162,6 +149905,7 @@ geduldigsten 15484 geduldigster 2510 geduldigstes 304 gedunkelt 18642 +gedunsen 98915 gedurft 43242 gedurfte 124 gedurften 125 @@ -149387,6 +150131,7 @@ gefizt 370 geflackert 7851 gefladert 1472 geflammt 37741 +geflasht 5680 geflattert 45567 geflechtet 214 gefleckt 505099 @@ -149493,6 +150238,7 @@ gefrorenen 459280 gefrorener 82756 gefrorenes 64028 gefrort 49 +gefrotzelt 3994 gefräst 52291 gefräßig 68350 gefräßige 57263 @@ -149906,6 +150652,7 @@ gegängelt 58614 gegönnt 779176 geh 3601977 gehaart 1285 +gehaben 120301 gehabt 42203383 gehabte 165362 gehabtem 13210 @@ -150243,6 +150990,7 @@ geilerer 189 p geileres 867 p geiles 84408 p geilo 283 +geilomat 139 geilste 16842 p geilstem 162 p geilsten 16269 p @@ -150796,6 +151544,7 @@ geldhungrige 1651 geldhungrigen 3081 geldhungriger 741 geldhungriges 87 +geldlich 30345 geldpolitisch 12251 geldpolitische 87717 geldpolitischem 1009 @@ -151374,6 +152123,9 @@ gendert 1771 genderte 81 genealogisch 158329 genealogische 432557 +genealogischen 531516 +genealogischer 103893 +genealogisches 40902 genebelt 1801 geneckt 130012 genehm 558802 @@ -151560,6 +152312,7 @@ genormtem 4071 genormten 210705 genormter 45392 genormtes 15678 +genoss 2364661 genossen 4880120 genossenschaftlich 174377 genossenschaftliche 575871 @@ -152023,6 +152776,8 @@ geratenste 3551 geratensten 10715 geratest 885 geratet 24722 +gerathe 137715 +gerathet 11870 geraubt 1451693 geraubte 194380 geraubtem 11571 @@ -152156,6 +152911,9 @@ gerieten 1974226 gerietest 3164 gerietet 2321 gerieth 1387723 +geriethen 559350 +geriethest 870 +geriethet 898 gerietst 1376 geriffelt 26026 geriffelte 28179 @@ -153233,6 +153991,7 @@ gespieen 17912 gespiegelt 360743 gespielt 9896178 gespien 24846 +gespinnt 332 gespitzt 159022 gespleißt 4178 gesplissen 2245 @@ -153413,6 +154172,12 @@ gestirntem 3469 gestirnten 164827 gestirnter 6322 gestirntes 1409 +gestisch 84332 +gestische 93056 +gestischem 4052 +gestischen 105968 +gestischer 27868 +gestisches 11370 gestoben 13817 gestochen 1477756 gestochert 7859 @@ -154662,6 +155427,7 @@ glaubendem 2040 glaubenden 111415 glaubender 15195 glaubendes 7748 +glaubern 137 glaubest 36718 glaubet 373783 glaubhaft 1651443 @@ -158343,6 +159109,7 @@ hautverträglichem 187 hautverträglichen 793 hautverträglicher 632 hautverträgliches 405 +havarieren 1361 havariert 11597 havarierte 13971 havariertem 1174 @@ -158732,6 +159499,13 @@ heiratete 2193388 heirateten 389477 heiratetest 2805 heiratetet 655 +heirathe 42335 +heirathest 6151 +heirathet 155706 +heirathete 340773 +heiratheten 31557 +heirathetest 645 +heirathetet 122 heisa 10893 heisch 11118 heische 25222 @@ -159650,6 +160424,8 @@ herkommest 127 herkommet 10635 herkommst 42905 herkommt 531020 +herkunftsdeutsche 321 +herkunftsdeutschen 576 herkäme 39219 herkämen 28639 herkämest 654 @@ -160337,6 +161113,7 @@ heteronormativem 178 heteronormativen 14879 heteronormativer 4397 heteronormatives 967 +heterosexual 7721 heterosexuell 66468 heterosexuelle 138358 heterosexuellem 5246 @@ -160554,6 +161331,8 @@ hiergeblieben 46415 hiergegen 848245 hiergelassen 19925 hierher 11578855 +hierhergehören 17478 +hierhergehörig 11421 hierhergekommen 368644 hierherkommen 138587 hierherkommend 150 @@ -161110,6 +161889,7 @@ hinnehme 24459 hinnehmen 1799162 hinnehmend 13515 hinnehmt 1169 +hinnen 433293 hinnimmst 7505 hinnimmt 219896 hinreichend 9913779 @@ -161737,6 +162517,7 @@ hochgenommen 32945 hochgerechnet 115399 hochgeschleudert 15356 hochgeschätzt 180191 +hochgesteckt 99288 hochgestellt 86161 hochgestellte 220819 hochgestelltem 15016 @@ -161744,6 +162525,7 @@ hochgestellten 296998 hochgestellter 110334 hochgestelltes 16362 hochgestiegen 29188 +hochgestochen 13478 hochgestuft 5207 hochgetragen 17068 hochgiftig 12080 @@ -161954,6 +162736,7 @@ hochstabilen 2312 hochstabiler 922 hochstabiles 336 hochstapeln 2127 +hochstecken 6059 hochstehend 46223 hochstehende 245228 hochstehendem 23441 @@ -162324,6 +163107,7 @@ homorganem 2149 homorganen 8552 homorganer 2835 homorganes 293 +homosexual 13003 homosexuell 184552 homosexuelle 317958 homosexuellem 8649 @@ -164364,12 +165148,24 @@ inhaltlichem 47057 inhaltlichen 3583421 inhaltlicher 818236 inhaltliches 146610 +inhaltsarm 15293 +inhaltsarme 9703 +inhaltsarmem 167 +inhaltsarmen 13639 +inhaltsarmer 2818 +inhaltsarmes 1401 inhaltslos 77509 inhaltslose 53881 inhaltslosem 1636 inhaltslosen 51809 inhaltsloser 16452 inhaltsloses 10829 +inhaltsärmer 4914 +inhaltsärmere 1386 +inhaltsärmeren 1524 +inhaltsärmerer 245 +inhaltsärmste 536 +inhaltsärmsten 678 inhomogen 138650 inhomogene 166845 inhomogenem 11557 @@ -164944,6 +165740,7 @@ intergalaktischem 773 intergalaktischen 27697 intergalaktischer 3909 intergalaktisches 2145 +intergeschlechtlich 405 interglazial 23007 interglaziale 48069 interglazialem 2095 @@ -165692,6 +166489,8 @@ irrwitzigeren 165 irrwitziges 3252 irrwitzigste 412 irrwitzigsten 2068 +isabellfarben 7435 +isabellfarbig 4666 ischämisch 27736 ischämische 145872 ischämischem 10874 @@ -166235,6 +167034,7 @@ juchtene 879 juchtenen 1024 juchtener 243 juchtenes 98 +juchzen 8994 juck 5144 jucke 4836 jucken 117677 @@ -166917,6 +167717,7 @@ kanzerogenem 380 kanzerogenen 25908 kanzerogener 11495 kanzerogenes 2035 +kapabel 11720 kapazitiv 43705 kapazitive 92519 kapazitivem 6328 @@ -168680,6 +169481,7 @@ kloppst 418 kloppt 5916 kloppte 2879 kloppten 2380 +klotze 2535 klotzen 15845 klotzig 23546 klotzige 24205 @@ -169653,6 +170455,9 @@ kommoderer 87 kommodes 1406 kommodeste 389 kommodesten 401 +kommodifizieren 656 +kommodifiziert 2717 +kommodifizierte 934 kommst 3828005 kommt 167262155 kommunal 120828 @@ -171384,8 +172189,14 @@ krankheitserregenden 30700 krankheitserregender 5937 krankheitserregendes 810 krankmachen 6256 +krankmelde 242 krankmelden 9241 +krankmeldest 119 +krankmeldet 862 +krankmeldete 1098 +krankmeldeten 310 krankschreiben 27428 +krankzumelden 3043 kranzförmig 42387 krass 238877 krasse 360425 @@ -172555,6 +173366,7 @@ kurtzen 104746 kurtzer 79730 kurtzes 7185 kurven 77433 +kurvig 32543 kurz 70110607 kurzarbeiten 3621 kurzatmig 85501 @@ -174462,6 +175274,11 @@ leichtgläubigsten 2155 leichtgängig 9280 leichtherzig 26551 leichtlebig 22439 +leichtlebige 33947 +leichtlebigem 694 +leichtlebigen 50971 +leichtlebiger 11535 +leichtlebiges 4136 leichtlöslich 38496 leichtlösliche 40944 leichtlöslichem 5131 @@ -175060,6 +175877,7 @@ liebevollsten 64560 liebevollster 21867 liebevollstes 1723 liebgewinnen 48803 +liebhabe 18201 liebkos 731 liebkose 15207 liebkosen 205689 @@ -176874,6 +177692,7 @@ maliziöses 4730 maliziöseste 214 maliziösesten 385 malkontent 1737 +malle 25757 malm 5543 malme 1454 malmen 8300 @@ -178191,6 +179010,7 @@ melanistischem 225 melanistischen 10108 melanistischer 3104 melanistisches 1193 +meld 49733 melde 721028 melden 5913681 meldend 23246 @@ -178673,7 +179493,6 @@ metrosexueller 249 metzeln 13479 meuchel 1386 meuchele 103 -meucheln 16106 meuchelnd 639 meuchelst 141 meuchelt 5818 @@ -179851,6 +180670,12 @@ mitternachtsblauen 6553 mitternachtsblauer 1345 mitternachtsblaues 1356 mitternachtwärts 4710 +mittheile 234455 +mittheilt 1041195 +mittheilte 592036 +mittheilten 106244 +mittheiltest 3177 +mittheiltet 493 mittig 270002 mittige 20414 mittigem 4955 @@ -181353,6 +182178,7 @@ männermordenden 17170 männermordender 2183 männermordendes 1517 männiglich 201991 +männisch 11573 männlich 2639036 männliche 6711285 männlichem 240467 @@ -181954,6 +182780,7 @@ nachleben 83257 nachlebend 4004 nachlegen 29680 nachlegend 147 +nachleisten 780 nachlesen 693282 nachlief 47742 nachliefe 3827 @@ -183318,6 +184145,7 @@ neuplatonischem 11337 neuplatonischen 294582 neuplatonischer 59727 neuplatonisches 10791 +neuprovenzalisch 572 neuralgisch 12692 neuralgische 124313 neuralgischem 2937 @@ -184222,6 +185050,7 @@ nonkonformistischem 809 nonkonformistischen 31746 nonkonformistischer 8416 nonkonformistisches 2691 +nonprofit 10855 nordafrikanisch 9631 nordafrikanische 76594 nordafrikanischem 3597 @@ -184774,6 +185603,7 @@ nässerer 229 nässeste 608 nässesten 1503 nö 117114 +nöcher 5809 nöle 869 nölen 2441 nölend 615 @@ -184814,6 +185644,7 @@ nörglerischem 129 nörglerischen 1965 nörglerischer 644 nörglerisches 269 +nöthigen 5043294 nötig 23522200 nötige 4186073 nötigem 15034 @@ -185131,6 +185962,7 @@ obwaltet 351270 obwohl 44663817 obzwar 734817 och 2759340 +ochsen 62034 ocker 67547 ockere 534 ockerem 123 @@ -185138,6 +185970,7 @@ ockeren 471 ockerer 273 ockeres 125 oder 1444438870 +oderso 1569 ofenfrisch 1831 ofenfrische 2122 ofenfrischem 783 @@ -185770,7 +186603,6 @@ ordentlichster 139 order 943338 ordere 12471 orderet 452 -ordern 101942 ordernd 6093 orderst 3157 ordert 42525 @@ -186470,6 +187302,7 @@ panislamischen 9070 panislamischer 1527 panislamisches 347 panphotometrisch 1682 +panpsychistisch 654 panschen 4747 pansexuell 681 pansexuelle 503 @@ -187414,6 +188247,7 @@ pergamentenem 685 pergamentenen 19233 pergamentener 2587 pergamentenes 2810 +perhorreszieren 18872 perimortal 271 perimortale 501 perimortalen 474 @@ -187949,6 +188783,7 @@ phantastischstem 93 phantastischsten 28270 phantastischster 595 phantastischstes 135 +pharmakokinetisch 3652 pharmakologisch 168944 pharmakologische 343060 pharmakologischem 10505 @@ -188700,6 +189535,8 @@ plissiert 4517 plissierte 5240 plissierten 10981 plombieren 9932 +plopp 13450 +ploppen 4550 plosiv 2555 plosive 2344 plosivem 136 @@ -188990,6 +189827,9 @@ polterte 322757 polterten 79644 poltertest 138 poltre 779 +polyamor 915 +polyamorös 253 +polyamourös 264 polybromierte 1919 polybromierten 1212 polybromierter 360 @@ -190704,6 +191544,11 @@ prädikatives 25628 prädiktabel 2391 prädisponieren 37347 präfaschistisch 4286 +präfaschistische 7950 +präfaschistischem 359 +präfaschistischen 15734 +präfaschistischer 3374 +präfaschistisches 829 präferabel 406 präferieren 96533 präfigieren 1036 @@ -190967,6 +191812,7 @@ pseudowissenschaftlichem 2267 pseudowissenschaftlichen 50182 pseudowissenschaftlicher 13627 pseudowissenschaftliches 3855 +pseudozufällig 664 psychedelisch 9796 psychedelische 28139 psychedelischem 1069 @@ -191011,7 +191857,6 @@ psychopathischem 3183 psychopathischen 218234 psychopathischer 68362 psychopathisches 6388 -psychopatisch 1635 psychopatische 2263 psychopatischen 2772 psychopatischer 1011 @@ -191305,11 +192150,13 @@ putziger 7327 putziges 8968 putzigste 570 putzigsten 1284 +putzmunter 34081 putzt 294040 putzte 457825 putzten 75563 putztest 1323 putztet 143 +putzwunderlich 215 pyramidenförmig 59985 pyramidenförmige 55091 pyramidenförmigem 4509 @@ -192297,6 +193144,8 @@ ratend 37450 ratest 6072 ratet 61168 ratfragen 604 +rathe 413902 +rathet 61299 ratierlich 6703 ratierliche 4815 ratierlichen 4286 @@ -192572,6 +193421,7 @@ rautenförmigem 8682 rautenförmigen 65815 rautenförmiger 14466 rautenförmiges 10710 +raven 12460 rawb 2165 rawbe 650 rawbet 145 @@ -192787,6 +193637,7 @@ rechteckiger 299347 rechteckiges 149319 rechtem 740751 rechten 42148336 +rechtens 360669 rechter 3850298 rechtere 3693 rechterem 174 @@ -194797,6 +195648,9 @@ rieten 302619 rietest 3502 rietet 3255 rieth 570596 +riethen 149146 +riethest 1183 +riethet 806 riffel 679 riffeln 2634 riffelnden 158 @@ -195620,6 +196474,7 @@ rundliches 115020 rundlichste 313 rundlichsten 662 rundum 719720 +rundumerneuert 368 rundweg 398834 runisch 4124 runische 9269 @@ -195711,6 +196566,11 @@ russischstämmige 2402 russischstämmigen 3082 russischstämmiger 821 russlanddeutsch 442 +russlanddeutsche 7287 +russlanddeutschem 195 +russlanddeutschen 18543 +russlanddeutscher 5570 +russlanddeutsches 230 russlandweit 509 russländisch 2279 russländische 12119 @@ -198232,7 +199092,6 @@ schlagzeilenträchtige 1930 schlagzeilenträchtigen 2335 schlagzeilenträchtiger 477 schlagzeilenträchtiges 259 -schlahen 41550 schlahn 1617 schlaksig 36912 schlaksige 35531 @@ -198802,6 +199661,7 @@ schlüssigste 6858 schlüssigsten 7599 schlüssigster 347 schlüssigstes 141 +schmacht 9991 schmachte 40864 schmachten 234964 schmachtend 107248 @@ -200696,6 +201556,7 @@ schwelst 279 schwelt 67213 schwelte 86079 schwelten 23989 +schwemmen 45905 schwenk 10241 schwenke 25800 schwenken 265568 @@ -202442,6 +203303,7 @@ semiotischem 5984 semiotischen 279295 semiotischer 79424 semiotisches 29520 +semipermeabel 10774 semitisch 105792 semitische 319305 semitischem 24972 @@ -204960,6 +205822,7 @@ spinnest 999 spinnet 12082 spinnst 162853 spinnt 491547 +spinnte 687 spintisieren 7256 spinös 3046 spinöse 3464 @@ -205083,6 +205946,7 @@ splitterte 74553 splitterten 27926 splittre 193 spoilern 666 +sponn 4619 sponsere 622 sponsern 19626 sponserst 171 @@ -205587,6 +206451,7 @@ staatsgefährdendem 869 staatsgefährdenden 19125 staatsgefährdender 17023 staatsgefährdendes 1618 +staatsmännisch 48953 staatstragend 21472 staatstragende 63117 staatstragendem 1275 @@ -207797,6 +208662,7 @@ sturme 14488 sturmen 10530 sturmer 558 sturmes 6895 +sturmfest 7921 sturmfrei 17003 sturmfreie 22335 sturmfreiem 417 @@ -208484,6 +209350,7 @@ sumpfen 2444 sumpfig 131033 sumpfiges 58706 sumsen 4849 +sundanesisch 972 super 2955587 superb 20636 superbe 34237 @@ -210648,6 +211515,7 @@ thront 612286 thronte 311855 thronten 46713 throntest 1035 +thue 2063537 thäte 476209 thüren 32019 thüringisch 95186 @@ -210886,6 +211754,7 @@ titriertem 2882 titrierten 44113 titrierter 26896 titriertes 1875 +titschen 2715 titulieren 60706 tja 127219 tmm 3908 @@ -211852,6 +212721,8 @@ trennte 2394928 trennten 1407850 trenntest 3067 trenntet 1678 +trensen 937 +trenzen 559 trete 2021346 treten 47029543 tretend 385895 @@ -211925,6 +212796,7 @@ trichterförmigem 16902 trichterförmigen 232957 trichterförmiger 48073 trichterförmiges 28968 +trichtern 5649 trickreich 33179 trickreiche 18439 trickreichem 411 @@ -212722,8 +213594,13 @@ tuschte 10221 tuschten 1960 tust 1934166 tut 21617771 +tute 56090 tuten 45131 +tutend 3586 +tutest 216 +tutet 19714 tutete 25953 +tuteten 5026 tuwinisch 560 tuwinische 3029 tuwinischen 5010 @@ -212886,6 +213763,8 @@ tödlichstem 184 tödlichsten 31665 tödlichster 3023 tödlichstes 195 +tödtet 622133 +tödtete 426834 töfte 762 töften 76 tölpelhaft 32972 @@ -213899,6 +214778,7 @@ umtauschst 153 umtauscht 11637 umtauschte 7344 umtauschten 4542 +umtopfen 4112 umtreiben 37684 umtreten 1832 umtriebig 20539 @@ -216767,6 +217647,11 @@ uninteressantes 31113 uninteressanteste 6431 uninteressantesten 6563 unional 789 +unionale 8540 +unionalem 907 +unionalen 19558 +unionaler 6266 +unionales 933 unironisch 7887 unironischer 867 unislamisch 9439 @@ -217700,6 +218585,7 @@ unsereiner 136104 unserem 33497261 unseren 36699268 unserer 100387170 +unsererseits 551860 unseres 31573577 unseresgleichen 36792 unseretwegen 36171 @@ -217716,6 +218602,7 @@ unseriösesten 212 unserm 10033959 unsern 13276575 unsers 4191042 +unserseits 67526 unsertwegen 54241 unsexy 8614 unsicher 6857816 @@ -217812,6 +218699,7 @@ unsre 6730506 unsrem 472950 unsren 343723 unsrer 6140251 +unsrerseits 55143 unsres 1199122 unsretwegen 3692 unsrige 520683 @@ -219092,6 +219980,7 @@ unvernünftiges 57775 unvernünftigste 6156 unvernünftigsten 9064 unvernünftigster 385 +unverpixelt 171 unverschuldet 199809 unverschuldete 129435 unverschuldetem 18299 @@ -220267,6 +221156,7 @@ veilchenfarbigem 115 veilchenfarbigen 1582 veilchenfarbiger 307 veilchenfarbiges 295 +vektorisieren 970 velar 23115 velarisieren 170 velarisiert 3209 @@ -220483,7 +221373,6 @@ veranstalteten 1331792 veranstaltetest 278 veranstaltetet 1550 verantworte 30338 -verantworten 2007718 verantwortend 2315 verantwortest 1539 verantwortet 336426 @@ -221846,6 +222735,7 @@ verflachtet 217 verflechten 223509 verflechtend 8566 verflechtet 7121 +verflicht 75325 verflieg 467 verfliege 4993 verfliegen 100016 @@ -221880,6 +222770,7 @@ verfluchter 134819 verfluchtes 75535 verfluchtest 1173 verfluchtet 1284 +verflöchte 1288 verflöge 2007 verflögen 853 verflögest 169 @@ -224433,6 +225324,8 @@ verraten 5979351 verratend 41786 verratest 649 verratet 21744 +verrathe 74535 +verrathet 8215 verratzt 4253 verratzte 241 verratzten 480 @@ -224500,6 +225393,9 @@ verrieten 632819 verrietest 3045 verrietet 1103 verrieth 469432 +verriethen 183204 +verriethest 852 +verriethet 446 verringer 2850 verringere 57616 verringeret 654 @@ -225593,6 +226489,9 @@ versinkest 1795 versinket 7283 versinkst 11150 versinkt 725718 +versippen 1169 +versippt 38807 +versippte 7985 versklave 2171 versklaven 85209 versklavend 1091 @@ -226210,6 +227109,11 @@ verteufelt 209930 verteufelte 57782 verteufelten 46837 verteufle 1301 +vertheidige 60484 +vertheidigte 602888 +vertheidigten 283959 +vertheidigtest 597 +vertheidigtet 149 verticken 8993 vertickt 8318 vertickte 2602 @@ -227042,6 +227946,7 @@ verwunschener 19186 verwunschenes 14979 verwunschenste 240 verwunschensten 310 +verwursten 3669 verwähle 218 verwählen 1504 verwählt 22487 @@ -228132,6 +229037,7 @@ viviparen 34706 viviparer 2465 vivipares 3199 vllt 2747 +vlt 22461 vogelfrei 177939 vogelfreie 7622 vogelfreiem 592 @@ -228175,6 +229081,7 @@ volksetymologischem 1337 volksetymologischen 15516 volksetymologischer 11470 volksetymologisches 625 +volkskundlich 78109 volksmässig 14945 volksmäßig 47079 volksmäßige 51917 @@ -229182,6 +230089,7 @@ vorlegte 826819 vorlegten 137561 vorlegtest 580 vorlegtet 477 +vorleisten 3432 vorlese 53035 vorlesen 946039 vorlesend 14694 @@ -230205,6 +231113,7 @@ walisischer 14843 walisisches 3737 walken 33577 wall 364138 +wallah 1910 walle 53026 wallen 333959 wallend 61474 @@ -230600,6 +231509,7 @@ wattiges 2008 wattigste 128 wattigsten 181 wau 48722 +wauen 287 wayne 6165 web 207237 webbasiert 6045 @@ -232143,6 +233053,7 @@ wettert 96698 wetterte 159878 wetterten 23792 wettertest 139 +wetterwendisch 25388 wettes 294 wettest 4411 wettet 51698 @@ -232668,6 +233579,7 @@ wiedersähet 123 wiedertaufen 5245 wiederum 40686770 wiederverkäuflich 891 +wiederverschließbar 831 wiederverwendbar 20181 wiederverwendbare 24341 wiederverwendbarem 1089 @@ -233893,6 +234805,7 @@ wringet 236 wringst 229 wringt 10146 wränge 196 +wsl 3386 wucher 32592 wuchere 12706 wucheret 166 @@ -234080,6 +234993,7 @@ wurstelst 145 wurstelt 5992 wurstelte 4939 wurstelten 1298 +wursten 3132 wurstle 526 wurzel 288363 wurzele 44452 @@ -234317,6 +235231,9 @@ wässrigeres 42 wässriges 45590 wässrigste 194 wässrigsten 247 +wäßrig 61990 +wäßriger 394052 +wäßrigsten 159 wöchentlich 4048038 wöchentliche 684290 wöchentlichem 42261 @@ -234562,6 +235479,11 @@ wütete 395384 wüteten 113696 wütetest 189 wütetet 158 +wüthe 13267 +wüthest 1292 +wüthet 107001 +wüthete 240436 +wütheten 70778 wüßte 2541004 wüßten 1128851 wüßtest 167625 @@ -237502,6 +238424,7 @@ zusichertet 109 zusichre 115 zusiehst 9699 zusieht 272855 +zusperren 36240 zuspielen 43112 zuspitze 5197 zuspitzen 160162 @@ -237614,7 +238537,9 @@ zuteilwerden 65462 zutexten 2843 zutiefst 2109069 zutraf 290564 +zutrage 14846 zutragen 337882 +zutragt 4839 zutrank 11921 zutranken 6750 zutrat 90243 @@ -237659,11 +238584,17 @@ zutrinkst 231 zutrinkt 6028 zutritt 52743 zutrittst 175 +zutrug 213759 +zutrugen 69895 +zutrugt 165 zuträfe 115807 zuträglich 658358 +zuträgst 605 +zuträgt 128132 zutränken 650 zuträte 1017 zuträten 387 +zutrüge 19500 zutue 707 zutuen 1476 zutuend 83 @@ -238173,6 +239104,7 @@ zwickst 1343 zwickt 70074 zwickte 97167 zwickten 16366 +zwiebeln 12476 zwiefach 198618 zwiefältig 16089 zwielichtig 35206 @@ -238803,6 +239735,7 @@ zürntet 1230 Öhr 43356 Öhrchen 37960 Öhrchens 513 +Ökofaschist 133 Ökologe 18167 Ökologen 73923 Ökologie 1600597 @@ -238946,6 +239879,7 @@ zürntet 1230 Übelnehmen 7232 Übels 712235 Übelstand 507576 +Übelstände 359831 Übeltat 40262 Übeltäter 366647 Übeltätern 42211 @@ -239341,6 +240275,7 @@ zürntet 1230 Übertöten 416 Übertötung 569 Übertünchen 4491 +Übervater 26389 Übervorteilen 4272 Übervölkerung 197194 Übervölkerungen 361 @@ -239375,6 +240310,7 @@ zürntet 1230 Überwurfes 2849 Überwurfs 5276 Überwältigen 9184 +Überwältiger 6443 Überwürfe 11393 Überwürfen 5656 Überzahl 376015 @@ -239453,6 +240389,7 @@ zürntet 1230 ägyptischen 4258317 ägyptischer 550672 ägyptisches 106303 +ägäisch 10974 äh 1100778 ähnel 1002 ähnele 30516 @@ -240273,6 +241210,7 @@ zürntet 1230 überfordert 1445133 überforderte 143162 überforderten 105600 +überfrachten 26846 überfrankiert 207 überfreut 1029 überfreute 44 diff --git a/data/dicts/v0~draft1/words_en-GB.fldic b/data/dicts/v0~draft1/words_en-GB.fldic index 274a795..b7347b2 100644 --- a/data/dicts/v0~draft1/words_en-GB.fldic +++ b/data/dicts/v0~draft1/words_en-GB.fldic @@ -280,14 +280,17 @@ ADUs 874 ADV 54640 ADVs 1284 ADW 5305 +ADX 8290 ADs 13063 AEA 169992 AEAP 167 AEB 41853 AEC 208348 +AECOPD 1401 AED 119633 AEDT 319 AEDs 48207 +AEEU 21671 AEF 63678 AEFI 545 AEM 26596 @@ -341,8 +344,11 @@ AFS 65680 AFSCME 5993 AFSM 957 AFSP 1534 +AFSS 687 AFT 45388 +AFTN 2042 AFTRA 5742 +AFTS 1022 AFU 6731 AFVs 13104 AFWL 969 @@ -418,7 +424,6 @@ AIPs 2550 AIRMET 525 AIS 164857 AISD 1184 -AISI 86837 AISP 798 AISs 773 AIT 58929 @@ -442,6 +447,7 @@ ALARA 12162 ALARP 15451 ALBM 1111 ALC 50228 +ALCL 10048 ALCM 9031 ALCMs 4634 ALCO 10245 @@ -491,6 +497,7 @@ AMGN 173 AMGOT 5383 AMHS 2391 AMI 152235 +AMIR 14689 AMIs 3251 AML 201598 AMLCD 1889 @@ -507,6 +514,7 @@ AMPA 57803 AMPAS 6770 AMPK 20025 AMPS 33411 +AMPTP 517 AMR 73073 AMRAAM 9525 AMRAAMs 1185 @@ -520,7 +528,6 @@ AMUs 1735 AMV 24861 AMVETS 262 AMVs 769 -AN 8085346 ANA 173678 ANAs 6948 ANCC 1920 @@ -599,6 +606,7 @@ APIC 8165 APIPA 489 APIX 821 APIs 94344 +APK 10340 APL 128823 APLS 5623 APLs 2346 @@ -643,7 +651,6 @@ ARCA 25670 ARCH 273659 ARCIC 22699 ARD 309777 -ARDS 108038 AREs 5614 ARF 143840 ARFCN 668 @@ -656,9 +663,11 @@ ARIMA 37578 ARIN 2667 ARM 230517 ARMA 65678 +ARMD 4498 ARMY 1298123 ARMs 83042 ARNG 799 +ARNI 2445 ARNP 565 ARO 28401 AROs 808 @@ -702,6 +711,7 @@ ASCE 170599 ASCs 14649 ASD 435135 ASDF 3382 +ASDH 1213 ASDIC 6730 ASDS 2471 ASDs 36020 @@ -818,6 +828,7 @@ AUC 107083 AUCs 3401 AUM 22108 AUMF 4147 +AUN 3944 AUP 11098 AUPE 288 AUPs 750 @@ -841,7 +852,6 @@ AVI 51473 AVL 20316 AVLB 1390 AVLBs 397 -AVM 50466 AVMs 20088 AVN 20015 AVNRT 15237 @@ -888,8 +898,10 @@ AZN 821 AZO 10084 AZT 50124 Aa 457727 +Aabenraa 6410 Aach 6593 Aachen 386259 +Aachener 10962 Aadi 947 Aafia 624 Aagaard 13683 @@ -1134,6 +1146,7 @@ Abernathy 71680 Abernethian 5556 Abernethy 375174 Aberporth 16009 +Abersychan 18231 Abertawe 5545 Aberthaw 28983 Abertillery 87511 @@ -1229,6 +1242,7 @@ Aboud 23237 Aboukir 179314 Abovian 2350 Abovyan 771 +Aboyne 113556 Abp 273936 Abplanalp 2449 Abqaiq 7507 @@ -1256,6 +1270,7 @@ Abramovich 43561 Abramoviches 117 Abramowitz 39273 Abrams 459891 +Abramses 163 Abramsky 18215 Abramson 94007 Abrantes 94111 @@ -1310,6 +1325,7 @@ Abuladze 3976 Abulfeda 75817 Abun 9355 Abuna 44009 +Abunas 966 Abundantia 4706 Abundius 1721 Abung 689 @@ -1361,6 +1377,7 @@ Accadians 14910 Accalon 1290 Accardi 3547 Accetta 1077 +Accettura 353 Accident 1850192 Accomac 5928 Accomack 5956 @@ -1444,10 +1461,12 @@ Acheulean 58532 Acheulian 76102 Acheulians 933 Achey 992 +Achhnera 273 Achi 32191 Achih 142 Achillean 11634 Achilles 2596954 +Achimota 57359 Achin 52527 Achinese 15307 Achir 1364 @@ -1458,6 +1477,7 @@ Achmimic 1326 Achnacloich 2182 Achnasheen 9741 Achnashellach 5115 +Achnera 1517 Acholi 81037 Acholiland 4486 Acholis 1401 @@ -1531,6 +1551,7 @@ Acroceraunian 9444 Acropolis 674597 Acropolitan 223 Actaeon 119786 +Actaeons 811 Acteon 28272 Acteons 950 ActionScript 8793 @@ -1563,6 +1584,7 @@ Adal 17526 Adaline 6665 Adalyn 822 Adam 16164798 +Adamantia 2709 Adamantidis 591 Adamatzky 1270 Adamawa 61972 @@ -1619,6 +1641,7 @@ Adders 22852 Adderson 1690 Adderstone 7447 Addey 17566 +Addi 39979 Addick 1367 Addicks 6360 Addicott 8574 @@ -1629,6 +1652,7 @@ Addington 790371 Addingtonian 1414 Addingtonians 1580 Addingtons 5908 +Addis 808042 Addiscombe 138520 Addison 3482152 Addisonian 34088 @@ -1662,6 +1686,7 @@ Adelina 95354 Adeline 356764 Adeliza 53718 Adell 7476 +Adelma 1893 Adelman 112756 Adelmann 9438 Adelphi 1020820 @@ -1691,6 +1716,9 @@ Adiabene 32907 Adiabenian 435 Adiabenians 1706 Adiaphorist 720 +Adib 21361 +Adibasi 513 +Adibasis 391 Adicia 1713 Adidas 82080 Adidases 147 @@ -1704,6 +1732,7 @@ Adio 7286 Adioukrou 674 Adirondack 62469 Adirondacks 39501 +Adit 29670 Adithya 105 Aditi 45813 Aditya 37871 @@ -1736,6 +1765,7 @@ Adm'r 408 Administrator 1345089 Administrators 439390 Admiral 10892326 +Admiralties 21784 Admiralty 13222128 Admire 55532 Admonitionists 154 @@ -1822,6 +1852,7 @@ Aeaea 5872 Aeaean 1047 Aedo 2788 Aedui 36921 +Aegaean 15291 Aegaeon 2301 Aegean 1044908 Aegeans 5317 @@ -1894,6 +1925,8 @@ Afanasy 10506 Afar 163730 Afaria 352 Afars 22299 +Afemai 163 +Afenmai 920 Aferdita 228 Afers 801 Affeldt 2319 @@ -1957,6 +1990,7 @@ Africanness 11323 Africanoid 353 Africans 4494843 Africology 395 +Africs 2782 Afridi 50462 Afridis 53462 Afrika 253486 @@ -2004,6 +2038,7 @@ Afsharids 439 Afshars 3464 Afton 49932 Afula 5974 +Afyon 11514 Afyonkarahisar 1542 Ag 1582162 Aga 570320 @@ -2086,11 +2121,14 @@ Agler 2851 Aglianico 5653 Aglionby 101604 Aglionbys 673 +Aglipayan 569 +Aglipayans 253 Aglukkaq 165 Agne 9879 Agnean 357 Agner 3860 Agnes 4233181 +Agnesse 273 Agnew 605067 Agnews 12555 Agni 301430 @@ -2122,6 +2160,7 @@ Agrios 3248 Agrippa 957593 Agrippina 335588 Agrippinian 1099 +Agron 122438 Agta 6926 Agtas 197 Aguado 29285 @@ -2198,6 +2237,7 @@ Ahlstrom 33585 Ahluwalia 36035 Ahluwalias 291 Ahmad 1294259 +Ahmadabad 54318 Ahmadi 71335 Ahmadinejad 80585 Ahmadis 17456 @@ -2239,6 +2279,7 @@ Ahwaz 73804 Ai 741469 AiG 722 Aias 62158 +Aibonito 963 Aichele 6716 Aichholz 815 Aichi 53713 @@ -2270,6 +2311,7 @@ Aikins 14173 Aikman 101403 Aikmans 515 Aikrigg 375 +Ailan 2746 Aileen 200399 Ailes 24698 Ailie 57529 @@ -2324,6 +2366,7 @@ Aisha 123830 Aishwarya 3880 Aislinn 18207 Aisne 223728 +Aitch 9568 Aitchison 251422 Aitken 803191 Aitkenhead 22535 @@ -2338,6 +2381,7 @@ Aitutaki 25976 Aitutakian 675 Aitutakians 1167 Aivilik 625 +Aiwo 889 Aiyana 4420 Aizawl 4801 Aizu 11258 @@ -2427,6 +2471,7 @@ Akhwan 4060 Akiba 128078 Akihabara 6412 Akiko 43134 +Akil 34236 Akin 136888 Akina 5535 Akins 22048 @@ -2469,6 +2514,7 @@ Akulas 390 Akure 18476 Akureyri 25249 Akutagawa 11733 +Akwesasne 4180 Akyab 65698 Al 10945125 Ala 430083 @@ -2488,6 +2534,7 @@ Alagwa 526 Alai 39779 Alaia 8034 Alaimo 13247 +Alain 842304 Alaina 16677 Alais 57407 Alakananda 2265 @@ -2514,6 +2561,7 @@ Alana 85189 Alanah 956 Alander 5282 Alanders 3499 +Alandra 3123 Alani 79985 Alania 5655 Alanic 3239 @@ -2614,6 +2662,7 @@ Albertsons 1749 Albertus 237303 Albertville 23985 Alberty 5829 +Albery 119804 Albi 89255 Albia 14686 Albie 56354 @@ -2630,6 +2679,7 @@ Albireo 3457 Albo 39692 Albon 44880 Albor 2295 +Alboreto 2809 Albornoz 43342 Alborough 10187 Albors 3307 @@ -2767,6 +2817,7 @@ Aldrick 6552 Aldridge 438239 Aldridges 1975 Aldrin 54764 +Aldringham 6324 Aldrington 21855 Aldus 225576 Aldwarke 11617 @@ -2784,6 +2835,7 @@ Aleena 6955 Alegranza 2476 Alegre 176545 Alegres 635 +Alegria 22828 Aleh 1555 Aleisha 1688 Aleister 54343 @@ -2822,10 +2874,12 @@ Alesha 22407 Aleshire 2998 Alesi 6451 Alesis 2774 +Alessandra 93059 Alessandria 108762 Alessandro 659110 Alessandros 1380 Alessi 51889 +Alessia 17184 Alessis 386 Aletha 4475 Aletsch 27146 @@ -2898,6 +2952,7 @@ Alfreton 122976 Alfrey 18075 Alfreys 335 Alfven 43109 +Alfvenic 2863 Alfy 6762 Algarin 965 Algarkirk 9274 @@ -3005,9 +3060,11 @@ Alkman 8946 Allaah 135518 Allah 2527145 Allahabad 651144 +Allahs 1506 Allain 37247 Allaire 26000 Allaires 152 +Allais 36667 Allam 44932 Allamakee 341 Allaman 2117 @@ -3156,6 +3213,7 @@ Allyson 33098 Allyssa 343 Alma 1312492 Almach 1030 +Almagest 62435 Almagro 158390 Almaguer 4360 Almain 65990 @@ -3244,6 +3302,7 @@ Alphaeus 30127 Alphamstone 3946 Alphard 3979 Alpharetta 1978 +Alphas 12144 Alphecca 1114 Alpherat 1105 Alpheratz 2124 @@ -3281,6 +3340,7 @@ Alsobrook 1013 Alsop 223202 Alspaugh 1449 Alston 626649 +Alstonefield 6001 Alsup 2661 Alsvid 1542 Alt 681835 @@ -3300,6 +3360,7 @@ Altdorf 47221 Altea 16683 Altemose 220 Altemus 3615 +Altenbeken 617 Altenberg 65712 Altenbergs 292 Altenburg 105483 @@ -3318,12 +3379,14 @@ Althorne 5724 Althorpe 72369 Althouse 7438 Althusserian 44831 +Althusserianism 5820 Althusserians 4732 Altice 795 Altier 1228 Altieri 59548 Altieris 139 Altimari 668 +Altina 1195 Altiplano 38147 Altizer 14843 Altland 2435 @@ -3456,6 +3519,7 @@ Amalthea 31429 Amalthean 419 Amaltheia 4931 Amamiya 2522 +Aman 156474 Amanab 644 Amanar 1429 Amanda 1263956 @@ -3504,6 +3568,7 @@ Amatuzio 310 Amavasya 917 Amaya 40905 Amayah 169 +Amaziah 92208 Amazigh 14105 Amazighs 581 Amazon 1946921 @@ -3567,6 +3632,7 @@ Ambulas 403 Amburgey 3974 Amburn 1135 Amdahl 17321 +Amdavad 167 Amdo 17962 Amduat 2774 Ameche 7237 @@ -3611,6 +3677,7 @@ Americanist 18655 Americanistic 76 Americanists 28148 Americanitis 631 +Americanity 379 Americanization 126689 Americanizations 273 Americanize 10768 @@ -3662,6 +3729,7 @@ Amery 546642 Ames 829638 Amesbury 190060 Amescua 2185 +Ameses 836 Amess 58368 Amesses 874 Amesti 247 @@ -3909,6 +3977,7 @@ Anatoli 41032 Anatolia 788869 Anatolian 354972 Anatolians 10626 +Anatolic 4332 Anatolius 55519 Anatoliy 12789 Anatoly 97365 @@ -3928,6 +3997,7 @@ Ancells 709 Ancenis 10757 Anchediva 1346 Ancheta 2482 +Anching 291 Anchises 167662 Anchor 970542 Anchorage 406574 @@ -4231,6 +4301,7 @@ Angoras 9576 Angostura 76770 Angotti 2533 Angoumois 23577 +Angram 9728 Angrez 2544 Angria 50253 Angrian 12766 @@ -4258,6 +4329,7 @@ Anhui 94201 Anhur 5106 Anhwei 25093 Ani 186607 +Anian 32395 Aniceto 5961 Anicetus 45126 Anich 1243 @@ -4488,6 +4560,7 @@ Antiguans 6046 Antikamnia 2827 Antikythera 11082 Antilegomena 4705 +Antilhue 542 Antilia 8741 Antilibanus 13023 Antill 21697 @@ -4663,6 +4736,7 @@ Apas 4107 Apatow 2885 Apaturia 7280 Apayao 1405 +Apaza 1157 Apedale 11731 Apeldoorn 32417 Apeliotes 1797 @@ -4686,6 +4760,7 @@ Api 57990 Apia 138374 Apicella 7985 Apician 4957 +Apley 38567 Aplin 61271 Aplins 361 Apma 487 @@ -4801,6 +4876,7 @@ Aqaba 171264 Aqal 605 Aqdas 4536 Aqedah 4700 +Aqil 8569 Aqsu 1663 Aquaforte 513 Aquarian 45122 @@ -4902,6 +4978,9 @@ Arakelyan 1809 Araki 62003 Araks 6207 Aral 230337 +Araldite 75867 +Araldited 115 +Araldites 161 Aram 374325 Aramaean 67523 Aramaeans 38191 @@ -5088,6 +5167,7 @@ Arddleen 1216 Ardee 45981 Ardeer 31345 Ardelean 893 +Ardeley 7651 Ardelia 11560 Arden 1133553 Ardene 4767 @@ -5095,6 +5175,7 @@ Ardennes 343604 Ardern 61892 Ardersier 14855 Ardgay 7677 +Ardglass 38458 Ardhamagadhi 927 Ardian 2090 Ardie 2856 @@ -5255,6 +5336,7 @@ Arie 71452 Ariel 825209 Ariella 15688 Arielle 14654 +Ariels 5957 Aries 577549 Arietid 937 Arietids 1584 @@ -5336,6 +5418,7 @@ Arkhimedes 299 Arkholme 5631 Arkie 2848 Arkies 961 +Arkinstall 7259 Arkite 15101 Arkites 4183 Arkle 43414 @@ -5359,6 +5442,8 @@ Arlene 114861 Arleng 147 Arles 346280 Arlesey 20831 +Arlesian 2038 +Arlesians 522 Arleta 2927 Arley 99626 Arlidge 36005 @@ -5534,6 +5619,9 @@ Arpita 1213 Arps 13670 Arquette 13343 Arraf 767 +Arragon 445881 +Arragonian 7092 +Arragonians 2513 Arram 9978 Arrambide 363 Arran 1144247 @@ -5614,6 +5702,7 @@ Artemisa 6135 Artemisian 3816 Artemision 23968 Artemisium 52039 +Artemovsk 1277 Arter 35575 Arterberry 2696 Arterburn 1131 @@ -5639,6 +5728,7 @@ Artigas 59258 Artigat 856 Artin 24742 Artina 1842 +Artingstall 5005 Artinian 8035 Artinskian 4901 Artio 2505 @@ -5874,6 +5964,7 @@ Ashland 113275 Ashlee 7691 Ashleigh 71918 Ashley 2240938 +Ashleyhay 962 Ashleys 6945 Ashlie 1439 Ashline 861 @@ -5882,8 +5973,8 @@ Ashly 21391 Ashlyn 17937 Ashlynn 11117 Ashman 64432 +Ashmanhaugh 1010 Ashmans 945 -Ashmere 1562 Ashmole 300734 Ashmolean 494921 Ashmore 193869 @@ -5896,6 +5987,7 @@ Ashopton 4356 Ashover 43831 Ashow 5604 Ashperton 4001 +Ashprington 7541 Ashqelon 2983 Ashrafi 7922 Ashrafis 790 @@ -6015,6 +6107,7 @@ Aspermont 1253 Aspers 11025 Aspie 15582 Aspies 10803 +Aspilcueta 211 Aspinall 307561 Aspinalls 2267 Aspinwall 80742 @@ -6238,6 +6331,7 @@ Athirne 491 Athletic 439515 Athletics 212101 Athlone 518778 +Athlumney 7267 Athol 339183 Athole 225342 Atholl 471424 @@ -6514,6 +6608,7 @@ Aurelia 321186 Aurelian 347337 Aurelians 2174 Aurelius 956589 +Auric 36908 Aurica 871 Auriemma 1291 Auriga 51753 @@ -6525,9 +6620,11 @@ Aurillac 31630 Aurland 2933 Aurobindo 66839 Aurora 1222510 +Auroran 235 Aurthur 1998 Aurum 68133 Aus 417488 +Ausbau 6043 Ausbruch 8453 Ausbruchs 162 Ausburn 573 @@ -6553,6 +6650,8 @@ Austen 2625994 Austenesque 487 Austenian 3244 Austeniana 341 +Austenians 232 +Austenish 891 Austenite 68120 Austenites 878 Auster 138555 @@ -6768,7 +6867,6 @@ Avraam 2536 Avraham 63906 Avril 199597 Avrils 111 -Avus 5663 Aw 400610 Awa 74215 Awaba 419 @@ -6890,6 +6988,7 @@ Aynu 149 Ayodhya 84740 Ayon 4200 Ayons 428 +Ayoreo 2506 Ayotte 5081 Ayoub 41994 Ayr 1462295 @@ -6911,6 +7010,7 @@ Ayto 19449 Ayton 182044 Aytons 755 Aytos 531 +Aytoun 138686 Ayu 11365 Ayub 161471 Ayuko 293 @@ -7030,6 +7130,7 @@ BAML 268 BAN 188432 BANANA 28090 BANANAs 1302 +BAOR 48888 BAP 54566 BAPs 2394 BAR 655086 @@ -7049,6 +7150,7 @@ BATF 5766 BATNA 9428 BATNAs 1091 BATNEEC 16366 +BATUS 2452 BAe 116620 BAs 27538 BB 802553 @@ -7063,7 +7165,6 @@ BBDs 295 BBE 6650 BBEG 237 BBFC 58954 -BBG 7139 BBI 16623 BBL 50993 BBM 15604 @@ -7084,7 +7185,6 @@ BCAAs 3304 BCAR 6292 BCARs 675 BCBS 26183 -BCC 207395 BCCA 6253 BCCI 97763 BCCs 13129 @@ -7099,7 +7199,6 @@ BCM 78514 BCMS 6057 BCMs 518 BCN 14535 -BCNU 18462 BCOF 3714 BCP 109061 BCPC 17827 @@ -7114,6 +7213,7 @@ BCTF 477 BCTs 4975 BCVA 2198 BCs 12588 +BCx 357 BD 674237 BDA 72633 BDAC 1043 @@ -7132,7 +7232,8 @@ BDW 2447 BDs 2881 BE 3840256 BEA 263595 -BEC 89993 +BEAM 159920 +BEAST 49818 BECO 1251 BEDMAS 353 BEE 296167 @@ -7160,11 +7261,13 @@ BFP 15861 BFPO 13058 BFQ 623 BFs 9587 +BG 377249 BGAN 1274 BGH 73796 BGP 26818 BGSU 1136 BGT 10250 +BH 287660 BHB 13949 BHCA 1789 BHK 35019 @@ -7184,6 +7287,7 @@ BIEs 647 BIF 23299 BIFA 6764 BIFF 5821 +BIFs 2541 BIG 378648 BIGs 263 BIL 38898 @@ -7197,10 +7301,12 @@ BIOT 14013 BIP 44698 BIPM 10452 BIPV 4231 +BIPs 2383 BIR 37207 BIRG 2029 BIRGing 725 BIRT 18870 +BIS 362821 BISDN 2017 BITD 273 BITNET 6219 @@ -7216,6 +7322,7 @@ BKE 1236 BKN 2394 BL 1795507 BLA 44976 +BLAS 22316 BLAST 149541 BLASTs 194 BLAs 4856 @@ -7229,6 +7336,7 @@ BLINKs 175 BLIS 2119 BLK 5202 BLL 55954 +BLLs 458 BLM 54473 BLOD 206 BLP 23114 @@ -7263,8 +7371,8 @@ BMSs 1437 BMT 81738 BMTs 1078 BMV 15995 -BMW 565035 -BMWs 30045 +BMW 565035 p +BMWs 30045 p BMX 23631 BMXers 439 BMXing 173 @@ -7274,6 +7382,7 @@ BN 478557 BNC 66923 BNCs 553 BND 26991 +BNDD 2791 BNF 141576 BNFs 516 BNI 19933 @@ -7286,6 +7395,7 @@ BNS 17938 BNSF 5869 BOAC 251434 BOAT 222006 +BOATs 9039 BOB 138587 BOBs 523 BOC 160399 @@ -7326,7 +7436,9 @@ BP 2651826 BPAI 600 BPC 82092 BPD 114669 +BPE 21846 BPEL 19966 +BPEs 239 BPI 47696 BPL 35589 BPM 60649 @@ -7336,8 +7448,9 @@ BPOE 158 BPON 683 BPOs 1580 BPP 103596 -BPPV 11030 BPR 106333 +BPV 17428 +BPVs 686 BPh 3662 BPhil 21608 BQE 1461 @@ -7359,6 +7472,7 @@ BRIC 54932 BRICS 78329 BRICs 26989 BRK 6661 +BRM 32918 BRMC 181 BRN 4959 BRONJ 798 @@ -7397,6 +7511,7 @@ BSPs 1855 BSSID 718 BSSO 1759 BST 70379 +BSTs 770 BSing 101 p BSkyB 73519 BSs 22020 @@ -7405,6 +7520,7 @@ BTA 85142 BTAS 999 BTBA 295 BTC 79889 +BTD 10734 BTDT 180 BTE 15936 BTEC 138704 @@ -7448,6 +7564,7 @@ BWA 11576 BWB 20432 BWC 26747 BWER 174 +BWI 17211 BWM 3938 BWR 54752 BWRA 16646 @@ -7594,6 +7711,7 @@ Bacani 853 Bacas 3737 Baccam 259 Baccari 1717 +Baccarin 321 Baccaris 248 Bacchanal 38153 Bacchanalia 24525 @@ -7637,6 +7755,8 @@ Backhouse 351915 Backhouses 3311 Backlund 31372 Backman 41651 +Backrooms 194 +Backstein 1251 Backstop 1820 Backstrom 16711 Backus 72232 @@ -7666,6 +7786,7 @@ Badakhshan 64543 Badal 13734 Badalamenti 8019 Badalona 5696 +Badami 17428 Badarpur 3869 Badawi 64471 Badawis 191 @@ -7719,6 +7840,7 @@ Badshahs 273 Badua 1013 Baduhenna 417 Baduk 398 +Badulla 21898 Badura 11715 Bady 5222 Badys 95 @@ -7746,6 +7868,7 @@ Baffin 269334 Bafut 7769 Bagan 30366 Baganda 140398 +Baganuur 702 Bagby 27857 Bagdad 769168 Bagdadi 3491 @@ -7765,6 +7888,7 @@ Baggotts 259 Baggrow 828 Baggs 56664 Bagguley 18471 +Baghal 1360 Baghchi 625 Baghdad 2267274 Baghdadi 47809 @@ -7810,6 +7934,7 @@ Bagshaw 173822 Bagshawe 112022 Bagshaws 2470 Bagshot 286864 +Bagster 94578 Bagthorpe 8879 Baguio 28985 Baguley 50952 @@ -7821,6 +7946,7 @@ Bah 272675 Bahadur 349325 Bahadurs 989 Baham 2969 +Bahama 277246 Bahaman 6889 Bahamans 247 Bahamas 1125219 @@ -7857,6 +7983,8 @@ Bahr 469999 Bahrain 1227729 Bahraini 63421 Bahrainis 15596 +Bahrainisation 467 +Bahrainization 397 Bahrami 8948 Bahrein 156724 Bahri 57791 @@ -7884,6 +8012,7 @@ Baikalian 3211 Baikonur 13231 Baiks 117 Bail 513461 +Bailao 191 Baildon 90798 Bailee 20013 Bailer 17935 @@ -8068,6 +8197,7 @@ Baldo 39509 Baldock 244527 Baldocks 928 Baldonado 485 +Baldonnel 3448 Baldos 229 Baldovi 129 Baldovinos 554 @@ -8101,6 +8231,7 @@ Baleys 224 Balfour 4631888 Balfourian 5632 Balfours 16971 +Balfron 27429 Balgobin 1693 Balgonie 31030 Balgowan 15534 @@ -8112,11 +8243,13 @@ Balian 25886 Balians 500 Baliceaux 451 Balicki 3095 +Balikian 422 Balinese 212350 Balingian 1085 Balint 124486 Balints 887 Balistreri 10079 +Balitsky 807 Baliuag 377 Baljit 4085 Balk 69429 @@ -8197,6 +8330,7 @@ Ballinalee 3203 Ballinamore 17661 Ballinascarthy 1146 Ballinascarty 145 +Ballinasloe 74767 Ballindine 13596 Balling 37242 Ballinger 138240 @@ -8221,6 +8355,7 @@ Ballsbridge 29062 Ballston 10863 Ballweg 1342 Ballwin 1000 +Ballybay 10296 Ballybofey 4016 Ballybrophy 3913 Ballybunion 12561 @@ -8276,6 +8411,7 @@ Balsamos 541 Balsams 33453 Balser 6463 Balsham 37729 +Balsillie 12450 Balsley 2903 Balster 3211 Balsters 365 @@ -8347,10 +8483,14 @@ Bamfords 12995 Bamfurlong 4140 Bamo 7598 Bampton 410602 +Bamptons 2207 Bamsey 4677 Bamum 12864 Bamyan 4622 Ban 966714 +Banaba 13116 +Banaban 10662 +Banabans 19311 Banach 124251 Banagher 36157 Banales 359 @@ -8395,16 +8535,19 @@ Banderites 831 Banderma 169 Bandersnatch 5125 Bandi 24303 +Bandikui 779 Bandini 65765 Bandis 2727 Bandjalang 833 Bandon 196661 +Bandra 13378 Bandung 151090 Bandusia 6111 Bandusian 3413 Bandy 60620 Bandys 181 Bane 166903 +Baneelon 2423 Banerjee 185265 Banerjees 237 Banes 49158 @@ -8549,6 +8692,7 @@ Bao 248772 Baode 307 Baoding 7716 Baofeng 1117 +Baohe 731 Baoji 5324 Baos 5309 Baoshan 12671 @@ -8558,6 +8702,7 @@ Baotou 8189 Baphomet 15562 Baphometic 2095 Baptist 4381641 +Baptista 218690 Baptiste 565961 Baptistes 7866 Baptists 893376 @@ -8603,6 +8748,8 @@ Barassie 5950 Barataria 32435 Baratol 583 Baratta 12510 +Barawa 6417 +Barawe 300 Baray 3640 Barays 127 Barb 186667 @@ -8642,6 +8789,7 @@ Barberet 2393 Barberio 2293 Barbero 22066 Barberos 221 +Barberton 94683 Barbian 1132 Barbican 385423 Barbie 248872 @@ -8653,6 +8801,7 @@ Barbizonians 157 Barbo 16850 Barbon 55253 Barbos 1291 +Barbosa 136084 Barbourville 1037 Barboza 20954 Barbra 46447 @@ -8667,6 +8816,7 @@ Barbudians 113 Barbuto 2027 Barca 141483 Barcaldine 27975 +Barcas 8371 Barcelo 19600 Barcelona 2890160 Barcelonan 731 @@ -8746,6 +8896,9 @@ Barents 214836 Bares 19270 Barese 1983 Barff 45923 +Barffed 306 +Barffing 426 +Barffs 363 Barfield 126104 Barfields 885 Barfoot 45678 @@ -8857,6 +9010,8 @@ Barnett 1618474 Barnette 10849 Barnettes 143 Barneveld 47744 +Barnevelder 3447 +Barnevelders 2493 Barney 907805 Barnfield 66411 Barnfields 1100 @@ -8873,6 +9028,7 @@ Barno 2185 Barnoldswick 38196 Barnos 583 Barnsbury 60944 +Barnsdale 21282 Barnshaw 3871 Barnsley 1039814 Barnsleys 2653 @@ -8968,6 +9124,7 @@ Barringers 229 Barrington 1140953 Barringtons 10231 Barrio 90442 +Barrionuevo 6464 Barrios 108825 Barris 24329 Barritt 38080 @@ -9032,6 +9189,7 @@ Barthels 2485 Barthes 780903 Barthesian 9725 Barthian 26177 +Barthianism 3882 Barthold 41488 Bartholin 59340 Bartholinian 1511 @@ -9110,6 +9268,7 @@ Basa 22461 Basaa 892 Basaldua 732 Basalt 142607 +Basant 9841 Basarwa 12003 Basas 1300 Basbanes 379 @@ -9212,6 +9371,7 @@ Basran 5978 Basrans 1359 Basras 83 Bass 1808182 +Bassa 143900 Bassador 427 Bassaleg 11083 Bassano 219553 @@ -9251,6 +9411,7 @@ Bastille 583957 Bastin 60182 Bastins 199 Basto 21239 +Bastogne 34864 Baston 45473 Bastone 3579 Bastones 259 @@ -9283,6 +9444,7 @@ Batangas 17305 Batas 3116 Batavi 25503 Batavia 787011 +Batavian 201809 Batavians 47817 Batavias 228 Batch 272249 @@ -9327,6 +9489,7 @@ Bathurst 1332303 Batie 8421 Baties 313 Batish 858 +Batista 160536 Batiste 50448 Batistes 2038 Batken 2571 @@ -9415,6 +9578,7 @@ Baudette 333 Baudoin 31414 Baudoins 249 Baudrillardian 7215 +Baudrit 557 Bauer 1078961 Bauerle 7327 Baugh 103033 @@ -9494,6 +9658,7 @@ Baxterianism 1971 Baxterians 1736 Bay 15385340 Bayamo 11040 +Bayana 4682 Bayannur 143 Bayard 444610 Bayardo 15382 @@ -9546,6 +9711,7 @@ Bayons 5553 Bayreuth 389435 Bays 344236 Bayses 188 +Bayside 21576 Baysinger 3339 Bayswater 398179 Bayview 17194 @@ -9635,6 +9801,7 @@ Beardsleyesque 805 Beardsleys 1525 Beardsworth 23159 Beardwood 8988 +Beardy 6150 Beare 190733 Bearer 350909 Bearers 126245 @@ -9649,6 +9816,7 @@ Bearsden 84737 Bearspaw 275 Bearss 2212 Bearsted 32227 +Bearwood 25532 Beary 7671 Beas 57933 Beasain 1524 @@ -9779,6 +9947,7 @@ Beckerts 128 Beckett 1964657 Beckettian 20361 Beckettians 215 +Beckfoot 9636 Beckford 557022 Beckfordian 433 Beckfords 4059 @@ -9822,6 +9991,7 @@ Becraft 1067 Becton 35534 Bedale 109108 Bedard 18301 +Bedas 5245 Bedawin 56372 Bedawins 4135 Bedbrook 5275 @@ -9902,6 +10072,7 @@ Beeches 137065 Beechey 227714 Beeching 197620 Beechings 2405 +Beechingstoke 2953 Beechler 3347 Beechtree 1716 Beechtrees 283 @@ -9919,6 +10090,7 @@ Beedles 1237 Beefeater 27360 Beefeaters 15733 Beefheartian 262 +Beefmaster 479 Beeford 8344 Beegle 4557 Beehive 97504 @@ -10109,6 +10281,7 @@ Bekasi 4730 Bekele 7760 Bekeles 63 Bekenstein 5539 +Beker 36053 Bekesbourne 13279 Beki 3617 Bekker 146569 @@ -10195,6 +10368,7 @@ Belin 83650 Belinda 668611 Belins 1206 Belisama 3822 +Belisarian 278 Belisarios 1004 Belisarius 334993 Belisle 7132 @@ -10248,6 +10422,7 @@ Bellegarde 104440 Bellegardes 3162 Bellem 3151 Bellemare 5985 +Bellenger 116483 Belleoram 381 Beller 38934 Bellerophon 313161 @@ -10301,6 +10476,7 @@ Bellots 357 Bellotte 1193 Bellotti 19858 Bellovaci 14543 +Bellovian 397 Bellovin 963 Bellow 147223 Bellows 208022 @@ -10360,6 +10536,7 @@ Belteshazzar 13672 Beltian 1282 Belting 143700 Beltings 3413 +Beltir 199 Belton 267382 Beltons 1499 Beltrami 39900 @@ -10372,6 +10549,7 @@ Belturbet 32930 Beltway 16999 Beltwood 185 Beltz 30612 +Beluchistan 29510 Belue 1072 Beluga 30835 Belugas 2694 @@ -10475,6 +10653,8 @@ Benesch 35198 Benesh 21796 Benett 79277 Benetts 1327 +Beneventan 20186 +Beneventans 2635 Benevento 174629 Benfer 1714 Benfield 109051 @@ -10542,6 +10722,7 @@ Benllech 2279 Benn 1363177 Benne 20944 Bennefield 413 +Bennelong 9867 Benner 67862 Benners 1319 Bennes 4842 @@ -10692,6 +10873,7 @@ Berdie 1279 Berdine 3340 Berdyansk 2750 Berdychiv 341 +Bereal 56 Berean 12922 Bereans 19851 Bereitschaftspotential 2421 @@ -10746,7 +10928,9 @@ Berggruen 5920 Bergh 199447 Berghoff 6166 Berghs 18403 +Bergi 1000 Bergin 112172 +Berginc 296 Bergins 693 Bergland 9233 Berglund 72126 @@ -10871,6 +11055,7 @@ Bernat 29808 Bernath 6273 Bernats 241 Bernays 145831 +Bernd 151035 Berndt 89528 Berndts 741 Berndtson 6541 @@ -10913,6 +11098,7 @@ Beroean 791 Beroeans 1109 Beros 1477 Berovo 447 +Berowra 1060 Berquist 8834 Berra 21277 Berras 266 @@ -10961,6 +11147,8 @@ Bertha 940970 Berthelot 353779 Berthelots 420 Berthiaume 4736 +Berthier 259076 +Berthierville 651 Berthold 239126 Bertholf 3047 Berti 69397 @@ -10980,6 +11168,7 @@ Bertsch 17945 Bertucci 6049 Berube 9168 Berumen 870 +Beruwala 1493 Berwick 2675371 Berwickshire 411747 Berwyn 49602 @@ -11040,6 +11229,7 @@ Beswick 280910 Beswicks 625 Bet 502016 Beta 807237 +Betafo 1481 Betamax 41816 Betancourt 60684 Betancur 16211 @@ -11098,6 +11288,7 @@ Betsileos 809 Betsimisaraka 8047 Betsy 690511 Bett 108772 +Bettachini 193 Bettany 35918 Bettcher 3634 Bette 185046 @@ -11182,6 +11373,7 @@ Bewicks 4505 Bewley 147511 Bewleys 1738 Bex 158643 +Bexfield 4294 Bexhill 246441 Bexley 380934 Bexleyheath 53797 @@ -11244,6 +11436,7 @@ Bhargav 571 Bhargava 38091 Bhargavas 574 Bhargavi 770 +Bharuch 3804 Bhasin 14126 Bhat 54431 Bhatia 95669 @@ -11265,10 +11458,13 @@ Bhava 8488 Bhavani 19720 Bhavsar 1788 Bhaya 2573 +Bheel 26219 +Bheels 43302 Bhelsa 235 Bhil 32973 Bhilai 13295 Bhili 1290 +Bhils 46821 Bhima 71231 Bhimrao 2578 Bhishma 27781 @@ -11301,6 +11497,7 @@ Bhuttos 1619 BiFi 438 BiH 78450 BiPAP 7549 +BiS 2570 Bia 43182 Biafra 235490 Biafran 96864 @@ -11310,6 +11507,7 @@ Biak 16681 Bialas 3870 Bialecki 2057 Bialek 5373 +Bialik 36662 Biallas 375 Bialowas 189 Bian 69188 @@ -11343,6 +11541,7 @@ Biblewomen 16752 Biblic 2125 Biblical 2878887 Biblically 11797 +Bibliolatry 8680 Biblis 10313 Bibulus 69510 Bice 71498 @@ -11357,6 +11556,7 @@ Bick 81050 Bickel 60753 Bickell 26101 Bickels 2271 +Bickenhill 12742 Bickerdike 22508 Bickershaw 7633 Bickerstaff 125618 @@ -11400,6 +11600,7 @@ Biddlecombes 153 Biddles 39473 Biddulph 306038 Biddy 336023 +Bide 174429 Bideford 312372 Biden 49734 Bidens 21657 @@ -11556,6 +11757,7 @@ Biljan 484 Biljana 10236 Bilje 517 Bill 104248637 +Billacombe 1463 Billary 377 Billboard 92030 Biller 26301 @@ -11661,6 +11863,7 @@ Binkie 39164 Binkley 24901 Binkowski 1203 Binks 121819 +Binky 22034 Binley 30934 Binner 9088 Binney 217405 @@ -11695,6 +11898,7 @@ Biondo 26949 Biondolillo 517 Bionian 3913 Biot 243592 +Bipasha 663 Bipont 19004 Bipontine 1937 Bir 335764 @@ -11728,6 +11932,7 @@ Bircotes 1807 Bird 3984781 Birdbrook 8882 Birden 1690 +Birdham 16485 Birdhill 3451 Birdie 131623 Birdlip 30468 @@ -11745,6 +11950,7 @@ Birge 33296 Birges 229 Birgid 1897 Birgit 88392 +Birgitte 19610 Birhor 2357 Birimian 1727 Birk 114368 @@ -11785,6 +11991,7 @@ Birnbaums 305 Birney 36599 Birneys 139 Birnholtz 609 +Birnirk 615 Biro 76031 Birobidzhan 9741 Biron 386504 @@ -11806,6 +12013,8 @@ Birtwistle 74360 Birtwistles 183 Birx 669 Bisaltae 3234 +Bisayan 3593 +Bisayans 1513 Bisbee 18513 Biscardi 1917 Biscay 545981 @@ -11827,6 +12036,7 @@ Bisel 3499 Biser 1527 Bises 1119 Bish 87380 +Bisham 56928 Bishamonten 495 Bishan 6796 Bishara 25207 @@ -11964,6 +12174,7 @@ Blackbrook 20371 Blackburn 2819252 Blackburne 211091 Blackburns 7066 +Blackdog 1468 Blacker 181631 Blackerby 7294 Blackers 1861 @@ -12222,6 +12433,7 @@ Blavatskian 289 Blavatskyan 85 Blaxhall 9525 Blaxill 3539 +Blaxland 45193 Blay 38186 Blaydon 104514 Blaylock 21887 @@ -12265,6 +12477,7 @@ Blenheim 920902 Blenheims 50790 Blenkarn 17821 Blenkinsop 192726 +Blenkinsopp 51564 Blesh 6246 Bless 940535 Blessed 3764967 @@ -12493,6 +12706,7 @@ Blunk 2897 Blunsdon 13099 Blunstone 2023 Blunt 1082067 +Bluntisham 13495 Blunts 20344 Blurton 30034 Blust 10983 @@ -12623,6 +12837,7 @@ Bodder 1274 Boddicker 775 Boddie 9992 Boddies 311 +Boddin 1688 Boddington 112028 Boddy 111064 Boddys 143 @@ -13068,6 +13283,7 @@ Bonavista 33436 Bonavita 3753 Bonbright 7217 Bonchester 5297 +Bonchurch 45618 Bond 5649108 Bondar 10468 Bondarchuk 6469 @@ -13117,6 +13333,7 @@ Bongard 11574 Bongards 371 Bongiovanni 12170 Bongo 124320 +Bongs 5717 p Bonham 339071 Bonhams 30715 Bonhill 50486 @@ -13128,6 +13345,7 @@ Bonifacio 90449 Bonifas 3410 Bonifatius 13331 Bonifay 4805 +Bonifaz 7529 Bonilla 47140 Bonin 80445 Bonine 4289 @@ -13289,6 +13507,7 @@ Bordas 31294 Bordeau 4312 Bordeaus 640 Bordeaux 2373702 +Bordeauxs 203 Bordelais 32389 Bordelese 343 Bordelon 3209 @@ -13308,6 +13527,7 @@ Borduria 1001 Bordwellian 83 Boreal 114957 Borean 3319 +Boreanaz 1441 Boreas 206518 Boreham 151513 Borehams 191 @@ -13349,6 +13569,8 @@ Boris 1237305 Borises 562 Borisoff 4715 Borisov 42504 +Borivali 428 +Borivli 1463 Borivoj 1797 Borivoje 1019 Borjas 23016 @@ -13497,6 +13719,8 @@ Boskets 215 Boskett 689 Bosko 4725 Boskoop 26535 +Boskopoid 907 +Boskopoids 99 Boskos 1498 Boskovich 670 Bosler 4193 @@ -13667,6 +13891,7 @@ Boulanger 192120 Boulangism 12285 Boulangist 13540 Boulangists 6332 +Boulaq 10022 Boulay 90217 Boulby 19014 Boulden 11344 @@ -13680,6 +13905,7 @@ Boulets 750 Boulevard 1113093 Bouley 23012 Boulogne 1600548 +Boulonnais 36815 Boultbee 30330 Boulter 160956 Boulters 3342 @@ -13695,6 +13921,7 @@ Boumas 133 Bound 1415268 Bounds 265989 Bounevialle 924 +Bouphonia 2525 Bouquet 213722 Bouquets 27349 Bour 46517 @@ -13772,6 +13999,7 @@ Boutros 130826 Boutte 2637 Bouttes 393 Boutwell 22481 +Bouvette 333 Bouvier 121389 Bouwens 7187 Bouwman 12435 @@ -13847,6 +14075,7 @@ Bowns 4810 Bowral 7227 Bowring 489923 Bowrings 2752 +Bowrington 661 Bowser 77770 Bowsers 1490 Bowsher 24630 @@ -13867,6 +14096,7 @@ Boxx 1969 Boyack 7837 Boyadjian 1078 Boyajian 6646 +Boyar 28303 Boyardee 1029 Boyarka 335 Boyce 625914 @@ -13972,6 +14202,7 @@ Bracken 379331 Brackenbury 169482 Brackenburys 927 Brackenhill 8653 +Brackenridge 35674 Brackens 5671 Brackett 77704 Bracketts 4358 @@ -14000,11 +14231,13 @@ Bradenham 40543 Bradenton 6672 Brader 6813 Braders 165 +Bradfer 5067 Bradfield 267934 Bradfieldians 185 Bradfields 1387 Bradford 6086294 Bradfordian 3672 +Bradfordians 2890 Bradfords 7072 Bradham 4149 Brading 97951 @@ -14131,6 +14364,7 @@ Bramall 77138 Bramalls 219 Braman 14476 Bramans 3116 +Bramantesque 1715 Bramber 113139 Brambila 2333 Bramble 257557 @@ -14206,6 +14440,7 @@ Brandtian 306 Brandts 22810 Brandwein 3759 Brandy 434279 +Brandywine 53588 Branford 57766 Brangelina 1494 Brangus 1293 @@ -14356,6 +14591,7 @@ Braymer 1075 Brayon 319 Brayshaw 39055 Brayshaws 267 +Brayshay 6522 Brayson 1543 Braystones 3040 Brayton 78667 @@ -14395,6 +14631,7 @@ Breakwell 27333 Bream 266943 Breams 63145 Breanna 10275 +Breant 4759 Brearley 117427 Brearleys 192 Brears 9625 @@ -14428,6 +14665,7 @@ Breconshire 136466 Brecqhou 2538 Breda 472443 Bredbury 36752 +Breddin 3999 Brede 80419 Bredes 1023 Bredeson 1339 @@ -14631,10 +14869,12 @@ Bride 1560068 Bridekirk 19842 Bridenstine 203 Brides 130638 +Bridesburg 1061 Brideshead 55590 Bridestowe 9443 Bridford 9871 Bridge 13363977 +Bridgeburg 1007 Bridgeford 25652 Bridgeforth 635 Bridgegate 21548 @@ -14660,6 +14900,7 @@ Bridgettines 4755 Bridgetts 663 Bridgewater 779491 Bridgewaters 2009 +Bridgit 8502 Bridgland 21739 Bridgman 288195 Bridgmans 813 @@ -14670,6 +14911,7 @@ Bridgwaters 895 Bridie 180988 Bridlington 468979 Bridport 451224 +Bridstow 6222 Bridwell 13569 Brie 193778 Brielle 21717 @@ -14753,6 +14995,7 @@ Brinjaree 496 Brinjarees 509 Brinje 138 Brink 301664 +Brinkburn 20252 Brinken 2172 Brinker 25955 Brinkerhoff 16078 @@ -15003,6 +15246,7 @@ Brody 373664 Broeker 2505 Brogan 151911 Brogans 1156 +Brogborough 6108 Brogden 118164 Brogdens 613 Brogdon 2262 @@ -15055,6 +15299,7 @@ Bronks 975 Bronner 61171 Bronners 119 Bronshtein 3964 +Bronski 11178 Bronson 176798 Bronstein 50534 Bronsteins 967 @@ -15290,6 +15535,7 @@ Bruley 7625 Brum 59239 Brumaire 158219 Brumaires 137 +Brumairians 383 Brumback 3549 Brumbaugh 17999 Brumby 36165 @@ -15508,6 +15754,7 @@ Buchholzes 278 Buchinger 4403 Buchko 943 Buchler 31158 +Buchlyvie 9759 Buchman 53416 Buchmanism 2929 Buchmanite 2401 @@ -15613,6 +15860,7 @@ Buddhologists 1015 Buddhology 2504 Buddie 26001 Buddington 12551 +Buddle 42083 Buddy 364947 Bude 178137 Budge 365580 @@ -15637,6 +15885,7 @@ Buds 127795 Buduma 4595 Budva 5215 Budweiser 41363 +Budweisers 1611 Budz 657 Budzinski 4995 Budzynski 2576 @@ -15659,6 +15908,7 @@ Buellton 659 Buelna 2323 Buelow 13348 Buels 1381 +Buemi 515 Buena 133077 Buenaventura 59673 Buendia 12305 @@ -15761,6 +16011,7 @@ Bukhari 65026 Bukharinite 1061 Bukharinites 1418 Bukhoro 391 +Bukid 141 Bukidnon 4389 Bukovina 85857 Bukovinan 333 @@ -15773,6 +16024,7 @@ Buks 2799 Bukusu 7270 Bula 32571 Bulacan 7095 +Bulaq 19635 Bulas 2803 Bulawayo 424924 Bulbrook 7693 @@ -15782,10 +16034,15 @@ Bulgakovian 259 Bulgar 86183 Bulgaria 3761957 Bulgarian 2015695 +Bulgarianize 125 +Bulgarianized 77 Bulgarianness 239 Bulgarians 602796 Bulgaric 1117 Bulgarism 355 +Bulgarize 225 +Bulgarized 287 +Bulgarizing 63 Bulgarophile 683 Bulgarophone 424 Bulgarophones 185 @@ -15873,6 +16130,7 @@ Bumstead 28182 Bumsteads 199 Bun 186412 Buna 72729 +Bunas 4143 Bunburies 239 Bunbury 342921 Bunburying 2055 @@ -15980,6 +16238,7 @@ Burbank 141660 Burberry 90935 Burbidge 126822 Burbidges 9165 +Burbridge 33323 Burbury 26800 Burby 17507 Burch 250918 @@ -16077,6 +16336,7 @@ Burgoyne 643212 Burgoynes 4513 Burgs 3910 Burgueno 430 +Burgum 16082 Burgundian 468128 Burgundians 270312 Burgundies 24548 @@ -16203,6 +16463,7 @@ Burpee 23439 Burpees 1020 Burpham 21350 Burpo 507 +Burque 209 Burr 770696 Burrage 64685 Burravoe 4360 @@ -16244,6 +16505,7 @@ Burson 18671 Burstein 51195 Burston 56670 Burstons 231 +Burstow 90907 Burt 1103523 Burtch 2376 Burtenshaw 24700 @@ -16287,6 +16549,7 @@ Busay 362 Busbee 2387 Busbridge 20309 Busby 434188 +Buscaglia 6939 Buscema 1920 Buscemi 10380 Busch 369410 @@ -16403,6 +16666,7 @@ Butte 173416 Butten 3668 Butter 1402296 Butterell 2351 +Butterey 357 Butterfield 429852 Butterfields 5456 Butterknowle 9046 @@ -16496,6 +16760,8 @@ Bygrave 44796 Bygraves 12443 Byington 11169 Bykowski 949 +Byland 78511 +Bylands 7236 Byler 6482 Bylers 111 Byles 223281 @@ -16570,6 +16836,8 @@ CABs 9672 CAD 920126 CADAM 3762 CADASIL 12119 +CADD 8524 +CADs 1854 CAE 103112 CAF 95080 CAFE 58101 @@ -16646,6 +16914,7 @@ CBBS 506 CBC 235113 CBCs 2393 CBD 319162 +CBDC 4032 CBDs 7238 CBE 580928 CBFC 914 @@ -16663,6 +16932,8 @@ CBT 567274 CBTp 1084 CBTs 3798 CBV 12776 +CBW 25038 +CBX 3546 CBer 194 CBers 391 CBs 18855 @@ -16769,6 +17040,7 @@ CELTA 5572 CELs 559 CEM 62111 CEMB 398 +CEMF 352 CEMs 2835 CEN 157794 CENTCOM 12921 @@ -16810,7 +17082,6 @@ CFGs 2231 CFH 9373 CFI 186306 CFIA 3268 -CFIT 3483 CFIs 5427 CFK 3797 CFLs 6943 @@ -16818,7 +17089,6 @@ CFM 45490 CFML 1595 CFMs 2357 CFN 6123 -CFP 129137 CFPB 4016 CFPO 311 CFR 172556 @@ -16840,8 +17110,8 @@ CGN 6237 CGNs 297 CGO 10801 CGPM 7025 -CGS 60762 CGY 959 +CH 2939338 CHA 203134 CHAOS 34458 CHAP 3306942 @@ -17020,7 +17290,9 @@ CNIB 1105 CNIC 1681 CNL 10762 CNLs 423 +CNM 10852 CNMI 1309 +CNMs 965 CNO 34860 CNOs 1382 CNP 31513 @@ -17036,6 +17308,7 @@ CO 6981721 COA 40564 COAG 7906 COAS 3450 +COAs 2101 COB 56472 COBOL 89820 COBR 2527 @@ -17060,6 +17333,7 @@ COED 10777 COEs 4443 COFs 721 COHA 3374 +COIL 83469 COIN 126572 COINTELPRO 6351 COIP 549 @@ -17070,8 +17344,10 @@ COLREG 2989 COLREGS 1408 COLREGs 867 COM 846454 +COMAL 2437 COMINT 3951 COMO 15703 +COMSATS 554 COMSEC 2158 COMSUBPAC 225 COMT 39549 @@ -17116,12 +17392,14 @@ CPAs 23454 CPB 90019 CPC 250511 CPCM 1130 +CPCU 1017 CPCs 7844 CPD 393737 CPE 134465 CPEC 2661 CPEs 15653 CPF 48807 +CPFF 1266 CPFT 479 CPG 47529 CPI 434982 @@ -17158,10 +17436,12 @@ CQIs 288 CQMS 2007 CQRS 791 CR 1167999 +CRA 141572 CRAF 3249 CRAN 39562 CRAO 2838 CRAP 40091 +CRAs 35226 CRB 53980 CRC 550015 CRCs 18454 @@ -17190,12 +17470,14 @@ CRPG 611 CRPs 2519 CRREL 4271 CRS 186539 +CRSs 7574 CRT 278394 CRTC 13692 CRTCs 153 CRTs 21276 CRU 41603 CRUD 9875 +CRUT 383 CRUs 1803 CRV 8587 CRVO 4708 @@ -17210,6 +17492,7 @@ CSCE 195232 CSChE 267 CSCs 15175 CSD 161143 +CSDH 5052 CSDP 63913 CSE 216693 CSEM 2689 @@ -17236,12 +17519,14 @@ CSRS 2793 CSRs 7857 CSS 239935 CSSA 7708 +CSSs 1575 CST 91402 CSU 148545 CSUN 2055 CSV 65273 CSVs 881 CSX 26147 +CT 3373073 CTA 204410 CTAB 22946 CTAL 2471 @@ -17259,6 +17544,7 @@ CTEs 3191 CTF 33036 CTFE 2701 CTG 56647 +CTGs 1657 CTI 47286 CTIS 1580 CTLD 413 @@ -17318,7 +17604,6 @@ CVZ 1900 CVs 139862 CW 628828 CWA 53062 -CWB 20113 CWBs 1923 CWO 12980 CWOs 542 @@ -17327,7 +17612,6 @@ CWR 15292 CWS 68915 CWT 59989 CWTs 244 -CWs 3396 CX 141795 CXC 30902 CXF 1894 @@ -17339,6 +17623,7 @@ CYF 1173 CYO 1709 CYP 65432 CYPs 7194 +CZCS 8864 CZT 3582 CZs 318 Caaba 40079 @@ -17442,6 +17727,7 @@ Cadenhead 14215 Cadenheads 107 Cadet 610278 Cadets 356014 +Cadfarch 385 Cadigan 7153 Cadillac 230470 Cadillacs 26587 @@ -17577,6 +17863,7 @@ Cainian 173 Cainite 5783 Cainites 14766 Cainozoic 60329 +Cainscross 6431 Cainta 613 Cairene 39919 Cairenes 10155 @@ -17640,6 +17927,7 @@ Calamy 227148 Calandra 44341 Calandras 128 Calarco 7641 +Calare 485 Calas 76004 Calatayud 23482 Calatravan 313 @@ -17800,6 +18088,7 @@ Callinicum 7849 Callinus 14112 Calliope 144093 Calliopean 318 +Calliopian 1451 Callipolis 12395 Callippic 2085 Callirrhoe 16286 @@ -17911,6 +18200,7 @@ Cambalu 13653 Cambaluc 9180 Cambas 2126 Cambay 101727 +Camber 118884 Camberley 241345 Camberwell 927984 Cambo 50903 @@ -18188,6 +18478,7 @@ Canelo 4351 Canelos 7216 Canepa 11416 Canes 104244 +Canet 35338 Canete 9501 Canewdon 13285 Canez 269 @@ -18211,10 +18502,12 @@ Canipe 951 Canklow 3242 Canmore 82050 Cann 283965 +Canna 126962 Cannaday 1257 Cannady 1812 Cannae 127072 Cannan 167483 +Cannanore 37760 Cannans 983 Cannaregio 14321 Cannata 4411 @@ -18451,6 +18744,7 @@ Cappuccio 5111 Capraesque 927 Capraro 2868 Capri 336002 +Caprice 138619 Capricorn 289722 Capricornian 1875 Capricornians 590 @@ -18472,12 +18766,15 @@ Capstick 43943 Capsticks 1130 Capt 835673 Captain 36552338 +Captains 1209227 Captcha 861 Capts 62913 Capua 454220 Capuan 18808 Capuano 11661 Capuchin 241000 +Capuchiness 175 +Capuchinesses 261 Capuchino 1608 Capuchinos 3184 Capuchins 138989 @@ -18500,9 +18797,11 @@ Caracciolos 277 Caraccis 5081 Caractacus 139511 Caradine 2822 +Caradon 74101 Caradonna 1676 Caraga 1576 Caramanica 810 +Caramel 58819 Caramoan 553 Carancas 139 Carandang 617 @@ -18513,6 +18812,7 @@ Caras 14362 Caravaggesque 8013 Caravaggiesque 492 Caravaggio 277974 +Caravaggisti 1856 Caravela 2137 Caravella 2395 Caravellas 4138 @@ -18530,6 +18830,8 @@ Carballo 13873 Carbaugh 6052 Carberry 92512 Carberrys 415 +Carbin 2655 +Carbins 145 Carbo 130139 Carboloy 4341 Carbon 3135238 @@ -18768,6 +19070,7 @@ Carmical 301 Carmichael 1023087 Carmichaels 8130 Carmicheal 519 +Carmilla 23150 Carmine 223707 Carmines 8236 Carmody 81863 @@ -18777,6 +19080,7 @@ Carmona 71172 Carmonas 199 Carmont 20458 Carmouche 1995 +Carmuirs 1427 Carmyle 15014 Carmyllie 40673 Carn 135954 @@ -18855,6 +19159,7 @@ Carosella 1337 Carotenuto 4998 Carozza 4308 Carp 192462 +Carpathia 28868 Carpathian 236799 Carpathians 270068 Carpathos 5361 @@ -19102,6 +19407,8 @@ Cashion 3811 Cashman 51756 Cashmere 332922 Cashmeres 5177 +Cashmiri 891 +Cashmiris 306 Cashmoor 566 Cashmore 71192 Cashmores 2284 @@ -19448,6 +19755,7 @@ Catt 111402 Cattal 4181 Cattanach 24628 Cattaraugus 6090 +Cattawade 1643 Cattell 220444 Cattellian 846 Cattells 2325 @@ -19563,6 +19871,7 @@ Cavitt 1605 Cavourian 2188 Cavuto 1651 Cawdrey 23415 +Cawkwell 25436 Cawley 169707 Cawnpore 500668 Cawood 134641 @@ -19609,6 +19918,7 @@ Cayucos 737 Cayuga 42299 Cayugas 10417 Cayuse 6453 +Cayuvava 629 Caywood 3415 Caz 59244 Cazadero 1061 @@ -19646,6 +19956,7 @@ Cebus 47483 Ceccarelli 16925 Cecchi 36162 Cecchini 33752 +Cece 15729 Cecelia 65984 Cecena 362 Cecere 3258 @@ -19692,6 +20003,7 @@ Cele 18820 Celebean 2477 Celebes 357919 Celebesian 2446 +Celebic 306 Celedon 1645 Celena 2697 Celentano 5544 @@ -19712,7 +20024,9 @@ Celik 15805 Celina 35551 Celine 152324 Celis 16518 +Celje 8767 Cella 52660 +Cellarhead 707 Cellas 1224 Celle 100483 Cellini 357143 @@ -19870,8 +20184,10 @@ Cerron 1620 Cerrone 3142 Cerros 16315 CertHE 1250 +Certa 8188 Certain 6255412 Certains 5768 +Certaldese 315 Certo 10964 Certos 313 Cerulli 22217 @@ -19932,9 +20248,11 @@ Ch'u 49619 ChB 58792 ChCh 2369 ChD 72749 +ChFC 485 ChIP 14578 Cha 534758 Chabad 11055 +Chaban 25530 Chabert 36810 Chaberts 268 Chablais 26545 @@ -19996,6 +20314,7 @@ Chaflin 787 Chaga 18005 Chagall 117689 Chagallian 253 +Chagalls 1394 Chagatai 13161 Chagford 61245 Chagga 38353 @@ -20129,6 +20448,7 @@ Champas 1421 Champeau 1853 Champeaus 141 Champenois 13135 +Champie 553 Champigny 30143 Champine 883 Champion 1695955 @@ -20188,8 +20508,10 @@ Chang'an 22770 Chang'e 1747 Changan 12181 Changbai 3983 +Changchien 339 Changchun 56567 Changde 1676 +Changfeng 689 Changhai 1413 Changhsingian 1146 Changhua 4125 @@ -20198,6 +20520,7 @@ Changji 1250 Changkiakow 186 Changle 2371 Changlo 1468 +Changma 689 Changning 1813 Changping 3226 Changsha 78230 @@ -20210,6 +20533,7 @@ Changthang 1621 Changtse 1447 Changwon 4193 Changwu 879 +Changxing 1794 Changyang 1616 Changyuan 323 Changzhi 1267 @@ -20246,15 +20570,18 @@ Chaoching 287 Chaochou 546 Chaochow 1254 Chaochowfu 475 +Chaohu 973 Chaoking 106 Chaon 3610 Chaoosh 201 Chaos 752115 Chaoshan 383 Chaouch 2202 +Chaouen 1467 Chaouia 5174 Chaource 2203 Chaoush 1319 +Chaoxian 969 Chaoyang 18021 Chaozhou 11026 Chap 3514180 @@ -20321,6 +20648,7 @@ Charette 54401 Charettes 929 Charfield 12385 Charger 63302 +Chargers 29197 Chargois 388 Chariclea 37570 Charing 2019848 @@ -20379,6 +20707,7 @@ Charminar 2171 Charndon 2061 Charney 79543 Charneys 205 +Charnley 83700 Charnock 255156 Charnocks 1451 Charnwood 158199 @@ -20415,6 +20744,7 @@ Charybdis 223462 Charyn 4452 Chas 1240087 Chase 2354745 +Chasetown 5902 Chasey 2596 Chasid 3769 Chasidic 6183 @@ -20432,6 +20762,7 @@ Chassidic 7297 Chassidim 11142 Chassidism 4304 Chassids 239 +Chassidus 386 Chassin 11399 Chastain 18983 Chasteen 3855 @@ -20459,6 +20790,7 @@ Chatteris 109685 Chatterjee 226189 Chatterjees 493 Chatterley 140479 +Chatterly 8931 Chatterton 642858 Chattertonian 2502 Chattertons 3768 @@ -20497,6 +20829,7 @@ Chauffeur 36815 Chauffeurs 21182 Chauhan 40917 Chauhans 4326 +Chaul 26695 Chaumes 3093 Chaumont 152425 Chauncey 137503 @@ -20582,6 +20915,7 @@ Checo 2175 Cheddar 392252 Cheddaring 863 Cheddington 21306 +Cheddleton 17226 Cheek 199082 Cheely 325 Cheema 16427 @@ -20601,6 +20935,7 @@ Cheeto 1172 Cheetos 5651 Cheever 73532 Cheevers 13483 +Chefchaouen 3010 Chefoo 94625 Cheget 200 Cheggers 486 @@ -20630,6 +20965,7 @@ Chelsey 40337 Chelsfield 19949 Chelski 249 Chelston 15061 +Chelsy 5624 Cheltenham 2638396 Cheltonian 5798 Cheltonians 4577 @@ -20698,6 +21034,7 @@ Cherie 91060 Cheriegate 873 Cherilyn 1262 Cherine 821 +Cheringhee 98 Cherington 16164 Cherish 58486 Cheriton 137617 @@ -20789,6 +21126,7 @@ Chestnut 413305 Chestnuts 76488 Chestnutt 4137 Chestnutts 183 +Chesvan 220 Cheswardine 9369 Cheswick 12446 Chet 134674 @@ -20809,6 +21147,7 @@ Chevening 63687 Chevenix 22678 Chevere 914 Cheverton 28583 +Cheves 6046 Chevez 1042 Chevies 889 Cheviot 301297 @@ -20829,6 +21168,7 @@ Chewas 341 Chewning 3057 Chews 7480 Chexbres 2447 +Chey 19347 Cheyanne 493 Cheyenne 193755 Cheyennes 23983 @@ -20925,23 +21265,27 @@ Chicot 40571 Chicxulub 9206 Chidambaram 21669 Chiddingstone 20986 +Chideock 17143 Chidester 11761 Chidsey 4333 Chieko 4629 Chiem 3760 Chiemgauer 480 Chien 195703 +Chieng 18140 Chiens 9274 Chienshih 199 Chieri 10751 Chiers 7190 Chieti 27780 +Chifley 37237 Chigwell 140224 Chigwellian 491 Chigwellians 129 Chihiro 7980 Chihuahua 142655 Chihuahuan 9001 +Chihuahuans 149 Chihuahuas 5052 Chika 11416 Chikako 3933 @@ -21008,6 +21352,7 @@ Chimanimani 9918 Chimariko 718 Chimas 262 Chimay 41307 +Chimayo 2066 Chimbarongo 420 Chimborazo 83871 Chimei 1299 @@ -21124,6 +21469,7 @@ Chippeways 10653 Chippewyan 4212 Chippewyans 1461 Chippindale 27879 +Chippingdale 3034 Chips 273919 Chipstead 48137 Chiquito 9710 @@ -21163,6 +21509,7 @@ Chislehurst 223381 Chislet 21807 Chislett 25241 Chisleu 6749 +Chislev 2739 Chisley 1161 Chism 5441 Chismar 287 @@ -21172,10 +21519,13 @@ Chisom 1783 Chisum 8652 Chiswick 942505 Chita 59669 +Chitaldrug 3658 +Chitaldurg 273 Chiti 10936 Chitpavan 3315 Chitpavans 720 Chitpawan 726 +Chitradurg 291 Chitradurga 1802 Chitragupta 1450 Chitral 215309 @@ -21186,6 +21536,7 @@ Chittagonian 1083 Chittenden 99626 Chittick 29810 Chitticks 365 +Chittledroog 14889 Chittoor 15704 Chittum 1315 Chitty 574527 @@ -21239,6 +21590,7 @@ Chois 6122 Choiseul 331106 Chojnacki 6881 Chojnowski 1477 +Chokmah 7056 Chokshi 2455 Chokwe 14893 Cholargos 936 @@ -21291,6 +21643,8 @@ Chopps 437 Chopra 108780 Chopras 429 Chopsticks 11548 +Choptank 4027 +Chopunnish 2701 Chorasmia 6655 Chorasmian 4660 Chorasmians 4922 @@ -21318,6 +21672,8 @@ Choudhry 20395 Choudhury 64048 Choudry 5830 Chouinard 22054 +Choukoutien 8855 +Chouringhee 1248 Chouteau 15040 Chovanec 1568 Chowaniec 975 @@ -21325,8 +21681,11 @@ Chowchilla 1921 Chowdhary 5319 Chowdhury 85214 Chowning 5227 +Chowringee 2094 +Chowringhee 25917 Choy 39239 Choyce 20347 +Choying 309 Choys 456 Chozar 979 Chozars 2517 @@ -21362,6 +21721,7 @@ Christenbury 1069 Christendom 2894326 Christendoms 3214 Christene 1671 +Christens 2777 Christensen 539256 Christensens 1796 Christenson 35517 @@ -21489,6 +21849,7 @@ Chronos 54750 Chronus 6440 Chrostowski 1997 Chrysalis 70532 +Chrysaor 13354 Chryseis 29261 Chrysippan 547 Chrysler 475190 @@ -21550,6 +21911,7 @@ Chumley 19619 Chumleys 287 Chumney 951 Chumphon 6276 +Chumpitaz 477 Chums 32840 Chun 278026 Chung 721828 @@ -21573,6 +21935,7 @@ Churcham 10327 Churchdown 25977 Churcher 44270 Churchers 1312 +Churchgate 23646 Churchhill 11135 Churchianity 1857 Churchill 9059013 @@ -21656,6 +22019,7 @@ Cichy 1891 Cidu 225 Cielo 35145 Cielos 1417 +Cienfuegos 57666 Ciera 1359 Cieri 5382 Cierra 2377 @@ -21795,6 +22159,7 @@ Cisjordan 3936 Cisjordanian 712 Ciskei 62013 Ciskeian 4002 +Ciskeians 696 Cisleithan 5517 Cisleithania 7239 Cisleithanian 2819 @@ -21830,9 +22195,11 @@ City 41309251 Ciulla 7385 Ciullo 5464 Civ 888543 +Civic 1264444 Civil 23695652 Civils 44147 Civitan 803 +Cixi 22490 Cixousian 813 Cizek 13991 Cizik 1321 @@ -21898,6 +22265,7 @@ Claptons 568 Clapworthy 525 Clara 2793915 Clarabel 3589 +Clarabella 6553 Clarabelle 4867 Clarah 428 Clarbeston 4159 @@ -21918,6 +22286,8 @@ Clarent 1499 Clarenville 3905 Clares 86952 Claret 175127 +Claretian 2304 +Claretians 443 Clarets 12453 Clarey 7787 Clarfield 1357 @@ -22017,6 +22387,7 @@ Clayden 56151 Claydon 173596 Claygate 45431 Clayman 17887 +Claymation 729 Claymore 54097 Claypole 80793 Claypool 14185 @@ -22029,6 +22400,7 @@ Claytonian 70 Claytons 11223 Claytor 4039 Claywell 627 +Clea 39329 Clean 1424186 Cleanthes 131689 Clear 1612411 @@ -22038,6 +22410,7 @@ Clearwater 70967 Cleary 172492 Clearys 1342 Cleator 85391 +Cleave 129131 Cleaveland 46339 Cleavenger 197 Cleaver 314559 @@ -22132,6 +22505,7 @@ Clex 311 Clibburn 958 Cliburn 15932 Click 1108900 +Clickner 189 Clicks 15012 Cliett 314 Clifden 151147 @@ -22204,11 +22578,13 @@ Cloe 38274 Cloelia 10215 Cloer 570 Cloes 2033 +Cloghan 6019 Clogher 173638 Clois 1895 Clojure 6735 Clon 11161 Clonakilty 33484 +Cloncurry 81660 Clondalkin 17753 Clones 96828 Cloninger 20211 @@ -22240,6 +22616,7 @@ Clothiers 66297 Clothilda 2029 Clotho 37041 Clotilda 43870 +Clouatre 199 Cloud 1377090 Clough 916351 Cloughaneely 2170 @@ -22306,6 +22683,8 @@ Clydebank 286558 Clydesdale 366117 Clydesdales 24770 Clydeside 160305 +Clydesider 2820 +Clydesiders 10386 Clymene 29003 Clymer 27025 Clyne 88152 @@ -22323,8 +22702,10 @@ Cnossos 15747 Cnossus 39623 Cnut 345896 Co 21302364 +CoA 407228 CoAP 3039 CoAs 6744 +CoC 12986 CoCom 12785 CoCs 1137 CoEs 1190 @@ -22396,6 +22777,7 @@ Cobbettian 341 Cobbinshaw 5562 Cobble 27573 Cobbler 87449 +Cobblers 20517 Cobbles 18756 Cobbold 232834 Cobbolds 1473 @@ -22425,6 +22807,7 @@ Cobo 31325 Cobol 28445 Cobos 27085 Cobourg 95000 +Cobra 192199 Coburg 488188 Coburgs 8633 Coburn 158767 @@ -22452,6 +22835,7 @@ Cochimi 642 Cochin 838370 Cochinchinese 5185 Cochins 27161 +Cochiti 6333 Cochran 445030 Cochrane 1710666 Cock 1083108 @@ -22503,10 +22887,14 @@ Cockwood 6950 Coco 298560 Cocoa 972035 Cocoliche 426 +Coconuco 1099 +Cocopa 2757 Cocopah 779 +Cocopas 189 Cocquyt 841 Cocroft 3477 Cocteauesque 221 +Cocto 107 Cocytos 517 Cocytus 44432 Coday 385 @@ -22543,6 +22931,7 @@ Coello 42104 Coellos 161 Coen 111060 Coenen 28515 +Coerver 791 Coetzee 168652 Coeus 4554 Coevorden 5469 @@ -22635,6 +23024,7 @@ Cokes 87093 Cokley 885 Col 3739092 Cola 683021 +Colaba 48122 Colac 12813 Colace 3119 Colangelo 7185 @@ -22654,6 +23044,7 @@ Colbertism 4796 Colbertist 1233 Colbertists 205 Colberts 3315 +Colbie 3347 Colborn 21883 Colburn 277451 Colburns 749 @@ -22671,6 +23062,7 @@ Colclasure 339 Colclough 70522 Colcloughs 767 Colcord 5480 +Colderon 123 Coldewe 283 Coldfoot 1847 Coldham 36172 @@ -22714,6 +23106,7 @@ Coleraine 358927 Coleridge 4975205 Coleridgean 28830 Coleridgian 6182 +Coleroon 19348 Colers 659 Coles 913314 Colesden 1067 @@ -22795,6 +23188,7 @@ Collinsian 232 Collinson 483752 Collinsworth 1079 Collinwood 3613 +Collipulli 449 Collis 307793 Collishaw 13139 Collison 121441 @@ -22820,6 +23214,7 @@ Colm 128740 Colma 6229 Colman 972647 Colmar 149364 +Colmenares 7742 Colmenero 3548 Colmworth 6987 Coln 44388 @@ -22855,6 +23250,7 @@ Coloradans 1527 Colorado 2271766 Coloradoan 557 Coloradoans 297 +Coloran 230 Colored 164712 Colosi 2793 Colosimo 6658 @@ -22892,7 +23288,7 @@ Columbiana 6469 Columbians 13911 Columbine 206967 Columbines 17963 -Columbo 84739 +Columbos 449 Columbus 2625669 Columbuses 3044 Colunga 3370 @@ -22918,6 +23314,7 @@ Colyton 81085 Comacho 2188 Coman 27635 Comanche 89145 +Comanchean 1573 Comanchero 1259 Comancheros 3240 Comanches 51565 @@ -22959,6 +23356,8 @@ Comilla 23911 Comines 118038 Cominetto 367 Cominform 81837 +Cominformist 1232 +Cominformists 1656 Comino 30520 Comintern 439375 Comisene 544 @@ -23014,6 +23413,7 @@ Comp 1657695 CompTIA 4236 Comparans 140 Compean 345 +Compeau 1395 Compere 26044 Comperes 721 Compher 347 @@ -23022,6 +23422,7 @@ Complute 145 Complutensian 48716 Compo 34088 Compos 56574 +Compostela 113163 Comps 43475 Compstall 9832 Comptche 124 @@ -23031,6 +23432,7 @@ Comrie 172555 Comries 567 Comsomol 2963 Comstock 180400 +Comstockery 1094 Comstockian 171 Comstocks 1283 Comtean 15811 @@ -23046,6 +23448,7 @@ Comus 382689 Con 3072895 Conacher 41816 Conachers 133 +Conahan 790 Conakry 142000 Conan 628088 Conant 181324 @@ -23110,6 +23513,7 @@ Coney 247797 Coneys 6469 Confed 14796 Confederacy 512267 +Confederados 321 Confederate 1021736 Confederates 439816 Confederation 2172199 @@ -23152,6 +23556,8 @@ Congregationalists 193426 Congresbury 37710 Congress 20648806 Congressional 682520 +Congressite 495 +Congressites 847 Congressman 177427 Congressmen 135047 Congreve 769715 @@ -23160,6 +23566,7 @@ Congreves 6822 Congrevian 659 Congrove 994 Coniacian 15165 +Conibear 3561 Conifer 78403 Conigliaro 1313 Coniglio 5954 @@ -23198,10 +23605,12 @@ Connecticut 1886168 Connel 58918 Connell 657472 Connelley 2607 +Connellsville 14933 Connelly 206855 Connels 403 Connely 6721 Connemara 244570 +Connemaras 675 Conner 238067 Connersville 7175 Connery 102497 @@ -23368,8 +23777,10 @@ Coorg 140079 Coorgs 12989 Coors 37634 Coosa 11087 +Coota 637 Cootamundra 6693 Coote 630047 +Cootehill 20163 Cooter 37763 Cooters 283 Cootes 14651 @@ -23443,6 +23854,7 @@ Coppock 101275 Coppocks 491 Coppola 155134 Coppolas 520 +Coppolino 4023 Copps 6703 Coppull 17476 Cops 89204 @@ -23453,6 +23865,7 @@ Coptic 867640 Coptologist 295 Coptology 309 Copts 245121 +Copythorne 1348 Coq 84193 Coquelles 4370 Coquille 28870 @@ -23484,6 +23897,7 @@ Corbie 87314 Corbin 290267 Corbit 7800 Corbitt 14318 +Corble 2227 Corbo 16267 Corbos 313 Corbridge 194118 @@ -23540,6 +23954,8 @@ Corean 107164 Corell 10523 Corella 16635 Corellas 721 +Coren 45797 +Corens 912 Coretta 16059 Corey 237760 Corfe 235521 @@ -23868,6 +24284,7 @@ Cotham 51407 Cothelstone 13860 Cotheridge 9216 Cothern 949 +Cotherstone 21326 Cothran 3146 Cothren 2041 Cothron 139 @@ -23954,6 +24371,7 @@ Coughlins 345 Coughran 815 Coughtrey 5518 Couillard 6884 +Coulee 24849 Coules 7128 Coulibaly 15416 Coulls 2720 @@ -24055,6 +24473,7 @@ Cov 84233 Covadonga 19900 Covalt 333 Covarrubias 28889 +Covault 2515 Cove 913060 Covel 26804 Covell 50443 @@ -24083,6 +24502,7 @@ Covian 619 Covid 669 Coviello 14036 Covil 2033 +Covill 5869 Coville 13237 Covin 20860 Covina 7903 @@ -24199,6 +24619,7 @@ Crabtrees 2355 Cracchiolo 1183 Crace 89838 Craces 928 +Crack 562509 Cracknell 67405 Crackpot 4686 Craco 2571 @@ -24315,6 +24736,7 @@ Crases 235 Crashaw 167720 Crashaws 385 Crask 8674 +Crassier 5113 Crassus 571919 Crater 190279 Crathes 22483 @@ -24420,6 +24842,7 @@ Cregger 165 Crego 3153 Crehan 20387 Creighton 464193 +Creigiau 3918 Creil 34663 Cremer 181007 Cremers 15612 @@ -24474,6 +24897,7 @@ Crestline 2583 Creston 26589 Crestview 4151 Creswell 224215 +Creswellian 7554 Creswells 961 Cretacean 1672 Cretaceans 101 @@ -24572,8 +24996,10 @@ Crispin 429688 Crispins 14280 Crispr 71 Crispus 113726 +Crissie 3260 Crissinger 443 Crissman 4857 +Crissy 13174 Crist 211510 Cristales 2345 Cristero 4563 @@ -24786,6 +25212,7 @@ Crout 11327 Crouthamel 2404 Crouts 439 Crow 1156347 +Crowan 13101 Crowborough 113373 Crowcombe 30641 Crowden 24176 @@ -24826,6 +25253,7 @@ Crozier 322767 Cru 84414 Cruce 44982 Cruces 56798 +Crucorney 3340 Cruddas 29274 Crudelli 725 Crudup 6249 @@ -24857,6 +25285,7 @@ Crumpton 30412 Crumptons 2101 Crumrine 2203 Crums 3471 +Crundall 14920 Crunk 1297 Crunks 85 Crupi 2473 @@ -24940,6 +25369,8 @@ Cubey 1859 Cubillas 2573 Cubist 119303 Cubists 36835 +Cubit 28168 +Cubits 20151 Cubitt 303369 Cubmaster 431 Cubmasters 253 @@ -24953,6 +25384,7 @@ Cucinotta 3271 Cuckfield 119441 Cucklington 5628 Cuckmere 31280 +Cuckney 23645 Cuckston 1217 Cudahy 18314 Cudahys 107 @@ -25040,6 +25472,7 @@ Culligan 11338 Cullinan 84426 Cullinane 21614 Cullinans 468 +Cullington 7548 Cullingworth 81947 Cullison 3135 Culliton 8338 @@ -25270,6 +25703,7 @@ Cushendall 22111 Cushing 446820 Cushingoid 4643 Cushite 36999 +Cushites 27243 Cushitic 33988 Cushla 6950 Cushman 179934 @@ -25303,6 +25737,7 @@ Cuthbertson 173863 Cuthill 34328 Cuthrell 799 Cutillo 897 +Cutino 653 Cutlack 5959 Cutler 555641 Cutlers 117136 @@ -25352,6 +25787,8 @@ CxO 386 Cy 287765 CyI 166 Cybele 262822 +Cybelean 368 +Cybelian 176 Cyberia 4367 Cyberman 2967 Cybermen 12321 @@ -25482,6 +25919,7 @@ DAI 97890 DAII 804 DAISY 72124 DAL 45358 +DALK 1010 DALs 566 DAM 109213 DAMA 8818 @@ -25504,11 +25942,13 @@ DAS 140800 DASD 2949 DASH 45776 DASK 550 +DASs 374 DAT 201297 DATEM 1148 DATs 6748 DAU 30081 DAUs 431 +DAV 28775 DAc 1068 DArT 742 DAs 26060 @@ -25517,6 +25957,7 @@ DBA 99314 DBAL 527 DBAs 5810 DBC 30792 +DBCP 8840 DBCS 1395 DBCs 2409 DBD 20336 @@ -25579,12 +26020,14 @@ DDDs 1767 DDE 71455 DDG 17894 DDI 53266 +DDJ 2853 DDK 5703 DDKs 139 DDL 27790 DDLs 632 DDMMYY 355 DDMMYYYY 110 +DDNP 370 DDO 8751 DDOS 2700 DDOs 538 @@ -25603,6 +26046,7 @@ DEAs 8640 DEB 55747 DEBs 537 DEC 395767 +DECA 5536 DECC 37749 DECS 4505 DECT 19608 @@ -25634,12 +26078,14 @@ DEVGRU 1421 DEW 46236 DEWR 757 DEX 22670 +DEXA 17539 DFA 51003 DFAS 506 DFAT 8063 DFAs 1625 DFC 91995 DFCs 3950 +DFDT 257 DFI 56641 DFK 1896 DFL 13358 @@ -25647,6 +26093,7 @@ DFLs 514 DFM 29240 DFW 12185 DFs 6150 +DGA 17971 DGPS 20719 DGS 23291 DGs 36571 @@ -25687,6 +26134,7 @@ DILF 169 p DILG 548 DIMM 3638 DIMMs 1431 +DIN 304345 DINB 128 DINK 913 DINKs 455 @@ -25717,6 +26165,7 @@ DK 542265 DKA 40153 DKM 3707 DKP 14522 +DKr 28614 DL 667005 DLA 83971 DLAB 510 @@ -25803,6 +26252,7 @@ DOF 53688 DOG 253007 DOHC 2301 DOI 676656 +DOIL 299 DOIs 5788 DOJ 42791 DOL 31820 @@ -25812,7 +26262,9 @@ DOMA 8364 DOMs 2296 DON 480444 DOOM 23472 +DOP 60828 DOPA 73283 +DOPE 11554 DORA 61479 DOS 400255 DOSS 4381 @@ -25861,6 +26313,7 @@ DRFs 693 DRI 55067 DRIP 13515 DRIPs 758 +DRIs 3081 DRL 19121 DRN 16218 DRO 53062 @@ -25878,6 +26331,7 @@ DSCs 4369 DSDD 387 DSDP 31993 DSE 31126 +DSEK 412 DSI 33322 DSLAM 2180 DSLAMs 565 @@ -25901,6 +26355,7 @@ DSU 122614 DSUs 1280 DSV 12964 DSVs 839 +DSW 9638 DSX 1400 DSs 4342 DT 323013 @@ -25914,6 +26369,7 @@ DTI 682903 DTIC 9649 DTIM 278 DTL 14993 +DTLS 1538 DTM 42921 DTMC 1354 DTMF 9280 @@ -25968,10 +26424,12 @@ DWR 10589 DWT 168365 DWs 3101 DX 204084 +DXA 25609 DXM 2048 DXer 694 DXers 1051 DXing 1154 +DXs 145 DYC 3274 p DYK 3308 DYKs 155 @@ -26015,6 +26473,7 @@ Dacunha 805 Dad 4783924 Dada 304118 Dadaesque 544 +Dadaism 25386 Dadaist 31605 Dadaists 30752 Dadamo 143 @@ -26128,6 +26587,7 @@ Dahmers 97 Dahms 9350 Dahn 26478 Dahns 105 +Dahod 837 Dahoman 14101 Dahomans 12055 Dahomean 16007 @@ -26413,6 +26873,7 @@ Dandurand 6615 Dandy 277094 Dandys 794 Dane 1087812 +Danebrog 6861 Danegeld 57932 Danegelt 18716 Danek 8648 @@ -26550,6 +27011,7 @@ Daoists 20413 Daoud 101594 Daoust 6289 Daoyin 2465 +Daph 20503 Daphne 1063590 Daphnean 992 Daphnian 123 @@ -26639,6 +27101,7 @@ Darke 106904 Darker 111895 Darkers 225 Darkhan 3957 +Darkins 2827 Darko 30784 Darks 5024 Darla 44188 @@ -26652,7 +27115,6 @@ Darley 378817 Darleys 1571 Darling 1915974 Darlington 1658955 -Darlingtons 3389 Darlo 1720 Darmon 16204 Darmstadt 597020 @@ -26703,6 +27165,7 @@ Darug 559 Daruvar 912 Darvall 14123 Darvel 35310 +Darvesh 3512 Darville 13831 Darwen 337543 Darwin 5084727 @@ -26738,6 +27201,7 @@ Dashain 659 Dashami 426 Dasharatha 3499 Dasher 25600 +Dashers 1773 Dashiell 33424 Dashnak 7285 Dashnakist 254 @@ -26794,6 +27258,7 @@ Daunts 1823 Dauntsey 36666 Dauphin 827851 Dauphinois 11761 +Dauphins 10971 Daur 19066 Daura 22011 Dauria 7924 @@ -26901,6 +27366,7 @@ Dayes 63611 Dayhoff 9991 Dayi 5024 Daykin 16197 +Daylan 1365 Dayle 10609 Dayley 3397 Dayna 9630 @@ -26959,6 +27425,7 @@ DeLillo 61601 DeLisa 1626 DeLisi 8753 DeLisio 306 +DeLonge 911 DeLorean 16618 DeLoreans 193 DeLorenzo 3727 @@ -27100,6 +27567,7 @@ Decarlo 453 Decarolis 395 Decastro 12968 Decatur 94404 +Decca 770553 Deccan 751830 Deccanee 1517 Deccanees 489 @@ -27107,6 +27575,7 @@ Deccani 14356 Deccanis 2231 Deccany 1175 Deceangli 2976 +Decelles 870 December 62129655 Decemberish 438 Decemberists 505 @@ -27226,6 +27695,7 @@ Deike 1539 Deimos 24042 Deiniolen 1510 Deion 4252 +Deipara 9481 Deirdre 372818 Deisher 1334 Deism 190322 @@ -27311,6 +27781,7 @@ Delhi 5095412 Delhian 207 Delhians 533 Delhiites 412 +Deli 112120 Delia 733866 Deliah 1712 Delian 115441 @@ -27376,6 +27847,7 @@ Delroy 28593 Dels 5949 Delsarte 13999 Delsartean 1047 +Delsartian 435 Delsignore 399 Delson 9001 Delta 2052589 @@ -27469,6 +27941,7 @@ Demsa 866 Demski 8015 Demuro 304 Demus 36551 +Demyan 11256 Den 1018758 Dena 66721 Dena'ina 768 @@ -27511,6 +27984,7 @@ Denhartog 259 Denholm 115151 Denholms 831 Denike 1389 +Denikinites 259 Denington 22465 Denio 6241 Denis 2808885 @@ -27637,6 +28111,7 @@ Derridean 51891 Derringer 16160 Derringers 689 Derry 1049088 +Derrynane 12715 Derrys 1614 Ders 4291 Dershem 1240 @@ -27645,6 +28120,7 @@ Deruelle 3466 Deruelles 230 Dervish 195184 Dervishes 171656 +Derwenlas 1573 Derwent 787511 Derwentwater 180060 Derwin 4400 @@ -27669,6 +28145,7 @@ Descanso 4260 Descartes 2640175 Descartian 1205 Descemet 45611 +Descemets 247 Deschanel 32480 Deschanels 204 Deschutes 4592 @@ -27718,6 +28195,7 @@ Desta 13828 Destas 225 Destefano 983 Destin 22683 +Destinee 1675 Destiny 740951 Desvarieux 685 Det 297365 @@ -27733,6 +28211,7 @@ Dethick 57020 Dethicks 797 Dethloff 2389 Detlefsen 9329 +Detmold 63005 Detraz 1223 Detroit 1610129 Detroiter 1848 @@ -27779,6 +28258,7 @@ Devedjian 285 Devendra 14790 Devenish 77399 Devenishes 788 +Devenney 5919 Devenport 9101 Devens 7073 Deventer 183613 @@ -27788,12 +28268,16 @@ Devera 1461 Deveras 173 Deveraux 13603 Devere 8438 +Devereau 4966 Devereaux 62482 Deverell 88327 Deveres 340 +Devereux 511675 Devers 20013 Deveson 5418 Devi 256424 +Deviant 70321 +Deviants 10329 Devil 4013255 Deville 183948 Devilles 1640 @@ -27824,6 +28308,7 @@ Devors 91 Devos 20464 Devoy 53182 Devoys 217 +Devreux 5315 Devs 7468 Dew 422704 Dewa 26605 @@ -27851,6 +28336,7 @@ Dewing 29492 Dewitt 21972 Dewitts 179 Dews 75055 +Dewsall 1692 Dewsbury 590510 Dexheimer 1787 Dexter 558028 @@ -27863,6 +28349,7 @@ Deyoe 1232 Deyos 1465 Deyoung 619 Deyton 729 +Dez 35336 Dezhou 1549 Dezzy 552 DfE 115036 @@ -27878,6 +28365,7 @@ Dhanani 2865 Dhangadhi 395 Dhanraj 2147 Dhar 101586 +Dharamsala 27410 Dharamshala 1939 Dharawal 423 Dharma 356335 @@ -27909,6 +28397,7 @@ DiCaprio 24264 DiCarlo 8410 DiCerbo 557 DiCicco 3373 +DiClemente 24425 DiCola 491 DiCostanzo 181 DiDonato 4423 @@ -27975,6 +28464,7 @@ Diamant 71073 Diamantina 24086 Diamants 6734 Diamond 2954481 +Diamondstone 409 Diana 3960148 Dianagate 263 Dianamania 135 @@ -28107,12 +28597,14 @@ Dietman 1932 Dietmen 2044 Dietz 210128 Dietze 13130 +Dietzen 994 Dietzman 811 Diez 127811 Difazio 353 Diffenderfer 313 Differdange 4135 Diffley 3371 +Digambara 14912 Diganta 219 Digbeth 26138 Digbies 2248 @@ -28210,6 +28702,7 @@ Dimmitt 2954 Dimmock 63940 Dimmocks 946 Dimock 60556 +Dimon 18542 Dimond 65149 Dimonds 427 Dimopoulos 8645 @@ -28315,10 +28808,12 @@ Diphda 559 Diphysite 192 Diphysites 269 Dipietro 605 +Dipolog 1142 Dipper 90195 Dippers 25677 Dipple 18351 Diptford 6782 +Dipton 10231 Dipu 676 Dirac 346729 Dirae 7367 @@ -28387,6 +28882,7 @@ Disraelitish 534 Diss 482038 Dissenter 278022 Dissenters 2120184 +Disserth 5221 Distefano 4409 Distington 29168 District 22609021 @@ -28419,6 +28915,7 @@ Divilly 173 Divinagracia 129 Divine 11956738 Divines 460192 +Divonne 5501 Divorce 1661274 Divya 10582 Diwali 33315 @@ -28458,6 +28955,7 @@ Djidda 17689 Djingili 413 Djokovic 20608 Djolof 692 +Djon 1461 Djordjevic 11085 Djuka 2508 Djukas 347 @@ -28539,6 +29037,9 @@ Dobys 109 Doc 1950015 Docetae 11249 Docherty 121591 +Docimeium 205 +Docimia 365 +Docimium 1590 Docimo 1103 Dock 3779257 Docken 3035 @@ -28562,6 +29063,7 @@ Doctor 9948762 Doctors 1873641 Dodd 1314420 Dodder 48641 +Doddington 152144 Doddridge 301491 Doddridges 921 Dodds 585884 @@ -28601,6 +29103,7 @@ Doebler 2351 Doeden 299 Doedens 1439 Doege 1600 +Doehring 5454 Doel 44258 Doell 8911 Doenges 1288 @@ -28622,6 +29125,7 @@ Dogberryisms 107 Dogdyke 4448 Doge 786519 Dogecoin 339 +Doges 64959 Dogg 25051 Dogger 166649 Doggerland 6052 @@ -28640,6 +29144,7 @@ Dogsthorpe 6263 Dogtown 4710 Doh 42764 Doha 388520 +Dohad 2744 Dohan 6472 Doheny 31706 Dohenys 235 @@ -28661,6 +29166,8 @@ Doitsu 1313 Dojin 761 Doke 29582 Dokes 2466 +Dokimeion 1930 +Dokimion 1357 Dokken 9096 Dol 215798 Dolan 284752 @@ -28706,6 +29213,7 @@ Dollinger 109911 Dollingers 211 Dollison 679 Dolloff 709 +Dollywood 3359 Dolma 14691 Dolman 107990 Dolmas 674 @@ -28799,6 +29307,7 @@ Donahue 113281 Donahues 686 Donald 5914808 Donalda 7977 +Donalds 15094 Donaldson 1331665 Donaldsonville 2767 Donalson 2309 @@ -28822,6 +29331,7 @@ Donats 9364 Donaueschingen 21775 Donaustadt 415 Donavan 13015 +Donayre 818 Donbas 26588 Donbass 30828 Doncaster 1764171 @@ -28960,6 +29470,7 @@ Dopson 11038 Dor 380337 Dora 1506002 Dorado 258254 +Doral 7153 Dorame 225 Doran 384137 Dorans 3762 @@ -29187,6 +29698,7 @@ Dovel 1555 Dovenby 9183 Dover 5421158 Dovercourt 53942 +Doverdale 7757 Doverspike 2074 Doveton 56607 Dovey 99389 @@ -29237,8 +29749,8 @@ Downey 260165 Downeys 571 Downham 210876 Downhill 44306 -Downie 245922 -Downies 2103 +Downie 245922 p +Downies 2103 p Downieville 1309 Downing 2046214 Downingtown 1588 @@ -29380,6 +29892,7 @@ Drennon 1121 Drenth 10921 Drenthe 35409 Drents 1210 +Dresch 15774 Drescher 40254 Dreschers 287 Dresden 2229471 @@ -29455,6 +29968,7 @@ Droitwich 307831 Droke 1329 Drokes 201 Drolet 7965 +Drolma 2813 Drolsum 541 Dromiskin 3111 Dromod 6424 @@ -29466,14 +29980,17 @@ Dronfield 69553 Drongan 13691 Drongowski 359 Dronten 1678 +Droodiana 111 Dror 35097 Drost 27579 Droste 37565 +Droubi 593 Drouet 110827 Drouets 400 Drought 321183 Drouillard 2743 Drouin 23868 +Drouins 205 Drown 68457 Drowns 8749 Droxford 37847 @@ -29512,6 +30029,7 @@ Drummonds 42131 Drummondville 4822 Drumms 766 Drumochter 17187 +Drumpellier 8066 Drumree 1492 Drumry 4334 Drums 315638 @@ -29656,6 +30174,7 @@ Ducuing 2063 Duda 47028 Dudash 1981 Dudayev 18569 +Dudbridge 14550 Duddeston 17146 Dudding 31560 Duddings 374 @@ -29685,6 +30204,7 @@ Duerksen 2090 Duerr 14822 Duers 797 Duerson 497 +Duerst 3987 Dues 482301 Duesenberg 8059 Dueser 283 @@ -29745,6 +30265,8 @@ Dugla 207 Dugo 3014 Dugos 123 Duguay 25822 +Dugue 3014 +Dugues 115 Duguid 99388 Duguids 269 Duhaime 5298 @@ -29944,6 +30466,7 @@ Dunkley 64343 Dunkleys 423 Dunklin 2033 Dunks 5658 +Dunkwa 11541 Dunky 4201 Dunlap 166707 Dunlavey 2824 @@ -30074,6 +30597,7 @@ During 43069061 Durio 7915 Durkee 11925 Durkheimian 80723 +Durkheimians 6277 Durkin 55593 Durkins 597 Durland 3519 @@ -30171,6 +30695,7 @@ Dutka 4717 Dutkiewicz 4365 Dutko 812 Dutra 19348 +Dutriez 145 Dutro 1027 Dutron 1077 Dutse 2191 @@ -30190,6 +30715,7 @@ Duvel 5155 Duvernay 13049 Duvernays 391 Duwal 1536 +Duwayne 5368 Duwe 2039 Duwes 1313 Duxbury 97582 @@ -30320,6 +30846,7 @@ EAIs 543 EAL 93639 EAM 86453 EAN 43362 +EAON 197 EAP 126140 EAPC 9800 EAPs 16980 @@ -30353,8 +30880,7 @@ EBOV 2390 EBRD 162605 EBSA 1924 EBU 66194 -EBV 177439 -EBVs 1719 +EBUS 5813 EBacc 1008 EBs 10707 EC 7133686 @@ -30446,6 +30972,7 @@ EEGs 30259 EELS 39114 EELV 2450 EENT 2169 +EEO 35613 EEOC 39400 EEPROM 21681 EEPROMs 3045 @@ -30466,6 +30993,7 @@ EFO 8972 EFPs 2514 EFRP 759 EFS 36706 +EFSA 60348 EFSF 15838 EFT 89180 EFTPOS 22381 @@ -30475,6 +31003,7 @@ EGBA 1015 EGCG 23353 EGD 12638 EGFR 70130 +EGFs 355 EGG 135838 EGMs 6376 EGOT 387 @@ -30527,14 +31056,18 @@ EL 876936 ELA 49476 ELAS 84500 ELAs 5366 +ELBW 3051 ELCS 488 ELF 147213 ELG 16405 ELGs 2478 +ELI 60686 ELINT 9575 ELISA 270144 +ELIs 1860 ELL 225882 ELLs 17035 +ELN 33853 ELOT 1001 ELSD 1642 ELSPA 1594 @@ -30578,6 +31111,7 @@ ENGO 5015 ENGOs 19141 ENIAC 27188 ENL 16183 +ENM 10795 ENR 15386 ENSA 29917 ENSO 65865 @@ -30626,6 +31160,7 @@ EPK 2493 EPKs 293 EPL 51254 EPMA 24949 +EPMD 1317 EPNS 22359 EPO 192396 EPOCH 34797 @@ -30682,6 +31217,7 @@ ERTMS 4458 ERTs 14260 ERU 8793 ERUs 7359 +ERV 17576 ERVs 1497 ERW 15371 ERWs 949 @@ -30693,9 +31229,11 @@ ESB 85929 ESBL 6855 ESBLs 2730 ESBs 1052 +ESC 229129 ESCA 41899 ESCB 44865 ESCI 1269 +ESCs 19295 ESD 182080 ESDI 11818 ESDP 95549 @@ -30816,6 +31354,7 @@ EYFS 77612 EZ 69690 Ea 594645 Eachus 8113 +Eacott 5599 Eacus 7909 Eaddy 626 Eade 72245 @@ -30874,6 +31413,7 @@ Earlestown 19085 Earley 101636 Earlimart 167 Earline 1727 +Earls 1781383 Earlsdon 8115 Earlsfield 27541 Earlston 44369 @@ -30968,6 +31508,7 @@ Eastfield 46375 Eastgate 129091 Eastham 156810 Easthams 947 +Easthope 57315 Eastie 573 Easties 151 Eastin 5500 @@ -31069,6 +31610,7 @@ Eboo 1595 Ebor 188856 Ebrahim 60354 Ebrahimi 12060 +Ebrard 37446 Ebright 2826 Ebrington 110195 Ebro 288746 @@ -31349,6 +31891,7 @@ Edwardians 49386 Edwardine 14349 Edwards 7489957 Edwardses 5365 +Edwardsian 2429 Edwardson 20174 Edwardsons 113 Edwardsville 22179 @@ -31362,6 +31905,7 @@ Edyvean 5154 Edzell 50334 EeV 480 Eek 25441 +Eemian 15105 Eevolution 45809 Eevolutions 1307 Eeyore 17805 @@ -31657,8 +32201,10 @@ Elamite 91757 Elamites 53245 Elamitic 4475 Elamitish 247 +Elan 121925 Eland 156817 Elands 24705 +Elans 2692 Elaphebolion 9281 Elar 2071 Elara 11067 @@ -31684,6 +32230,7 @@ Elbing 73303 Elborough 9160 Elbrus 9787 Elburg 6080 +Elburton 3699 Elcesaites 1245 Elchasaite 979 Elchasaites 2264 @@ -31916,6 +32463,7 @@ Ellon 70403 Ellora 58511 Ellroy 25186 Ells 35577 +Ellsberg 31894 Ellson 12138 Ellsworth 159246 Ellsworths 323 @@ -31954,6 +32502,7 @@ Elmton 6932 Elmwood 95699 Elmyra 579 Elnath 307 +Elno 2344 Elo 24313 Elohim 257206 Elohimic 334 @@ -31983,6 +32532,7 @@ Els 89507 Elsa 508346 Elsan 8823 Elsans 575 +Elsas 12395 Elsass 35628 Elsasser 22049 Elsasses 358 @@ -32101,6 +32651,7 @@ Emden 327484 Emdens 508 Emdes 90 Eme 24896 +Emei 6192 Emel 12093 Emelia 24538 Emelianoff 500 @@ -32380,6 +32931,7 @@ Enneking 4479 Ennen 6633 Ennew 13479 Ennis 330998 +Enniscorthy 84912 Enniskillen 332465 Ennistymon 15307 Enns 45034 @@ -32400,6 +32952,7 @@ Enriquez 68475 Enron 318527 Enrons 815 Enschede 54155 +Ensenada 66864 Ensey 165 Enshi 1429 Ensign 1230431 @@ -32448,6 +33001,7 @@ Enzo 182043 Enzor 419 Eo 147986 EoP 927 +Eoan 3890 Eoarchean 182 Eocene 830336 Eoff 2543 @@ -32570,6 +33124,7 @@ Eraskh 171 Erasmian 40066 Erasmians 4240 Erasmus 2527139 +Erasmuses 942 Erastian 93847 Erastianism 66050 Erastianized 305 @@ -32661,6 +33216,8 @@ Eritreans 45168 Erker 4152 Erkrath 1261 Erlandson 12891 +Erlang 34678 +Erlanger 109048 Erlbaum 510031 Erle 653515 Erlen 3654 @@ -32806,6 +33363,7 @@ Esher 666137 Eshes 450 Eshleman 9787 Eshnunna 10382 +Esho 1667 Esholt 24902 Eshtehardi 141 Eshton 22127 @@ -32849,13 +33407,13 @@ Espaillat 1926 Espana 226045 Espanas 1559 Espanish 217 -Espanola 115043 Espargos 731 Esparto 63884 Esparza 12516 Espejel 627 Espejo 25929 Espejos 1078 +Espelette 4289 Esper 51937 Espera 5276 Esperance 88617 @@ -32898,6 +33456,7 @@ Esquimos 1707 Esquivel 35022 Esquivias 3971 Esrum 1957 +Ess 232475 Essa 41847 Essame 4625 Essaouira 19438 @@ -33121,7 +33680,10 @@ Eudoxians 997 Eudy 1478 Eufaula 2862 Eugene 2561912 +Eugenean 261 Eugenia 326785 +Eugenian 2204 +Eugenians 1194 Eugenie 297144 Eugenius 428572 Eugubian 3521 @@ -33140,6 +33702,7 @@ Eunice 249115 Eunices 516 Eunomia 19027 Eunomian 5878 +Eunomianism 843 Eunomians 15202 Euparal 4247 Eupatrid 6747 @@ -33484,6 +34047,7 @@ Ewer 219573 Ewers 45112 Ewert 43384 Ewerts 369 +Ewes 403755 Ewhurst 46394 Ewing 1118398 Ewok 2814 @@ -33495,6 +34059,7 @@ Ex'r 434 Exall 15888 Exaudi 7214 Excalibur 103036 +Excaliburs 501 Excel 485172 Excellence 883671 Excellencies 210639 @@ -33540,6 +34105,7 @@ Extremaduran 2379 Extremadurans 226 Extropian 681 Extropians 1199 +Exultet 9647 Exum 21234 Exuma 21825 Exumas 2325 @@ -33553,6 +34119,7 @@ Eyebroughy 433 Eyebrow 12829 Eyemouth 85977 Eyer 16689 +Eyerman 14197 Eyers 12052 Eyetie 3118 Eyeties 4112 @@ -33595,6 +34162,7 @@ FABs 2412 FAC 102962 FACEP 927 FACP 7111 +FACS 56279 FACT 192382 FACs 7213 FAD 95065 @@ -33609,7 +34177,9 @@ FAL 54491 FALS 3433 FALSE 256928 FALs 1855 +FAM 67370 FAMU 3135 +FAMs 1077 FAN 137020 FANBOYS 149 FANG 16549 @@ -33662,6 +34232,7 @@ FCK 1663 FCM 29785 FCMs 3990 FCN 14743 +FCNC 711 FCPA 30184 FCRA 2531 FCS 105372 @@ -33705,6 +34276,8 @@ FEIE 157 FELIX 128376 FEM 158667 FEMA 44087 +FEPA 9739 +FEPC 7969 FEPs 1414 FER 66796 FERA 11682 @@ -33742,6 +34315,7 @@ FGs 3938 FHA 52616 FHD 3874 FHG 12878 +FHI 5405 FHLBB 2833 FHR 29647 FHRs 257 @@ -33768,6 +34342,7 @@ FIL 44605 FILF 129 FILs 3165 FIN 148099 +FINRA 8192 FINs 2974 FIOA 681 FIPS 9653 @@ -33796,6 +34371,8 @@ FLD 11674 FLDs 1109 FLE 22771 FLES 3634 +FLET 1386 +FLI 8326 FLICE 1109 FLIP 16864 FLIPs 450 @@ -33807,11 +34384,13 @@ FLOP 6868 FLOPS 3652 FLOPs 394 FLOSS 16305 +FLOT 1962 FLOTUS 476 FLOX 580 FLR 219109 FLRW 2588 FLRs 1811 +FLSA 7759 FLUTD 992 FMA 38435 FMC 104350 @@ -33828,8 +34407,11 @@ FMTV 1097 FMX 1568 FMs 6577 FN 293261 +FNC 13833 +FNF 3011 FNG 3248 FNGs 325 +FNHTR 799 FNN 3961 FNNs 649 FNP 7868 @@ -33935,6 +34517,7 @@ FSB 105181 FSBO 372 FSCS 10520 FSF 27106 +FSLIC 6742 FSM 66308 FSMA 46886 FSMs 5251 @@ -33994,13 +34577,13 @@ FW 209067 FWA 19341 FWD 15963 FWDs 199 +FWI 2842 FWP 5237 FWs 916 FYA 5330 FYF 556 p FYI 18735 FYM 25424 -FYP 15861 FYPs 1291 FZD 2423 FZS 4920 @@ -34154,6 +34737,7 @@ Fairmans 567 Fairmead 10346 Fairmont 43974 Fairplay 173033 +Fairport 44737 Fairs 583168 Fairstein 1545 Fairview 98074 @@ -34224,6 +34808,7 @@ Falisci 13067 Falivene 637 Falk 462306 Falkener 29316 +Falkensee 572 Falkenstein 56945 Falkensteins 314 Falkiner 34193 @@ -34292,6 +34877,7 @@ Fanariotes 3103 Fanariots 1592 Fanas 369 Fancett 1165 +Fanchang 245 Fancheng 900 Fancher 14169 Fancy 1882298 @@ -34312,6 +34898,7 @@ Fangfoss 3683 Fangman 2143 Fangshan 2368 Fankhauser 16943 +Fanling 5393 Fann 32669 Fannie 136741 Fannies 2557 @@ -34403,6 +34990,7 @@ Farishes 317 Farjeon 64611 Farjeons 503 Farkas 83388 +Farker 1820 Farlam 8203 Farland 14205 Farlands 1203 @@ -34542,6 +35130,7 @@ Fath 105302 Fathallah 4352 Father 28068726 Fatheree 183 +Fathers 3868236 Fathima 1441 Faths 935 Fatick 1706 @@ -34677,6 +35266,7 @@ Fazakerley 67397 Fazakerleys 611 Fazal 26445 Fazes 239 +Fazilka 2339 Fazio 118350 Fazzino 723 Fazzio 646 @@ -34792,6 +35382,7 @@ Fehrman 2383 Fehrs 883 Fei 151874 Feick 3568 +Feidong 184 Feig 7801 Feige 16666 Feigenbaum 51403 @@ -34816,6 +35407,7 @@ Feist 54757 Feists 389 Feit 17387 Feits 217 +Feixi 329 Fejeeans 289 Fekete 32568 Felan 3458 @@ -34858,6 +35450,7 @@ Fellowes 311984 Felloweses 325 Fellows 4000510 Fells 161777 +Felpham 54744 Felske 987 Felstead 46808 Felsted 59292 @@ -34885,6 +35478,7 @@ Fender 109760 Fenders 34727 Fenderson 1551 Fendley 3581 +Fendrich 4543 Fenech 15442 Fenella 116554 Fenelon 275867 @@ -35067,6 +35661,7 @@ Ferreri 17825 Ferreris 467 Ferrero 88322 Ferreros 375 +Ferrers 706781 Ferres 13597 Ferretti 56106 Ferreyra 5716 @@ -35098,6 +35693,7 @@ Ferryland 11183 Ferrys 7650 Ferryside 9863 Fersfield 8646 +Fersit 1646 Fertig 26668 Fertile 198781 Fertitta 431 @@ -35156,7 +35752,9 @@ Feys 4618 Fez 422490 Fezzan 134921 Ffestiniog 78853 +Ffitch 2411 Fforestfach 8013 +Ffrith 4766 Fi 814638 FiOS 490 FiT 4205 @@ -35210,12 +35808,14 @@ Fiddown 2679 Fidel 316682 Fidelia 63700 Fidelism 595 +Fidelma 146448 Fides 118762 Fidge 6137 Fidges 239 Fidler 142165 Fidlers 11302 Fido 155298 +Fiebelkorn 1019 Fiebig 10864 Fiedler 170321 Fiedlers 818 @@ -35367,6 +35967,7 @@ Finas 1775 Finau 10431 Finaus 125 Finazzo 381 +Finbar 38049 Finbow 11023 Fincastle 15732 Finch 1535167 @@ -35380,7 +35981,9 @@ Finck 65284 Fincks 375 Findchoem 282 Finder 161620 +Findern 13451 Finders 46666 +Findhorn 121252 Findian 951 Findlater 136452 Findlay 600681 @@ -35481,6 +36084,7 @@ Fintan 57103 Fintech 4342 Finton 3626 Fintona 14504 +Fintown 2578 Finucane 68486 Finucanes 263 Fiona 1093728 @@ -35699,6 +36303,7 @@ Flattery 149185 Flaubert 558626 Flaubertian 9655 Flaugher 539 +Flaunden 4705 Flavelle 7811 Flavia 300045 Flavian 378457 @@ -35814,18 +36419,22 @@ Flobert 5387 Floch 12319 Flock 380961 Flocks 158604 +Flockton 50137 +Flocktons 360 Floersch 917 Flohr 27924 Flood 1498407 Floods 276274 Flook 26264 Flooks 3280 +Flopsy 8528 Flora 3699736 Floralia 15456 Florance 13554 Florange 3852 Flordon 4635 Florea 6304 +Floreana 7927 Floreas 278 Florek 1992 Florence 10281794 @@ -35851,6 +36460,7 @@ Florida 4003871 Floridan 7874 Floridans 1728 Floridian 11949 +Floridiana 1843 Floridians 7810 Florido 7859 Floridos 301 @@ -35858,6 +36468,7 @@ Florin 83640 Florina 21679 Florinda 56080 Floris 111400 +Florisbad 4434 Florissant 15865 Floriston 1409 Florita 3528 @@ -35886,6 +36497,7 @@ Floyd 644357 Floydada 529 Floydian 332 Floyer 92038 +Fluckiger 9185 Flud 7528 Fludd 76659 Fluddian 138 @@ -35924,6 +36536,8 @@ Flyorov 289 Flys 4520 Flysch 31175 Flythe 355 +Fmk 21810 +Fmks 7348 Fn 121728 Fo 495554 FoE 65161 @@ -36041,6 +36655,7 @@ Fontainebleau 537014 Fontan 47478 Fontana 676695 Fontanas 1681 +Fontanes 30217 Fontanez 395 Fontanilla 820 Fontanillas 504 @@ -36052,6 +36667,8 @@ Fontes 69611 Fonts 76370 Fonville 1303 Fonzi 4015 +Fonzio 1186 +Fonzo 2994 Foo 162113 Foochow 132418 Fookien 1111 @@ -36082,6 +36699,7 @@ Forchheim 6657 Forcier 1858 Ford 7617774 Forde 334968 +Fordell 15379 Forden 25916 Fordes 3028 Fordgate 413 @@ -36228,7 +36846,9 @@ Fortier 45197 Forties 176737 Fortin 91905 Fortino 4826 +Fortins 474 Fortis 93711 +Fortisan 3188 Fortman 6934 Fortner 14572 Fortney 4705 @@ -36497,6 +37117,7 @@ Frankensteined 86 Frankensteinian 3743 Frankensteinish 185 Frankensteins 5864 +Frankenthal 32234 Frankfield 5987 Frankford 53499 Frankfort 1509647 @@ -36606,6 +37227,7 @@ Freas 3983 Frech 11102 Frechette 21112 Frechtman 7571 +Freckleton 25908 Frecklington 213 Fred 4420817 Freda 306019 @@ -36731,12 +37353,14 @@ Frenches 11087 Frenchest 447 Frenchie 20411 Frenchies 14192 +Frenchiest 250 Frenchification 3089 Frenchifications 229 Frenchified 51437 Frenchifies 291 Frenchify 2981 Frenchifying 1913 +Frenchily 71 Frenchiness 614 Frenching 1054 Frenchised 46 @@ -36854,11 +37478,13 @@ Friedmanns 236 Friedrich 2916324 Friedrichshafen 42542 Friedrichshain 10978 +Friedrichsruh 12509 Friedrichstal 315 Friedt 1645 Friel 106283 Friels 1585 Friend 28244793 +Friendlies 5811 Friends 7627783 Friendship 1509574 Friendster 6264 @@ -36929,6 +37555,8 @@ Fritch 4789 Fritcher 481 Fritchman 747 Frith 1061964 +Frito 13995 +Fritos 3011 Fritsche 28155 Fritsches 241 Frittenden 9593 @@ -36977,6 +37605,7 @@ Froggatt 54637 Froggatts 181 Frogge 2636 Frogges 1676 +Froghall 11171 Frogland 999 Frogmore 131262 Frogs 340028 @@ -37128,6 +37757,7 @@ Fujiwaras 2313 Fujiyama 26972 Fukang 1185 Fukien 83955 +Fukienese 3545 Fukuchi 6333 Fukuda 107551 Fukui 66681 @@ -37156,12 +37786,14 @@ Fulda 178079 Fulfer 367 Fulford 251598 Fulfords 2215 +Fulfulde 13382 Fulgencio 18886 Fulgham 1581 Fulghum 3592 Fulginiti 1782 Fulgora 10008 Fulham 1374628 +Fuli 4578 Fuling 2616 Fulk 299640 Fulkerson 27544 @@ -37264,6 +37896,7 @@ Furlows 161 Furman 84419 Furnari 2934 Furnas 32118 +Furneaux 131181 Furner 18955 Furness 1204752 Furney 7049 @@ -37388,7 +38021,6 @@ GAB 40822 GABAergic 63997 GABAnergic 193 GABOB 655 -GAG 42417 GAGE 56602 GAH 5601 GALEX 583 @@ -37401,6 +38033,7 @@ GAP 160252 GAR 74374 GARCH 63767 GARs 1132 +GAS 1807440 GATE 333091 GATS 205842 GATT 1411208 @@ -37425,6 +38058,7 @@ GBT 5366 GBU 9181 GBV 14942 GBs 9242 +GCAS 1174 GCB 65624 GCC 301230 GCCF 2418 @@ -37500,6 +38134,7 @@ GGO 3486 GGOs 903 GGS 9738 GGT 32662 +GGs 1459 GHB 26834 GHIH 659 GHQ 159026 @@ -37508,6 +38143,8 @@ GHRH 22481 GHS 96132 GHSs 484 GI 631613 +GIC 30192 +GICs 6639 GID 18759 GIDEON 23412 GIDs 485 @@ -37519,16 +38156,15 @@ GIGO 5051 GIIPS 1368 GILF 316 p GILFs 115 p +GIM 19405 GIMPS 1336 GINO 7776 GIP 39771 GIRFEC 2152 -GIS 835897 GISAXS 376 GISS 8019 GIST 23541 GISTs 7952 -GISs 5813 GIUK 2167 GIs 99439 GJ 245177 @@ -37551,6 +38187,7 @@ GLO 27909 GLONASS 13426 GLOs 2284 GLP 75912 +GLR 11414 GLS 56331 GMA 51664 GMAT 22630 @@ -37578,6 +38215,7 @@ GMST 3844 GMTA 381 GMV 6140 GMVs 631 +GMW 10622 GMail 373 GMs 11856 GN 166915 @@ -37585,7 +38223,10 @@ GNAA 88 GNC 29888 GND 16818 GNI 85591 +GNMA 7965 GNOME 14371 +GNR 23862 +GNRs 1543 GNS 30656 GNSS 27742 GNU 39950 @@ -37598,9 +38239,10 @@ GOA 19267 GOAT 47218 GOATs 1359 GOD 1703462 -GOE 8966 GOEs 1037 +GOFAI 7110 GOH 6236 +GOL 15573 GOMA 1974 GOMER 3413 GONGO 1676 @@ -37630,6 +38272,7 @@ GPDA 1551 GPF 7776 GPFs 303 GPGPU 794 +GPH 6543 GPIB 13986 GPIO 14381 GPIOs 763 @@ -37665,6 +38308,7 @@ GRPs 16083 GRR 8647 GRRs 602 GRS 30721 +GRT 67038 GRU 60492 GRX 3125 GSA 80714 @@ -37717,6 +38361,7 @@ GTR 25215 GTS 33422 GTT 15564 GTTs 739 +GTW 5194 GTi 22036 GTis 939 GTs 8865 @@ -37790,6 +38435,7 @@ Gaboury 2053 Gabr 15237 Gabriel 3713151 Gabriela 80685 +Gabriele 218575 Gabrielino 649 Gabrielites 245 Gabriella 158609 @@ -37834,6 +38480,7 @@ Gadds 1460 Gaddy 19858 Gade 96212 Gadea 6099 +Gaden 12062 Gadhaffi 407 Gadhafi 7604 Gadhavi 201 @@ -37885,6 +38532,7 @@ Gaffney 94737 Gaffneys 569 Gafford 4777 Gaffs 3436 +Gafsa 38717 Gagarin 87434 Gagauz 12105 Gagauzes 265 @@ -37919,6 +38567,7 @@ Gahrs 121 Gaia 318303 Gaian 15941 Gaianism 621 +Gaianists 227 Gaians 1969 Gaier 4119 Gaika 61701 @@ -37968,6 +38617,7 @@ Gala 299259 Galabank 1889 Galactic 142377 Galahad 263856 +Galahads 3379 Galalith 3006 Galan 35841 Galang 5827 @@ -38187,6 +38837,7 @@ Galton 747942 Galtonian 5606 Galtonism 177 Galusha 4389 +Galuten 583 Galvalume 2348 Galvan 25302 Galvani 101229 @@ -38370,6 +39021,8 @@ Ganzer 4431 Ganzhou 2629 Gao 291086 Gaocheng 655 +Gaodeng 681 +Gaoli 3488 Gaoling 574 Gaon 67435 Gaona 3586 @@ -38425,6 +39078,7 @@ Garcon 11408 Garcons 8116 Gard 433533 Garda 243327 +Gardai 15578 Gardas 687 Gardea 1555 Gardeas 303 @@ -38506,6 +39160,7 @@ Garmon 22756 Garmons 717 Garms 3172 Garnant 6687 +Garndiffaith 1538 Garneau 12644 Garneddwen 675 Garner 614564 @@ -38579,6 +39234,7 @@ Garsia 13091 Garsias 2622 Garside 117134 Garsides 1261 +Garsington 73577 Garske 2037 Garson 98349 Garsons 451 @@ -38731,6 +39387,7 @@ Gatorade 15686 Gatorades 173 Gatorfoam 180 Gatrell 46396 +Gatsby 170602 Gatson 1371 Gatt 86863 Gatta 16140 @@ -38815,6 +39472,7 @@ Gav 52742 Gavaldon 1229 Gavar 5398 Gavarnie 30376 +Gavenny 1939 Gaver 12836 Gavers 207 Gavidia 1262 @@ -38883,12 +39541,15 @@ Gazzamania 179 Gazzaniga 48147 Gb 60913 Gbadolite 5683 +Gbagyi 416 +Gbari 5890 Gbe 21281 Gbin 114 Gbit 21662 Gbps 13114 Gbs 1275 Gcaleka 5909 +Gchat 201 Gdynia 97059 Ge 1094798 Ge'ez 19094 @@ -39015,6 +39676,7 @@ Gelasian 42361 Gelasius 123774 Gelasma 574 Gelbstoff 915 +Gelbvieh 660 Geldart 52675 Gelderland 78261 Geldermalsen 5153 @@ -39034,6 +39696,7 @@ Gelligaer 25764 Gelling 52927 Gellis 6837 Gellman 21497 +Gellnerian 969 Gello 2069 Gelman 80993 Gelmans 285 @@ -39078,6 +39741,7 @@ Gendron 25483 Gene 1307886 Genelle 639 General 114411692 +Generals 1329149 Generica 448 Genesee 60663 Geneseo 8067 @@ -39158,6 +39822,7 @@ Geoghegans 793 Geomatic 1138 Geonic 5469 Geonim 10839 +Geonkhali 275 Geopolitik 10373 Geordie 242117 Geordieland 890 @@ -39380,6 +40045,7 @@ Gertner 14910 Gertrude 1777868 Gertsch 5794 Gertz 31502 +Gerussi 1515 Gervacio 421 Gervais 216167 Gervas 48769 @@ -39471,6 +40137,7 @@ Ghans 649 Gharapuri 609 Gharib 34282 Gharyan 1194 +Ghashghai 239 Ghassan 40936 Ghassanian 99 Ghassanid 6119 @@ -39507,6 +40174,7 @@ Ghera 2871 Ghere 955 Gherkin 12813 Gherla 1473 +Ghey 2662 Ghia 23071 Ghibelline 132645 Ghibellines 118844 @@ -39539,6 +40207,8 @@ Ghu 1971 Ghum 1444 Ghuman 6287 Ghurid 5785 +Ghurkha 1711 +Ghurkhas 2675 Ghuz 2557 Ghuzz 8784 GiB 1172 @@ -39891,6 +40561,7 @@ Ginters 524 Ginther 19056 Ginty 17977 Ginyard 305 +Ginza 51759 Gio 199994 Gion 17889 Gionet 461 @@ -39903,6 +40574,7 @@ Giovannetti 7096 Giovanni 3087391 Giovanniello 356 Giovannini 30856 +Giovenale 7374 Giovinazzi 359 Gipe 3356 Gipes 417 @@ -39979,6 +40651,7 @@ Gitksan 3549 Gitlin 52598 Gitlins 135 Gitmo 6021 +Gitte 8237 Gittens 23937 Gitter 8162 Gitters 273 @@ -40011,6 +40684,7 @@ Gizzi 9142 Gjakova 3927 Gjemre 673 Gjerde 7176 +Gjergji 885 Gjilan 914 Gl 382879 Glab 1717 @@ -40068,6 +40742,7 @@ Glanders 82912 Glandon 3181 Glandyfi 1930 Glanister 421 +Glanmire 13008 Glanton 20331 Glantz 39654 Glanville 440507 @@ -40124,6 +40799,7 @@ Glauconian 170 Glaucus 189740 Glaude 5406 Glaudes 254 +Glauser 10765 Glavan 729 Glavin 8579 Glawe 1340 @@ -40158,7 +40834,9 @@ Gleim 24334 Gleims 391 Gleipnir 1517 Glen 2337887 +Glenageary 6491 Glenarm 38886 +Glenavy 12168 Glenbarry 1885 Glenbeigh 14060 Glenboig 27366 @@ -40217,6 +40895,7 @@ Glissonian 1341 Glitnir 4132 Glittertind 882 Gliwice 16081 +Gloag 79224 Globe 2383360 Globish 1166 Glocester 162187 @@ -40225,6 +40904,7 @@ Glockner 24731 Glocks 4430 Glodowski 107 Gloeckner 2547 +Gloggnitz 4047 Glogowski 1233 Glogue 824 Glomb 2218 @@ -40253,6 +40933,7 @@ Glouc 129326 Gloucester 7402015 Gloucesters 29614 Gloucestershire 2727668 +Glounthaune 434 Glover 1507491 Glovers 46036 Glovertown 261 @@ -40313,8 +40994,11 @@ Gnosticisms 424 Gnostics 316938 Gnuse 2901 Go 11109032 +GoE 1355 +GoEs 585 GoH 1724 GoI 10866 +GoL 3549 GoS 8992 GoT 4914 Goa 823181 @@ -40387,6 +41071,7 @@ Godforsaken 11772 Godfrey 2739218 Godful 180 Godhead 1023027 +Godhra 8784 Godin 107349 Godina 4495 Godinez 5996 @@ -40407,7 +41092,6 @@ Godoberi 583 Godolphin 859750 Godoy 135125 Godoys 295 -Gods 3838429 Godsakes 589 Godself 13738 Godsell 18803 @@ -40562,6 +41246,7 @@ Goldfarb 61083 Goldfarbs 493 Goldfield 56487 Goldfish 64421 +Goldi 8462 Goldie 375745 Goldilocks 73655 Goldin 91264 @@ -40613,6 +41298,7 @@ Golembiewski 8190 Golembiowski 115 Golenbock 781 Golestan 8573 +Golesworthy 1942 Goleta 13039 Goley 1073 Golgi 503646 @@ -40652,6 +41338,7 @@ Golob 9303 Golog 658 Golok 6676 Golomb 22196 +Golowan 234 Golphin 257 Golson 24869 Golspie 63362 @@ -40875,6 +41562,7 @@ Goossens 83643 Goosson 615 Goostrey 10001 Gootee 512 +Gootnick 188 Gopal 142511 Gopala 12708 Gopalakrishnan 13699 @@ -40947,7 +41635,9 @@ Gorgie 27188 Gorgio 9144 Gorgios 4753 Gorgonean 579 +Gorgoneion 9423 Gorgonesque 132 +Gorgonzola 36808 Gorham 287397 Gorhams 840 Gori 78874 @@ -40982,6 +41672,7 @@ Gormleys 593 Gormogon 1120 Gormogons 2553 Gorney 8765 +Gorniak 1411 Gornick 13578 Gorny 10938 Gorobets 1045 @@ -40997,6 +41688,7 @@ Gorrs 113 Gorseinon 17702 Gorski 42654 Gorsky 22105 +Gorslas 769 Gorsline 2667 Gorst 374083 Gorstian 1113 @@ -41179,8 +41871,10 @@ Governator 689 Governor 21088601 Governors 3198061 Govers 15882 +Govian 200 Govier 20562 Goviers 189 +Govilon 2083 Govind 118962 Govinda 68107 Govinden 1142 @@ -41199,6 +41893,7 @@ Gowens 954 Gower 2444714 Gowers 218523 Gowerton 11934 +Gowhole 344 Gowin 12067 Gowing 102897 Gowins 135 @@ -41398,6 +42093,7 @@ Grandys 4045 Granelli 5608 Graner 9934 Graneros 963 +Granet 44511 Graney 6886 Grange 2098593 Grangegate 155 @@ -41505,6 +42201,7 @@ Graves 2079076 Gravesend 1095344 Gravesham 41372 Gravesian 1649 +Graveson 18881 Gravett 13242 Gravettian 20057 Gravetts 191 @@ -41524,6 +42221,7 @@ Grayer 5425 Grayfriar 3015 Grayfriars 4915 Grayling 152596 +Grayndler 198 Grayrigg 10714 Grays 341534 Graysonian 103 @@ -41583,6 +42281,7 @@ Greekest 143 Greekified 297 Greeking 369 Greekish 22809 +Greekishness 103 Greekland 549 Greekless 5888 Greeklike 467 @@ -41671,6 +42370,7 @@ Greenmans 121 Greeno 17839 Greenock 1335309 Greenodd 5642 +Greenop 5475 Greenore 36863 Greenough 118877 Greenoughs 311 @@ -41892,6 +42592,7 @@ Grillo 69600 Grillos 675 Grim 394285 Grimaldi 376006 +Grimaldian 1695 Grimaldis 8785 Grimaldo 15198 Grimaldos 421 @@ -42007,6 +42708,7 @@ Grocock 7811 Groddeckian 184 Grodno 81060 Groen 62765 +Groene 9602 Groenendael 5522 Groeneveld 13613 Groens 118 @@ -42131,6 +42833,7 @@ Grummitt 7677 Grunden 2820 Grunder 3609 Grundman 3597 +Grundtvigian 2955 Grundy 510407 Grundyism 2361 Grundyist 234 @@ -42167,6 +42870,7 @@ Grzymski 952 Grzywacz 4677 Gsell 23695 Gt 727034 +Gtr 13880 Gu 342175 Guadagno 5704 Guadalajara 166866 @@ -42213,7 +42917,9 @@ Guangzhou 246714 Guanhua 1872 Guans 3253 Guanshan 611 +Guansi 126 Guantanamo 137553 +Guanxi 22420 Guanyin 16363 Guaqui 9187 Guard 3670242 @@ -42264,6 +42970,7 @@ Gubbins 136311 Gubler 30622 Gucci 92448 Guccione 6436 +Guccis 1205 Gucheng 2112 Guck 2027 Gudauta 1569 @@ -42357,6 +43064,7 @@ Guianan 6452 Guianans 305 Guianas 54803 Guianese 21503 +Guibertines 293 Guice 2377 Guichard 80146 Guickwar 10203 @@ -42423,6 +43131,7 @@ Guinean 127838 Guineans 38297 Guinevere 220100 Guineys 1115 +Guingamp 15897 Guinn 13926 Guinness 845455 Guinnesses 5235 @@ -42433,6 +43142,8 @@ Guintas 149 Guinto 1998 Guion 49393 Guiping 1061 +Guipuzcoan 3731 +Guipuzcoans 1363 Guirl 155 Guisborough 100806 Guiscard 170079 @@ -42523,10 +43234,12 @@ Gumm 14386 Gump 37702 Gumps 1567 Gums 148647 +Gumuz 5681 Gun 1415804 Gunai 741 Gunawan 5638 Gunby 25194 +Gunchester 448 Gundelfingen 2007 Gunderman 1875 Gundersen 29083 @@ -42567,6 +43280,7 @@ Gunther 533593 Gunton 128609 Guntons 499 Guntur 24168 +Gunville 11085 Gunwinggu 946 Gunwinyguan 596 Guo 215469 @@ -42587,6 +43301,7 @@ Guralnik 8305 Guras 746 Gurdaspur 16401 Gurdjieffian 1245 +Gurewitch 753 Gurgan 16367 Gurgaon 29479 Guria 9770 @@ -42645,6 +43360,7 @@ Gustavson 25194 Gustavus 964978 Gustin 8582 Gustine 941 +Guston 34048 Gusu 528 Gut 388623 Gutekunst 8860 @@ -42711,6 +43427,7 @@ Guyu 895 Guyuan 2398 Guyuk 6188 Guz 24336 +Guza 2098 Guzek 825 Guzik 6142 Guzman 290275 @@ -42761,6 +43478,8 @@ Gwladys 24943 Gwosdz 915 Gwozdz 1019 Gwydion 58157 +Gwyer 50267 +Gwyers 225 Gwyn 494126 Gwynedd 394514 Gwyneth 169404 @@ -42794,6 +43513,7 @@ Gzhel 893 Gzhelian 928 H's 566 H'wood 890 +HA 1070001 HAARP 3648 HAART 56379 HAB 139827 @@ -42848,6 +43568,7 @@ HBD 8048 HBFC 506 HBFCs 473 HBIC 211 p +HBIGDA 323 HBO 98950 HBOS 43439 HBP 10959 @@ -42865,6 +43586,7 @@ HCFCs 19269 HCFs 1044 HCI 238487 HCIs 1718 +HCL 44438 HCM 63199 HCMs 538 HCNO 2040 @@ -42917,6 +43639,7 @@ HEPA 19926 HEPES 24572 HERV 4171 HERVs 1158 +HES 57847 HESH 3384 HET 29856 HETs 1030 @@ -42929,6 +43652,7 @@ HFAs 1001 HFC 42991 HFCs 16560 HFEA 63959 +HFM 5164 HFN 20712 HFO 16218 HFOs 1215 @@ -42943,11 +43667,13 @@ HGB 17576 HGC 7782 HGDP 3849 HGH 26676 +HGNC 1627 HGPRT 14778 HGV 52001 HGVs 18316 HGW 7195 HH 361059 +HHE 3841 HHV 43031 HI 1859986 HIA 72212 @@ -42957,6 +43683,7 @@ HIDs 177 HIES 6445 HIFU 9932 HIGNFY 236 +HIH 19764 HIJMS 861 HIL 15412 HIP 154683 @@ -42977,6 +43704,7 @@ HLB 26810 HLBs 361 HLLV 867 HLS 20951 +HLX 731 HM 1761249 HMA 27388 HMAC 6238 @@ -43057,6 +43785,7 @@ HPPE 2104 HPR 16629 HPT 22774 HPTs 923 +HPU 5956 HPV 251543 HPVs 7572 HPs 5682 @@ -43104,6 +43833,7 @@ HSE 480543 HSF 15011 HSFs 1263 HSH 10752 +HSIL 4532 HSK 4667 HSL 30974 HSM 26345 @@ -43120,6 +43850,8 @@ HSVs 431 HT 758345 HTF 9084 HTH 10886 +HTLV 98670 +HTLVs 738 HTM 22003 HTMS 615 HTOL 726 @@ -43134,6 +43866,7 @@ HTTPd 363 HTs 4712 HU 153454 HUAC 33812 +HUGO 117761 HUM 56068 HUMINT 10062 HUMs 177 @@ -43233,6 +43966,7 @@ Hachey 3405 Hachigian 959 Hachiman 19531 Hacikyan 383 +Hack 218272 Hackbarth 2959 Hackbridge 33546 Hackel 36315 @@ -43316,6 +44050,7 @@ Hadnot 1539 Hadramauti 413 Hadramawt 18743 Hadramitic 474 +Hadrat 4786 Hadrian 1447462 Hadsell 1347 Hadza 28239 @@ -43377,6 +44112,7 @@ Hagemeyer 8673 Hagen 599673 Hagenbach 59060 Hagenbuch 3582 +Hagenow 7809 Hager 101205 Hagerman 24190 Hagers 983 @@ -43622,6 +44358,7 @@ Halilovic 2601 Halim 92367 Halimede 725 Halki 8614 +Halkin 61352 Halko 1061 Halkomelem 2982 Halkos 715 @@ -43653,6 +44390,7 @@ Halleyan 3621 Halleys 2681 Hallford 7394 Hallfords 351 +Hallgarth 7234 Hallgren 11163 Halliburton 139450 Halliburtons 1468 @@ -43670,6 +44408,7 @@ Hallinan 21428 Hallinans 125 Halling 30986 Hallings 2548 +Hallington 12822 Hallins 323 Hallisey 3123 Hallissey 3221 @@ -43772,6 +44511,7 @@ Hamann 143600 Hamanns 998 Hamans 3010 Hamar 87864 +Hamars 1290 Hamas 373694 Hamasaki 4616 Hamasien 2740 @@ -43876,6 +44616,7 @@ Hammersmith 1571478 Hammerstrom 1570 Hammerton 95856 Hammertons 663 +Hammerwich 4978 Hammes 35055 Hammett 179445 Hammill 30320 @@ -43905,6 +44646,7 @@ Hampes 252 Hampole 57898 Hamps 22403 Hampshire 4580896 +Hampshires 23235 Hampshirites 183 Hampson 361248 Hampsons 1486 @@ -43918,6 +44660,7 @@ Hamre 11385 Hamric 1355 Hamrick 10244 Hams 186528 +Hamson 22328 Hamstra 2775 Hamstreet 2441 Hamsun 57257 @@ -44036,6 +44779,7 @@ Hanko 16235 Hankou 13594 Hankow 319133 Hanks 192232 +Hankul 738 Hanley 748363 Hanleys 1421 Hanlin 18098 @@ -44074,6 +44818,7 @@ Hannings 601 Hannington 84249 Hanningtons 949 Hannis 8611 +Hannity 6839 Hannock 707 Hannold 355 Hannon 119100 @@ -44114,6 +44859,7 @@ Hansen 1433559 Hanseong 251 Hanses 6499 Hansford 71314 +Hanshan 1828 Hanshaw 6969 Hanshew 1604 Hansley 2935 @@ -44137,6 +44883,7 @@ Hanukah 5416 Hanukka 1207 Hanukkah 32698 Hanuman 111769 +Hanunoo 3412 Hanvey 7698 Hanwell 227220 Hanwood 11800 @@ -44167,6 +44914,7 @@ Hapsford 4232 Hapton 21369 Hapuku 1303 Haq 129192 +Haqq 23938 Haqs 99 Haque 44300 Har 464019 @@ -44208,6 +44956,7 @@ Harbors 23087 Harbottle 151176 Harbottles 549 Harbour 5712171 +Harbourne 9694 Harbours 774543 Harbourside 7771 Harbridge 10994 @@ -44218,8 +44967,10 @@ Harburn 7167 Harbury 38289 Harby 42551 Harbys 228 +Harcombe 11392 Harcourt 2808531 Harcourtian 479 +Harcum 2331 Hard 3269974 Hardacre 41418 Hardacres 1410 @@ -44241,6 +44992,8 @@ Harderian 11385 Harders 7135 Harderwijk 7360 Hardesty 29908 +Hardgrave 8723 +Hardgraves 171 Hardgrove 6001 Hardham 32104 Hardie 717472 @@ -44300,6 +45053,7 @@ Hargan 4471 Hargeisa 44951 Harger 19429 Hargett 2307 +Harghita 1891 Hargie 13300 Hargitay 3152 Hargrave 375602 @@ -44659,6 +45413,7 @@ Hasaean 215 Hasaka 1672 Hasan 875319 Hasbrouck 11038 +Hasbury 4091 Hascall 5574 Hasday 2302 Hasdrubal 128784 @@ -44827,6 +45582,7 @@ Hattians 904 Hattic 6347 Hattie 237295 Hattiesburg 10455 +Hattingley 575 Hattman 698 Hatto 39019 Hatton 1356755 @@ -44926,6 +45682,8 @@ Havant 188360 Havard 106134 Havards 747 Havarti 1740 +Havasupai 7299 +Havasupais 285 Havdala 463 Havdalah 3445 Havel 212676 @@ -44966,6 +45724,7 @@ Hawai'ian 5293 Hawai'ians 1379 Hawaii 1529299 Hawaiian 747412 +Hawaiiana 936 Hawaiians 82107 Hawaiis 263 Hawaiki 17128 @@ -45016,6 +45775,7 @@ Hawksworths 321 Hawkubite 222 Hawkubites 599 Hawkwell 9056 +Hawkwing 1331 Hawkyard 11153 Hawkyns 35211 Hawley 489167 @@ -45117,6 +45877,7 @@ Hayton 122095 Hayward 1337563 Haywards 214275 Haywood 400860 +Haywoods 1483 Hayworth 44747 Hayworths 201 HazMat 1469 @@ -45207,6 +45968,7 @@ Hearns 10257 Hearon 11673 Hearons 147 Hearst 223868 +Hearstian 332 Heart 5587579 Heartbleed 767 Hearts 922558 @@ -45247,6 +46009,7 @@ Heavin 1544 Heavins 279 Heaviside 162393 Heavner 1497 +Heawood 29663 Hebb 106908 Hebbard 3087 Hebberd 1340 @@ -45269,6 +46032,7 @@ Heberle 9033 Heberlein 28953 Heberling 2077 Hebert 154476 +Heberts 1021 Hebes 11810 p Hebi 2236 Hebner 1548 @@ -45377,6 +46141,8 @@ Hedstrom 15188 Hedtke 1507 Hedwig 124609 Hee 424889 +Heebie 2632 p +Heebies 239 p Heeg 5739 Heegaard 8942 Heekin 1315 @@ -45398,6 +46164,7 @@ Hefeng 495 Heffalump 2527 Heffalumps 503 Heffelfinger 2007 +Heffer 242744 Heffern 477 Heffernan 100015 Heffernans 910 @@ -45422,6 +46189,9 @@ Hegelese 994 Hegelian 655211 Hegelianism 103024 Hegelianisms 526 +Hegelianize 46 +Hegelianized 781 +Hegelianizing 525 Hegelianly 76 Hegelians 77256 Hegelism 2774 @@ -45483,6 +46253,8 @@ Heikkila 10831 Heil 139704 Heilig 18033 Heiligenberg 11375 +Heiliger 10532 +Heiligers 383 Heilman 57278 Heilsgeschichte 11063 Heiltsuk 1736 @@ -45566,6 +46338,7 @@ Heits 742 Heitz 29727 Heitzman 5648 Heitzmann 7122 +Heixiazi 361 Heizer 18835 Hejaz 169806 Hejazi 8611 @@ -45611,6 +46384,7 @@ Helheim 3924 Helhest 164 Helicon 241066 Heliconian 15999 +Helies 785 Heligoland 293655 Heligolander 1135 Heligolanders 5954 @@ -45767,6 +46541,7 @@ Helvey 2646 Helvidian 2363 Helvidians 469 Helvie 448 +Helwan 48469 Helwig 21431 Helzer 5640 Hem 285954 @@ -45856,6 +46631,7 @@ Hendra 20953 Hendreforgan 1239 Hendren 19028 Hendrey 7145 +Hendrich 6242 Hendrick 195150 Hendricks 171328 Hendricksen 2821 @@ -46005,8 +46781,10 @@ Hepp 33078 Heppelwhite 10288 Heppenstall 34725 Heppenstalls 369 +Hepplewhite 63187 Heppner 21512 Hepps 871 +Hepscott 3778 Heptanese 569 Heptanesia 261 Heptateuch 10396 @@ -46079,6 +46857,7 @@ Herculaneans 281 Herculaneum 331665 Herculean 222434 Hercules 3021669 +Herculeses 2689 Herculian 2463 Herculids 325 Herculina 611 @@ -46107,6 +46886,7 @@ Hereroland 6289 Hereros 39434 Hereth 1643 Hereward 333195 +Herford 169870 Hergert 3098 Hergesheimer 11096 Herget 7425 @@ -46226,6 +47006,7 @@ Hers 289959 Herschberger 1359 Herschel 1192871 Herschelian 9342 +Herschels 15990 Herse 33333 Hersee 14746 Herself 267059 @@ -46271,6 +47052,7 @@ Hervey 1102578 Herward 7051 Herwarth 13629 Herwig 42518 +Herx 425 Herzberg 146266 Herzbergs 139 Herzegovina 667898 @@ -46433,6 +47215,8 @@ Heyes 76567 Heyford 67412 Heying 1670 Heyl 35557 +Heyliger 5380 +Heyligers 1273 Heyls 109 Heyman 102051 Heymann 74792 @@ -46603,12 +47387,14 @@ Higgsino 468 Higgsinos 221 Higgson 443 High 39469655 +HighLife 282 Higham 484932 Highams 13643 Highbridge 51463 Highbury 426445 Highclere 53754 Highcliffe 31806 +Highertown 408 Highet 31220 Highfield 249790 Highfields 26692 @@ -46624,6 +47410,7 @@ Highlandman 25481 Highlandmen 18477 Highlands 3818405 Highley 69104 +Highlife 9342 Highmore 96105 Highnam 29183 Highnesses 271778 @@ -46660,7 +47447,6 @@ Hilands 255 Hilaria 21581 Hilario 29467 Hilarios 113 -Hilary 1924156 Hilbert 403389 Hilbertian 3892 Hilborn 14082 @@ -46824,6 +47610,7 @@ Hind 1524292 Hindawi 9054 Hinde 354595 Hindee 21667 +Hindemithian 1399 Hindenburg 429865 Hinderer 16354 Hinderers 1684 @@ -46998,6 +47785,7 @@ Hirohisa 1393 Hiroko 31770 Hiromitsu 3216 Hirono 6299 +Hirose 42626 Hiroshi 118197 Hiroshima 516477 Hirota 46687 @@ -47141,7 +47929,10 @@ Hizbullah 70901 Hizer 691 Hjelm 15087 Hjelms 271 +Hjelmslevian 1559 Hjerkinn 1407 +Hjort 57922 +Hjorts 386 Hladik 8373 Hlai 712 Hlavac 1910 @@ -47324,6 +48115,7 @@ Hoepker 627 Hoeppner 7610 Hoerner 9137 Hoerr 4870 +Hoeryong 578 Hoes 45986 Hoeven 38055 Hoey 136064 @@ -47342,6 +48134,7 @@ Hoffenberg 9717 Hoffer 72041 Hoffers 472 Hoffert 10581 +Hoffler 1417 Hoffman 1184067 Hoffmann 1191271 Hoffmaster 2394 @@ -47352,6 +48145,7 @@ Hoffpauir 1030 Hofland 34534 Hoflands 341 Hofman 65853 +Hofmann 613181 Hofmans 1895 Hofmeister 82993 Hofmeisters 484 @@ -47400,12 +48194,14 @@ Hogwarts 42722 Hoh 32185 Hohberg 3771 Hohe 44872 +Hohenberger 2882 Hohensee 781 Hohenstaufen 121263 Hohenstein 21482 Hohensteins 197 Hohenwald 763 Hohenzollern 295519 +Hohenzollernism 1264 Hohenzollerns 80008 Hohhot 9297 Hohl 22643 @@ -47608,8 +48404,10 @@ Hollywoodesque 430 Hollywoodian 1343 Hollywoodians 147 Hollywoodish 749 +Hollywoodites 171 Hollywoodization 611 Hollywoodized 497 +Hollywoodland 1177 Hollywoods 1372 Hollywoody 51 Holm 537107 @@ -47621,7 +48419,9 @@ Holmer 42170 Holmers 5685 Holmes 5125554 Holmesian 10333 +Holmesiana 873 Holmesians 726 +Holmesy 329 Holmethorpe 5597 Holmewood 10230 Holmfield 9864 @@ -47706,6 +48506,7 @@ Holzapfel 34023 Holzapfels 2669 Holzer 69609 Holzhauer 2020 +Holzhauser 3377 Holzinger 28564 Holzman 38262 Holzwarth 11303 @@ -47824,6 +48625,7 @@ Honington 33415 Honiton 321061 Honley 34687 Honn 4637 +Honnavar 287 Honnold 10183 Honns 916 Honolulu 713272 @@ -47843,8 +48645,6 @@ Honshu 99742 Hontz 411 Hoo 421836 Hoobler 3391 -Hood 3132926 -Hoods 96713 Hooge 43935 Hoogeveen 10194 Hooghley 6441 @@ -47859,6 +48659,7 @@ Hookerian 6697 Hookham 122972 Hookins 2291 Hooks 191426 +Hookway 25087 Hoole 180191 Hooles 1571 Hooley 179398 @@ -47963,6 +48764,7 @@ Horatio 977318 Horatios 1980 Horbury 93777 Horch 11874 +Horcrux 2859 Hord 28461 Horden 69647 Horder 113098 @@ -48054,6 +48856,7 @@ Horsburgh 95843 Horsburghs 539 Horscroft 5297 Horse 5921340 +Horsebridge 7323 Horsefield 19528 Horsegate 614 Horsehay 12690 @@ -48203,6 +49006,7 @@ Hougland 780 Houjie 263 Houlahan 4907 Houlder 96397 +Houldridge 419 Houldsworth 123400 Houle 40254 Houles 2065 @@ -48289,6 +49093,7 @@ Howden 483258 Howdens 2905 Howdon 22573 Howe 3139669 +Howeitat 6193 Howel 228790 Howell 1997974 Howellian 123 @@ -48390,6 +49195,7 @@ Hsieh 105245 Hsikang 525 Hsinchiang 463 Hsinchu 22596 +Hsinfeng 163 Hsinhua 5539 Hsining 923 Hsintien 807 @@ -48421,6 +49227,7 @@ Huaman 4627 Huamani 348 Huambo 28729 Huancavelica 18843 +Huancayo 32645 Huang 833399 Huanggang 913 Huangling 608 @@ -48447,6 +49254,7 @@ Huastecs 1275 Huave 1714 Huawei 38082 Huaxi 1569 +Huayan 5324 Huayin 534 Huaying 960 Huayuan 1533 @@ -48494,6 +49302,7 @@ Hud 98421 Huda 54202 Hudak 8779 Hudd 42860 +Huddart 64320 Huddersfield 1658112 Huddinge 12939 Huddle 20131 @@ -48600,10 +49409,12 @@ Hugley 1205 Hugli 46614 Hugo 3127554 Hugoesque 1097 +Hugolatry 168 Hugolian 1468 Hugonian 384 Hugonians 119 Hugoniot 23843 +Hugoniots 962 Hugos 7148 Hugoton 3109 Huguely 619 @@ -48625,6 +49436,7 @@ Huie 21773 Huies 181 Huiji 590 Huilong 302 +Huining 553 Huish 140028 Huishes 213 Huisman 34397 @@ -48643,9 +49455,11 @@ Huizhou 9885 Huizinga 94542 Huk 21819 Hukbalahap 4383 +Hukbalahaps 1005 Hukill 978 Hukin 4900 Hukins 5003 +Hukou 9716 Huks 10888 Hulagu 34890 Hulan 7747 @@ -48699,6 +49513,7 @@ Humalog 3427 Human 18021141 Humans 565755 Humber 1316146 +Humbermouth 611 Humberside 596749 Humbersiders 95 Humberston 35729 @@ -48740,6 +49555,7 @@ Humphris 25745 Humphry 795068 Humphrys 84545 Humptulips 337 +Humpy 12696 Hums 29092 Humulin 6655 Humvee 26968 @@ -48754,6 +49570,7 @@ Huncoat 8475 Hundal 2536 Hundalee 2031 Hundersfield 4557 +Hunderton 1418 Hundested 3158 Hundley 15901 Hundredhanded 225 @@ -48869,6 +49686,7 @@ Hupps 153 Huq 36351 Hur 173430 Hural 11430 +Hurcomb 37742 Hurd 703411 Hurdle 73197 Hurdles 41394 @@ -48968,6 +49786,7 @@ Hutchens 23336 Hutcheon 93036 Hutcherson 10083 Hutcheson 402142 +Hutchesonian 2169 Hutchin 28222 Hutchings 227371 Hutchins 392241 @@ -49001,7 +49820,11 @@ Hutuness 156 Hutus 54773 Hutzel 1225 Hutzler 4910 +Hutzul 434 +Hutzuls 247 +Huvadhu 347 Huval 1515 +Huwaitat 843 Huwe 3786 Huwes 671 Huws 28036 @@ -49180,7 +50003,7 @@ IADS 2701 IADs 1227 IAEA 477436 IAF 58095 -IAL 47372 +IALC 691 IAM 72109 IAMAT 913 IANA 15449 @@ -49203,6 +50026,7 @@ IATs 2425 IAU 97050 IAW 17041 IAWN 170 +IAZ 3654 IAs 17821 IB 856687 IBA 318316 @@ -49224,6 +50048,7 @@ IBMs 4192 IBNR 3026 IBO 14594 IBRD 171726 +IBRS 294 IBSA 12967 IBU 7863 IBUs 1854 @@ -49234,6 +50059,7 @@ ICAC 23578 ICAEW 48612 ICANN 49251 ICAO 194639 +ICAS 26084 ICB 29098 ICBN 3348 ICBO 1280 @@ -49257,7 +50083,6 @@ ICH 119370 ICHs 949 ICI 814626 ICK 23174 -ICL 277594 ICLE 4794 ICM 101846 ICME 6507 @@ -49280,6 +50105,7 @@ ICQs 857 ICR 216975 ICRA 7919 ICRC 279754 +ICRF 31226 ICRISAT 35680 ICS 224985 ICSI 45449 @@ -49290,6 +50116,8 @@ ICTs 204657 ICU 316922 ICUs 20489 ICV 16345 +ICW 28384 +ICWs 301 ICZ 1533 ICZN 7366 ICs 128157 @@ -49319,6 +50147,7 @@ IDOR 265 IDPs 77661 IDR 50386 IDRC 53088 +IDRs 2198 IDST 749 IDT 31294 IDTs 2829 @@ -49365,6 +50194,7 @@ IFSMA 625 IFTTT 1059 IFU 3306 IG 378261 +IGAS 1256 IGBT 25502 IGBTs 9831 IGCSE 11231 @@ -49383,9 +50213,11 @@ IGRP 1378 IGS 75403 IGT 50165 IGY 123560 +IHAT 2258 IHC 56318 IHCs 4658 IHEU 1031 +IHH 8405 IHOP 3216 IHP 21372 IHPs 49 @@ -49397,6 +50229,8 @@ IHV 2298 IHVH 2044 IHWH 353 IIA 207653 +IIB 106334 +IIBs 901 IIFE 5761 IIFS 1541 IIHF 814 @@ -49405,6 +50239,7 @@ IIIT 4805 IIITs 115 IIIrd 49262 IIOP 2199 +IIR 40956 IIRC 4466 IIS 119089 IIST 7174 @@ -49422,9 +50257,11 @@ ILECs 1503 ILGWU 7156 ILM 145166 ILO 979225 +ILP 238122 ILPC 404 ILR 137238 ILS 167171 +ILSI 6564 ILTF 1340 ILUC 1900 ILs 17237 @@ -49503,6 +50340,7 @@ IOI 110691 IOIs 1181 IOK 2074 IOM 120858 +IOOF 905 IOOH 202 IOP 144214 IOPC 14368 @@ -49513,6 +50351,7 @@ IOTA 6612 IOU 40431 IOUs 22143 IP 1885683 +IPA 233242 IPAH 5690 IPAM 1952 IPAs 9848 @@ -49522,6 +50361,7 @@ IPCF 135 IPF 38609 IPFS 504 IPFs 4080 +IPI 38509 IPL 56009 IPLC 1886 IPLCs 350 @@ -49542,14 +50382,15 @@ IPSID 1778 IPSO 7433 IPTC 3142 IPTG 13579 +IPTS 12872 IPTV 16871 +IPW 6087 IPX 16902 IPY 6155 IPs 141919 IQ 941157 IQP 2709 IQs 67872 -IR 1972133 IRA 1318425 IRAS 38079 IRAs 23504 @@ -49583,7 +50424,6 @@ IRT 65179 IRU 26863 IRUs 1921 IRV 8945 -IRs 14786 ISA 381654 ISAF 76953 ISAM 6646 @@ -49651,6 +50491,7 @@ ISW 98882 ISX 3038 IT 8423650 ITA 209416 +ITAD 694 ITAR 15497 ITB 38539 ITBS 2004 @@ -49889,6 +50730,7 @@ Idomeni 719 Idoni 121 Idowu 14938 Idren 2652 +Idridgehay 2581 Idriess 4242 Idrija 2976 Idrijca 419 @@ -50004,6 +50846,7 @@ Ilagan 1232 Ilam 30551 Ilan 91686 Ilardi 2959 +Ilava 446 Ilbert 94061 Ilbery 15392 Ilchester 249663 @@ -50056,6 +50899,7 @@ Illarionova 226 Illawarra 29202 Ille 123344 Illecillewaet 1567 +Illia 8675 Illidge 10801 Illig 23079 Illingworth 263924 @@ -50205,6 +51049,7 @@ Inchbald 138463 Inchbonnie 347 Incheon 13278 Inchicore 23111 +Inchture 12947 Inclan 16313 Incoll 1379 Incorvaia 255 @@ -50215,11 +51060,13 @@ Ind 591343 IndE 2637 Inda 19045 Indas 854 +Indefatigable 93380 Indelicato 2663 Independence 2928322 Independency 137962 Independentism 1243 Index 10811548 +Indi 67200 India 77289277 Indiaman 206061 Indiamen 128987 @@ -50251,10 +51098,12 @@ Indic 59207 Indid 2006 Indie 120347 Indies 9645791 +Indiewood 2723 Indigenous 1198526 Indio 41443 Indira 222357 Indish 871 +Indo 2349781 Indochina 374740 Indochinese 56095 Indoeuropean 2846 @@ -50277,6 +51126,7 @@ Indophiles 257 Indophilia 191 Indophobia 172 Indore 144230 +Indos 13119 Indosphere 379 Indra 547209 Indramayu 1682 @@ -50297,6 +51147,8 @@ Infernet 3105 Inflation 1022398 Infobahn 2170 Inga 134576 +Ingaevones 3496 +Ingalik 1963 Ingall 34002 Ingalls 63857 Ingalsbe 241 @@ -50486,6 +51338,7 @@ Inti 27142 Intriago 487 Introibo 3348 Intwood 6241 +Inughuit 936 Inuinnaqtun 211 Inuit 291889 Inuits 9833 @@ -50513,6 +51366,7 @@ Invernesses 399 Invernessshire 31837 Invershin 8985 Inversnaid 27480 +Inveruglas 5384 Inverurie 84267 Inverythan 119 Invidia 12912 @@ -50572,6 +51426,7 @@ Ippolito 118709 Ippolitos 107 Ipsariots 1315 Ipsen 25684 +Ipstones 11957 Ipswich 2426285 Iqaluit 6413 Iqan 716 @@ -50625,6 +51480,7 @@ Irawaddi 8710 Irawaddy 16511 Irawadi 59647 Irawady 6843 +Iraya 540 Irazabal 511 Irbil 7755 Irby 123938 @@ -50670,6 +51526,7 @@ Irishers 1795 Irishes 6918 Irishism 16196 Irishisms 2733 +Irishized 128 Irishlike 153 Irishly 839 Irishman 1607880 @@ -50709,6 +51566,7 @@ Irredentists 3735 Irt 21495 Irthlingborough 33590 Irtysh 35383 +Irudayaraj 1227 Irukandji 1651 Irula 2054 Irulas 2991 @@ -50746,6 +51604,7 @@ Isabel 2812744 Isabela 39404 Isabell 148564 Isabella 3339031 +Isabellas 3364 Isabelle 558886 Isabelline 11817 Isackson 1245 @@ -50754,6 +51613,7 @@ Isadore 41623 Isager 6715 Isaiah 3440634 Isaian 7014 +Isaianic 38037 Isaias 52511 Isakov 10461 Isaksen 16322 @@ -50812,6 +51672,7 @@ Isherwood 308446 Isherwoods 1668 Ishibashi 27391 Ishida 75481 +Ishigaki 12406 Ishigawa 261 Ishihara 64589 Ishii 104310 @@ -50824,6 +51685,7 @@ Ishiwara 11861 Ishiyama 13069 Ishizaki 9885 Ishizawa 3721 +Ishkashmi 698 Ishmael 638452 Ishmaelian 331 Ishmaelians 195 @@ -50840,6 +51702,7 @@ Isidora 41639 Isidore 557757 Isidores 2266 Isidorian 17008 +Isinay 240 Isinya 418 Isip 881 Isis 1399097 @@ -50906,6 +51769,7 @@ Islams 18549 Island 18403847 Islandeady 1261 Islanders 542336 +Islands 15665003 Islas 53289 Islay 388091 Isle 8818162 @@ -50940,6 +51804,7 @@ Ismailiyah 558 Ismay 168165 Ismays 721 Ismene 71380 +Isneg 928 Isner 3805 Isobel 618492 Isobelle 3446 @@ -51094,6 +51959,7 @@ Iturbide 51195 Iturbides 251 Iturea 7310 Iturean 1249 +Itureans 3091 Iturralde 4486 Iturup 3738 Itylos 427 @@ -51244,6 +52110,7 @@ JB 434638 JBC 14771 JBIG 707 JBOD 585 +JBS 24047 JBW 1598 JC 602548 JCA 21787 @@ -51259,6 +52126,7 @@ JCP 59160 JCPOA 3008 JCR 22351 JCRs 599 +JCS 75931 JCSS 2251 JCVI 3332 JDAM 6748 @@ -51268,6 +52136,7 @@ JDI 8044 JDK 15618 JDL 5413 JDM 14139 +JDN 2023 JDP 11943 JDT 3255 JE 538933 @@ -51306,6 +52175,7 @@ JJ 972874 JJJ 12604 JK 221879 JKD 1077 +JKR 3831 JLB 4546 JLS 14734 JLo 1310 @@ -51322,8 +52192,9 @@ JNDI 4949 JNDs 2194 JNI 4454 JNS 2427 -JOI 6559 +JOI 6559 p JOMO 1743 +JP 1016476 JPA 28549 JPDA 1371 JPEG 85324 @@ -51375,6 +52246,7 @@ JVC 92755 JVD 1872 JVM 22454 JVMs 993 +JWICS 245 JWST 1751 JWT 34448 JWTs 235 @@ -51433,7 +52305,9 @@ Jacks 316809 Jacksboro 1003 Jackson 10239638 Jacksonian 118331 +Jacksonianism 1005 Jacksonians 6419 +Jacksonism 581 Jacksonite 196 Jacksonites 176 Jacksons 57336 @@ -51557,6 +52431,7 @@ Jaghatay 707 Jagielka 653 Jagiellonian 26045 Jagielski 7578 +Jago 402560 Jagoda 3262 Jagodzinski 5509 Jagose 5859 @@ -51671,11 +52546,13 @@ Jamir 1661 Jamison 149406 Jamjoom 2783 Jammu 190599 +Jamnapari 452 Jamnia 32235 Jamnian 906 Jamrach 14601 Jamrachs 177 Jamul 1091 +Jamunapari 193 Jan 8612600 Jana 182325 Janae 4341 @@ -51865,12 +52742,14 @@ Jarejah 2165 Jarema 2120 Jarett 3695 Jariwala 1091 +Jarlsberg 9640 Jarman 308107 Jarmans 1905 Jarmina 215 Jarmo 18502 Jarmon 1386 Jarnac 50996 +Jarnacs 171 Jarnagin 2653 Jarnigan 265 Jarnsaxa 521 @@ -51884,6 +52763,7 @@ Jarra 17647 Jarrard 8963 Jarratt 46653 Jarreau 5140 +Jarred 26329 Jarrell 51028 Jarrells 683 Jarrett 262075 @@ -51975,6 +52855,7 @@ Jaxx 3900 Jay 2287328 Jaya 179363 Jayantha 2039 +Jayapal 447 Jayaraman 13281 Jayasri 477 Jayce 10311 @@ -51995,6 +52876,7 @@ Jaylin 918 Jayna 2673 Jayne 264130 Jaynes 44098 +Jayo 1054 Jayroe 177 Jays 66013 Jaysis 1199 @@ -52039,6 +52921,7 @@ Jebusitic 521 Jeconiah 22616 Jed 370667 Jedburgh 373508 +Jedda 93167 Jeddah 378280 Jeddart 9377 Jedediah 46084 @@ -52105,6 +52988,7 @@ Jekyllesque 63 Jekyllian 404 Jelen 7749 Jelena 21153 +Jelf 107205 Jelgava 6072 Jelinek 62105 Jelineks 378 @@ -52202,6 +53086,7 @@ Jeremias 142834 Jeremy 2759562 Jeremys 973 Jerez 100979 +Jerezano 704 Jerger 7541 Jeri 22971 Jericho 927709 @@ -52237,6 +53122,7 @@ Jerseyman 8528 Jerseymen 5871 Jerseys 96545 Jerseyville 717 +Jerseywoman 186 Jersian 244 Jersians 165 Jerusalem 15170878 @@ -52245,6 +53131,7 @@ Jerusalemites 12767 Jerusalems 12775 Jerusha 20340 Jervis 718161 +Jeryl 3746 Jeschke 8027 Jesenice 4251 Jeshua 42787 @@ -52308,6 +53195,7 @@ Jesusology 173 Jesusy 311 Jet 839105 Jeter 21725 +Jethart 3220 Jethou 17265 Jethro 220167 Jethronian 225 @@ -52324,6 +53212,7 @@ Jeumont 11490 Jeune 289174 Jeunes 49417 Jeung 2211 +Jevington 14724 Jevonian 3914 Jevons 465535 Jevonsian 299 @@ -52371,6 +53260,7 @@ Jezebels 6936 Jezek 6772 Jezerites 559 Jezero 3743 +Jezes 112 p Jezierski 3931 Jeziorski 1700 Jezkazgan 300 @@ -52381,6 +53271,7 @@ Jezza 3481 Jezzer 155 Jezzy 1004 Jha 63724 +Jhang 12597 Jhangar 1536 Jharkhand 24487 Jharkhandi 427 @@ -52389,6 +53280,7 @@ Jhaveri 4757 Jhelum 113209 Jhilam 3193 Jhongli 147 +Jhukar 1974 Ji 429234 Ji'an 1631 Jia 178886 @@ -52435,6 +53327,7 @@ Jicaque 1635 Jicaques 252 Jicarilla 4679 Jidda 57209 +Jiddah 42281 Jiefang 10157 Jiexiu 371 Jieyang 729 @@ -52466,6 +53359,7 @@ Jimmer 503 Jimmerson 944 Jimmi 4239 Jimmie 189472 +Jimmies 3270 Jimmy 2915699 Jimmys 879 Jims 15691 @@ -52488,6 +53382,7 @@ Jingbian 650 Jingdezhen 22171 Jinghong 5310 Jinghpaw 7041 +Jinghu 258 Jingjiang 2565 Jingle 115984 Jinglish 416 @@ -52647,8 +53542,10 @@ Johannists 344 Johannite 2499 Johannites 2423 Johannsen 53728 +Johansen 215932 Johanson 96762 Johansons 265 +Johanssen 12383 Johansson 312457 John 212784373 Johnathan 22349 @@ -52663,6 +53560,7 @@ Johnna 3809 Johnnie 504286 Johnno 13437 Johns 2280394 +Johnshaven 7998 Johnsmas 1027 Johnson 21778293 Johnsonese 6600 @@ -52749,12 +53647,14 @@ Joni 93913 Jonker 49560 Jonkers 9116 Jonna 9111 +Jonny 166418 Jonquil 38237 Jons 75697 Jonson 2548762 Jonsonian 33874 Jonty 41544 Jools 30515 +Joondalup 1294 Joos 49490 Joosten 16681 Joostens 1488 @@ -52840,6 +53740,7 @@ Josy 6670 Jotnian 2442 Jotto 1139 Jotun 25689 +Jotunheim 19724 Jotunn 1114 Jotuns 5663 Jou 62734 @@ -52992,6 +53893,7 @@ Jue 16998 Juelz 241 Juenger 4349 Jues 5255 +Juewa 177 Juffrou 3146 Jugashvili 259 Juggernaut 121532 @@ -53027,6 +53929,7 @@ Julianus 90846 Juliard 2286 Julias 35958 Julie 2071126 +Julien 594845 Julies 3308 Juliet 2105743 Juliett 3223 @@ -53108,6 +54011,7 @@ Jura 679233 Jurado 17876 Jurados 891 Jurane 1230 +Juras 8543 Jurassian 1509 Jurassic 1114582 Jurchen 14330 @@ -53171,13 +54075,13 @@ Juvigny 6891 Juxtlahuaca 581 Juzwiak 253 Jyeshta 107 +Jyles 198 Jyotis 347 Jyotsna 5705 KA 351807 KAB 14268 KAH 5221 KAIST 4707 -KAM 39052 KAMs 1372 KAON 949 KAP 14508 @@ -53219,6 +54123,7 @@ KGBs 251 KGV 3068 KGs 1429 KHL 4360 +KHV 1266 KIAS 1162 KIAs 824 KIBS 26770 @@ -53235,6 +54140,7 @@ KLM 151849 KLOC 1387 KLV 5418 KMA 13738 +KMAG 1039 KMO 7569 KMS 30651 KMT 203686 @@ -53248,6 +54154,7 @@ KOM 9397 KOR 34152 KORT 2070 KOS 14221 +KOed 50 KOs 2889 KPA 19762 KPCs 464 @@ -53257,12 +54164,15 @@ KPIs 83259 KPP 12181 KPPs 99 KPs 2690 +KRAs 2221 KREC 151 KREEP 3064 KRI 11818 KRIs 2692 KRK 3045 KSAs 7429 +KSF 12430 +KSFs 2305 KSH 6449 KSP 9716 KSR 9072 @@ -53277,6 +54187,7 @@ KUB 14303 KUT 6401 KV 137417 KVM 9579 +KVO 2514 KWIC 21047 KX 34201 KY 202099 @@ -53294,10 +54205,12 @@ Kaas 34739 Kaatz 1903 Kabakjian 336 Kabalah 10069 +Kabalebo 833 Kaballah 1556 Kabard 966 Kabarda 9948 Kabardas 1075 +Kabardia 1133 Kabardian 5487 Kabardians 4632 Kabardin 2579 @@ -53309,6 +54222,7 @@ Kabballah 219 Kabeer 28852 Kabel 18840 Kabels 91 +Kabinda 8278 Kabir 151393 Kabirpanthi 823 Kabirpanthis 1636 @@ -53327,6 +54241,7 @@ Kabyles 65294 Kabylia 40091 Kabylian 1862 Kabylians 281 +Kacchi 1007 Kacer 1007 Kacey 9178 Kachchh 6584 @@ -53467,6 +54382,7 @@ Kaimata 300 Kain 113652 Kaindu 418 Kaine 21390 +Kainei 413 Kaines 15342 Kaingang 3709 Kainozoic 13946 @@ -53503,6 +54419,7 @@ Kakahi 451 Kakamas 6990 Kakar 24465 Kakars 2656 +Kakatiya 6654 Kakchiquel 1542 Kakeya 1405 Kakheti 7295 @@ -53553,6 +54470,7 @@ Kaldani 600 Kaldenkirchen 709 Kaldera 503 Kalderash 3094 +Kalderon 7108 Kaldor 285048 Kaldors 241 Kale 221680 @@ -53612,6 +54530,7 @@ Kalkfontein 6706 Kalks 159 Kall 10253 Kalla 14089 +Kallam 969 Kallan 2084 Kallans 1016 Kallar 6566 @@ -53660,6 +54579,7 @@ Kalyan 29567 Kalyke 718 Kalymnos 15029 Kalynets 635 +Kalypso 17771 Kalyuzhny 717 Kalyuzhnyi 646 Kama 231056 @@ -53719,6 +54639,7 @@ Kamilaroi 22493 Kaminski 54148 Kaminskis 261 Kaminsky 50625 +Kamisato 120 Kamler 6200 Kamloops 31829 Kamman 2830 @@ -53727,6 +54648,7 @@ Kammerer 42829 Kammerers 122 Kammermeyer 1321 Kammers 494 +Kammes 109 Kamo 30175 Kampa 12222 Kampala 539113 @@ -53738,6 +54660,7 @@ Kampers 2058 Kampes 158 Kamphaus 2072 Kampmann 9643 +Kampo 5013 Kampuchea 169724 Kampuchean 37067 Kampucheans 4110 @@ -53760,6 +54683,7 @@ Kanada 17937 Kanagawa 87496 Kanagy 2025 Kanak 26771 +Kanaka 49520 Kanako 1939 Kanaks 9924 Kanaky 1904 @@ -53773,6 +54697,7 @@ Kanauji 1138 Kanauri 1012 Kanawari 291 Kanawha 29026 +Kanayan 237 Kanazawa 58536 Kanban 21239 Kanchanaburi 14329 @@ -53842,12 +54767,15 @@ Kannes 574 Kanno 17389 Kannon 22266 Kanns 403 +Kannur 3877 Kano 567408 Kanode 173 Kanoj 4452 Kanos 903 Kanouse 5064 +Kanpo 1185 Kanpur 65166 +Kanr 703 Kanred 965 Kansa 19486 Kansai 66186 @@ -53954,9 +54882,11 @@ Karakalpakstan 3256 Karakashian 2358 Karakelong 407 Karakhanid 1584 +Karakol 7729 Karakoram 93998 Karakorum 51254 Karakul 23079 +Karakulov 349 Karam 56091 Karamanian 3216 Karamanians 579 @@ -53969,6 +54899,7 @@ Karamojo 6218 Karamojong 11423 Karanga 25894 Karanja 26263 +Karankawa 850 Karao 1248 Karapetian 949 Karapetyan 2237 @@ -54067,6 +54998,7 @@ Karluks 1735 Karly 15986 Karlyn 2881 Karm 12357 +Karma 245348 Karman 96505 Karmans 213 Karmathian 1618 @@ -54143,6 +55075,7 @@ Kasanje 2623 Kasari 4429 Kasbarian 525 Kasch 5230 +Kaschak 3307 Kaschuba 1269 Kase 34718 Kasel 3964 @@ -54159,6 +55092,7 @@ Kashans 451 Kashaya 1744 Kashchei 1163 Kashchey 2251 +Kashgai 2905 Kashgar 208409 Kashgari 3147 Kashgaris 963 @@ -54265,7 +55199,10 @@ Katharevousa 2576 Katharine 1427856 Katherine 2910055 Katheryn 22557 +Kathgodam 2826 Kathi 33419 +Kathiawari 777 +Kathiawaris 162 Kathie 54520 Kathina 3140 Kathleen 1444527 @@ -54367,6 +55304,7 @@ Kaveney 5766 Kavenna 2666 Kaveri 21991 Kavieng 8300 +Kavirondo 94243 Kaw 30065 Kawa 37899 Kawachi 34064 @@ -54374,6 +55312,7 @@ Kawagoe 8592 Kawaguchi 39456 Kawahara 19538 Kawaida 1699 +Kawaiisu 479 Kawak 863 Kawamoto 20644 Kawamura 58881 @@ -54462,6 +55401,8 @@ Kazumi 6352 Kazuo 69505 Kazuomi 195 Kazuyoshi 4478 +Kb 96408 +Kbs 1115 Ke 292719 KeV 25082 Kea 97112 @@ -54515,6 +55456,8 @@ Kebili 2161 Keble 722732 Kebnekaise 2647 Kechi 1481 +Kechua 1155 +Kechuan 97 Keck 161382 Keckler 633 Kecks 2936 @@ -54552,6 +55495,8 @@ Keelings 3029 Keels 20300 Keelung 34935 Keely 65198 +Keemun 1840 +Keemuns 420 Keen 882930 Keena 3677 Keenan 271431 @@ -54586,6 +55531,7 @@ Kefallinia 1741 Kefallonia 2869 Kefalonia 4948 Keffer 5484 +Keflavik 13472 Keftiu 16316 Kegel 26361 Kegels 2979 @@ -54593,6 +55539,7 @@ Kegg 2329 Keggs 4100 Kegler 3355 Kegley 16904 +Kegon 7238 Kegworth 38241 Kehl 74138 Kehler 10335 @@ -54641,6 +55588,7 @@ Keizer 22893 Keizers 1562 Kejia 1620 Keka 868 +Kekchi 6173 Kekule 60049 Kel 131182 Kelaart 16694 @@ -54685,6 +55633,7 @@ Kelley 568386 Kelleys 2339 Kelli 31230 Kellie 194172 +Kellies 1928 Kelligrews 195 Kelliher 14810 Kelling 47430 @@ -54958,6 +55907,8 @@ Keralite 1448 Keralites 1132 Keram 25314 Keranen 2750 +Kerang 3868 +Keratol 197 Keraunia 153 Kerber 24651 Kerberos 22485 @@ -54998,6 +55949,7 @@ Kerley 26017 Kerlin 8733 Kerls 1150 Kerman 152750 +Kermanji 959 Kermans 425 Kermanshah 70552 Kermit 60544 @@ -55119,6 +56071,7 @@ Ketterling 527 Ketterman 661 Ketters 330 Kettle 417929 +Kettlebrook 1765 Kettler 24042 Kettlers 378 Kettles 50659 @@ -55226,6 +56179,7 @@ Khanaqin 11566 Khanbaligh 1332 Khanbalik 2239 Khanbaliq 2122 +Khandallah 1108 Khandelwal 7081 Khandelwals 203 Khanderi 957 @@ -55238,6 +56192,8 @@ Khaniqin 3347 Khanna 75625 Khannas 225 Khanty 13275 +Khanzadian 418 +Kharaghoda 1139 Kharatyan 231 Khare 18090 Khares 607 @@ -55668,11 +56624,13 @@ Kilmer 33125 Kilmers 339 Kilmersdon 16583 Kilncadzow 887 +Kilner 91327 Kilnhurst 10094 Kilnsea 18104 Kilpatrick 249261 Kilpatricks 1768 Kilpeck 27907 +Kilpedder 671 Kilpin 19037 Kilrea 13091 Kilroy 118448 @@ -55744,6 +56702,7 @@ Kimmeridgian 44739 Kimmes 261 Kimmet 577 Kimmey 1273 +Kimmie 14497 Kimmitt 3506 Kimmy 18121 Kimochi 194 @@ -55824,6 +56783,8 @@ Kingma 10161 Kingman 64108 Kingmen 373 Kingmoor 5913 +Kingo 8822 +Kingos 237 Kingrey 169 Kings 8278685 Kingsberry 1445 @@ -55862,15 +56823,18 @@ Kingswear 28531 Kingswinford 69995 Kingswood 328768 Kingswoods 159 +Kingthorpe 3257 Kington 189400 Kingtons 127 Kingu 6724 Kingussie 65136 +Kingwana 1579 Kingwood 12886 Kingyang 253 Kinh 13271 Kinion 608 Kinipetu 109 +Kinistino 501 Kinjo 3507 Kinkade 7276 Kinkaid 16594 @@ -56019,6 +56983,7 @@ Kirin 86502 Kiriri 2563 Kirishima 7543 Kiritimati 4530 +Kiriwina 13326 Kirk 3204795 Kirkaldy 203971 Kirkbride 98120 @@ -56072,6 +57037,7 @@ Kirkwoods 1425 Kirlian 9489 Kirlin 2591 Kirman 78107 +Kirmanshah 11223 Kirmington 15498 Kirmse 4479 Kirn 24626 @@ -56275,6 +57241,8 @@ Klangs 251 Klanism 101 Klanjec 235 Klann 3171 +Klanner 663 +Klanners 379 Klansman 6862 Klansmen 14497 Klapp 12760 @@ -56288,6 +57256,7 @@ Klass 43841 Klasses 48 Klatskin 6145 Klatt 27430 +Klatte 3717 Klauer 7647 Klaus 737961 Klausing 1649 @@ -56354,10 +57323,12 @@ Kleve 14316 Kleven 7797 Klevens 3479 Kleves 181 +Klickitat 1643 Kliemann 3169 Klien 9985 Klier 12717 Kliewer 6696 +Klikitat 605 Klim 16518 Klimas 5437 Klimek 7128 @@ -56457,6 +57428,8 @@ Kluxers 1030 Kly 5713 Klymchuk 273 Klytia 611 +Kmer 906 +Kmers 295 Kmetz 1413 Kmhmu 1338 Kmiec 1383 @@ -56612,6 +57585,7 @@ Knowlton 110133 Knowltons 195 Knowsley 232643 Knowsthorpe 1574 +Knowstone 5030 Knox 3308617 Knoxian 4359 Knoxville 161362 @@ -56633,6 +57607,7 @@ Knysna 72119 Ko 574768 KoRT 215 Koalas 4254 +Koalib 1674 Koasati 3472 Kobane 1947 Kobarid 2023 @@ -56729,6 +57704,7 @@ Koffman 10490 Koffs 97 Kofman 45689 Kofoed 9792 +Koforidua 14567 Kofu 7682 Koga 37224 Kogan 297066 @@ -56795,6 +57771,7 @@ Koji 39657 Kojima 75097 Kok 222451 Kokama 381 +Kokand 42280 Kokang 5320 Kokatha 286 Kokay 292 @@ -56853,6 +57830,7 @@ Kollar 31426 Kollars 277 Koller 101778 Kollers 360 +Kollidam 197 Kollie 1466 Kolling 3330 Kollman 18146 @@ -56863,6 +57841,7 @@ Kolmans 199 Kolmogorov 128507 Kolmogorovian 230 Kolob 2268 +Kolodzey 125 Kolodziej 7210 Kolomna 16767 Kolomyia 491 @@ -56886,9 +57865,11 @@ Komarek 7249 Komarno 4395 Komars 451 Komatsu 77276 +Komering 688 Komi 52161 Komis 5758 Komisaruk 3071 +Kommandatura 8808 Komnenian 3652 Komnenoi 2988 Komnenos 24435 @@ -56954,6 +57935,7 @@ Konotop 3033 Konoval 223 Konowal 360 Konrath 3347 +Konsomol 461 Konstadinos 211 Konstantina 2508 Konstantinovka 1736 @@ -56973,6 +57955,7 @@ Koolen 2046 Koolhaasian 70 Kools 3927 Koonce 4464 +Koondrook 809 Kooner 2230 Koons 38834 Koontz 23479 @@ -57053,6 +58036,8 @@ Koreish 56008 Koreishite 2895 Koreishites 12529 Korematsu 6184 +Koren 55241 +Korens 88 Koresh 26037 Koreshan 603 Koreshanity 179 @@ -57075,6 +58060,7 @@ Korla 8380 Korman 23993 Kormans 115 Kornacki 981 +Kornblum 12858 Kornbluth 10401 Kornegay 3893 Korner 108260 @@ -57184,6 +58170,7 @@ Koster 137309 Kosters 11668 Kostiantyn 637 Kostic 7293 +Kostich 2562 Kostick 2653 Kostiuk 1775 Kostka 14974 @@ -57487,6 +58474,7 @@ Kriens 3617 Krier 39169 Kriers 317 Kriesel 1555 +Kriete 1435 Krigbaum 2492 Kriger 7724 Krikorian 11853 @@ -57659,10 +58647,12 @@ Krzywda 805 Krzywicki 5525 Krzyzaniak 4035 Krzyzanowski 6757 +Ksenia 10754 Kshatriya 72358 Kshatriyas 50314 Kshetri 1414 Ksiazek 2448 +Ksp 6958 Kt 789070 Ktunaxa 738 Ku 484737 @@ -57895,6 +58885,7 @@ Kunqu 2575 Kuns 4975 Kunselman 743 Kunshan 9511 +Kunsman 2523 Kunstler 37880 Kunstlers 1135 Kunti 21042 @@ -57912,6 +58903,7 @@ Kuomintang 302297 Kuopio 32966 Kuortane 525 Kuos 202 +Kuoyu 3925 Kuper 105153 Kuperberg 3475 Kuperman 9504 @@ -57926,6 +58918,7 @@ Kuraish 4542 Kuraishite 129 Kuranda 9839 Kuras 3573 +Kuray 1289 Kurd 118916 Kurdish 1006720 Kurdishness 3540 @@ -57970,6 +58963,7 @@ Kurt 1124692 Kurtenbach 1959 Kurth 45332 Kurths 1110 +Kurtis 8934 Kurtz 266186 Kurtzes 356 Kurtzman 28783 @@ -58006,6 +59000,8 @@ Kutas 10506 Kutch 92857 Kutcher 11961 Kutchi 4737 +Kutchin 6815 +Kutchins 4925 Kutenai 2934 Kutina 1758 Kutjevo 489 @@ -58037,6 +59033,7 @@ Kuznetsoff 847 Kuznetsov 102913 Kuznetsovs 335 Kuznia 365 +Kuzniar 1971 Kuznicki 869 Kuzzilbash 7442 Kuzzilbashes 5501 @@ -58125,6 +59122,7 @@ Kyne 14453 Kynes 4825 Kynthos 1715 Kyoko 18972 +Kyongwon 173 Kyoto 1164476 Kyparissia 3777 Kypchak 1034 @@ -58132,6 +59130,7 @@ Kypchaks 229 Kyra 66485 Kyran 6138 Kyren 1173 +Kyrenia 70204 Kyrghyz 1397 Kyrgyz 135168 Kyrgyzstan 200703 @@ -58165,6 +59164,8 @@ LABAs 2623 LABs 2449 LAC 150607 LACC 2324 +LACW 500 +LACs 7290 LAE 13634 LAEs 1167 LAG 58080 @@ -58225,19 +59226,24 @@ LBSCR 5735 LBT 6001 LBV 8412 LBVs 1131 +LBW 24173 LBWs 253 LBs 7433 LC 848903 LCAO 33065 LCAOs 285 +LCB 28051 LCBO 1137 +LCC 276181 LCCN 23982 LCCs 17788 +LCDR 5030 LCE 12881 LCG 12894 LCGs 882 LCH 30976 LCHF 2219 +LCJ 18017 LCL 87216 LCLC 797 LCLs 2995 @@ -58252,6 +59258,7 @@ LCTL 328 LCTs 9554 LCX 6111 LCs 21329 +LD 893696 LDAP 34857 LDAR 544 LDC 190175 @@ -58287,6 +59294,7 @@ LEMP 1427 LEMS 10871 LEMSIP 356 LEMs 1010 +LENR 503 LEO 215631 LEOs 2850 LEP 89765 @@ -58296,6 +59304,8 @@ LETS 54013 LEUs 355 LEV 31356 LEVs 1330 +LEZ 2541 +LEZs 196 LFB 10144 LFC 22314 LFD 6156 @@ -58307,6 +59317,7 @@ LFMR 274 LFO 8640 LFOs 1639 LFP 17493 +LFR 5676 LFSR 5276 LFSRs 1092 LG 366765 @@ -58343,7 +59354,6 @@ LHX 3400 LIA 48474 LIAT 10226 LIAs 2984 -LIB 103124 LIBOR 124316 LIC 87536 LICs 18110 @@ -58373,7 +59383,6 @@ LISS 10671 LITA 5348 LJ 1186477 LJs 393 -LKG 1098 LKM 7538 LLAP 307 LLC 413555 @@ -58410,6 +59419,7 @@ LMRP 397 LMST 501 LMSs 2664 LMT 17393 +LMTD 3106 LMTO 4893 LMTs 332 LMWD 416 @@ -58461,6 +59471,7 @@ LOLing 76 LOLs 556 LOQ 5338 LOQs 389 +LOR 36542 LORAN 10969 LORD 8547084 LORRI 173 @@ -58506,8 +59517,10 @@ LPVs 419 LQ 65362 LQA 1187 LQE 658 +LQP 1088 LR 986619 LRAD 2471 +LRAs 403 LRBM 427 LRC 92088 LRCs 4824 @@ -58527,8 +59540,8 @@ LSBs 2149 LSC 130040 LSCB 5833 LSCBs 4579 -LSDs 3402 LSE 380409 +LSIL 3404 LSJ 33931 LSL 16747 LSLs 2498 @@ -58587,19 +59600,25 @@ LVDS 1323 LVH 38416 LVL 21857 LVMPD 386 +LVN 6452 +LVNs 495 LVOT 19557 LVTs 3695 LVW 1521 LVs 8009 +LWA 8705 LWB 6154 LWIR 3371 +LWL 7395 LWN 2388 LWOP 3726 +LWOST 13478 LWR 41620 LWRs 13832 LWS 14366 LWT 53473 LWTs 464 +LWV 3313 LX 299284 LXX 1052978 LXs 631 @@ -58616,6 +59635,8 @@ LaFayette 3770 LaFrance 9107 LaGory 505 LaGrange 9798 +LaMarque 563 +LaMorte 969 LaPierre 4855 LaPlace 3986 LaPorte 11728 @@ -58673,6 +59694,7 @@ Labordes 359 Laborie 15880 Laborites 1902 Labossiere 433 +Labouchere 422814 Labounty 161 Labourites 18051 Labov 161182 @@ -58733,6 +59755,7 @@ Laches 96313 Lachesis 56474 Lachica 1514 Lachie 11664 +Lachin 8729 Lachish 108502 Lachlan 255419 Lachman 42538 @@ -58747,11 +59770,13 @@ Lackawaxen 1133 Lackenby 29749 Lackey 53683 Lackeys 5494 +Lackford 16762 Lackie 25711 Lackies 977 Lackman 3338 Lackner 19536 Lacko 3468 +Lacks 57407 Laclauian 738 Laclede 6556 Lacock 91437 @@ -58784,6 +59809,7 @@ Ladds 18471 Lade 85552 Ladera 3528 Ladewig 7453 +Ladies 3833179 Ladin 28263 Ladinian 7791 Ladino 35566 @@ -58869,6 +59895,7 @@ Lafountain 129 Laframboise 3360 Lafrance 5233 Lafreniere 2129 +Lafrenz 1057 Lafuente 22472 Lagace 3181 Lagan 123159 @@ -58962,6 +59989,7 @@ Laises 595 Laist 2724 Laisterdyke 6071 Lait 74089 +Laith 17285 Laithwaite 31838 Laitinen 20901 Laits 885 @@ -59074,6 +60102,7 @@ Lamarckians 8573 Lamarckism 31451 Lamarckist 939 Lamarckists 519 +Lamarque 48295 Lamarr 19868 Lamarre 14602 Lamartinian 897 @@ -59083,6 +60112,7 @@ Lamay 1135 Lamaze 13657 Lamb 5422482 Lamba 29313 +Lamballe 66245 Lambas 5162 Lambda 105408 Lambden 8047 @@ -59100,6 +60130,7 @@ Lambertist 70 Lambertists 193 Lamberton 71804 Lambertons 251 +Lamberts 44679 Lambertson 2533 Lamberty 12162 Lambeth 3044119 @@ -59135,6 +60166,7 @@ Lambson 2759 Lambton 365992 Lambya 665 Lamech 96444 +Lamellion 1139 Lamendola 481 Lamentations 210327 Lamer 27676 @@ -59154,6 +60186,8 @@ Lamington 92468 Lamke 1615 Lamkin 9705 Lamkins 462 +Lamm 69954 +Lamma 13562 Lammas 168494 Lammastide 3261 Lammert 9054 @@ -59268,6 +60302,8 @@ Landefeld 2911 Landen 89510 Landens 292 Lander 513309 +Landero 1368 +Landeros 1341 Landers 90185 Landes 329391 Landeshauptmann 4303 @@ -59280,6 +60316,7 @@ Landin 14062 Landino 43391 Landins 540 Landis 159966 +Landkey 6773 Landler 15087 Landman 45752 Landmans 289 @@ -59301,6 +60338,7 @@ Landreth 18120 Landri 3354 Landrigan 6245 Landron 1801 +Landru 17217 Landrum 16369 Landry 189441 Landsat 141280 @@ -59308,6 +60346,7 @@ Landsats 2753 Landsbaum 171 Landsberg 121935 Landsbergs 121 +Landseer 339803 Landsgemeinde 8406 Landshut 69390 Landsknecht 5123 @@ -59456,6 +60495,7 @@ Lannis 965 Lannom 457 Lannon 22834 Lanny 41718 +Lanoraie 813 Lanoue 6540 Lanphear 2158 Lanpher 559 @@ -59475,6 +60515,7 @@ Lansford 9869 Lansing 335698 Lansley 77590 Lant 90440 +Lantao 9551 Lantau 22334 Lanterman 3510 Lanthier 2715 @@ -59581,6 +60622,8 @@ Laputan 7217 Laputans 3438 Lapwai 2391 Lapworth 202800 +Laque 2191 +Laques 1655 Laquita 259 Lara 691504 Larabee 6049 @@ -59613,6 +60656,7 @@ Laren 50499 Lares 116543 Larestan 259 Larez 547 +Largactil 14376 Largaespada 495 Largan 2811 Large 8781956 @@ -59852,8 +60896,10 @@ Latinos 163040 Latins 859735 Latinx 8312 p Latinxua 223 +Latisha 5970 Latium 329667 Laton 24497 +Latona 126111 Latonia 2821 Latonian 1976 Latonya 2406 @@ -59864,6 +60910,7 @@ Latours 1276 Latowsky 345 Latoya 3941 Latreillian 344 +Latrobe 97480 Latrocinium 6817 Latshaw 1805 Latson 1224 @@ -59948,6 +60995,7 @@ Lauren 772838 Laurence 3069998 Laurencekirk 44182 Laurens 217626 +Laurent 892917 Laurentia 46243 Laurentian 207346 Laurentians 7122 @@ -60004,6 +61052,7 @@ Lavalles 217 Lavalley 3992 Lavallie 448 Lavan 20608 +Lavandera 2114 Lavans 195 Lavant 44238 Lavanya 3354 @@ -60058,6 +61107,8 @@ Lavoisierian 3568 Lavonia 1055 Lavoslav 351 Lavoy 3000 +Lavrio 954 +Lavrion 6848 Lavrov 50452 Lavukaleve 572 Lavy 15837 @@ -60341,6 +61392,7 @@ Lebron 4349 Lebrun 184692 Lebruns 767 Lebs 609 p +Lebu 9932 Lecce 72048 Lecco 37666 Lech 145203 @@ -60403,6 +61455,7 @@ Ledo 25434 Ledonne 276 Ledos 1896 Ledoux 64568 +Ledru 87781 Ledsham 29036 Leduc 101984 Ledvina 629 @@ -60420,6 +61473,7 @@ Leeds 11564608 Leedy 7658 Leedys 262 Leeford 4477 +Leegomery 1821 Leek 487673 Leekbrook 751 Leela 49404 @@ -60585,6 +61639,7 @@ Leicestrian 1500 Leicestrians 1174 Leichenhaus 257 Leichhardt 61639 +Leichliter 227 Leicht 12285 Leichty 2675 Leick 7198 @@ -60770,6 +61825,7 @@ Lendu 11456 Leneghan 927 Lenehan 19775 Lenehans 115 +Leney 18222 Lengacher 441 Lengel 9359 Lenghu 263 @@ -60931,8 +61987,10 @@ Lernaeans 239 Lernean 6453 Lerneans 526 Leroi 46092 +Leros 36714 Leroux 157188 Leroy 379579 +Lerro 821 Lerwick 310075 Les 6740991 Lesage 78952 @@ -61077,6 +62135,7 @@ Leven 645777 Levene 121215 Levenes 727 Levengood 1011 +Levenhagen 836 Levenmouth 1947 Levens 69293 Levenshulme 39726 @@ -61139,6 +62198,8 @@ Leviton 8548 Levits 2268 Levitsky 31902 Levitt 277141 +Levittown 14275 +Levittowns 1157 Levitts 3603 Levkowitz 771 Levonian 1678 @@ -61231,6 +62292,7 @@ Lezgic 337 Lezgin 1907 Lezgins 1742 Lezgis 403 +Lezotte 3309 Lh'asa 1264 Lhanbryde 5133 Lhasa 403943 @@ -61290,6 +62352,7 @@ Liberians 74278 Liberman 87423 Liberson 4201 Libert 28840 +Libertad 85982 Libertarian 62996 Libertarians 19547 Libertas 55782 @@ -61344,6 +62407,7 @@ Lichty 8143 Lichuan 607 Licius 1037 Lick 201003 +Lickey 44522 Lickfold 6824 Lickorish 9351 Licks 12604 @@ -61356,7 +62420,6 @@ Liddick 485 Liddle 147935 Liddles 533 Liddy 95511 -Lide 11887 Lides 472 Lidgett 44837 Lidia 70016 @@ -61385,6 +62448,7 @@ Liechtensteiners 1114 Liechtensteinian 62 Liechty 6186 Lieder 230311 +Liederkranz 3061 Lieders 375 Liedtke 10556 Lieg 884 @@ -61398,6 +62462,7 @@ Lienhard 17746 Lier 47086 Liera 552 Lierman 2003 +Liesel 34105 Lieser 5385 Lieske 5652 Liestal 5499 @@ -61510,6 +62575,7 @@ Lillos 190 Lills 948 Lilly 934949 Lillyan 115 +Lillys 2316 Lilongwe 89080 Lily 3169008 Lilyan 2851 @@ -61529,6 +62595,7 @@ Limbe 54148 Limberg 10471 Limberham 10732 Limberhams 87 +Limbo 129347 Limbrick 11872 Limbs 230424 Limbu 13748 @@ -61600,6 +62667,7 @@ Linda 2183006 Lindahl 85064 Lindahls 131 Lindal 14208 +Lindale 12416 Lindamood 2249 Lindas 2840 Lindau 99469 @@ -61689,6 +62757,7 @@ Lingao 587 Lingard 464472 Lingayat 7081 Lingayatism 279 +Lingayats 9273 Lingayen 9545 Lingbao 3014 Lingchuan 141 @@ -61699,6 +62768,7 @@ Linger 44561 Lingerfelt 223 Lingers 14829 Lingfield 86520 +Lingiari 874 Lingle 9771 Lingo 35141 Lingos 465 @@ -61741,6 +62811,7 @@ Linneus 33490 Linney 36628 Linneys 809 Linnie 9946 +Linny 19118 Linquist 2059 Linscott 12235 Linse 7870 @@ -61771,6 +62842,7 @@ Linwood 130913 Linxia 3011 Linyi 4282 Linying 168 +Linyuan 476 Linz 292430 Linzer 11892 Linzhou 311 @@ -61866,6 +62938,8 @@ Liriano 508 Lisa 1965349 Lisanti 2393 Lisas 10601 +Lisaw 261 +Lisaws 143 Lisboa 215729 Lisbon 4320564 Lisboners 1379 @@ -61971,6 +63045,7 @@ Littlehaven 984 Littlejohn 152032 Littlemill 4440 Littlemore 124335 +Littleover 13819 Littlepage 15727 Littlepages 759 Littleport 46783 @@ -62093,6 +63168,7 @@ Llanddyfnan 2607 Llandegai 13458 Llandegfan 3604 Llandeilo 139286 +Llandinabo 1620 Llandough 26135 Llandoverian 4085 Llandovery 230139 @@ -62107,22 +63183,28 @@ Llanegwad 3732 Llaneilian 4127 Llanelli 111178 Llanelly 358279 +Llanerchymedd 8851 Llanfachreth 4974 Llanfair 87313 Llanfairfechan 26025 Llanfairpwll 3397 Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch 765 Llanfarian 1018 +Llanfoist 4917 Llanfrothen 5825 Llanfyllin 45447 +Llanfynydd 4476 Llanfyrnach 2418 Llangamarch 1189 Llangefni 41321 Llangelynin 4004 Llangennech 9523 Llangollen 232018 +Llangua 1473 Llangunllo 3434 +Llangurig 15001 Llangyfelach 8537 +Llangynog 16535 Llangynwyd 7259 Llanharan 7867 Llanhilleth 6525 @@ -62133,12 +63215,15 @@ Llanito 191 Llanitos 561 Llanllechid 7359 Llanllyfni 7321 +Llannon 4521 Llannor 2872 Llano 50265 Llanos 85701 Llanover 48744 Llanpumsaint 915 +Llanquihue 9815 Llanrhian 1142 +Llanrug 5138 Llanrumney 3756 Llanrwst 82053 Llansadwrn 6313 @@ -62149,6 +63234,7 @@ Llantrisant 57237 Llanuwchllyn 10823 Llanvihangel 16129 Llanwddyn 10160 +Llanwenarth 4405 Llanwenog 3389 Llanwern 39806 Llanwrda 5703 @@ -62164,6 +63250,7 @@ Llerenas 177 Llewellyn 719746 Llewelyn 481923 Lliswerry 660 +Llorach 1874 Llorens 14190 Llorente 52989 Llorentes 103 @@ -62171,6 +63258,7 @@ Lloyd 12687165 Lloyd's 6763 Lloydminster 6323 Lloyds 1392399 +Llullaillaco 1211 Llullian 277 Llwydcoed 2982 Llwyngwril 3415 @@ -62194,6 +63282,7 @@ Loach 98953 Loachian 170 Loader 148431 Loaders 43369 +Loadholt 241 Loaghtan 359 Loaiza 2508 Loamshire 17931 @@ -62422,6 +63511,7 @@ Loiret 35068 Lois 630451 Loiselle 5079 Loja 45462 +Lojek 1267 Lokapala 1171 Lokapalas 1261 Lokasenna 4388 @@ -62493,6 +63583,7 @@ Lon 920108 Lonardo 1889 Lonas 1256 Loncar 3223 +Loncoche 973 Londesborough 96779 Londinensian 104 Londinian 1013 @@ -62538,7 +63629,6 @@ Longannet 15396 Longbenton 19767 Longbone 830 Longbones 325 -Longbottom 65447 Longbottoms 247 Longbrake 1459 Longbridge 104998 @@ -62550,6 +63640,7 @@ Longcore 1473 Longcross 4457 Longde 2944 Longden 146930 +Longdens 490 Longdon 87194 Longe 123975 Longenecker 24751 @@ -62589,6 +63680,8 @@ Longnecker 7029 Longniddry 18785 Longnor 28025 Longo 105131 +Longobard 12832 +Longobards 29179 Longonot 6989 Longoria 4634 Longos 4733 @@ -62667,6 +63760,8 @@ Loonan 423 Looney 50526 Looneys 469 Looneyville 91 +Loonie 2567 +Loonies 3145 Loop 405414 Looper 11980 Loopers 2996 @@ -62731,6 +63826,7 @@ Lorence 5840 Lorences 250 Lorene 14537 Lorenson 1351 +Lorente 17026 Lorentzian 57560 Lorenz 587703 Lorenzana 17744 @@ -63076,6 +64172,7 @@ Luanne 10406 Luanshya 21292 Luas 4565 Luba 66714 +Lubavitch 16580 Lubavitcher 6746 Lubavitchers 1422 Lubben 5836 @@ -63086,6 +64183,7 @@ Lubentina 497 Luber 4880 Lubers 206 Lubey 732 +Lubie 1009 Lubienski 7557 Lubin 121607 Lubins 1024 @@ -63143,6 +64241,7 @@ Lucianis 215 Luciano 231619 Lucid 44370 Lucido 4710 +Lucie 433860 Lucier 11201 Lucifer 781663 Luciferian 13516 @@ -63249,6 +64348,7 @@ Luehrs 656 Lueken 2293 Luella 26544 Luellen 1549 +Luena 9760 Luengas 358 Luepke 441 Luera 157 @@ -63268,6 +64368,7 @@ Lufton 118638 Luftwaffe 632654 Lufty 657 Lug 100580 +Luga 15760 Luganda 43364 Lugang 1024 Lugano 230070 @@ -63295,10 +64396,12 @@ Luhyia 485 Lui 115761 Luib 5576 Luichow 902 +Luigi 871342 Luikart 3433 Luis 1651948 Luisi 13085 Lujan 31232 +Lujiang 1488 Luka 135271 Lukach 4889 Lukacs 232110 @@ -63415,6 +64518,7 @@ Lungers 206 Lungs 350823 Lungu 15988 Lungwa 524 +Lunites 153 Lunn 279507 Lunner 427 Lunney 12117 @@ -63513,9 +64617,12 @@ Lusitania 233824 Lusitanian 68187 Lusitanians 24753 Lusitanic 170 +Lusitano 8374 +Lusitanos 1294 Lusk 88584 Luskin 8169 Lusks 243 +Luso 40774 Lusoga 1267 Lusophile 155 Lusophone 18783 @@ -63601,6 +64708,7 @@ Luxton 43230 Luxtons 735 Luxulyan 8241 Luy 9881 +Luyang 637 Luyendyk 2349 Luyi 2556 Luys 35253 @@ -63658,6 +64766,7 @@ Lydes 1423 Lydeway 585 Lydford 71077 Lydgate 534293 +Lydham 5371 Lydia 1902109 Lydian 277364 Lydians 128886 @@ -63688,6 +64797,7 @@ Lylyan 670 Lyman 321436 Lyme 953136 Lymeswold 2357 +Lyminge 37267 Lymington 340410 Lyminster 12064 Lymm 52228 @@ -63760,6 +64870,7 @@ Lysenkoist 1565 Lysenkoists 1113 Lysenkoite 183 Lysenkoites 305 +Lysette 7617 Lysiak 890 Lysimachean 302 Lysistrata 87288 @@ -63769,7 +64880,9 @@ Lysne 1391 Lysnes 157 Lysol 33057 Lysons 267308 +Lyss 9271 Lyssa 17763 +Lyssy 1759 Lyster 161756 Lysters 1323 Lysy 3351 @@ -63837,6 +64950,7 @@ MAPP 11548 MAPPA 16959 MAPPAs 1058 MAPs 49073 +MAQ 4262 MARCKS 3877 MARCOM 1243 MARDI 6266 @@ -63866,9 +64980,7 @@ MAX 354429 MAgr 2251 MAs 52603 MB 1506407 -MBA 691898 MBARI 1304 -MBAs 43785 MBBCh 1796 MBBS 33938 MBC 103913 @@ -63910,12 +65022,14 @@ MCDB 1044 MCDM 8066 MCDs 2684 MCE 34287 +MCED 79 MCF 63382 MCFC 6591 MCG 24507 MCGA 1080 MCGs 489 MCI 160273 +MCIs 1805 MCKD 567 MCLOS 707 MCM 84528 @@ -63936,7 +65050,6 @@ MCRs 2144 MCSD 3297 MCSE 4886 MCT 69995 -MCTS 2433 MCTs 5800 MCU 28701 MCUs 2860 @@ -63997,6 +65110,7 @@ MEGA 28257 MEGAs 212 MEGX 1127 MEGs 1019 +MEK 38985 MEL 82207 MELAS 14805 MEMM 723 @@ -64016,6 +65130,7 @@ METAR 697 METARs 381 METI 22386 METIs 222 +METO 1873 MEU 11621 MEUs 1205 MEX 32304 @@ -64045,6 +65160,7 @@ MFs 10023 p MGA 27625 MGCC 905 MGDA 517 +MGN 32655 MGS 19049 MGU 11574 MGUH 1996 @@ -64054,6 +65170,7 @@ MH 480510 MHA 91842 MHAs 947 MHC 447377 +MHCP 930 MHCs 3113 MHD 105294 MHH 7943 @@ -64062,6 +65179,8 @@ MHL 6811 MHN 17098 MHS 59516 MHTML 244 +MHWN 4680 +MHWS 12631 MHs 1335 MI 1360637 MIA 91962 @@ -64144,6 +65263,8 @@ MLT 23725 MLU 19127 MLUs 1221 MLW 20646 +MLWN 2235 +MLWS 9532 MLs 9205 MM 2495078 MMAs 626 @@ -64157,6 +65278,7 @@ MMDA 2362 MMDs 822 MMEL 434 MMF 48268 +MMFF 533 MMFs 4094 MMH 7954 MMHS 187 @@ -64247,6 +65369,7 @@ MP 4571210 MPA 140651 MPAA 20172 MPAs 33301 +MPB 20493 MPC 180514 MPD 66777 MPDA 1221 @@ -64354,7 +65477,6 @@ MSIL 1104 MSIs 2951 MSJ 6155 MSL 56911 -MSM 72986 MSMA 4090 MSME 3719 MSMEs 5399 @@ -64400,6 +65522,7 @@ MTMs 1233 MTOW 7392 MTP 74768 MTPs 1816 +MTR 54644 MTS 86178 MTSO 1342 MTT 79828 @@ -64470,6 +65593,7 @@ MZD 1018 MZM 2503 MZS 857 Ma 5061119 +Ma'an 29360 Ma'anshan 1275 Ma'at 10705 Ma'bar 6758 @@ -64479,6 +65603,7 @@ Maahs 835 Maalaea 667 Maalouf 11309 Maaloula 385 +Maan 52259 Maas 308977 Maasai 156768 Maassen 19590 @@ -64621,6 +65746,7 @@ Macarian 6036 Macarius 135645 Macaronesia 4312 Macaronesian 4700 +Macarthur 128062 Macartney 501875 Macartneys 1770 Macassar 140458 @@ -64731,6 +65857,7 @@ Maciver 20401 Mackall 5519 Mackauer 1742 Mackay 1794364 +Mackellar 43082 Mackem 1719 Mackems 673 Mackenzie 3926047 @@ -64760,6 +65887,7 @@ Macmurray 63996 Macnab 98786 Macnair 36989 Macnamara 310895 +Macneal 3785 Macomb 19392 Macon 240623 Maconie 5297 @@ -64881,6 +66009,7 @@ Madilyn 195 Madioen 1266 Madison 2062910 Madisonian 11134 +Madisonians 437 Madisons 3964 Madisonville 3866 Madiun 6819 @@ -64939,6 +66068,7 @@ Maechler 2034 Maeda 80559 Maeder 20526 Maedi 5506 +Maegan 2469 Maenalus 13087 Maenan 8425 Maenclochog 4542 @@ -65144,7 +66274,9 @@ Mahajani 2404 Mahajans 3007 Mahakala 6310 Mahal 226048 +Mahalakshmi 3955 Mahalapye 9925 +Mahalaxmi 2620 Mahalia 18402 Mahamad 21701 Mahamat 9916 @@ -65171,6 +66303,8 @@ Maharashtrians 3022 Maharastra 6692 Maharjan 1353 Mahars 11379 +Mahasamghika 1700 +Mahasanghika 2492 Mahaska 1175 Mahavamsa 15595 Mahavir 5549 @@ -65206,6 +66340,7 @@ Mahicans 1063 Mahikari 3274 Mahikeng 493 Mahilyow 113 +Mahim 16538 Mahindra 17461 Mahjar 2281 Mahjari 297 @@ -65271,6 +66406,7 @@ Maidans 387 Maiden 1236337 Maidenhead 794065 Maidens 188325 +Maidford 4548 Maidie 22446 Maidment 81858 Maidstone 1609564 @@ -65308,6 +66444,7 @@ Mainas 3660 Maindee 6449 Maindy 10768 Maine 2214508 +Mainella 279 Mainely 263 Mainer 4612 Mainers 1857 @@ -65329,6 +66466,7 @@ Maione 8409 Maiongong 239 Maiorana 2317 Maiorano 2077 +Maipo 16879 Maipure 839 Mair 483354 Maire 264443 @@ -65456,6 +66594,7 @@ Maks 15887 Makua 27606 Makung 1808 Makurdi 18868 +Makushi 2705 Mal 663860 Malabanan 267 Malabar 876208 @@ -65635,6 +66774,8 @@ Mallard 212102 Mallards 23787 Mallari 887 Mallas 13007 +Malleco 4058 +Mallee 27128 Mallen 19395 Maller 25512 Mallers 637 @@ -65680,6 +66821,8 @@ Mallus 12331 Mally 62558 Mallys 256 Malm 97448 +Malmaison 147556 +Malmaisons 6444 Malmberg 41334 Malmbergs 64 Malmesbury 1140965 @@ -65764,6 +66907,7 @@ Mamet 86521 Mami 37510 Mamie 152006 Mamiko 571 +Mamikonyan 343 Mamiku 200 Mamil 530 Mamilian 2063 @@ -65880,6 +67024,7 @@ Mandaluyong 5963 Mandan 41615 Mandard 1356 Mandarin 514416 +Mandarinic 129 Mandarino 2763 Mandchuria 746 Mande 65702 @@ -65902,6 +67047,7 @@ Mandeville 734431 Mandevillean 937 Mandevilles 9674 Mandevillian 1988 +Mandia 1667 Mandich 3007 Mandies 551 Mandigo 1562 @@ -65939,6 +67085,7 @@ Maneval 1374 Maney 28535 Maneys 233 Manfre 1356 +Manfred 722199 Manfredo 23083 Mang'anja 7092 Mangaian 5110 @@ -66011,6 +67158,7 @@ Manichaeanism 7100 Manichaeans 70478 Manichaeism 65769 Manichaeist 291 +Manichaeistic 431 Manichaeists 129 Manichaeus 9729 Manichean 103155 @@ -66020,6 +67168,7 @@ Manichee 24636 Manichees 81281 Manicheism 35907 Manicheist 131 +Manicheistic 355 Manicheus 1255 Manics 7348 Manifold 127993 @@ -66258,6 +67407,7 @@ Manzi 28834 Manzikert 21237 Manzo 19591 Manzonian 1130 +Manzoor 12210 Manzos 139 Mao 2031486 Maohi 1085 @@ -66271,6 +67421,7 @@ Maoli 3203 Maolin 1020 Maomet 335 Maoming 4285 +Maona 3436 Maonan 489 Maoping 407 Maor 13120 @@ -66329,12 +67480,14 @@ Marah 73463 Maraj 8206 Marak 6742 Maraks 210 +Marampa 13180 Maran 53787 Maranan 570 Maranao 4504 Maranda 6949 Marandellas 14000 Maranello 10530 +Marangoni 36913 Maraniss 3133 Marano 19034 Maranon 39343 @@ -66353,6 +67506,7 @@ Marathas 150432 Marathi 162185 Marathon 647970 Marau 9264 +Marave 1254 Maravi 14686 Maravilla 7509 Maravillas 5190 @@ -66366,6 +67520,7 @@ Marberry 1127 Marble 1123708 Marbles 228292 Marblette 459 +Marbs 640 Marburg 393325 Marburger 13582 Marburgers 519 @@ -66471,6 +67626,7 @@ Mardigian 892 Mardon 61857 Mardones 4247 Marduk 167272 +Mardy 30027 Mardyke 28405 Marechal 237254 Maredia 675 @@ -66493,6 +67649,7 @@ Marett 64676 Maretts 153 Marez 4162 Marfa 51553 +Marfleet 22040 Margaery 3724 Margam 144802 Margaret 15646403 @@ -66507,6 +67664,7 @@ Margashirsha 185 Margate 818606 Margaux 66318 Marge 184547 +Margerison 28885 Margerum 8841 Margery 1151923 Margeson 7607 @@ -66594,6 +67752,7 @@ Marinelli 38407 Marinellis 229 Marinello 8293 Mariner 748050 +Marinero 4483 Mariners 348982 Marines 1488090 Marinescu 9778 @@ -66930,6 +68089,7 @@ Martha 3697502 Marthaler 4911 Martham 25406 Marthas 9935 +Marthe 160106 Marths 277 Martian 362243 Martianism 409 @@ -67123,6 +68283,7 @@ Mashburn 2652 Mashes 5543 Mashhad 57836 Mashhadi 2667 +Mashiah 6037 Mashiter 10061 Mashiters 259 Mashona 55109 @@ -67154,6 +68315,7 @@ Maslin 37676 Maslovian 986 Maslow 282710 Maslowian 754 +Maslows 232 Maslowski 4396 Masmuda 2307 Mason 5484904 @@ -67214,6 +68376,7 @@ Massie 168452 Massies 1776 Massiliote 1871 Massiliotes 1493 +Massillon 62251 Massimino 2713 Massingale 1253 Massingbird 14137 @@ -67357,12 +68520,14 @@ Matie 95621 Maties 57124 Matilda 1946784 Matildas 11354 +Matildine 1245 Matin 122237 Matins 165464 Matissean 1002 Matkin 8273 Matkins 841 Matlack 6014 +Matlatzinca 485 Matley 28644 Matlin 8763 Matlins 188 @@ -67396,6 +68561,7 @@ Matsuba 2627 Matsubara 27851 Matsuda 86460 Matsudaira 28978 +Matsudo 4176 Matsue 12631 Matsui 67680 Matsukawa 6964 @@ -67553,6 +68719,7 @@ Mauricie 907 Mauriello 3863 Maurin 30187 Maurins 217 +Maurissa 277 Maurist 6851 Maurists 7827 Mauritania 617965 @@ -67587,7 +68754,6 @@ Mavrud 1545 Mavs 801 Maw 294354 Mawa 4229 -Mawan 1655 Mawcarse 1217 Mawddach 30740 Mawddwy 23957 @@ -67692,6 +68858,7 @@ Mayhews 4279 Mayhorn 699 Mayhue 716 Mayhugh 785 +Mayim 1685 Maykop 2700 Mayland 17561 Maylander 201 @@ -67822,6 +68989,7 @@ Mazzone 6260 Mazzoni 36318 Mazzonis 1203 Mazzotta 7944 +Mazzu 585 Mazzuca 1992 Mazzucco 4065 Mb 1174531 @@ -67846,6 +69014,7 @@ Mbunga 984 Mbuti 16848 Mbyte 20766 Mbytes 18959 +Mc 844096 McAbee 1653 McAdam 170084 McAdams 66321 @@ -68015,6 +69184,7 @@ McClancy 577 McClane 13740 McClaran 1041 McClard 365 +McClare 1515 McClaren 15780 McClarens 145 McClarty 1799 @@ -68097,7 +69267,10 @@ McCorkle 17809 McCormac 11147 McCormack 262350 McCormacks 1103 +McCormic 1122 McCormick 455648 +McCorquodale 82973 +McCorquodales 508 McCorry 3426 McCort 1610 McCorvey 1708 @@ -68122,6 +69295,7 @@ McCraney 1321 McCranie 914 McCrary 10216 McCraw 15262 +McCray 20350 McCrea 86674 McCreadie 15377 McCready 44461 @@ -68134,6 +69308,7 @@ McCright 3225 McCrillis 796 McCrimmon 10914 McCrimmons 921 +McCrindle 74709 McCrory 22245 McCrum 23357 McCrystal 6155 @@ -68315,6 +69490,7 @@ McGaw 21589 McGawley 899 McGeachie 2313 McGeachin 1457 +McGeachy 9866 McGeady 2985 McGeary 7301 McGee 278061 @@ -68366,6 +69542,7 @@ McGonagalls 96 McGonagle 13300 McGonagles 219 McGoogan 2650 +McGoohan 15255 McGough 31714 McGourty 1853 McGovern 240501 @@ -68583,6 +69760,7 @@ McLouth 2722 McLucas 4493 McLuckie 6231 McLuhan 256645 +McLuhanesque 1589 McLuhanian 229 McLuhanism 1959 McLuhanite 1569 @@ -68719,6 +69897,8 @@ McPake 6098 McParland 10776 McPartland 20341 McPeak 4251 +McPeake 5618 +McPeakes 465 McPeek 6676 McPeters 775 McPhail 72960 @@ -68861,6 +70041,7 @@ Meade 651517 Meader 15020 Meaders 1136 Meades 18394 +Meadian 4909 Meador 13167 Meadors 1308 Meadow 996214 @@ -68918,6 +70099,7 @@ Meccas 3345 Mech 1030408 Mecham 20248 Mechanic 350762 +Mechanicville 1337 Meche 8257 Mecheir 4270 Mechelen 39304 @@ -68946,6 +70128,7 @@ Medak 10709 Medan 73746 Medawar 84937 Medbourne 14915 +Medburn 8588 Medcalf 36243 Medcalfs 301 Medcroft 341 @@ -69019,6 +70202,7 @@ Mednick 24637 Medog 377 Medora 63134 Medrano 26939 +Medrash 2670 Medraut 6381 Medsker 2123 Medstead 7354 @@ -69142,6 +70326,7 @@ Mehring 39650 Mehringer 2887 Mehrotra 31234 Mehs 602 +Mehsana 4401 Mehta 276688 Mehtas 887 Mehujael 3399 @@ -69181,6 +70366,7 @@ Meir 353115 Meiring 12262 Meiringen 17669 Meirings 599 +Meirowsky 2891 Meirs 1965 Meis 13253 Meisel 53600 @@ -69409,6 +70595,7 @@ Melusina 25772 Melusine 48856 Melverley 6169 Melverton 391 +Melvill 228847 Melville 2550327 Melvillean 1445 Melvilles 15757 @@ -69444,7 +70631,6 @@ Menangkabau 10287 Menangkabaus 701 Menangle 1753 Menapii 17064 -Menard 113391 Menards 467 Mencer 397 Menchaca 4194 @@ -69492,6 +70678,7 @@ Mendips 95697 Mendivil 1653 Mendizabal 34359 Mendizabals 189 +Mendler 3588 Mendocino 38742 Mendola 8963 Mendon 9392 @@ -69572,6 +70759,7 @@ Menorcans 789 Menors 237 Menos 5165 Menrva 1195 +Mens 262291 Mensa 61242 Mensah 66205 Mensan 233 @@ -69585,6 +70773,7 @@ Menshevist 1842 Menshevists 1406 Mensing 9551 Mensk 488 +Menson 4392 Menston 42592 Mensun 2695 Mentalese 9221 @@ -69733,6 +70922,7 @@ Merlin 1398548 Merlinesque 369 Merlinian 338 Merlino 13041 +Merlins 33238 Merlion 3855 Merlo 30096 Merlos 703 @@ -69784,6 +70974,7 @@ Merrymans 398 Merryweather 114802 Merryweathers 2821 Mersch 15242 +Mersea 56116 Mersereau 3614 Mersey 1677476 Merseybeat 5743 @@ -69959,6 +71150,7 @@ Metcalfe 808681 Metcalfes 5287 Metcalfs 2962 Meteyard 28007 +Metge 13748 Metheny 14239 Metheringham 11336 Methil 65520 @@ -69977,6 +71169,7 @@ Methuen 2045184 Methusael 3215 Methuselah 135444 Methuselahs 3762 +Methuselan 212 Methven 157247 Methvin 2909 Methwold 43058 @@ -70017,6 +71210,8 @@ Meunier 139432 Meuniers 1765 Meurer 18602 Meurers 1918 +Meursault 54736 +Meursaults 653 Meus 9866 Meusburger 1127 Meuse 616531 @@ -70040,6 +71235,8 @@ Mexicanas 5080 Mexicanes 168 Mexicanism 433 Mexicanisms 101 +Mexicanist 391 +Mexicanists 216 Mexicanization 1840 Mexicanize 343 Mexicanized 1319 @@ -70083,6 +71280,7 @@ Mezzrow 12912 Mfecane 8457 Mfengu 10364 Mhairi 19587 +Mhow 69479 Mi'ilya 375 Mi'kmaq 12939 MiB 3127 @@ -70107,6 +71305,7 @@ Miaphysitism 463 Miaplacidus 125 Mias 19487 Mib 2284 +Mica 303523 Micah 546416 Micahs 308 Micale 7193 @@ -70125,6 +71324,7 @@ Miceli 21405 Mich 187395 Michael 26063182 Michaela 77256 +Michaelchurch 5215 Michaelhouse 23983 Michaelite 161 Michaelites 281 @@ -70412,6 +71612,7 @@ Mildred 812217 Mildura 28729 Mile 1624903 Mileff 1093 +Mileham 32382 Mileikowsky 738 Miler 15212 Milers 1214 @@ -70615,8 +71816,11 @@ MinGW 613 Mina 651493 Minaean 9483 Minagawa 5938 +Minah 11365 Minahan 10195 Minahasa 7171 +Minahasan 575 +Minahasans 747 Minahassa 9353 Minaic 433 Minako 4901 @@ -70677,6 +71881,7 @@ Minerva 1475175 Minerval 3278 Minervals 576 Minervan 1766 +Minervas 8139 Minervini 6641 Minety 14434 Minfeng 468 @@ -70755,7 +71960,9 @@ Minnich 11610 Minnick 5451 Minnie 597036 Minnies 6136 +Minnis 40672 Minniti 7847 +Minns 76555 Minny 50610 Minoan 625637 Minoans 51893 @@ -70974,6 +72181,7 @@ Missus 110287 Missuses 1048 Missy 198644 Mistassini 7590 +Mistelbach 1326 Mister 718493 Misters 9252 Misterton 46232 @@ -70988,6 +72196,8 @@ Misty 148909 Misuraca 911 Misurata 20857 Mitanni 49812 +Mitannian 15233 +Mitannians 2905 Mitch 530725 Mitcham 381262 Mitchams 169 @@ -71071,6 +72281,7 @@ Mixolydian 16608 Mixon 15782 Mixquiahuala 695 Mixson 1807 +Mixtard 1792 Mixtec 25859 Mixtecan 963 Mixtecs 6087 @@ -71137,6 +72348,7 @@ Mkn 1386 Mkrtchyan 1470 Mkuu 4940 Mkwaya 1071 +Mlabri 3560 Mladen 16829 Mljet 5296 Mlk 1356 @@ -71161,6 +72373,7 @@ MoD 300684 MoDs 538 MoE 25968 MoF 31180 +MoG 3121 MoJ 15002 MoM 23417 MoMA 52846 @@ -71182,6 +72395,7 @@ Moammed 135 Moana 28384 Moat 224955 Moats 15855 +Moazagotl 167 Mob 248547 Mobberley 40826 Mobbs 43219 @@ -71193,8 +72407,10 @@ Mobil 393167 Mobile 1677429 Mobilian 7747 Mobilians 677 +Mobius 68222 Mobley 36485 Mobot 945 +Mobus 2189 Mobutism 885 Mobutist 824 Mobutists 357 @@ -71213,8 +72429,10 @@ Mock 332148 Mockler 29236 Mocks 20249 Mocksville 477 +Mocoa 5227 Moctezuma 43148 Modane 26902 +Modbury 47156 Modekngei 263 Modena 767521 Modenese 41695 @@ -71222,6 +72440,7 @@ Moder 136043 Moderne 246555 Moders 2604 Modesitt 808 +Modestino 1116 Modesto 39736 Modglin 257 Modi 112227 @@ -71252,6 +72471,7 @@ Moeller 112624 Moellers 733 Moen 51119 Moenkopi 2275 +Moeran 38957 Moerk 5077 Moerke 688 Moerman 18110 @@ -71313,6 +72533,7 @@ Mogridge 25197 Moguel 1867 Mogul 747754 Moguls 173707 +Mogum 126 Mohabir 907 Mohaka 2627 Mohall 143 @@ -71630,6 +72851,7 @@ Moneys 219806 Monfalcone 21646 Monflanquin 1169 Mong 88490 +Mongan 22980 Monge 120045 Mongeau 3288 Mongelli 2975 @@ -71701,6 +72923,7 @@ Monnow 30955 Monns 657 Mono 1231537 Monoceros 16697 +Monolith 21218 Monom 914 Monon 6073 Monona 3861 @@ -71739,6 +72962,7 @@ Monsalves 260 Monsanto 317274 Monsantos 229 Monsarrat 27169 +Monschau 4174 Monseigneur 342906 Monseigneurs 718 Monsen 20094 @@ -71766,6 +72990,8 @@ Montagu 2589862 Montague 2069954 Montagues 51092 Montaigne 1047874 +Montaignean 1007 +Montaignesque 903 Montaignian 1507 Montalban 39434 Montalbano 64101 @@ -71871,6 +73097,8 @@ Montford 99226 Montfords 742 Montfort 829677 Montfortian 4818 +Montgomerie 259318 +Montgomeries 14507 Montgomery 3331929 Montgomeryshire 367988 Monticello 71509 @@ -71908,6 +73136,7 @@ Montseny 8490 Montserrat 505121 Montserratian 3089 Montserratians 4825 +Montt 81821 Montu 9717 Montufar 3839 Montuori 5205 @@ -72045,6 +73274,7 @@ Moravian 488466 Moravianism 7173 Moravians 228353 Moravid 166 +Morawa 5641 Morawski 22708 Moray 1532767 Morayshire 126802 @@ -72125,6 +73355,7 @@ Morettos 181 Moretz 2705 Morey 113966 Moreys 2861 +Morez 5438 Morfin 5873 Morford 13470 Morfydd 14326 @@ -72280,6 +73511,7 @@ Morrilton 1380 Morrin 21770 Morrinsville 1623 Morris 9302058 +Morrisburg 2177 Morrisean 126 Morrises 16382 Morrisette 3457 @@ -72370,6 +73602,7 @@ Mosher 80459 Moshers 335 Moshfegh 620 Moshi 95333 +Moshiach 2185 Moshier 2249 Mosier 18673 Moskal 4017 @@ -72397,6 +73630,7 @@ Mosleyite 4542 Mosleyites 3768 Mosman 30806 Mosmans 601 +Mosney 1719 Mosotho 3457 Mosqueda 1722 Mosquera 25319 @@ -72450,6 +73684,8 @@ Motens 244 Motes 58441 Moteuczoma 1257 Mother 11592428 +Mothers 1079210 +Mothersbaugh 2305 Mothershead 801 Mothershed 930 Motherwell 443365 @@ -72619,6 +73855,7 @@ Moylan 51580 Moyle 305882 Moyles 31589 Moynahan 14825 +Moyne 148564 Moynihan 226063 Moynihans 523 Moys 19092 @@ -72661,6 +73898,7 @@ Mpondo 10685 Mpongwe 15931 Mpoto 551 Mpumalanga 20432 +Mrabri 958 Mraz 9824 Mrazek 13902 Mriganka 724 @@ -72712,6 +73950,7 @@ Muckers 1554 Mucking 55313 Muckle 72418 Muckles 487 +Muckleshoot 398 Muckley 11821 Mucklow 29937 Mucks 1552 @@ -72812,6 +74051,7 @@ Mujica 13114 Mukachevo 1746 Mukdahan 2438 Mukden 172170 +Muker 11830 Mukha 5454 Mukhabarat 7681 Mukherjee 149504 @@ -72821,6 +74061,7 @@ Mukhtars 3900 Mukono 6331 Muktsar 1299 Mukuzani 411 +Mukwa 1115 Mul 71449 Mulam 873 Mulan 14067 @@ -72901,6 +74142,7 @@ Mullinix 3267 Mullins 322550 Mullion 57503 Mulloy 18613 +Mulnix 217 Mulqueen 4075 Mulroney 40907 Mulrooney 13260 @@ -73137,6 +74379,7 @@ Muroc 5834 Muros 12366 Murph 30738 Murphey 27211 +Murphies 1137 Murphree 17818 Murphy 3377695 Murphys 18427 @@ -73146,6 +74389,8 @@ Murrah 16616 Murran 1036 Murray 11042817 Murrayfield 44183 +Murrayian 106 +Murrayians 327 Murree 58327 Murrell 145345 Murrey 49354 @@ -73427,6 +74672,7 @@ Mylod 463 Myloi 993 Mylor 24009 Mylrea 9132 +Mymensingh 29193 Mynatt 4501 Myndtown 1274 Mynott 7934 @@ -73465,9 +74711,13 @@ Mytilini 3775 Myton 42902 Myung 35950 Myvyrian 18971 +Mzabite 524 +Mzabites 815 Mzansi 585 +Mzuzu 10477 N'Djamena 31929 N'ko 538 +NAA 125873 NAACP 131930 NAAFI 39431 NAAFIs 299 @@ -73526,6 +74776,7 @@ NAS 212271 NASAMS 664 NASBA 3639 NASCAR 27922 +NASD 22342 NASDAQ 73513 NASH 139192 NASM 3957 @@ -73572,6 +74823,7 @@ NCBI 21394 NCCA 4804 NCCAM 3276 NCCDPHP 78 +NCCJ 1747 NCD 35486 NCDs 22879 NCERT 6194 @@ -73586,6 +74838,7 @@ NCIS 37021 NCIT 864 NCJW 760 NCLB 19349 +NCLC 13392 NCLT 457 NCM 25019 NCOIC 850 @@ -73680,7 +74933,6 @@ NFL 104790 NFP 42831 NFPA 30420 NFPs 7159 -NFR 13416 NFS 53584 NFT 52252 NFTs 7368 @@ -73700,6 +74952,7 @@ NGP 6360 NGRI 4623 NGSO 843 NGST 1261 +NGU 13197 NGs 8111 NH 1139945 NHAR 331 @@ -73735,6 +74988,7 @@ NIEHS 5122 NIEs 55958 NIGMS 1804 NIHL 7101 +NII 33642 NIL 90452 NIMA 6792 NIMBY 27819 @@ -73783,6 +75037,7 @@ NLM 48809 NLP 165394 NLPC 556 NLPG 1084 +NLPHL 1961 NLQ 2207 NLR 44753 NLRB 36014 @@ -73812,7 +75067,6 @@ NNRTIs 4721 NNT 35661 NNTP 2714 NNW 122303 -NNZ 664 NOA 18476 NOAC 2093 NOAD 7094 @@ -73876,10 +75130,8 @@ NPK 59606 NPL 177824 NPN 75615 NPNs 625 -NPO 50831 NPOESS 729 NPOV 574 -NPOs 28113 NPP 115914 NPPV 2432 NPQH 7866 @@ -73903,9 +75155,12 @@ NR 569740 NRA 280504 NRAB 635 NRAO 4621 +NRB 12864 NRC 224633 NRCA 891 NRCC 8771 +NRCs 2571 +NRDC 78275 NREL 11484 NREM 55389 NRF 35230 @@ -73953,11 +75208,13 @@ NSO 26223 NSOs 5580 NSPC 752 NSPCC 117194 +NSPF 529 NSQ 1625 NSR 32255 NSS 94736 NSSC 4113 NSSE 3742 +NSSI 6496 NSSL 1590 NSTEMI 20227 NSWR 3360 @@ -74002,6 +75259,7 @@ NV 621815 NVA 66320 NVC 26922 NVD 4530 +NVDA 4238 NVDs 275 NVE 9737 NVEs 541 @@ -74022,6 +75280,7 @@ NWA 21580 NWAV 1383 NWFZ 10112 NWFZs 2886 +NWG 2323 NWIP 215 NWMP 934 NWOBHM 2433 @@ -74032,8 +75291,10 @@ NXT 5935 NY 4787403 NYA 10071 NYCTA 1007 +NYD 1195 NYI 1231 NYLON 37882 +NYP 8867 NYPD 63534 NYR 4672 NYSE 116749 @@ -74042,6 +75303,7 @@ NYX 816 NYY 409 NZMC 410 NZSL 564 +NZST 254 NZT 485 Na 3065329 NaCl 1067105 @@ -74161,6 +75423,7 @@ Nagasaki 519304 Nagasawa 23048 Nagata 64508 Nagavali 187 +Nagda 7242 Nagelian 1656 Nagi 17324 Nagios 7357 @@ -74258,6 +75521,7 @@ Nakai 40706 Nakais 129 Nakajima 100705 Nakama 2727 +Nakamaru 1499 Nakamine 203 Nakamori 4158 Nakamoto 23079 @@ -74313,6 +75577,7 @@ Namaka 1239 Namaland 5157 Namaqua 43133 Namaqualand 105520 +Namatjira 6444 Nambiar 10019 Nambikwara 6958 Nambissan 757 @@ -74349,6 +75614,8 @@ Nanabush 1208 Nanai 5785 Nanaimo 51877 Nanako 2210 +Nanakpanthi 288 +Nanakpanthis 391 Nanami 507 Nanase 125 Nancagua 239 @@ -74409,6 +75676,7 @@ Nansemonds 283 Nansen 314533 Nansha 6808 Nanshan 11708 +Nanshi 1238 Nansi 4323 Nanson 27582 Nanstallon 2174 @@ -74544,6 +75812,7 @@ Narducci 6971 Narendra 40374 Narew 26455 Nargis 16926 +Narin 23107 Narine 7867 Narita 38350 Narka 618 @@ -74593,6 +75862,7 @@ Naser 29038 Nases 107 Nash 2524141 Nashean 269 +Nashes 10739 Nashi 10946 Nashian 201 Nashik 2469 @@ -74615,6 +75885,7 @@ Naskapi 6843 Naskh 4636 Naskhi 7590 Naslund 4527 +Nasmyth 257107 Naso 76648 Nason 49429 Nasons 249 @@ -74714,6 +75985,7 @@ Nature 25658234 Natzke 993 Nau 118342 Naucratis 58049 +Nauen 20923 Nauert 3893 Naufal 3616 Naugahyde 3490 @@ -74800,6 +76072,7 @@ Navratri 1923 Navrot 357 Navroz 2948 Navruz 467 +Nawalapitiya 4057 Nawanshahr 531 Nawar 11033 Nawars 169 @@ -74864,6 +76137,7 @@ Nazaryan 463 Nazca 52266 Nazcan 279 Nazcans 235 +Nazeing 18476 Nazerini 221 Nazgul 2694 Nazi 4539847 @@ -74963,10 +76237,12 @@ Necessarians 3428 Necessarium 6741 Necessary 532404 Necessarys 1397 +Necessitas 10555 Nechaev 26181 Nechako 2626 Nechayev 13142 Neche 1348 +Nechells 42157 Nechepurenko 147 Nechtan 17643 Neckar 167920 @@ -75014,6 +76290,7 @@ Neers 591 Nees 124128 Neesam 983 Neese 4939 +Neether 272 Nefasit 491 Nefertem 1816 Nefertiti 67683 @@ -75149,6 +76426,7 @@ Nemaha 2428 Neman 9470 Nemaska 125 Nemat 8697 +Nemausa 757 Nemausus 18283 Nembhard 5248 Nemean 94390 @@ -75241,6 +76519,7 @@ Neptunists 10084 Nera 49101 Nerad 2085 Nerbudda 126858 +Nercwys 1160 Nereid 53082 Neretva 12996 Nergal 46882 @@ -75255,9 +76534,11 @@ Nernst 283791 Nernstian 7299 Nero 2425482 Neron 17722 +Neroni 24094 Neronian 75642 Nerons 152 Neros 18169 +Nerquis 5844 Nersesyan 579 Nersisyan 516 Nertz 153 @@ -75307,6 +76588,7 @@ Netanyahu 123525 Netflix 60030 Neth 66156 Netherbury 18288 +Netherby 75371 Nethercleuch 133 Nethercote 12874 Nethercotes 524 @@ -75340,6 +76622,7 @@ Netter 48329 Netters 1067 Netterville 23788 Nettervilles 369 +Nettesheim 14310 Nettie 143234 Nettlecombe 29307 Nettles 73978 @@ -75417,6 +76700,7 @@ Neveu 42246 Neveus 403 Nevi'im 2620 Nevil 272872 +Nevile 171546 Nevill 575527 Neville 2561844 Nevills 15737 @@ -75436,6 +76720,7 @@ Newall 295991 Newar 27922 Newari 12619 Newark 1482733 +Newarthill 11416 Newaygo 1017 Newband 705 Newbauer 447 @@ -75606,6 +76891,7 @@ Ngarinyin 1154 Ngarluma 432 Ngarrindjeri 4523 Ngaruawahia 5766 +Ngauranga 580 Ngawa 671 Ngawi 1088 Ngawun 599 @@ -75786,6 +77072,7 @@ Nidas 419 Nidavellir 620 Niday 819 Nidd 56091 +Nidderdale 54893 Niddrie 39811 Nide 1302 Nidhogg 3329 @@ -75805,12 +77092,14 @@ Niece 145961 Nieces 22940 Nied 7564 Nieder 31776 +Niederer 7328 Niederhauser 3093 Niederkorn 1635 Niederlahnstein 1402 Niedermeyer 13254 Nieders 489 Niedzwiecki 2467 +Nieheim 1089 Niehoff 9055 Niekamp 851 Niel 172899 @@ -76003,6 +77292,7 @@ Ningpo 165158 Ningqiang 147 Nings 1250 Ningshan 225 +Ningwood 2590 Ningwu 334 Ningxia 35380 Ninh 32863 @@ -76068,6 +77358,7 @@ Nish 125838 Nishada 3893 Nishadas 2423 Nishapur 44931 +Nishga 1031 Nishi 87807 Nishida 85574 Nishikawa 39568 @@ -76091,6 +77382,7 @@ Nisquallies 225 Nisqually 8034 Nissan 387124 Nisse 8674 +Nissen 185329 Nissley 2641 Nist 4636 Nistler 405 @@ -76152,6 +77444,8 @@ Njoku 12813 Njoroge 20525 Njuguna 5079 Nkana 24611 +Nkawkaw 2115 +Nko 2553 Nkore 10066 Nkrumaism 2670 Nkrumaist 1863 @@ -76202,6 +77496,7 @@ Nobes 22389 Nobiin 763 Nobile 52454 Nobiles 10312 +Nobilo 1894 Noble 4483227 Nobles 406404 Noblesville 1633 @@ -76262,6 +77557,8 @@ Noh 98662 Noha 4198 Noho 2292 Nohs 148 +Noid 2247 +Nokes 99656 Nokia 188013 Nokian 697 Nokias 564 @@ -76390,7 +77687,6 @@ Norette 691 Norfleet 3385 Norfolcian 752 Norfolcians 94 -Norfolk 9774202 Norfolkian 595 Norfolkians 113 Norfolks 27836 @@ -76537,6 +77833,7 @@ Northmore 37644 Northmores 951 Northolt 118586 Northorpe 10747 +Northport 12731 Northridge 33909 Northron 243 Northrop 221920 @@ -76596,12 +77893,14 @@ Nostradamus 108200 Nostradamuses 165 Nostratic 7399 Nostraticists 322 +Not 65612237 Notah 266 Notaro 4052 Notaros 135 Note 21868372 Noteboom 2113 Notestine 821 +Notis 56970 Notkerian 714 Noto 64696 Notos 9350 @@ -76698,6 +77997,7 @@ Nowakowski 16008 Nowata 1044 Nowell 373497 Nowells 2401 +Nower 5795 Nowheresville 1851 Nowhereville 237 Nowicki 27588 @@ -76723,6 +78023,8 @@ Noys 8349 Nozickian 3321 Nozomi 4372 Nri 16445 +Nsawam 7854 +Nsuta 6969 Nu 415155 Nuala 69318 Nuba 112041 @@ -76849,12 +78151,15 @@ Nuttings 555 Nutton 20930 Nutts 15476 Nuuk 14255 +Nuwa 2687 Nuwaubian 180 Nuwere 155 Nuyorican 6177 Nuyoricans 695 Nuzhen 399 +Nuzi 21145 Nuzian 214 +Nuzu 3216 Nuzum 1905 Nuzzi 2679 Nuzzo 7392 @@ -77035,7 +78340,9 @@ OAK 189078 OAL 33826 OAMC 343 OAS 301531 +OASI 3800 OASIS 35969 +OAU 646950 OAV 7297 OAVs 325 OAX 5120 @@ -77139,6 +78446,7 @@ OGTTs 640 OH 3084348 OHA 18716 OHC 16462 +OHCHR 37172 OHCs 7446 OHIM 37462 OHIP 1437 @@ -77151,6 +78459,7 @@ OICs 1278 OID 15159 OIF 16920 OIG 7721 +OIL 1455314 OIML 4531 OISE 15497 OJR 5571 @@ -77267,6 +78576,7 @@ ORAS 1153 ORBs 2910 ORCID 1361 ORCs 1461 +ORD 421416 ORE 244057 ORIF 7565 ORL 31579 @@ -77274,7 +78584,6 @@ ORM 22615 ORMs 1477 ORNL 32560 ORR 118401 -ORS 68967 ORSA 8197 ORT 54200 ORTs 655 @@ -77316,6 +78625,7 @@ OTB 10283 OTC 301364 OTE 38646 OTEC 24282 +OTEs 568 OTF 14942 OTG 5248 OTH 48915 @@ -77349,6 +78659,7 @@ OVS 14508 OVV 2204 OVs 762 OWA 10872 +OWF 2142 OWI 38720 OWIN 789 OWO 3450 @@ -77370,6 +78681,7 @@ Oakeshott 213460 Oakeshottian 2304 Oakey 53076 Oakeys 479 +Oakford 13066 Oakham 203501 Oakhill 37430 Oakhurst 32117 @@ -77474,6 +78786,7 @@ Observantists 841 Observants 32328 Obst 122613 Obsts 159 +Obuasi 22292 Obuchi 14691 Obwalden 5960 Oc 142674 @@ -77568,6 +78881,7 @@ Odawa 2302 Odawara 13749 Oday 1792 Odays 330 +Odd 688361 Oddfellow 5063 Oddfellows 105382 Oddie 60420 @@ -77641,6 +78955,7 @@ Ofala 633 Ofcom 209950 Ofer 36816 Offaly 66011 +Offchurch 9054 Offenbachian 2204 Offenburg 19013 Offer 803760 @@ -77663,6 +78978,7 @@ Ofwat 42780 Og 239267 Oga 10849 Ogaden 87201 +Ogalala 595 Ogallala 9259 Oganessian 1222 Ogas 1010 @@ -77675,6 +78991,7 @@ Ogborn 17850 Ogburn 24728 Ogden 685160 Ogdoad 14493 +Oge 59309 Ogema 231 Ogg 106376 Ogham 74044 @@ -77719,6 +79036,8 @@ Ohashi 31576 Ohau 4963 Ohayon 6619 Ohi 12127 +Ohian 395 +Ohians 169 Ohio 3902739 Ohioan 2566 Ohioans 2629 @@ -77741,6 +79060,7 @@ Oi'll 3256 Oi've 2339 Oiapoque 2171 Oich 29929 +Oil 12040825 Oildale 217 Oilgate 1184 Oireachtas 57257 @@ -77916,6 +79236,7 @@ Ollerton 52813 Olley 49039 Olleys 297 Ollie 305157 +Ollier 70512 Ollila 7763 Ollis 21150 Ollivier 120549 @@ -77981,6 +79302,7 @@ Omagh 163884 Omagua 6406 Omaguas 10114 Omaha 279438 +Omahan 114 Omahas 10092 Omak 2193 Oman 1472046 @@ -77996,8 +79318,10 @@ Omaris 160 Omartian 944 Omawhaw 849 Omawhaws 1333 +Ombersley 36726 Omdurman 240425 Ome 35753 +Omega 490549 Omelia 16989 Omelias 183 Omer 515790 @@ -78009,6 +79333,8 @@ Omie 1603 Omikron 2044 Omine 2355 Omlor 325 +Ommiad 3250 +Ommiads 1191 Omnipotent 207313 Omniscient 66170 Omohundro 3715 @@ -78036,10 +79362,13 @@ Oneida 105022 Oneidas 17175 Oneiroi 480 Oneonta 9384 +Oneota 2251 Ong 250241 +Ongan 1122 Ongar 189553 Onge 12977 Ongee 1357 +Ongole 13684 Onibury 6191 Onida 3631 Oniel 285 @@ -78059,6 +79388,7 @@ Onondaga 51658 Onondagan 154 Onondagas 10391 Onorato 13553 +Onore 21399 Onoway 312 Onslow 852975 Onstad 6344 @@ -78077,6 +79407,7 @@ Onyx 90158 OoT 189 Ooi 27121 Oola 10815 +Ooma 2493 Oommen 6935 Oona 91858 Oonagh 49869 @@ -78139,6 +79470,7 @@ Opp 186875 Oppedisano 749 Oppel 44792 Oppelt 3800 +Oppen 43257 Oppenheim 512163 Oppenheimer 444499 Oppy 20462 @@ -78150,6 +79482,7 @@ Opsterland 161 Optimist 36705 Optimists 39042 Optimus 50403 +Opua 2972 Opunake 1608 Opuzen 332 Oquawka 523 @@ -78234,6 +79567,7 @@ Ordzhonikidze 33842 Ore 1314710 Orebaugh 433 Orebites 547 +Oredezh 363 Oree 6497 Orefield 4871 Oregon 1607032 @@ -78379,11 +79713,13 @@ Oromocto 1694 Oromos 5960 Orontes 209848 Oropesa 38185 +Oropeza 5812 Oropom 325 Oroqen 1076 Oroquieta 911 Oros 49650 Orosi 6962 +Orosz 5495 Oroville 18797 Orozco 72527 Orozcos 127 @@ -78393,6 +79729,7 @@ Orpheus 1069949 Orphic 202067 Orphical 193 Orphically 151 +Orphics 16235 Orphism 34226 Orphist 833 Orphists 1187 @@ -78425,6 +79762,7 @@ Orta 83892 Ortas 2343 Ortega 302266 Ortenau 3620 +Ortet 655 Orthodox 2629875 Orthodoxes 897 Orthodoxy 441096 @@ -78449,6 +79787,7 @@ Ortoqids 299 Ortrud 25778 Ortsgruppenleiter 2608 Ortsgruppenleiters 207 +Orumiyeh 678 Orunmila 3526 Oruro 66689 Orvieto 192028 @@ -78537,6 +79876,7 @@ Osmanovic 310 Osmanski 503 Osmanya 215 Osment 10054 +Osmin 27025 Osmon 2975 Osmond 427122 Osmun 7103 @@ -78560,6 +79900,7 @@ Osrohene 157 Ossa 118367 Ossai 1477 Ossas 1079 +Ossau 12528 Ossenfort 131 Osseo 7306 Osset 9460 @@ -78582,9 +79923,11 @@ Ossipee 2226 Ossman 3320 Ossoff 641 Ossonoba 1128 +Ossun 5309 Ostap 9384 Ostara 7774 Ostberg 11361 +Oste 9437 Ostend 805541 Ostender 5263 Ostenders 7122 @@ -78661,6 +80004,7 @@ Otomanguean 1750 Otomi 13566 Otomian 171 Otomis 1184 +Otonabee 2373 Otrera 906 Otruba 1037 Otsego 16160 @@ -78728,11 +80072,13 @@ Oudenarde 107261 Oudet 5541 Oudh 462939 Oughtibridge 9686 +Ouigours 5948 Ouija 24806 Ouimette 1625 Ouistreham 10387 Oujda 18171 Oujiang 271 +Oulie 800 Oulipian 3128 Oulipians 659 Oulman 951 @@ -78755,6 +80101,10 @@ Ouse 711081 Ouseburn 31918 Ouseley 207331 Ouseleys 521 +Oushak 1320 +Ousset 3291 +Oustalet 10685 +Oustau 609 Ouston 30778 Outagami 175 Outagamie 829 @@ -78783,7 +80133,9 @@ OvaHerero 388 Ovada 2191 Ovaherero 4989 Ovaltine 45788 +Ovambo 44063 Ovamboland 39164 +Ovambos 12326 Ovando 43827 Ovchinnikov 14577 Ovechkin 2186 @@ -78794,6 +80146,8 @@ Over 14589334 Overbay 455 Overbey 2001 Overby 7496 +Overdale 19751 +Overend 151471 Overgaard 17393 Overground 12598 Overijssel 19923 @@ -78804,6 +80158,7 @@ Overson 1267 Overstreet 21283 Overton 585480 Overtons 3486 +Overtown 9702 Overturf 1818 Overy 148294 Overys 606 @@ -78828,6 +80183,7 @@ Owens 1021307 Owensboro 5686 Owensby 1811 Owenton 189 +Ower 47994 Owerri 50634 Owings 29420 Owingsville 305 @@ -78837,12 +80193,15 @@ Owst 17428 Owston 53170 Owyhee 10698 Ox 749747 +Oxborough 15799 Oxbow 106318 Oxbridge 207146 Oxbridgian 45 Oxenbridge 35616 Oxenbridges 1497 +Oxendale 3756 Oxendine 2038 +Oxenham 113488 Oxenholme 11713 Oxenhope 15907 Oxf 376988 @@ -78867,7 +80226,9 @@ Oxonians 46367 Oxshott 45020 Oxspring 7270 Oxted 106228 +Oxton 73466 Oxus 383796 +Oxwick 3658 Oxy 155711 OxyContin 7881 Oxyrhynchite 10223 @@ -78916,6 +80277,7 @@ Ozymandiases 85 Ozzie 51237 Ozzies 465 Ozzy 52119 +P'eng 22548 P's 1035 P'ship 803 PA 2998744 @@ -78977,8 +80339,10 @@ PAW 19102 PAYE 176701 PAYG 26083 PAYGO 2860 +PAYO 199 PAc 1797 PAs 77641 +PB 532613 PBA 63581 PBAN 2927 PBAs 3132 @@ -79021,11 +80385,13 @@ PCH 25177 PCHR 2430 PCIs 6395 PCL 159066 +PCLL 706 PCM 190454 PCMCIA 12132 PCMs 11590 PCN 42000 PCNB 5365 +PCNL 15860 PCNs 8618 PCO 56433 PCOs 8672 @@ -79042,6 +80408,7 @@ PCT 313823 PCU 18400 PCUs 2265 PCV 64876 +PCVs 2425 PCW 17753 PCX 6691 PCness 42 @@ -79101,6 +80468,7 @@ PEDOT 14314 PEDs 4348 PEEK 60145 PEEP 91754 +PEF 61469 PEFC 12603 PEFCs 1067 PEGI 2473 @@ -79124,6 +80492,7 @@ PERRLA 551 PES 200057 PESC 24238 PETA 23307 +PETG 1044 PETM 3737 PEV 8335 PEVs 1410 @@ -79137,6 +80506,7 @@ PFAS 1373 PFAs 1503 PFC 129501 PFCA 299 +PFCE 514 PFCs 11747 PFD 25198 PFDs 2930 @@ -79191,11 +80561,13 @@ PHE 50275 PHEIC 1429 PHEV 5767 PHEVs 4414 +PHEs 612 PHI 79955 PHN 12325 PHON 5941 PHOs 1406 PHP 113377 +PHRA 2911 PHS 54920 PHU 2870 PHUs 999 @@ -79219,6 +80591,7 @@ PID 210901 PIDs 5459 PIE 128650 PIEs 2697 +PIF 29140 PIG 179766 PIGS 84774 PIGs 6537 @@ -79227,7 +80600,9 @@ PIIGS 3413 PIIS 617 PILON 4059 PILs 3057 +PIMO 792 PIMS 27059 +PINS 34904 PINs 16619 PIO 28541 PIOs 2091 @@ -79257,6 +80632,7 @@ PIVs 969 PIs 57925 PJ 489030 PJA 5411 +PJO 640 PJs 11440 PK 310828 PKA 52208 @@ -79266,13 +80642,14 @@ PKDL 1110 PKI 76959 PKK 137622 PKKP 502 +PKP 21543 PKR 11402 PKU 45844 PKs 4348 PL 1487653 PLA 436783 +PLAAF 5316 PLAF 3387 -PLAN 734430 PLAs 7381 PLBs 5099 PLCC 5029 @@ -79304,10 +80681,12 @@ PMA 112437 PMB 76249 PMBs 1857 PMC 102569 +PMDs 1788 PMH 14419 PMHx 712 PMI 61873 PMID 80344 +PMIS 1919 PML 81711 PMMU 713 PMN 79646 @@ -79373,6 +80752,7 @@ POPs 30440 POR 71890 PORT 728731 PORs 443 +POSB 4825 POSITA 317 POSIX 10766 POSSLQ 199 @@ -79393,6 +80773,7 @@ PPB 28469 PPBs 3304 PPC 109939 PPCs 9203 +PPDs 1734 PPE 107014 PPEs 1461 PPG 96444 @@ -79402,6 +80783,7 @@ PPHs 227 PPL 77277 PPLs 1226 PPM 77587 +PPMD 603 PPMs 15648 PPN 21439 PPNB 21121 @@ -79414,6 +80796,8 @@ PPT 51752 PPTC 470 PPTP 3884 PPTs 1872 +PPU 24146 +PPUs 1191 PPV 53003 PPW 4514 PPY 4356 @@ -79455,6 +80839,8 @@ PRRs 10170 PRS 126411 PRT 99733 PRTs 11902 +PRU 31533 +PRUs 8612 PRs 30950 PS 1260933 PSA 484266 @@ -79465,6 +80851,7 @@ PSAT 3605 PSATs 443 PSAs 26952 PSB 75173 +PSBs 15255 PSC 186687 PSD 183439 PSDP 839 @@ -79505,6 +80892,7 @@ PT 1050626 PTA 232796 PTAL 462 PTAs 65120 +PTBD 1163 PTBT 5335 PTC 101927 PTCA 44115 @@ -79518,6 +80906,7 @@ PTHs 465 PTI 32983 PTIs 1220 PTM 19973 +PTMs 7236 PTO 64738 PTOL 516 PTOs 10379 @@ -79550,6 +80939,7 @@ PVC 854667 PVCs 18214 PVCu 2934 PVD 54312 +PVFS 1974 PVM 19325 PVN 23787 PVOD 2386 @@ -79559,6 +80949,7 @@ PVRI 485 PVRs 2672 PVS 43567 PVT 39482 +PVTs 461 PVX 9480 PVs 20669 PW 306460 @@ -79574,7 +80965,6 @@ PWM 109831 PWP 12269 PWPs 1535 PWR 155365 -PWT 9850 PWs 4646 PX 69994 PXR 4792 @@ -79654,6 +81044,8 @@ Padarn 30900 Padasjoki 184 Padaung 4363 Padaungs 759 +Padawan 4404 +Padawans 517 Padborg 1199 Padden 14768 Paddies 13260 p @@ -79731,6 +81123,7 @@ Paezes 219 Paff 4864 Pafford 12691 Pag 133575 +Pagadian 639 Pagaduan 147 Pagan 1493404 Paganalia 2311 @@ -79742,6 +81135,7 @@ Paganinis 2700 Paganis 3177 Pagano 77950 Paganos 7225 +Pagay 119 Page 16672664 PageRank 13443 PageRanks 185 @@ -79771,6 +81165,7 @@ Pahls 955 Pahouin 1594 Pahrump 1167 Pahute 719 +Pahvant 521 Paia 6026 Paide 18666 Paidia 944 @@ -79780,6 +81175,7 @@ Paignton 183942 Paik 51740 Paiks 2053 Paily 2354 +Paimpol 14324 Pain 2600356 Paine 1347198 Painesville 4464 @@ -79792,6 +81188,7 @@ Painter 1618679 Painters 1249782 Paints 497812 Paintsville 398 +Paipai 645 Pair 658071 Pairs 250291 Pais 128416 @@ -79863,6 +81260,7 @@ Palafox 67778 Palafoxes 723 Palahniuk 8650 Palaic 1739 +Palaihnihan 245 Palaiologan 3795 Palakonda 195 Palamedean 134 @@ -79870,6 +81268,7 @@ Palamism 3289 Palamite 6426 Palamites 1956 Palanan 1849 +Palanpur 19620 Palapye 22651 Palare 1149 Palari 747 @@ -79884,6 +81283,7 @@ Palau 138490 Palauan 7442 Palauans 2421 Palaung 8649 +Palaungic 292 Palavaram 159 Palaveram 3865 Palawan 67077 @@ -79965,6 +81365,7 @@ Pallantes 120 Pallas 1062424 Pallavaram 1791 Pallaveram 353 +Pallavicini 74652 Pallene 32425 Pallie 1699 Pallies 364 @@ -80106,6 +81507,7 @@ Panas 15395 Panasonic 99070 Panathenaea 34134 Panathenaean 1893 +Panathenaeic 218 Panathenaic 76633 Panay 40924 Panbryde 735 @@ -80207,7 +81609,9 @@ Panicos 1073 Panikkar 42664 Panini 70991 Paninian 1844 +Panionian 1953 Panionic 867 +Panionium 5131 Panipat 34581 Panisks 315 Panislamic 1321 @@ -80269,6 +81673,7 @@ Panslavist 10829 Panslavists 5589 Panslavonian 871 Panslavonic 2977 +Pansy 199759 Pant 182075 Pantagruelism 4231 Pantagruelist 1839 @@ -80298,6 +81703,7 @@ Pantoja 20036 Pantojas 462 Panton 201082 Pantons 1069 +Pantperthog 382 Pants 78567 Pantyffynnon 1328 Panuco 33008 @@ -80458,6 +81864,8 @@ Pardees 175 Pardesi 2036 Pardesis 255 Pardew 8979 +Pardhan 4083 +Pardhans 2001 Pardi 15356 Pardiac 983 Pardies 6736 @@ -80484,6 +81892,8 @@ Parenteau 2820 Parentes 6882 Parenti 35463 Parentis 10270 +Paresi 1829 +Paressi 598 Paretian 34323 Paretsky 8792 Parfait 24198 @@ -80507,6 +81917,8 @@ Paril 1168 Parilia 8113 Parillo 1929 Parins 637 +Parintintin 689 +Parintintins 257 Paris 63154278 Parise 18867 Pariseau 1618 @@ -80548,6 +81960,7 @@ Parkham 9649 Parkhead 70815 Parkhill 44537 Parkhills 458 +Parkhouse 47687 Parkhurst 330027 Parkhursts 747 Parkie 1167 @@ -80675,6 +82088,7 @@ Parsleys 503 Parslow 39411 Parslows 539 Parson 1136380 +Parsonian 33205 Parsons 3226062 Parsonsian 1519 Partain 1826 @@ -80707,6 +82121,7 @@ Partin 10471 Partington 313347 Partingtons 2280 Partium 9505 +Partizansk 257 Partlow 8241 Partner 1105426 Parton 185149 @@ -80736,6 +82151,7 @@ Pascalians 129 Pascaline 9369 Pascall 54401 Pascals 9314 +Pascarella 6573 Pasch 101677 Pascha 87885 Paschal 405439 @@ -80848,6 +82264,7 @@ Pastukh 252 Paswan 6082 Paszkiewicz 3596 Pat 4349221 +Patagones 11179 Patagonia 462533 Patagonian 148228 Patagonians 55822 @@ -80974,6 +82391,7 @@ Pattwell 279 Patty 512818 Patung 3095 Patuxent 31129 +Patuxet 2425 Patwin 2427 Patz 11549 Patzcuaro 10270 @@ -81015,6 +82433,7 @@ Paulinized 170 Paulinizing 242 Paulino 31827 Paulinos 1672 +Paulism 778 Paulist 72065 Paulistano 1726 Paulistanos 795 @@ -81092,6 +82511,7 @@ Pawpaw 5662 Pawsey 70485 Pawson 127730 Pawtucket 21639 +Pawtuckets 213 Pax 422925 Paxford 9702 Paxi 3048 @@ -81114,6 +82534,7 @@ Paye 17015 Payen 85969 Payens 13879 Payer 81558 +Payerbach 1031 Payers 29134 Payes 3511 Payette 9225 @@ -81233,6 +82654,7 @@ Peckham 769974 Peckhamite 161 Peckhamites 119 Peckhams 4308 +Peckinpah 40847 Peckinpaugh 766 Pecksniff 248879 Pecksniffery 561 @@ -81377,6 +82799,8 @@ Pelagian 154888 Pelagianism 94873 Pelagianizing 844 Pelagians 98373 +Pelagio 6966 +Pelagios 834 Pelagius 293771 Pelargonium 134139 Pelasgi 101032 @@ -81393,6 +82817,7 @@ Pelecanos 3978 Pelechaty 131 Pelee 29346 Peleg 64010 +Peleng 1734 Peleus 243472 Pelewans 187 Pelfrey 1944 @@ -81554,10 +82979,14 @@ Penick 9075 Penicuik 97872 Penin 15120 Peninah 1742 +Peniston 42224 Penistone 149772 +Penistones 278 +Penistons 465 Penix 527 Penk 12233 Penketh 29687 +Penkhull 12422 Penki 531 Penkridge 50847 Penland 5836 @@ -81587,6 +83016,7 @@ Pennella 3694 Pennells 7913 Penner 78676 Pennerley 1793 +Pennersax 309 Penney 192069 Penneys 3239 Pennfield 831 @@ -81598,6 +83028,7 @@ Penniman 42573 Pennine 329154 Pennines 273481 Penning 91826 +Pennings 26959 Pennington 577906 Penningtons 10243 Penninic 6403 @@ -81611,6 +83042,7 @@ Pennsylvania 4467226 Pennsylvanian 139267 Pennsylvanians 19867 Penny 2326454 +Pennyburn 3069 Pennycook 40381 Pennywell 10562 Penobscot 72482 @@ -81827,6 +83259,7 @@ Perin 43370 Perinel 117 Perino 45386 Perins 723 +Perinton 387 Perioecians 489 Perioikoi 4318 Perioikos 206 @@ -81837,6 +83270,8 @@ Periscope 18683 Perisher 3254 Periton 7227 Perivale 79073 +Perizzite 7796 +Perizzites 25738 Perkey 443 Perkin 773471 Perkinism 1251 @@ -81891,6 +83326,7 @@ Peros 9439 Perot 162700 Perots 738 Perotti 37334 +Perpall 286 Perpendicular 595549 Perpignan 165792 Perranarworthal 3089 @@ -82120,6 +83556,7 @@ Petitts 106 Petka 7322 Petkov 27392 Petkovich 1349 +Petley 41105 Peto 331982 Petone 8463 Petos 1417 @@ -82137,6 +83574,7 @@ Petrarch 1162840 Petrarchan 85064 Petrarchanism 2170 Petrarchian 8153 +Petrarchianism 199 Petrarchism 15305 Petrarchisms 213 Petre 488949 @@ -82253,6 +83691,7 @@ Petunia 78764 Petuns 426 Petway 543 Petwo 485 +Petworth 331751 Petz 10397 Petzold 25569 Peucetian 1195 @@ -82261,8 +83700,10 @@ Peucetii 2109 Peugeot 291191 Peugeots 10337 Peugh 1259 +Peulla 6053 Peumo 911 Peutingerian 6866 +Pevensey 232529 Pevey 402 Pevsner 218205 Pevsners 629 @@ -82380,6 +83821,7 @@ Pharmuthi 6813 Pharo 16037 Pharos 181907 Pharr 21308 +Pharrell 5032 Pharsalia 169445 Pharsalian 8523 Pharsalus 59671 @@ -82510,6 +83952,7 @@ Philoctete 3917 Philogene 2775 Philogenes 2728 Philolexian 155 +Philomel 113049 Philomela 103174 Philomena 70127 Philonian 7217 @@ -82802,8 +84245,11 @@ Pietsch 25214 Pietschmann 6507 Piette 39311 Pietz 7253 +Pietzsch 3239 Pifer 5803 Piffard 16427 +Piffer 2119 +Piffers 1181 Pig 1553013 Pigasus 1275 Pigeon 515383 @@ -82846,6 +84292,7 @@ Pilats 538 Pilawa 391 Pilbara 32597 Pilbeam 44229 +Pilbrow 27435 Pilcher 198568 Pilchers 3053 Pile 472634 @@ -82893,6 +84340,7 @@ Pilon 39832 Pilons 176 Piloto 10391 Pilotos 1583 +Pilsbury 12568 Pilsen 80745 Pilsley 8845 Pilson 8269 @@ -82995,6 +84443,7 @@ Pingdingshan 1267 Pingel 8308 Pingelapese 403 Pinggu 682 +Pinghu 1314 Pingju 280 Pingle 11869 Pingles 579 @@ -83013,6 +84462,7 @@ Pingtan 1047 Pingtingshan 137 Pingtung 3853 Pingxi 506 +Pingxiang 2176 Pingyao 3439 Pingyu 193 Pinhead 9842 @@ -83211,6 +84661,7 @@ Pitcombe 4940 Pither 12323 Pithers 5863 Pithie 3191 +Pitino 757 Pitjantjara 575 Pitjantjatjara 8786 Pitkanen 4300 @@ -83239,6 +84690,7 @@ Pittenger 15755 Pitter 24567 Pitters 2451 Pittinger 2517 +Pittington 20896 Pittite 18019 Pittites 13587 Pittman 105602 @@ -83251,6 +84703,7 @@ Pittsburgher 913 Pittsburghers 1661 Pittsburghese 1830 Pittsfield 28693 +Pittsford 3318 Pittsley 629 Pittuck 1520 Pitz 17474 @@ -83291,6 +84744,7 @@ Placerville 8481 Places 3091164 Plachutta 503 Placilla 2919 +Plack 12164 Placke 1320 Plaice 83941 Plain 2937651 @@ -83443,6 +84897,7 @@ Plethon 23799 Plett 7461 Pletts 5972 Pletz 1065 +Pleubian 297 Pleva 997 Pleven 47218 Plevin 4850 @@ -83539,6 +84994,9 @@ Pluto 929972 Plutonian 13657 Plutonians 780 Plutonic 47946 +Plutonism 2221 +Plutonist 1540 +Plutonists 5599 Plutus 112017 Plutynski 911 Plyler 5999 @@ -83585,6 +85043,7 @@ Pococks 3822 Pocomania 2969 Poconos 3928 Podaleirios 1693 +Podany 2571 Podell 4632 Podesta 84887 Podestas 3015 @@ -83680,6 +85139,7 @@ Polanders 11583 Polangui 259 Polans 1203 Polanski 97964 +Polanskis 857 Polansky 12928 Polanyian 7727 Polari 11542 @@ -83856,6 +85316,8 @@ Pomeranians 17880 Pomerantz 34230 Pomerelia 3606 Pomerleau 7331 +Pomerol 30572 +Pomerols 2956 Pomeroy 327794 Pomeroys 5110 Pomfret 285848 @@ -83914,6 +85376,7 @@ Ponsford 50529 Ponsfords 109 Ponsonby 876169 Ponsonbys 11757 +Pontacq 351 Pontardawe 40040 Pontarddulais 1975 Pontarelli 255 @@ -83940,10 +85403,12 @@ Pontin 26527 Pontine 77266 Pontines 725 Pontllanfraith 6574 +Pontlottyn 4933 Pontnewydd 10707 Pontoise 97101 Ponton 66534 Pontons 1833 +Pontop 17721 Pontoriero 577 Pontotoc 2859 Pontresina 34426 @@ -84012,6 +85477,7 @@ Pophams 4788 Popian 3885 Popiel 7812 Popil 2100 +Popish 1323888 Popkin 78625 Popkins 11611 Poplar 959147 @@ -84086,6 +85552,7 @@ Porlock 120133 Pornocracy 716 Poropat 908 Poroshenko 4637 +Porphyrian 7957 Porphyry 473518 Porrajmos 764 Porras 42900 @@ -84150,6 +85617,7 @@ Portia 598365 Portico 142804 Portier 20904 Portilla 11163 +Portillistas 279 Portillo 166745 Portillos 695 Portishead 121474 @@ -84170,6 +85638,7 @@ Portmore 55809 Portmuthian 679 Portner 16594 Portners 350 +Portnoo 2854 Portnoy 34295 Portnoys 373 Porto 1467380 @@ -84205,6 +85674,7 @@ Portuguese 10708529 Portugueseness 695 Portugueses 28577 Portuguezes 5430 +Portuondo 2916 Portus 138077 Portwood 17876 Portz 2522 @@ -84298,6 +85768,7 @@ Pottawattamie 1775 Pottebaum 270 Potteiger 543 Potter 2776947 +Potteresque 275 Potterhill 9285 Potterian 102 Potteries 364008 @@ -84365,6 +85836,8 @@ Pouyanne 1575 Poveda 7765 Povey 126845 Povh 964 +Povindah 1157 +Povindahs 1149 Povinelli 20891 Povkh 225 Pow 148015 @@ -84384,6 +85857,7 @@ Powellism 8131 Powellist 125 Powellite 7433 Powellites 4553 +Powelltown 299 Powels 3935 Powelson 4717 Power 24865022 @@ -84447,6 +85921,7 @@ Praeger 512482 Praegers 852 Praetorian 173773 Praetorians 44856 +Pragati 4346 Prager 94667 Pragers 1583 Pragian 3094 @@ -84567,10 +86042,12 @@ Presbyterianized 400 Presbyterianizing 226 Presbyterianly 289 Presbyterians 1375521 +Presbyterism 91 Prescod 8670 Prescot 248123 Prescott 1010070 President 50676189 +Presidential 1683412 Presidents 1958884 Presland 17099 Preslar 400 @@ -84599,6 +86076,7 @@ Presta 6647 Prestage 24237 Prestatyn 64544 Prestbury 98258 +Prestea 24710 Prestedge 347 Presteigne 32295 Presthope 2334 @@ -84648,6 +86126,7 @@ Prewitt 30586 Prews 591 Preyer 50715 Preyers 1049 +Prez 25761 Preza 499 Prezas 331 Preziosi 21961 @@ -84662,6 +86141,7 @@ Pribble 2548 Pribbles 390 Pribina 748 Pribyl 4234 +Prica 7137 Price 22350956 Pricean 536 Prices 5796085 @@ -84740,6 +86220,7 @@ Prince 37898193 Princes 4056620 Princess 10507065 Princessa 9014 +Princesses 406524 Princeton 5514885 Princetonian 3205 Princetonians 1262 @@ -84823,6 +86304,8 @@ Prochaska 68076 Prochnow 7193 Prock 1653 Procks 286 +Proclian 292 +Procline 643 Proclus 363960 Procne 39826 Procop 27728 @@ -85072,6 +86555,7 @@ Pryers 297 Pryor 308627 Pryors 6421 Prys 75205 +Prysby 601 Prystay 373 Prytula 381 Przybyla 1807 @@ -85153,6 +86637,7 @@ Pueblan 483 Pueblo 292945 Puebloan 7946 Puebloans 3627 +Pueblos 47271 Puelche 2388 Puello 2657 Puente 116313 @@ -85240,6 +86725,7 @@ Pulsipher 3181 Pultusk 24988 Pultz 1803 Puluwat 1684 +Pulvermacher 15738 Puma 142194 Pumas 25244 Pumphrey 47561 @@ -85279,6 +86765,7 @@ Puno 66083 Puns 37413 Punt 185117 Punti 5526 +Puntis 3672 Puntite 727 Puntites 1553 Puntland 24227 @@ -85446,6 +86933,7 @@ Puyang 888 Puyuma 2772 Puzi 247 Puzio 240 +Pwca 628 Pwllheli 105696 Px 100158 Pyatigorsk 7873 @@ -85526,6 +87014,8 @@ Pythagorical 2475 Pythagorically 64 Pythagorics 439 Pythagorism 2687 +Pythagorist 503 +Pythagorists 883 Pythagorizing 592 Pythia 94137 Pythian 222833 @@ -85545,6 +87035,7 @@ Pythons 24690 Pyu 13814 Pyxis 9823 Q'anjob'al 842 +Q's 382 QAC 6083 QAI 1497 QAM 48495 @@ -85564,6 +87055,7 @@ QCCS 387 QCD 77679 QCU 289 QCs 25143 +QDA 12714 QDII 1725 QDR 8572 QE 69757 @@ -85585,6 +87077,7 @@ QKD 2185 QLC 1669 QLD 32703 QMC 20095 +QMG 9655 QO 22989 QOD 1745 QOQ 833 @@ -85600,6 +87093,7 @@ QR 211290 QRA 18304 QRAM 350 QRAs 540 +QRDR 231 QRF 7637 QRFs 155 QRH 960 @@ -85628,6 +87122,7 @@ QWERTYUIOP 603 QWERTZ 125 Qaanaaq 2725 Qabah 187 +Qabbala 915 Qadaffi 3940 Qadafi 36696 Qadarite 1175 @@ -85670,6 +87165,7 @@ Qarmathians 253 Qarmatian 1924 Qarmatians 4082 Qasem 7966 +Qashgai 2852 Qashqai 7306 Qasim 166044 Qataban 3587 @@ -85740,6 +87236,7 @@ Qiqihar 2810 Qira 561 Qirghiz 803 Qishan 3939 +Qitaihe 153 Qiu 76706 Qius 224 Qixi 188 @@ -85755,6 +87252,7 @@ Qor'an 1896 Qoran 14891 Qoranic 1559 Qosqo 739 +Qs 307110 Qt 109087 Qtz 2934 Qu 438794 @@ -85854,6 +87352,7 @@ Quashie 15120 Quashies 256 Quasimodo 62051 Quasimodos 335 +Quasney 315 Quast 19552 Quaternary 719541 Quatro 20792 @@ -85883,6 +87382,7 @@ Quechua 111830 Quechuan 3388 Quechuans 155 Quechuas 6055 +Quechumaran 238 Queda 19703 Quedah 21654 Quedda 511 @@ -85947,6 +87447,7 @@ Qufu 5055 Quhistan 1949 Quiambao 235 Quiberon 102725 +Quichua 60493 Quichuan 1754 Quick 1817343 Quicke 33292 @@ -86134,6 +87635,7 @@ R'n'R 344 RAA 18861 RAAF 48499 RAAN 1839 +RAAS 16161 RAC 204490 RACC 2002 RACK 39700 @@ -86167,6 +87669,7 @@ RAPCON 145 RAPIDS 12862 RAPs 3681 RAR 41019 +RARP 4803 RASC 23125 RAST 25472 RASopathies 406 @@ -86278,7 +87781,6 @@ RFJ 712 RFK 11110 RFLP 75212 RFLPs 23794 -RFNA 617 RFQ 7883 RFQs 1258 RFS 40797 @@ -86300,9 +87802,12 @@ RHD 23853 RHDV 1666 RHEL 5400 RHF 11737 +RHI 13585 RHIB 2007 RHIBs 617 RHIP 337 +RHQ 9784 +RHQs 2479 RHS 238733 RHU 2335 RHUs 1144 @@ -86432,8 +87937,6 @@ ROY 218498 RP 668178 RPA 110244 RPAs 6630 -RPC 182430 -RPCs 6089 RPE 165561 RPG 90556 RPGs 24123 @@ -86505,7 +88008,6 @@ RTCs 4268 RTD 75742 RTDs 7850 RTECS 5691 -RTF 28631 RTFM 805 RTH 58691 RTHK 6083 @@ -86521,7 +88023,6 @@ RTMs 702 RTO 22282 RTOS 8679 RTOs 5787 -RTP 69125 RTSP 3538 RTTI 1047 RTTY 2538 @@ -86553,6 +88054,7 @@ RVR 15726 RVRs 480 RVSP 1494 RVW 9455 +RVers 852 RVing 471 RVs 20826 RWA 31612 @@ -86618,6 +88120,7 @@ Rabindra 15933 Rabindranath 99844 Rabinowitz 93913 Rabins 7553 +Rabjohns 2383 Rablen 1190 Raboin 670 Rabold 1503 @@ -86656,6 +88159,7 @@ Racine 742603 Racines 7837 Racinian 10043 Racka 937 +Racket 63383 Rackham 260764 Rackhams 4252 Rackheath 8618 @@ -86683,6 +88187,7 @@ Raddall 2039 Raddatz 7445 Raddell 239 Radder 3345 +Raddock 2195 Rade 34962 Radebaugh 4021 Radebeul 3648 @@ -86710,6 +88215,8 @@ Radich 4300 Radigan 1161 Radilla 695 Radillo 271 +Radimichi 435 +Radimichians 745 Radimir 271 Radin 68778 Radins 431 @@ -86837,6 +88344,8 @@ Rahab 133602 Rahaim 417 Rahal 9774 Rahaman 8547 +Rahanwein 2042 +Rahanweyn 2306 Rahanwin 1041 Rahe 29872 Raheem 20838 @@ -86871,6 +88380,7 @@ Raikes 363064 Raikeses 189 Raikkonen 4927 Railey 3691 +Railroad 1314977 Railsback 4175 Railton 143955 Railtons 627 @@ -86900,6 +88410,7 @@ Rainwater 89419 Raipur 31899 Raisa 48837 Raisanen 7143 +Raisbeck 12591 Raisi 2710 Raisin 85942 Raisinets 453 @@ -86938,9 +88449,11 @@ Rajkumari 5448 Rajkumars 1113 Rajneeshee 414 Rajneeshees 771 +Rajoy 8640 Rajpoot 102104 Rajpoots 73776 Rajput 261624 +Rajputana 224805 Rajputs 176198 Rajs 1611 Rajshahi 35219 @@ -86953,6 +88466,7 @@ Raker 18931 Rakers 3696 Rakes 48699 Rakestraw 7970 +Rakhaing 955 Rakhine 14439 Rakka 9973 Rakkah 3112 @@ -87047,6 +88561,7 @@ Rameswaram 9388 Ramey 54673 Rameys 282 Rami 79357 +Ramian 568 Ramic 420 Ramilie 2965 Ramillie 1159 @@ -87095,6 +88610,7 @@ Ramsdell 13833 Ramsden 531723 Ramsdens 4635 Ramsell 6643 +Ramsen 1186 Ramses 233585 Ramseur 2853 Ramsey 1182923 @@ -87169,12 +88685,14 @@ Ranger 700971 Rangers 572488 Rangeworthy 4290 Rangiora 4748 +Rangkhol 69 Rangoon 1123903 Rangpur 35973 Rangri 382 Ranhofer 895 Rani 192802 Ranieri 53733 +Ranikhet 14321 Ranjan 21690 Ranjana 5985 Rank 1636810 @@ -87259,6 +88777,7 @@ Rapson 59826 Raptis 4827 Rapture 96926 Rapunzel 42930 +Rapunzels 199 Raqqa 20481 Raqqah 2340 Raquel 78446 @@ -87272,6 +88791,7 @@ Rarotonga 101444 Rarotongan 13523 Rarotongans 5625 Ras 864360 +Rasalgethi 415 Rasalhague 452 Rasberry 3528 Rascal 69125 @@ -87283,6 +88803,7 @@ Rascian 1677 Rascians 3336 Rasco 3813 Rascoe 4199 +Rascol 4775 Rascolnik 699 p Rascolniks 1621 p Rascon 2064 @@ -87391,6 +88912,7 @@ Rathwa 133 Rati 28198 Ratigan 4189 Ratisbon 308615 +Ratlam 5398 Ratledge 12711 Ratley 9476 Ratliff 26077 @@ -87486,6 +89008,7 @@ Ravenstruther 1260 Ravenswood 200352 Ravensworth 126351 Raver 11833 +Raveret 439 Ravers 3916 Raves 11653 Ravi 217295 @@ -87591,6 +89114,8 @@ Razos 2275 Razzano 1569 Razzie 708 Razzies 427 +RdAc 241 +RdTh 503 Re 10088889 ReMine 837 Rea 588517 @@ -87600,6 +89125,7 @@ Reade 601311 Reader 4784189 Readers 2522605 Readership 886132 +Readerships 14094 Readick 155 Reading 15192537 Readinger 252 @@ -87703,6 +89229,8 @@ Recombination 91556 Reconquista 42769 Reconstruction 1716779 Record 8118414 +Recordite 1852 +Recordites 1246 Records 6488818 Recore 256 Rectigraph 1053 @@ -87726,6 +89254,7 @@ Redcay 920 Redcliffe 256041 Redcrest 188 Redd 47100 +Reddaway 93304 Reddell 5353 Redden 26130 Redder 12162 @@ -87784,6 +89313,7 @@ Rediger 1464 Redinger 3759 Redings 653 Redington 49666 +Redjang 2861 Redknapp 23218 Redland 140980 Redlands 49147 @@ -87854,6 +89384,8 @@ Reform 8993057 Reformasi 7107 Reformati 1731 Reformation 6627065 +Reformationist 379 +Reformationists 477 Reformed 1647003 Reformer 590040 Reformers 1301588 @@ -87996,6 +89528,7 @@ Reineck 9856 Reinecke 76162 Reinecks 207 Reinert 32842 +Reing 2601 Reinhardt 365536 Reinhardtian 157 Reinhardts 1206 @@ -88066,7 +89599,9 @@ Rembrandt 1209298 Rembrandtesque 10508 Rembrandtian 689 Rembrandtish 2706 +Rembrandtism 371 Rembrandts 35564 +Remchingen 877 Remedios 44470 Remembrancer 395868 Remembrancers 8988 @@ -88100,9 +89635,12 @@ Rems 5316 Remsen 37437 Remuera 8739 Remus 229984 +Ren 468586 +Renaico 441 Renaissance 6176704 Renaissant 898 Renaldo 41659 +Renanian 428 Renard 312129 Renards 2590 Renascence 101178 @@ -88200,6 +89738,7 @@ Reo 50594 Reos 2318 Rep 1638225 RepRap 1406 +Repalle 373 Repasky 696 Repetitor 491 Repetitorium 759 @@ -88346,6 +89885,7 @@ Revolutionary 1958359 Revuelta 3661 Revueltas 5603 Rew 86763 +Rewari 7793 Rewis 327 Rews 2598 Rewson 119 @@ -88416,6 +89956,7 @@ Rhee 143608 Rhees 43092 Rhegan 151 Rheic 4019 +Rheidol 39715 Rheims 714555 Rheinau 12583 Rheineck 5814 @@ -88521,6 +90062,7 @@ Ribblesdale 96531 Ribbonism 17253 Ribbonman 4329 Ribbonmen 25647 +Ribbs 1709 Ribden 1088 Ribeiro 162473 Ribera 140452 @@ -88669,6 +90211,8 @@ Ridings 169103 Ridley 1812746 Ridlon 2467 Ridner 487 +Ridolfi 120511 +Ridolfis 143 Ridout 72942 Ridouts 386 Ridpath 53262 @@ -88692,6 +90236,7 @@ Riedl 24017 Riedlinger 3435 Riedy 1611 Rieff 36918 +Riefler 5696 Riegel 43463 Riegels 2773 Riegelsville 273 @@ -88777,6 +90322,7 @@ Riggle 3737 Riggleman 1186 Riggles 1229 Riggs 235253 +Right 19414253 Righter 16159 Righters 943 Rigler 17097 @@ -89040,6 +90586,7 @@ Rivadeneira 3215 Rivard 12955 Rivas 99615 Rive 168719 +Rivelin 14739 Rivenbark 635 Rivenburg 643 River 21995798 @@ -89109,6 +90656,7 @@ Roade 34254 Roadian 773 Roadley 3165 Roadwater 3901 +Roaix 699 Roana 737 Roane 26713 Roanes 471 @@ -89235,6 +90783,8 @@ Rochell 25148 Rochelle 722836 Rochells 101 Rochester 3990674 +Rochesterian 585 +Rochesterians 195 Rochette 53773 Rochettes 626 Rochford 371475 @@ -89244,6 +90794,7 @@ Rochon 37107 Rock 5647319 Rockall 104178 Rockaway 23818 +Rockbourne 9474 Rockbridge 6415 Rockcastle 2198 Rockcliffe 16061 @@ -89265,6 +90816,7 @@ Rockite 5858 Rockites 4820 Rockland 58652 Rockledge 2152 +Rockley 47585 Rocklin 6528 Rockmore 9791 Rockower 255 @@ -89285,6 +90837,7 @@ Rod 1299411 Rodabaugh 973 Rodak 1443 Rodarte 2678 +Rodborough 33304 Rodbourn 1368 Rodchenkov 125 Rodd 191462 @@ -89299,6 +90852,7 @@ Roddy 222710 Roddys 169 Rode 261169 Rodea 444 +Rodebaugh 847 Rodeheaver 2570 Rodela 1112 Rodelas 235 @@ -89402,6 +90956,7 @@ Rogationtide 11094 Rogel 12238 Rogen 7174 Roger 11824130 +Rogerenes 459 Rogerian 20493 Rogernomics 2792 Rogers 5481797 @@ -89549,6 +91104,7 @@ Roly 49899 Rom 2997140 Roma 1794693 Romack 576 +Romadur 539 Romagna 314022 Romagnol 4831 Romagnoli 16745 @@ -89759,6 +91315,7 @@ Rooster 72673 Root 1511871 Rootes 167572 Rooth 56748 +Rootstown 567 Ropar 2513 Roper 972412 Ropley 19101 @@ -89798,6 +91355,7 @@ Rosalind 916165 Rosaline 115520 Rosals 401 Rosalyn 60317 +Rosalynn 9324 Rosamond 579664 Rosamund 329980 Rosander 5376 @@ -89923,6 +91481,7 @@ Rosewarnes 659 Rosewell 43658 Rosewood 108377 Rosewoods 747 +Rosey 73774 Roshan 33663 Rosicrucian 114363 Rosicrucianism 18368 @@ -89934,6 +91493,7 @@ Rosies 1243 Rosillo 2793 Rosin 130638 Rosina 235362 +Rosindell 27645 Rosins 2663 Rosinski 8768 Rosinsky 1189 @@ -89942,6 +91502,7 @@ Roskes 485 Roskilde 88355 Roskin 5563 Roskomnadzor 321 +Roskopf 737 Roslin 165586 Roslyn 82347 Rosman 20823 @@ -89994,6 +91555,7 @@ Rostrevor 36416 Rostro 6607 Rostros 419 Roswell 88312 +Rosy 229138 Rosyth 244348 Roszkowski 4168 Rota 217125 @@ -90089,10 +91651,12 @@ Rotzo 549 Roubaix 81310 Roubideaux 645 Roucas 530 +Rouch 57860 Roudebush 4932 Roudham 3818 Rouen 1879470 Rouens 2496 +Rouge 922318 Rougeau 1063 Rough 1265226 Roughan 8832 @@ -90110,6 +91674,9 @@ Roumania 1104758 Roumanian 597440 Roumanians 131219 Roumeli 13212 +Roumelia 118914 +Roumelian 14088 +Roumelians 1395 Roumeliot 1330 Roumeliote 1295 Roumeliotes 1977 @@ -90308,6 +91875,7 @@ Ruanes 189 Ruano 11486 Ruark 21291 Ruas 6413 +Rubadub 1765 Rubalcaba 4327 Rubalcava 1971 Rubbo 6701 @@ -90368,9 +91936,11 @@ Ruddy 94698 Ruden 7413 Rudens 17158 Ruderman 20652 +Rudgard 5364 Rudge 253423 Rudges 1458 Rudheath 6397 +Rudi 199171 Rudick 6001 Rudie 11050 Rudies 1569 @@ -90385,6 +91955,7 @@ Rudnick 22071 Rudnicki 9418 Rudnik 8732 Rudok 5376 +Rudolf 1514670 Rudolfine 2657 Rudolph 816178 Rudolphine 7958 @@ -90499,6 +92070,7 @@ Rulos 3283 Rumania 988439 Rumanian 549043 Rumanians 112483 +Rumansch 369 Rumantsch 1173 Rumball 23943 Rumballs 172 @@ -90653,6 +92225,7 @@ Rushkoff 7206 Rushlow 647 Rushmere 20815 Rushmoor 11720 +Rushmore 54887 Rushmores 317 Rusholme 83211 Rushton 374432 @@ -90724,11 +92297,13 @@ Russo 892602 Russocentric 615 Russom 2509 Russomania 399 +Russophil 8292 Russophile 13493 Russophiles 4858 Russophilia 1651 Russophilic 57 Russophilism 1637 +Russophils 1933 Russophobe 6939 Russophobes 3124 Russophobia 14941 @@ -90844,6 +92419,7 @@ Ryckmans 10464 Rycroft 86243 Rycrofts 603 Ryczek 205 +Rydal 222945 Rydall 10995 Rydberg 136055 Ryde 406424 @@ -90855,6 +92431,7 @@ Rydzewski 3874 Rye 1561463 Ryecroft 39421 Ryedale 58722 +Ryeford 2144 Ryegate 16447 Ryeland 23456 Ryer 12831 @@ -90902,6 +92479,7 @@ Ryugu 433 Ryukyu 48743 Ryukyuan 7878 Ryukyuans 2374 +Ryukyus 16598 Ryus 193 Ryves 71528 Ryvita 10704 @@ -90944,10 +92522,13 @@ SAF 92642 SAFT 11881 SAG 49699 SAGs 2454 +SAH 70528 SAHA 8933 SAHM 2572 SAHP 1348 +SAHRA 1327 SAHRC 1397 +SAHs 517 SAIC 32054 SAIDS 906 SAIL 64890 @@ -90982,10 +92563,8 @@ SASE 10885 SASER 167 SASEs 342 SASL 3031 -SAT 314396 SATA 12933 SATB 57224 -SATs 62117 SAU 17430 SAUs 624 SAVAK 23317 @@ -91011,6 +92590,7 @@ SBIT 231 SBK 6831 SBM 59753 SBMs 5298 +SBN 533004 SBNR 931 SBO 35344 SBOs 2247 @@ -91049,6 +92629,7 @@ SCIDs 413 SCIF 2905 SCJP 412 SCLC 62588 +SCLCs 675 SCN 112157 SCNR 971 SCO 118222 @@ -91100,6 +92681,7 @@ SDNs 757 SDO 21844 SDOs 6161 SDP 338987 +SDR 231449 SDRAM 6623 SDRs 123429 SDS 472979 @@ -91152,6 +92734,7 @@ SERE 7428 SERM 67083 SERMs 6171 SERP 5136 +SERPS 72771 SERPs 2772 SERS 36941 SERT 11608 @@ -91161,7 +92744,6 @@ SET 697830 SETI 43789 SEUs 1230 SEWS 1651 -SEZ 35993 SEs 41872 SFA 99837 SFC 73583 @@ -91172,6 +92754,7 @@ SFM 26164 SFO 62424 SFP 25119 SFPD 5393 +SFPM 341 SFPs 3486 SFR 34825 SFRP 1507 @@ -91192,6 +92775,7 @@ SGDs 445 SGM 25673 SGML 47488 SGMs 1035 +SGO 8804 SGR 18147 SGRs 2406 SGTM 448 @@ -91215,9 +92799,11 @@ SHO 50621 SHORAN 628 SHPO 1313 SHPOs 417 +SHQ 3121 SHRIMP 21056 SHU 28118 SHUs 359 +SHV 15540 SI 5132824 SIA 122969 SIAD 18805 @@ -91234,6 +92820,7 @@ SIDs 5241 SIGINT 22667 SIGMET 720 SIGMETs 184 +SIH 7234 SIJORI 1204 SIL 78189 SILENT 83916 @@ -91248,7 +92835,9 @@ SIN 183977 SINCGARS 2408 SINE 26527 SINEs 4829 +SIO 40925 SIOP 15260 +SIOs 2816 SIP 163330 SIPP 13032 SIPPs 5553 @@ -91262,6 +92851,7 @@ SISD 2406 SIT 109756 SITI 3173 SITO 1833 +SITREP 2329 SITs 2685 SIU 14351 SIUs 825 @@ -91377,9 +92967,12 @@ SNARE 27975 SNAREs 6957 SNAs 6726 SNB 24305 +SNCC 50432 SNES 3514 SNF 39497 +SNI 23915 SNL 18568 +SNLR 199 SNMP 40540 SNOBOL 3848 SNP 449460 @@ -91391,6 +92984,7 @@ SNRIs 12034 SNRs 11646 SNSs 13248 SNTP 538 +SNU 9638 SO 2780635 SOA 123447 SOAB 406 p @@ -91491,6 +93085,7 @@ SPLEED 234 SPLs 4651 SPM 81312 SPME 15475 +SPMT 1001 SPMs 4053 SPN 26209 SPNs 2234 @@ -91529,6 +93124,7 @@ SRAMs 7339 SRB 71279 SRBM 2007 SRBMs 844 +SRBP 664 SRBs 5879 SRC 199429 SRCs 3373 @@ -91641,6 +93237,7 @@ STID 1003 STIR 34196 STIRs 268 STIs 55592 +STLV 2288 STM 190617 STML 1440 STMs 2347 @@ -91721,8 +93318,6 @@ SWM 13142 SWOT 127608 SWP 58683 SWPs 5278 -SWR 21718 -SWRs 541 SWS 51960 SWT 38866 SWs 3399 @@ -91743,6 +93338,7 @@ SYs 410 Sa 1071604 SaaS 21514 Saab 210627 +Saabs 5767 Saad 177552 Saadat 17669 Saadeh 4379 @@ -91804,6 +93400,7 @@ Sabazios 7496 Sabb 8039 Sabbaday 223 Sabbagh 21787 +Sabbaghian 503 Sabbat 30816 Sabbatarian 59239 Sabbatarianism 28134 @@ -91884,6 +93481,7 @@ Saccas 14682 Sacchetti 47580 Sacchettis 60 Saccone 10773 +Sacha 106400 Sachdev 19333 Sachdeva 5915 Sacher 71069 @@ -91973,6 +93571,7 @@ Sadurni 2234 Saed 6961 Saeed 118187 Saeger 6421 +Saei 748 Saeima 11092 Saeko 3109 Saenz 41993 @@ -92345,11 +93944,9 @@ Salmas 13431 Salmen 6601 Salmeron 27562 Salmo 325811 -Salmon 2428294 Salmonby 3001 Salmond 247437 Salmonds 540 -Salmons 30261 Salmonson 2567 Salmore 1720 Salome 489582 @@ -92406,7 +94003,6 @@ Saluda 5878 Saluki 6023 Salukis 1487 Salva 52529 -Salvador 1780273 Salvadoran 60044 Salvadorans 12873 Salvadorean 60444 @@ -92468,6 +94064,7 @@ Samad 52541 Samads 345 Samael 21170 Samaha 8037 +Samakh 4421 Samangan 2351 Samanid 24232 Samaniego 9472 @@ -92483,6 +94080,7 @@ Samarcand 115716 Samaria 963806 Samarian 10512 Samarians 3181 +Samarinda 8275 Samaritan 937958 Samaritaness 423 Samaritanism 6951 @@ -92595,6 +94193,7 @@ Sampath 14224 Sampayo 15707 Sampedro 5230 Sampey 3532 +Sampford 72071 Sample 1913789 Samples 1518477 Sampley 3859 @@ -92744,6 +94343,7 @@ Sandvik 81913 Sandvika 4263 Sandviken 10003 Sandviks 349 +Sandway 2005 Sandweiss 5075 Sandwell 149349 Sandwich 2059286 @@ -92771,6 +94371,7 @@ Sangatte 26923 Sangeeta 7781 Sanger 304135 Sangerhausen 8965 +Sangh 68202 Sangha 117427 Sangharama 1873 Sanghas 1947 @@ -92808,6 +94409,7 @@ Sanilac 1232 Sanis 1235 Sanitas 42303 Saniyah 500 +Sanjana 5534 Sanjay 91629 Sanjaya 18486 Sanjose 1062 @@ -92920,6 +94522,7 @@ Santizo 341 Santo 1178872 Santolaria 371 Santon 71719 +Santoni 17298 Santonian 20060 Santoprene 1888 Santora 3477 @@ -93039,6 +94642,8 @@ Sarasvati 48936 Saraswati 53524 Saratoga 250783 Saratogan 195 +Saratogas 485 +Saratogian 478 Saratov 119436 Saravanan 3604 Saravia 26826 @@ -93068,6 +94673,7 @@ Sardinian 562060 Sardinians 79533 Sardis 339668 Sardo 19482 +Sardoodledom 648 Sardos 5576 Sare 47874 Sares 3777 @@ -93132,6 +94738,7 @@ Sarnowski 1502 Sarny 2833 Saroka 315 Sarot 2923 +Sarouk 759 Saroyan 28981 Saroyanesque 53 Sarpanit 241 @@ -93226,6 +94833,7 @@ Sassoons 8695 Sassos 153 Sassover 273 Sassuolo 6828 +Sassy 33063 Sastra 20579 Sastras 13873 Sastre 15880 @@ -93338,6 +94946,7 @@ Saudek 4720 Sauder 8892 Sauders 1345 Saudi 4089462 +Saudia 27951 Saudis 220942 Sauer 243771 Sauers 3900 @@ -93400,6 +95009,7 @@ Savai'i 12410 Savala 629 Savalas 9171 Savan 10472 +Savandurga 419 Savanilla 9971 Savanna 110139 Savannah 713958 @@ -93550,6 +95160,7 @@ Saxton 228861 Saxtons 1466 Sayako 699 Sayan 27462 +Sayans 1936 Sayantan 305 Saybrook 18791 Saybrooke 643 @@ -93587,6 +95198,7 @@ Scaean 16651 Scaff 5864 Scaffidi 1691 Scafidi 1695 +Scaggs 5565 Scaglione 7556 Scaife 74371 Scaifes 291 @@ -93612,8 +95224,10 @@ Scallys 123 Scalzi 12218 Scalzo 10041 Scamander 101434 +Scamblesby 3758 Scammel 8806 Scammell 110445 +Scamozzian 176 Scandaroon 3258 Scandaroons 201 Scandi 12609 @@ -93707,8 +95321,12 @@ Schab 3453 Schabel 6165 Schaber 4737 Schabs 394 +Schabzieger 1239 +Schabziger 611 Schacher 6299 Schachter 109642 +Schachtian 1592 +Schachtianism 131 Schachtman 3027 Schack 34542 Schacks 129 @@ -93719,6 +95337,7 @@ Schaefer 225359 Schaefers 1299 Schaeffer 173203 Schaeffers 601 +Schaeffler 6108 Schaer 17114 Schaerbeek 8327 Schafer 285547 @@ -93781,6 +95400,7 @@ Schaums 122 Schaus 25842 Schauss 2929 Schaut 1599 +Schawbel 557 Scheat 2404 Schechner 52954 Schechter 99962 @@ -93891,6 +95511,7 @@ Schiahs 357 Schiano 4394 Schiaparelli 105733 Schiaparellis 115 +Schiappa 2487 Schiavo 31956 Schiavone 32329 Schick 163566 @@ -94282,6 +95903,7 @@ Schurs 187 Schurz 37818 Schussler 14331 Schut 25945 +Schute 4306 Schuts 542 Schutte 43650 Schutter 25674 @@ -94328,6 +95950,7 @@ Schweers 2235 Schwegler 48665 Schweiger 33380 Schweigert 5323 +Schweikart 4776 Schweikert 4697 Schweinfurt 39191 Schweiss 2680 @@ -94475,6 +96098,7 @@ Scotchwoman 26586 Scotchwomen 3012 Scothern 5383 Scotia 2262190 +Scotian 77842 Scotic 21198 Scoticism 1099 Scoticisms 3061 @@ -94540,6 +96164,7 @@ Scottsburg 593 Scottsdale 45844 Scottsville 8004 Scotty 132540 +Scotus 550275 Scouse 29662 Scouser 10116 Scousers 8415 @@ -94557,12 +96182,14 @@ Scovell 35854 Scovil 5698 Scovill 12659 Scowcroft 46274 +Scowegian 132 Scowen 12833 Scrabble 69673 Scrabbler 520 Scrabblers 267 Scrabster 25381 Scranton 86417 +Scrantonian 118 Scrantons 185 Scraptoft 10896 Scratch 209927 @@ -94742,6 +96369,7 @@ Seater 23768 Seaters 1737 Seaton 760999 Seatons 4355 +Seatown 9058 Seats 699798 Seatter 2412 Seattle 1424963 @@ -94764,6 +96392,7 @@ Sebastianist 565 Sebastianists 1118 Sebastion 4110 Sebastopol 797228 +Sebastopols 621 Sebat 7989 Sebba 27709 Sebec 887 @@ -94799,6 +96428,7 @@ Seclin 4438 Secombe 28967 Secombes 2247 Seconal 10542 +Seconals 535 Secondspace 997 Secor 19038 Secord 51416 @@ -94821,6 +96451,7 @@ Sedaka 9411 Sedalia 6623 Sedam 1617 Sedan 416376 +Sedang 2426 Sedano 6966 Sedbergh 118003 Sedberry 499 @@ -95086,6 +96717,7 @@ Selkup 3194 Selkups 917 Sell 593833 Sella 92603 +Sellack 7747 Sellafield 150923 Sellar 160454 Sellards 5819 @@ -95230,6 +96862,7 @@ Senatobia 471 Senator 1991543 Senatore 20196 Senatores 4121 +Senators 695270 Senatus 671137 Sencion 175 Send 3141623 @@ -95292,6 +96925,8 @@ Sensabaugh 2465 Sensenig 1585 Sensex 2182 Sensi 11853 +Sensing 448429 +Sensings 245 Sensurround 1604 Sentell 803 Senter 33431 @@ -95349,6 +96984,7 @@ Septuagesimae 275 Septuagint 777107 Septuagintal 9210 Septuagints 990 +Sepulchrine 413 Sepulveda 51913 Sepulvedas 151 Sequani 30444 @@ -95368,6 +97004,7 @@ Serano 4121 Seranos 149 Seraphina 73993 Seraphine 26245 +Serapic 195 Serapis 227448 Seraydarian 949 Serb 636045 @@ -95457,6 +97094,9 @@ Serravallian 2383 Serres 214764 Serrs 239 Sers 10525 +Sertorian 4480 +Sertorians 611 +Servello 1075 Server 486045 Servers 60764 Servetian 158 @@ -95526,7 +97166,9 @@ Setty 10091 Setzer 10402 Seubert 18087 Seufert 5222 +Seumas 56789 Seuser 119 +Seuss 36112 Seussian 347 Sevan 25483 Sevareid 4870 @@ -95546,6 +97188,9 @@ Severances 393 Severas 1381 Severe 1207660 Severes 1327 +Severia 3518 +Severian 14700 +Severians 5583 Severin 127439 Severino 63687 Severinos 165 @@ -95557,6 +97202,7 @@ Severson 11079 Severt 1489 Severtson 196 Severus 1022576 +Severyan 375 Sevier 32865 Sevierville 1304 Sevigny 13072 @@ -95619,6 +97265,7 @@ Shabani 14234 Shabazz 11690 Shabbas 1544 Shabbat 78308 +Shabbes 3224 Shabbos 8060 Shabo 2549 Shabuot 317 @@ -95753,6 +97400,7 @@ Shakey 8234 Shakha 873 Shakhas 225 Shakir 36454 +Shakira 14081 Shakoor 5886 Shakopee 1260 Shakspearean 30866 @@ -95817,6 +97465,7 @@ Shanahan 76054 Shanahans 537 Shancheng 137 Shand 339245 +Shandaken 565 Shandean 18381 Shandley 1747 Shandon 98512 @@ -95835,6 +97484,7 @@ Shangcai 281 Shangcheng 481 Shangdang 418 Shanghai 3456957 +Shanghaiers 117 Shanghailander 1047 Shanghailanders 2105 Shanghainese 14731 @@ -95842,6 +97492,7 @@ Shanghais 1363 Shanghang 457 Shangjao 168 Shangjie 203 +Shangli 183 Shangluo 193 Shangnan 342 Shango 29512 @@ -95851,6 +97502,7 @@ Shangzhou 1170 Shanholtz 339 Shani 41683 Shania 11342 +Shanice 10675 Shaniqua 1031 Shank 104676 Shankar 113720 @@ -95894,6 +97546,7 @@ Shaoshan 4922 Shaoxing 15203 Shaoyang 3740 Shap 154915 +Shapcott 24902 Shapero 9081 Shapin 42826 Shapingba 359 @@ -96044,6 +97697,9 @@ Shayang 340 Shayar 191 Shaye 14540 Shaykh 305859 +Shaykhi 2201 +Shaykhis 867 +Shaykhism 663 Shayla 17043 Shayler 18231 Shayna 12335 @@ -96087,6 +97743,7 @@ Sheba 447295 Sheban 1763 Shebans 523 Shebat 7418 +Shebekino 353 Sheboygan 8340 Sheck 5367 Sheckler 327 @@ -96148,6 +97805,7 @@ Shehri 2985 Shehu 84151 Shehus 795 Sheikh 1362432 +Sheikhs 77476 Sheila 1295561 Sheilagh 6549 Sheils 19702 @@ -96367,6 +98025,7 @@ Shevel 1387 Shevelov 1435 Shevlin 10967 Shevlins 137 +Shevuoth 1067 Shew 311081 Shewa 13779 Shewchuk 1578 @@ -96425,10 +98084,13 @@ Shifts 186096 Shiga 117904 Shigatse 23574 Shigeko 6381 +Shigemitsu 20399 Shigeo 18529 Shigeru 66634 +Shigu 1048 Shih 378667 Shihadeh 2533 +Shihchiachuang 1385 Shihe 250 Shihezi 1757 Shihlin 937 @@ -96588,6 +98250,7 @@ Shirin 83091 Shirk 25704 Shirkey 2472 Shirks 889 +Shirky 13219 Shirl 23299 Shirland 22108 Shirley 2354450 @@ -96636,6 +98299,7 @@ Shizuishan 379 Shizuka 20905 Shizuko 5573 Shizuoka 44896 +Shkadov 653 Shkodran 212 Shkypetar 387 Shkypetars 372 @@ -96735,6 +98399,7 @@ Shorters 1359 Shortess 581 Shorthouse 51171 Shorthouses 103 +Shortland 82175 Shortlands 42987 Shortridge 34963 Shortridges 139 @@ -96791,6 +98456,7 @@ Shraddha 2185 Shrader 20081 Shraft 271 Shragge 2221 +Shrake 3307 Shreeve 19083 Shreeves 4306 Shreffler 3460 @@ -96948,6 +98614,7 @@ Shys 549 Si 4798907 SiAl 1015 Sia 109131 +Sialkot 45903 Siam 1622682 Siamak 2300 Siamen 1598 @@ -97068,6 +98735,7 @@ Sideris 10584 Sidetan 297 Sidetans 121 Sidey 21226 +Sidford 7479 Sidgwickian 1746 Sidhe 33963 Sidhu 25973 @@ -97077,6 +98745,7 @@ Sidles 1641 Sidlesham 19113 Sidley 36575 Sidlow 4989 +Sidman 16385 Sidmouth 588929 Sidnee 191 Sidney 5084867 @@ -97118,6 +98787,7 @@ Siegrist 24920 Sieh 11587 Sielaff 1267 Sieler 1249 +Siemens 1796796 Siemer 2883 Siemers 5363 Sieminski 1498 @@ -97177,6 +98847,7 @@ Sigrid 103313 Siguenza 15975 Sigurd 468549 Sigurdson 13992 +Sih 33932 Siha 6732 Sihanoukist 931 Sihanoukville 11853 @@ -97476,6 +99147,7 @@ Singapura 10838 Singara 13174 Singaraja 5903 Singareni 7708 +Singen 11592 Singer 1864524 Singerian 825 Singers 398914 @@ -97659,6 +99331,7 @@ Sisyphian 1801 Sisyphism 305 Sisyphus 170980 Sit 1603675 +SitRep 126 Sita 233908 Sitanagaram 199 Sitar 9092 @@ -97666,6 +99339,7 @@ Sitars 278 Sitchin 2499 Sitges 19120 Sithney 10506 +Sithole 55315 Sitka 273260 Sitko 1688 Sitler 1232 @@ -97701,6 +99375,7 @@ Sivakumar 10631 Sivan 55509 Sivas 84303 Siver 5068 +Siverian 3105 Sivers 8993 Sivertsen 9088 Sivertson 555 @@ -97752,12 +99427,14 @@ Skanda 32718 Skarda 2657 Skares 1253 Skarlatos 735 +Skarzinski 245 Skarzynski 2179 Skat 12750 Skate 77135 Skater 11344 Skates 40950 Skathi 827 +Skaw 23020 Skeat 416178 Skeats 21723 Skeavington 435 @@ -97927,6 +99604,7 @@ Slagters 659 Slaidburn 15746 Slaithwaite 32688 Slama 13356 +Slamannan 26470 Slane 106560 Slanes 3978 Slaney 167929 @@ -97967,6 +99645,7 @@ Slavicek 1281 Slavicist 432 Slavicists 633 Slavicized 1154 +Slavick 1183 Slavik 9059 Slavin 75779 Slavisation 289 @@ -98056,6 +99735,7 @@ Sligh 7159 Slight 802861 Slights 10119 Sligo 818702 +Sligoville 1146 Sliker 369 Slim 413641 Slimane 12771 @@ -98099,6 +99779,7 @@ Slochd 4082 Slocum 98607 Slocumb 2599 Slocums 834 +Sloley 11000 Sloman 115179 Slomans 299 Slominski 3379 @@ -98137,6 +99818,7 @@ Slovincian 862 Slowey 6801 Slowik 3094 Slowinski 4439 +Slowley 2243 Sloyan 3098 Sluder 5595 Slune 179 @@ -98187,6 +99869,7 @@ Smartha 371 Smarthas 237 Smartsville 481 Smartt 22043 +Smath 260 Smay 968 Smead 4643 Smeafield 243 @@ -98439,6 +100122,7 @@ Snyder 625533 Snyders 47980 So 116678820 So'ton 1257 +SoA 14646 SoC 18093 SoCal 3619 SoCo 677 @@ -98472,6 +100156,7 @@ Sober 175032 Soberano 2466 Soberanos 319 Sobers 27873 +Soberton 15080 Sobey 10277 Sobeys 580 Sobhita 1482 @@ -98516,11 +100201,13 @@ Socorro 42487 Socotra 120097 Socotran 7191 Socotrans 1235 +Socotri 1000 Socotrine 15439 Socrates 4712676 Socratic 527909 Socratical 2072 Socratically 3086 +Socraticism 1165 Socratics 33406 Socratism 5729 Socratist 308 @@ -98584,6 +100271,7 @@ Sogdiana 52552 Sogdians 17024 Soggies 221 Soh 44442 +Sohag 14020 Sohail 16571 Sohal 10428 Soham 89754 @@ -98619,6 +100307,7 @@ Sokolowski 21601 Sokols 6065 Sokolsky 7012 Sokoto 243808 +Sokotri 346 Sokrates 189124 Sokratis 1425 Soks 1078 @@ -98710,6 +100399,7 @@ Soltani 6885 Soltero 1812 Solteros 106 Soltesz 3289 +Soltman 407 Soltys 5951 Solukhumbu 309 Solum 25050 @@ -98745,6 +100435,7 @@ Somercotes 24601 Somerdale 4607 Somerford 67149 Somerhalder 396 +Somerley 8803 Somerleyton 37470 Somers 1064075 Somerset 8243944 @@ -98809,6 +100500,7 @@ Soninke 17533 Sonis 10216 Sonja 147479 Sonjo 7610 +Sonn 56265 Sonne 366698 Sonnenberg 31647 Sonnenbergs 236 @@ -98821,6 +100513,7 @@ Sonnier 4450 Sonning 77941 Sonnite 1982 Sonnites 7107 +Sonns 3154 Sonny 407892 Sonoda 13813 Sonoma 79920 @@ -98830,6 +100523,7 @@ Sonorans 967 Sonoras 193 Sonrai 899 Sons 11598275 +Sonsorolese 115 Sontag 239062 Sontagian 89 Sontags 672 @@ -98863,6 +100557,7 @@ Sooter 1464 Sooters 89 Soots 15586 Sooy 10031 +Sopara 2457 Soper 250930 Sopers 6308 Soperton 465 @@ -98989,6 +100684,7 @@ Sothic 21270 Sothis 26901 Sotho 104983 Sotiris 9192 +Sotk 126 Sotkamo 654 Soto 336550 Sotolongo 1093 @@ -99024,6 +100720,7 @@ Souliers 1643 Soulliere 289 Soulmass 87 Soulsby 61316 +Soum 5308 Soumya 1384 Soun 8480 Sound 5012763 @@ -99088,6 +100785,7 @@ Southport 948160 Southrey 4156 Southron 47523 Southrons 18796 +Southrop 10092 Souths 19163 Southsea 286146 Southsider 611 @@ -99117,6 +100815,7 @@ Sova 11540 Sovas 756 Sovereign 4678258 Sovereigns 730812 +Sovetsk 1710 Soviet 28904664 Sovietdom 243 Sovietic 1175 @@ -99208,6 +100907,7 @@ Spaeth 34259 Spafford 16859 Spaffords 411 Spagnola 5454 +Spagnoletti 29874 Spagnoli 11198 Spagnolis 375 Spagnolo 12731 @@ -99292,6 +100992,8 @@ Spartan 1405568 Spartanburg 18995 Spartanlike 535 Spartans 892776 +Spartiate 37924 +Spartiates 27593 Sparty 861 Spartz 367 Spataro 10125 @@ -99301,6 +101003,7 @@ Spatialism 581 Spatola 2189 Spaugh 266 Spaulding 87485 +Spauldings 1949 Spaur 5590 Spaven 6846 Spaw 33361 @@ -99663,6 +101366,7 @@ Springstead 291 Springsteen 86088 Springsteens 165 Springston 1361 +Springthorpe 12066 Springton 1493 Springview 237 Springville 5918 @@ -99694,6 +101398,7 @@ Sprow 1497 Sprowl 3351 Sprowls 1236 Sprows 179 +Spruce 407677 Spruell 2033 Spruiell 1509 Spruill 4352 @@ -99907,6 +101612,7 @@ Staley 111909 Staleys 521 Stalham 29323 Stalin 4133651 +Stalinesque 2886 Stalingrad 349153 Stalinian 773 Stalinism 285799 @@ -99937,6 +101643,7 @@ Stalnakerian 1282 Stalter 1089 Stalvey 489 Stalwart 23224 +Stalworth 3452 Stalybridge 202017 Stalzer 581 Stam 115825 @@ -99979,6 +101686,7 @@ Stancliff 3083 Stanco 3280 Stanczak 1780 Stanczyk 3532 +Standard 11759748 Standedge 7953 Standefer 943 Standen 141354 @@ -100053,6 +101761,7 @@ Stanningley 29436 Stannington 26417 Stano 4366 Stanos 482 +Stanovoy 2361 Stans 28140 Stansberry 1378 Stansbury 32196 @@ -100165,6 +101874,7 @@ Statesboro 5264 Stateside 26055 Statesiders 120 Statesville 2893 +Statfold 4031 Statham 190447 Stathams 616 Stathern 9054 @@ -100401,6 +102111,7 @@ Stemens 174 Stemm 4694 Stemmler 6476 Stemms 692 +Stemp 10817 Stempel 28539 Stempels 569 Stemper 2585 @@ -100742,6 +102453,7 @@ Stoford 12768 Stogdill 13035 Stogner 599 Stogsdill 687 +Stogumber 21877 Stohl 15936 Stohr 21045 Stohwasser 3948 @@ -100768,6 +102480,7 @@ Stoklasa 9313 Stokley 3645 Stoklosa 1117 Stolarski 3719 +Stolarz 931 Stolberg 92776 Stolbergs 3576 Stoli 3903 @@ -100918,6 +102631,7 @@ Strabo 1562552 Stracener 133 Strachan 570199 Strachans 6189 +Strachwitz 7081 Strack 75878 Stracks 280 Strad 129937 @@ -100960,6 +102674,7 @@ Strang 485914 Strange 3180532 Strangelovian 343 Strangeways 131097 +Strangford 212553 Strangio 2707 Strangs 1505 Stranorlar 17315 @@ -101223,6 +102938,7 @@ Stuards 845 Stuart 8634733 Stubbe 57598 Stubbes 74684 +Stubbings 34726 Stubbington 16997 Stubbins 26593 Stubblefield 37974 @@ -101287,6 +103003,7 @@ Stundism 1379 Stundist 3513 Stundists 10768 Stunkard 18880 +Stupak 2567 Sturdevant 4377 Sturdivant 4141 Sturdy 142460 @@ -101408,6 +103125,7 @@ Suceava 12015 Sucellus 1993 Such 58312441 Suchan 4674 +Sucheng 1178 Sucher 9873 Suchet 185882 Suchil 810 @@ -101417,6 +103135,7 @@ Sucker 50786 Suckers 43140 Suckow 8256 Sucre 153539 +Sud 386144 Suda 99687 Sudak 7302 Sudan 4888659 @@ -101431,7 +103150,10 @@ Sudanized 453 Sudano 9468 Sudans 8779 Sudbeck 219 +Sudborough 28133 +Sudbourne 28781 Sudbrook 25849 +Sudbrooke 7283 Sudbury 723997 Sudd 36764 Suddaby 31865 @@ -101474,6 +103196,7 @@ Suens 137 Suero 8219 Sueros 51 Sues 30185 +Suess 94465 Suetonian 3160 Suevi 82342 Suevian 7076 @@ -101526,6 +103249,7 @@ Sui 203670 Suichow 140 Suide 2031 Suifenhe 905 +Suihua 546 Suijin 507 Suining 1636 Suiping 386 @@ -101590,6 +103314,8 @@ Sulkowski 7973 Sullenger 977 Sullinger 319 Sullington 10301 +Sullivanian 1543 +Sullivanians 191 Sullivant 6619 Sullo 4251 Sullys 1500 @@ -101608,6 +103334,7 @@ Sulus 6437 Sum 2645496 Suma 49858 Sumadija 2972 +Sumain 117 Suman 17506 Sumana 11948 Sumas 3212 @@ -101641,6 +103368,7 @@ Sumitra 12841 Sumler 532 Sumlin 1967 Summa 618321 +Summary 8073657 Summas 2594 Summer 6300670 Summerall 1870 @@ -101651,6 +103379,7 @@ Summerhays 10209 Summerhill 73712 Summerhills 281 Summerland 30028 +Summerlee 33888 Summerlin 6004 Summerour 127 Summers 869443 @@ -101764,6 +103493,7 @@ Suomussalmi 3971 Suon 3026 Suons 111 Supan 15686 +Supara 1299 Super 2153427 Supercorp 115 Superfund 41119 @@ -101884,6 +103614,7 @@ Susmita 1335 Susquehanna 110080 Susquehannock 2718 Susquehannocks 3059 +Suss 112474 Sussex 9975773 Sussexers 91 Sussexes 401 @@ -101935,6 +103666,7 @@ Suzane 670 Suzanna 57405 Suzannah 26244 Suzanne 825425 +Suzdal 26989 Suze 70184 Suzhou 68826 Suzi 52111 @@ -102049,6 +103781,7 @@ Swango 1613 Swank 46921 Swanks 664 Swanley 136861 +Swanmore 15555 Swann 569305 Swanner 937 Swannington 31758 @@ -102064,6 +103797,7 @@ Swantons 435 Swanville 225 Swanwick 128113 Swarbrick 41781 +Swarby 2832 Sward 23940 Swards 5135 Swarfega 2396 @@ -102182,6 +103916,7 @@ Swilley 4733 Swilleys 309 Swim 121982 Swims 16319 +Swinbrook 16904 Swinburne 1337576 Swinburnean 1099 Swinburnesque 48 @@ -102270,6 +104005,7 @@ Sybaritic 6164 Sybert 3209 Sybian 205 Sybil 763625 +Sybill 12401 Sybilla 72858 Sybils 19872 Sycamore 178248 @@ -102277,6 +104013,7 @@ Sycorax 48059 Syd 243282 Sydenham 1020754 Sydenhams 4383 +Syder 11526 Sydneian 987 Sydney 9355886 Sydneyan 120 @@ -102350,6 +104087,7 @@ Syracusans 240369 Syracuse 1651227 Syracuses 93 Syrah 83665 +Syrahs 2339 Syrette 371 Syria 7473615 Syriac 1259380 @@ -102467,6 +104205,7 @@ TAPVC 3381 TAPs 6439 TARDIS 38775 TARDISes 612 +TARP 22850 TARU 1221 TAS 84030 TASS 87437 @@ -102483,7 +104222,6 @@ TB 877260 TBA 90624 TBAs 9497 TBD 13288 -TBDs 2095 TBF 20044 TBG 29032 TBHQ 2917 @@ -102522,6 +104260,7 @@ TCO 39250 TCON 1061 TCOs 3981 TCP 323168 +TCPO 1431 TCR 146968 TCRs 11967 TCS 65518 @@ -102533,9 +104272,9 @@ TCs 55054 TD 549584 TDA 53283 TDDs 852 +TDE 13605 TDI 51649 TDIC 1234 -TDM 73796 TDMA 60792 TDP 34250 TDPs 1167 @@ -102666,6 +104405,7 @@ TINs 4334 TIP 307988 TIPS 135908 TIPs 5653 p +TIRF 3342 TIS 51550 TIs 20312 TJ 450631 @@ -102675,7 +104415,7 @@ TKA 7668 TKD 2277 TKI 10523 TKIP 1585 -TKO 5835 +TKR 6278 TL 570627 TLA 27024 TLAs 3451 @@ -102686,6 +104426,7 @@ TLCs 3188 TLD 39740 TLDs 11167 TLEs 1386 +TLH 2311 TLL 35737 TLM 23733 TLMs 1301 @@ -102703,6 +104444,7 @@ TME 28487 TMH 5528 TMI 38391 TMIs 298 +TMJs 2152 TMNT 377 TMOs 1892 TMP 70996 @@ -102768,6 +104510,7 @@ TPLF 32941 TPM 57425 TPMS 2000 TPMs 7183 +TPNG 1384 TPO 42092 TPOs 5480 TPP 137053 @@ -102826,6 +104569,7 @@ TSGs 3581 TSIA 495 TSL 25371 TSLP 3224 +TSMC 9424 TSMV 295 TSN 10383 TSO 127542 @@ -102908,8 +104652,10 @@ TWAs 3045 TWB 3968 TWCC 397 TWOC 2443 +TWOT 367 TWTs 3000 TWU 7619 +TWX 19219 TWs 1743 TX 652449 TXs 808 @@ -102992,6 +104738,8 @@ Taddei 28360 Tadesse 10162 Tadevosyan 387 Tadjik 8561 +Tadjikistan 12115 +Tadjiks 8165 Tadjoura 3921 Tadjourah 2671 Tadley 15105 @@ -103022,6 +104770,7 @@ Tafts 1955 Tagal 9601 Tagala 10687 Tagalas 1431 +Tagalic 237 Tagalog 63122 Tagalogs 2564 Tagals 7261 @@ -103036,6 +104785,7 @@ Tagg 86167 Taggart 160276 Taggarts 1049 Taggs 2595 +Tagil 16880 Tagish 3967 Tagle 11876 Tagles 127 @@ -103082,6 +104832,7 @@ Taichung 36315 Taidong 643 Taierhchwang 351 Taierzhuang 851 +Taig 7455 Taiga 22842 Taigu 1450 Taihape 2349 @@ -103110,6 +104861,7 @@ Taipeh 11130 Taipei 534457 Taiping 137082 Taipings 31076 +Taipingshan 1161 Taira 64036 Tairona 4645 Tais 17657 @@ -103216,6 +104968,7 @@ Talbott 86145 Talbotton 469 Talbotts 961 Talca 21151 +Talcahuano 40975 Talcott 150279 Talcotts 245 Taleb 68228 @@ -103300,6 +105053,7 @@ Talyrond 3293 Talysarn 3983 Talysh 4634 Talyshes 137 +Talywain 2322 Tamachek 1701 Tamagotchi 3807 Tamagotchis 686 @@ -103335,6 +105089,7 @@ Tambukis 137 Tamburello 2415 Tamburi 1663 Tamburini 49223 +Tamburrino 471 Tamburro 2265 Tame 261554 Tameka 6696 @@ -103403,6 +105158,7 @@ Tanana 12968 Tanapox 930 Tanat 19986 Tanay 2781 +Tancharoen 307 Tancheng 668 Tancred 429032 Tandil 12131 @@ -103461,6 +105217,7 @@ Tanisha 6951 Tanit 21335 Tanith 43306 Tanitic 6825 +Taniya 657 Tanjore 312770 Tanka 20652 Tankas 1231 @@ -103516,6 +105273,8 @@ Tanzimat 51878 Tanzini 848 Tao 534422 Taoiseach 93360 +Taoiseachs 293 +Taoisigh 857 Taoism 187084 Taoist 225884 Taoistic 3849 @@ -103538,6 +105297,7 @@ Taphians 7316 Taphthartharath 403 Tapia 51286 Tapias 4060 +Tapiwa 933 Tapley 95840 Tapleyism 517 Tapleys 1636 @@ -103572,6 +105332,7 @@ Tapuria 685 Tar 1085772 Tara 1002300 Taraba 6918 +Tarache 1236 Tarah 10283 Tarahumara 16043 Tarahumaran 207 @@ -103645,6 +105406,7 @@ Tarkhun 851 Tarkington 24710 Tarkingtons 159 Tarkovskian 484 +Tarkwa 42128 Tarlac 5693 Tarleton 236789 Tarletons 3013 @@ -103666,6 +105428,8 @@ Tarpey 8893 Tarpley 8814 Tarporley 57290 Tarquin 334603 +Tarquinian 8483 +Tarquinians 3967 Tarquinio 8505 Tarquinios 1035 Tarr 143359 @@ -103733,6 +105497,8 @@ Tashkandi 213 Tashkent 303517 Tashkurgan 7195 Tashlhiyt 949 +Tashnag 592 +Tashnak 433 Tasikmalaya 1465 Tasker 213990 Taskers 13382 @@ -103897,8 +105663,10 @@ Taye 16341 Tayeh 7697 Tayes 1300 Taygeta 3101 +Taygetan 319 Taygete 4136 Taygetos 10392 +Taygetus 43961 Tayk 846 Tayla 3854 Tayler 301031 @@ -103954,6 +105722,7 @@ Tcholakian 381 Tchou 11303 Tcl 27026 TdT 19723 +TeCA 413 TeV 20441 TeX 8756 Tea 3063232 @@ -104070,6 +105839,7 @@ Tegeler 2872 Teges 526 Tegetmeier 38479 Tegfan 748 +Tegh 9736 Tegtmeier 2204 Tegucigalpa 91131 Teh 148870 @@ -104138,6 +105908,7 @@ Telfers 1921 Telford 866019 Telfords 2153 Telfort 825 +Telkes 2042 Tell 8389540 Tella 32710 Tellado 1110 @@ -104155,6 +105926,7 @@ Tells 189538 Tellurian 3708 Tellurians 1201 Telluride 38518 +Tellus 107250 Tellytubbies 387 Telmun 544 Teloogoo 19666 @@ -104202,6 +105974,8 @@ Templet 6227 Templeton 383413 Templets 2091 Templin 18080 +Tempo 193670 +Tempos 10613 Tempsford 24454 Temuco 20178 Temujin 42933 @@ -104281,6 +106055,7 @@ Tenzin 21543 Tenzing 32861 Teo 106963 Teochew 6248 +Teochews 757 Teoh 17940 Teos 59805 Teotihuacan 90816 @@ -104512,6 +106287,7 @@ Teutonize 171 Teutonized 2665 Teutonizing 430 Teutonomania 173 +Teutonophobia 145 Teutons 173642 Teutophobia 729 Teutsch 23792 @@ -104812,6 +106588,7 @@ Theseum 16364 Theseus 1121878 Thesiger 244728 Thesing 4114 +Thesiphone 706 Thesmophoria 33665 Thesmophorian 817 Thespian 50936 @@ -104840,6 +106617,7 @@ Thew 34060 Thews 7822 Thi 317697 Thiam 19412 +Thibault 113686 Thibeau 1396 Thibeault 2762 Thibeaux 364 @@ -104971,6 +106749,7 @@ Thoothukudi 197 Thor 704083 Thora 92519 Thorah 12099 +Thorazine 10611 Thorburn 208219 Thorburns 1557 Thoreau 361490 @@ -105034,6 +106813,7 @@ Thoroughbred 89550 Thoroughbreds 22426 Thorp 443510 Thorpe 2116945 +Thorpeness 6932 Thorpes 11845 Thorpey 1073 Thorri 1340 @@ -105152,6 +106932,7 @@ Thunderbirds 19009 Thunderbolt 96385 Thunderdome 3266 Thunderer 161102 +Thundersley 20311 Thundridge 7073 Thune 17806 Thunes 3473 @@ -105327,6 +107108,7 @@ Tiemans 111 Tiemeyer 2547 Tiempo 36123 Tien 337346 +Tienanmen 3855 Tienda 9680 Tiendas 1730 Tienen 7577 @@ -105654,12 +107436,14 @@ Tirpak 2938 Tirpitz 176465 Tirrell 27571 Tirrells 229 +Tirschenreuth 1439 Tirthankara 5221 Tirthankaras 6030 Tiruchchirappalli 705 Tiruchirappalli 1976 Tirumala 9919 Tirunelveli 7109 +Tiruvallur 1136 Tirzah 59969 Tisa 13771 Tisbury 66673 @@ -105746,11 +107530,14 @@ Tiwi 17095 Tixall 29606 Tizard 184272 Tizards 299 +Tiziana 11277 +Tiziano 38837 Tiznado 212 Tizona 3704 Tizzard 6481 Tjaden 9777 Tjadens 474 +Tjapaltjarri 2780 Tkac 1401 Tkachenko 11898 Tkachuk 3026 @@ -105780,6 +107567,7 @@ To'a 574 ToC 3139 ToD 5125 ToDs 825 +ToR 7469 Toal 13034 Toals 99 Toarcian 24027 @@ -105811,7 +107599,9 @@ Tobruk 218155 Tobson 697 Toby 1872680 Tobys 2292 +Toca 7682 Tocantins 37802 +Tocas 155 Tocci 10226 Tocco 20680 Toccoa 2630 @@ -105871,6 +107661,7 @@ Toia 2798 Tois 6040 Toishan 610 Tojo 61448 p +Tojolabal 1336 Tojos 1131 p Tok 77774 Tokaj 12016 @@ -106306,6 +108097,7 @@ Torricelli 78742 Torricellian 35708 Torrico 2551 Torridge 72205 +Torridonian 55668 Torrijos 55551 Torrington 494487 Torringtons 913 @@ -106380,6 +108172,7 @@ Tothills 502 Toths 186 Totilo 145 Totino 1413 +Totland 22781 Totley 23722 Totman 9380 Totnes 375921 @@ -106451,6 +108244,7 @@ Tournai 188135 Tournaisian 26514 Tournapull 1193 Tournapulls 585 +Tournay 306472 Tournefortian 749 Tourret 4345 Tours 1751208 @@ -106537,6 +108331,7 @@ Toyokawa 3820 Toyoko 2031 Toyosaburo 231 Toyota 660517 +Toyotaism 1826 Toyotas 11398 Toyotism 4300 Toytown 8337 @@ -106558,6 +108353,7 @@ Trachsel 4258 Trachtenberg 39908 Traci 25226 Tracie 25601 +Tracies 1148 Tractarian 218573 Tractarianism 61298 Tractarians 133768 @@ -106754,6 +108550,7 @@ Trebach 1519 Trebay 1291 Trebbi 4344 Trebbiano 18330 +Trebbianos 125 Trebeck 21341 Trebek 1356 Trebellian 1486 @@ -106778,6 +108575,7 @@ Treeton 13254 Trefeglwys 8530 Trefethen 6046 Treffgarne 2850 +Treffry 37497 Trefil 3806 Treforest 64610 Trefz 657 @@ -106876,6 +108674,8 @@ Tresses 16929 Tressler 8929 Trester 1042 Tretheway 5130 +Trethewy 15749 +Tretire 4114 Treto 957 Tretos 555 Tretter 3341 @@ -106960,9 +108760,11 @@ Tridentines 1456 Trier 366125 Trieste 1026028 Triestine 9440 +Triestini 1391 Triestino 26373 Triestinos 177 Trieu 8613 +Trieux 4776 Trigarta 921 Trigg 89895 Triggs 62129 @@ -107032,6 +108834,10 @@ Tripi 4220 Tripis 93 Tripitaka 38800 Tripitakas 725 +Triplet 71667 +Triplets 25965 +Triplett 29570 +Tripletts 199 Triplex 93769 Tripodi 8373 Tripodis 208 @@ -107145,6 +108951,7 @@ Trombly 1569 Trompetter 1735 Tron 132396 Trona 11212 +Tronador 4631 Troncoso 11101 Trondheim 241231 Trondra 3197 @@ -107264,6 +109071,7 @@ Truesdale 13962 Truesdell 19864 Truett 7180 Truex 5430 +Truganini 4877 Trughanacmy 844 Truitt 13622 Trujillo 201926 @@ -107330,6 +109138,7 @@ Tryphena 45720 Tryphosa 12182 Trzcinski 1731 Trzeciak 1931 +Ts'ai 24405 Tsaconian 175 Tsai 188902 Tsaidam 14579 @@ -107345,6 +109154,7 @@ Tsang 149934 Tsangs 243 Tsans 245 Tsao 58280 +Tsaoyang 187 Tsarist 308655 Tsaritsyn 19417 Tsarnaev 2346 @@ -107360,10 +109170,12 @@ Tschetter 719 Tschida 781 Tschirhart 3870 Tse 362257 +Tsenacommacah 351 Tseng 101583 Tsengs 115 Tsering 23083 Tses 1337 +Tsetsaut 401 Tsez 2014 Tshangla 385 Tshiluba 2199 @@ -107405,6 +109217,7 @@ Tsukuyomi 338 Tsuneko 1221 Tsunemi 849 Tsungming 989 +Tsunyi 2773 Tsuruga 11280 Tsushima 70966 Tsutsuji 195 @@ -107454,6 +109267,7 @@ Tuccis 91 Tuchman 55555 Tucholski 631 Tuck 500043 +Tuckenhay 1915 Tucker 1953159 Tuckernuck 854 Tuckers 18700 @@ -107499,6 +109313,7 @@ Tufte 29765 Tuftes 140 Tufts 141114 Tugela 141815 +Tuggeranong 830 Tuggle 5642 Tuguegarao 1823 Tugwell 94569 @@ -108003,6 +109818,7 @@ Twyla 19426 Twyman 48011 Twymans 943 Tx 234567 +Txs 443 Ty 503169 Tyack 30092 Tyacke 43364 @@ -108036,6 +109852,7 @@ Tylerism 317 Tylers 27811 Tylertown 405 Tylka 1140 +Tylorian 2088 Tyman 3937 Tymans 271 Tyme 60986 @@ -108107,6 +109924,7 @@ Tyrus 66241 Tyrwhitt 336683 Tyseley 32184 Tysinger 227 +Tysoe 42338 Tyson 504207 Tytherington 13620 Tyumen 34231 @@ -108118,12 +109936,16 @@ Tzakonian 771 Tzeltal 12255 Tzeltalan 343 Tzetzes 46853 +Tzfat 470 Tzipi 3121 +Tziporah 255 +Tzipporah 453 Tzotzil 11123 Tzul 503 Tzutujil 2145 Tzvi 8400 U's 97 +UA 299368 UAC 63498 UACs 637 UAF 4555 @@ -108199,6 +110021,9 @@ UFAs 1038 UFC 40946 UFCW 3757 UFF 26161 +UFOlogist 643 +UFOlogists 1674 +UFOlogy 1451 UFTA 153 UFTAA 961 UFW 8677 @@ -108228,6 +110053,7 @@ UIMs 697 UIs 5872 UJT 4150 UJTs 154 +UKCP 20591 UKIRT 4805 UKP 2152 UKSC 84986 @@ -108264,6 +110090,7 @@ UMLS 3364 UMNO 90382 UMP 52514 UMTS 110664 +UMWA 4399 UMass 5695 UMs 2661 UNA 63601 @@ -108286,6 +110113,7 @@ UNFICYP 40941 UNG 12148 UNHCR 445488 UNICEF 479376 +UNIDO 130361 UNIDROIT 43672 UNIFIL 43752 UNIKOM 4252 @@ -108300,12 +110128,15 @@ UNODC 56452 UNOS 8784 UNPROFOR 62178 UNRRA 88023 +UNRWA 90088 UNS 19009 UNSC 176428 UNSCOM 48202 UNSW 20180 UNTAC 36134 UNTAET 26128 +UNWTO 21252 +UO 73633 UOG 2719 UOL 2948 UOP 29504 @@ -108344,9 +110175,9 @@ URLs 89265 URM 4484 URN 51560 URNs 2088 -URT 14585 URTI 11173 URTIs 2527 +URTs 221 URs 4665 US 1470315 USA 27600294 @@ -108363,6 +110194,8 @@ USAMGIK 978 USAMRIID 3760 USAN 15704 USAR 3593 +USART 3186 +USARTs 191 USAT 1666 USB 161157 USBs 721 @@ -108380,6 +110213,7 @@ USDA 355910 USDOT 2209 USDS 4257 USDs 509 +USES 266872 USEUCOM 551 USF 16414 USFI 872 @@ -108399,6 +110233,8 @@ USN 101760 USNA 22906 USNH 6279 USNORTHCOM 383 +USNR 4949 +USNS 5229 USO 32024 USOC 6538 USOS 399 @@ -108444,7 +110280,6 @@ UUP 68068 UUV 3797 UUVs 2281 UUW 265 -UV 1279624 UVCE 926 UVF 75593 UVP 7849 @@ -108529,6 +110364,7 @@ Udolphoish 183 Udupi 2887 Udy 13776 Uea 5573 +Uebler 205 Uechi 709 Uecker 7562 Ueda 79064 @@ -108558,9 +110394,11 @@ Ugartes 107 Ugborough 11978 Ugger 564 Ugglebarnby 2967 +Ugley 8289 Ugrian 45039 Ugrians 14040 Ugric 34052 +Ugu 1826 Ugwu 11170 Uher 15365 Uhers 331 @@ -108574,10 +110412,12 @@ Uhrig 4823 Uie 77891 Uies 688 Uighur 59579 +Uighurian 113 Uighurs 36901 Uigur 14030 Uigurian 695 Uiguric 446 +Uiju 749 Uiko 251 Uintah 5394 Uist 328699 @@ -108707,11 +110547,13 @@ Umbri 13730 Umbria 257977 Umbrian 171982 Umbrians 48763 +Umbric 905 Umbriel 12961 Umbundu 8066 Ume 17141 Umeda 22162 Umeko 1115 +Umfleet 171 Umfolosi 7603 Umfreville 26022 Umfrevilles 1463 @@ -108729,6 +110571,7 @@ Umtali 111834 Umuahia 21019 Umvoti 10830 Umvuma 4970 +Umwa 187 Umwelt 52216 Umwelts 431 Un 1523262 @@ -108742,6 +110585,7 @@ Unalachtigo 194 Unalaska 12329 Unalaskan 138 Unami 1087 +Unamuno 85684 Unangan 676 Unangst 693 Unani 16762 @@ -108769,6 +110613,7 @@ Ungaro 10551 Ungaros 194 Ungava 38623 Unger 283651 +Ungerer 24805 Ungerian 212 Ungs 548 Uniat 16125 @@ -108948,6 +110793,7 @@ Urey 47115 Urfa 33343 Urfirnis 2971 Urga 53471 +Urgench 4953 Urger 941 Urgonian 4722 Urheimat 2431 @@ -109099,6 +110945,7 @@ Utik 445 Utke 1018 Utley 56786 Utleys 121 +Utopia 999120 Utopian 642300 Utopianism 43121 Utopianisms 411 @@ -109228,6 +111075,7 @@ VCBs 196 VCC 29114 VCD 27060 VCDs 4722 +VCH 217844 VCL 10222 VCO 41462 VCPI 231 @@ -109240,6 +111088,7 @@ VCUs 568 VCs 54703 VDA 11576 VDC 23325 +VDH 2313 VDI 66758 VDL 6889 VDM 37891 @@ -109259,6 +111108,7 @@ VED 32473 VEE 21522 VEI 9968 VELS 3553 +VEM 4352 VEP 33997 VEPs 15424 VES 31291 @@ -109271,15 +111121,19 @@ VFAT 330 VFD 34977 VFDs 755 VFL 10353 +VFO 3938 +VFOs 341 VFP 6937 VFR 37144 VFRs 1961 +VFS 7272 VFW 22920 VFX 6680 -VGA 38801 VGC 4508 VGK 1966 VGM 4098 +VH 173615 +VHC 3833 VHD 10031 VHDL 39764 VHF 533398 @@ -109287,6 +111141,7 @@ VHP 38088 VHR 3363 VHS 215130 VHSIC 4160 +VHs 1396 VI 19458783 VIB 19837 VIBGYOR 158 @@ -109318,6 +111173,7 @@ VKT 2394 VLAD 3810 VLAN 18804 VLANs 5696 +VLBW 9472 VLDB 4922 VLE 44695 VLEs 14540 @@ -109349,6 +111205,8 @@ VMS 54953 VN 114666 VNC 8216 VNE 3333 +VNTR 13578 +VNTRs 4253 VNs 2312 VO 192838 VOA 36811 @@ -109364,6 +111222,7 @@ VOMs 363 VOP 7085 VORTAC 1409 VOS 21659 +VOV 3965 VOX 20402 VOs 7060 VOx 989 @@ -109372,6 +111231,7 @@ VPDs 1053 VPL 12654 VPLs 147 VPM 8522 +VPU 2760 VR 350879 VRAM 3465 VRB 5180 @@ -109380,6 +111240,7 @@ VRE 17041 VREs 998 VRI 5513 VRIO 2852 +VRLA 1645 VRML 24628 VRO 2318 VROs 185 @@ -109416,11 +111277,13 @@ VTOL 73854 VTOLs 598 VTR 47160 VTRs 10171 +VTVM 906 VTX 2076 VTs 19835 VU 89242 VUCA 5115 VUI 8574 +VUR 21827 VUSA 199 VUs 591 VVA 3510 @@ -109470,6 +111333,7 @@ Vahan 13773 Vahey 3756 Vahle 2628 Vai 62942 +Vaibhasika 2461 Vaid 14953 Vaiden 1117 Vaidic 2871 @@ -109503,6 +111367,7 @@ Vajradhara 4685 Vajras 217 Vajrasattva 7393 Vajrayana 20569 +Vakinankaratra 799 Vakkaliga 144 Vaksdal 1131 Vakulabharanam 403 @@ -109516,6 +111381,7 @@ Valasek 3359 Valazquez 777 Valbuena 6141 Valcarcel 6876 +Valchiusa 1030 Valcin 231 Valdenses 10390 Valdensian 1232 @@ -109689,6 +111555,7 @@ Vancon 353 Vancouver 1972118 Vancouverite 175 Vancouverites 1046 +Vancouvers 1724 Vancura 3604 Vandal 185320 Vandalia 18631 @@ -109790,7 +111657,6 @@ Vanfleet 457 Vanfossen 547 Vang 36289 Vange 13766 -Vangelis 16368 Vangilder 181 Vanhook 147 Vanhorn 2226 @@ -109862,6 +111728,7 @@ Vaquero 9993 Vaqueros 6454 Var 991269 Vara 55380 +Varadero 22816 Varades 2142 Varadkar 3145 Varady 15364 @@ -109930,9 +111797,11 @@ Varvel 1057 Varvels 393 Varyag 4718 Varyags 352 +Vasai 1562 Vasallo 1550 Vasallos 326 Vasant 14762 +Vasanth 935 Vasari 779159 Vasarian 1865 Vasbinder 794 @@ -110184,6 +112053,7 @@ Venezianos 115 Venezuela 2874807 Venezuelan 588851 Venezuelans 49454 +Vengi 5702 Vengo 3119 Veniamin 6879 Venice 9544363 @@ -110237,6 +112107,7 @@ Venturini 22353 Venu 11043 Venugopal 10154 Venus 5359025 +Venusberg 27003 Venuses 39582 Venusian 37225 Venusians 9054 @@ -110470,6 +112341,7 @@ Vians 354 Viar 3453 Viars 507 Vias 7670 +Viatichi 365 Viator 65903 Viators 486 Viau 13224 @@ -110548,6 +112420,7 @@ Vidalia 5093 Vidalian 2172 Vidana 386 Vidar 27057 +Vidarbha 13896 Vidas 14799 Vidaurre 3006 Vidaurri 2015 @@ -110569,6 +112442,7 @@ Vidyasagar 16202 Vidzeme 2198 Vie 749428 Vieau 447 +Viedma 14657 Vieillot 52378 Vieira 136677 Viel 36357 @@ -110638,6 +112512,7 @@ Vijaya 61228 Vijayadashami 229 Vijayanagara 27095 Vijayawada 6337 +Vijnanavada 3449 Vik 47352 Viking 1654145 Vikingism 549 @@ -110753,6 +112628,7 @@ Vincentian 16448 Vincentians 5715 Vincentis 1003 Vincents 32167 +Vincenzo 357252 Vincian 1038 Vinciguerra 6669 Vincoli 18985 @@ -110813,7 +112689,9 @@ Viponds 109 Vipperman 306 Virac 2608 Viracocha 23733 +Viramgam 4568 Virani 4844 +Virar 1622 Viray 720 Virbius 16152 Virchow 345877 @@ -110822,6 +112700,7 @@ Virden 6989 Virella 1220 Virga 12746 Virgas 291 +Virgie 10137 Virgil 4263511 Virgilian 166245 Virgilianism 1099 @@ -110865,6 +112744,7 @@ Visconti 461239 Viscontis 7705 Viscos 1500 Viscount 8008931 +Viscounts 119726 Visct 96435 Viscuso 430 Vise 72954 @@ -110873,6 +112753,7 @@ Vises 2700 Vishakhapatnam 2882 Vishal 6352 Vishnu 633693 +Vishnupriya 161 Vishu 1098 Vishwamitra 3114 Visigoth 43440 @@ -111041,6 +112922,7 @@ Vogul 7087 Voguls 9483 Vohra 13173 Vohwinkel 6375 +Voice 2707466 Voight 33970 Voights 771 Voigt 233095 @@ -111064,6 +112946,7 @@ Volcae 9446 Volcanalia 1066 Volcano 210952 Volcanus 3529 +Volchok 1901 Volcy 2486 Vold 11056 Voldemort 39675 @@ -111094,6 +112977,8 @@ Volkswagen 394008 Volkswagens 12142 Voll 31956 Vollbrecht 3845 +Voller 21892 +Vollers 4287 Vollman 4318 Vollmar 12440 Vollmer 56766 @@ -111180,6 +113065,7 @@ Vorbeck 27250 Vorce 1894 Vorces 200 Vorderer 4288 +Vorderman 6302 Vordernberg 3890 Vore 16527 Vores 4567 @@ -111313,6 +113199,7 @@ Vy 76237 Vyacheslav 42219 Vyas 28399 Vyasa 42810 +Vyatichi 315 Vyborg 28979 Vygotskian 33594 Vygotskians 859 @@ -111374,6 +113261,7 @@ WB 372642 WBA 15909 WBC 103829 WBE 3043 +WBG 10566 WBN 3030 WBO 5637 WBS 38110 @@ -111391,6 +113279,7 @@ WCW 9773 WDC 29901 WDCs 11170 WDI 17016 +WDL 3463 WDM 54430 WDS 13507 WDs 2776 @@ -111411,7 +113300,6 @@ WFFs 503 WFH 3367 WFK 410 WFL 16532 -WFNA 236 WFOE 2151 WFOEs 3100 WFP 131991 @@ -111457,6 +113345,7 @@ WITs 1541 WIV 24570 WJC 12204 WJs 115 +WKB 17214 WKF 491 WKT 2081 WL 223722 @@ -111530,6 +113419,7 @@ WRU 9250 WRULD 1349 WRULDs 1089 WRVS 19852 +WRX 2925 WS 506175 WSBK 156 WSC 113311 @@ -111550,6 +113440,7 @@ WSS 37616 WSTA 837 WSU 7365 WSW 107556 +WSX 683 WTA 42699 WTB 11937 WTCs 490 @@ -111575,6 +113466,7 @@ WVS 57102 WVTR 2059 WVU 2761 WW 406537 +WWAN 1001 WWC 7122 WWE 21462 WWF 238812 @@ -111597,6 +113489,7 @@ WYSIWYG 17079 Wa 496613 Waage 34057 Waages 265 +Waaihoek 958 Waal 257499 Waals 395503 Waama 184 @@ -111807,6 +113700,7 @@ Wainright 15288 Wains 6908 Wainscott 7223 Wainscotts 137 +Wainuiomata 898 Wainwright 624672 Wainwrights 4932 Waiouru 1573 @@ -111918,6 +113812,7 @@ Waldrup 355 Waldschmidt 10815 Waldstreicher 2206 Waldvogel 6910 +Walek 1811 Walen 8960 Walens 4870 Walenski 851 @@ -111951,6 +113846,7 @@ Walkerian 924 Walkerism 291 Walkers 138546 Walkes 7845 +Walkey 16165 Walkford 1217 Walkhampton 10410 Walkins 4723 @@ -112012,6 +113908,7 @@ Wallington 273095 Wallingtons 666 Wallins 1103 Wallis 1653084 +Wallisellen 2405 Wallisian 1261 Wallisians 1313 Wallman 25317 @@ -112161,7 +114058,9 @@ Wannamakers 115 Wannan 5180 Wannemacher 1341 Wanner 43802 +Wanneroo 1272 Wanners 462 +Wannon 3547 Wanquan 431 Wanrong 319 Wans 21730 @@ -112227,6 +114126,7 @@ Wardlows 905 Wardman 25538 Wardon 25477 Wardons 853 +Wardour 427987 Wardrip 3974 Wardrop 119598 Wardrope 7770 @@ -112260,6 +114160,7 @@ Warholian 3203 Warhurst 37095 Wari 35719 Waring 598531 +Wario 920 Wark 159269 Warkentin 12474 Warks 46164 @@ -112319,6 +114220,7 @@ Warrilow 16430 Warriner 50880 Warriners 875 Warring 87657 +Warringah 2801 Warrings 419 Warrington 2034241 Warringtonian 224 @@ -112365,6 +114267,7 @@ Wases 17831 Wash 1242524 Washabaugh 2343 Washam 1576 +Washbourne 84184 Washburn 180369 Washburns 475 Washer 92940 @@ -112380,6 +114283,7 @@ Washiyama 301 Washko 645 Washminster 217 Washoe 37927 +Wasian 455 Wasielewski 10522 Wasik 16277 Wasilewski 8864 @@ -112790,6 +114694,7 @@ Weihers 162 Weihes 230 Weihsien 4952 Weihui 546 +Weija 1993 Weik 8698 Weikel 1705 Weikert 3851 @@ -112937,6 +114842,7 @@ Wells 8325096 Wellsboro 1020 Wellsburg 1099 Wellsian 22853 +Wellsians 654 Wellstone 5910 Wellsy 323 Welly 12888 @@ -113002,6 +114908,7 @@ Wenchow 13487 Wenchuan 5492 Wenck 20432 Wend 54860 +Wenda 13272 Wendake 604 Wendat 3182 Wendell 336576 @@ -113105,8 +115012,10 @@ Wernicks 294 Werra 27987 Werre 7927 Werres 4634 +Werrett 4177 Werribee 13072 Werrington 40585 +Werriwa 445 Wersching 307 Werschkul 283 Wertenbaker 28513 @@ -113263,6 +115172,7 @@ Westmount 18178 Westoe 22581 Westoll 19603 Weston 3042432 +Westoning 8277 Westover 49154 Westow 21756 Westoxification 1446 @@ -113423,6 +115333,7 @@ Whelehan 16196 Whelley 2714 Whelpley 9325 Whelton 10582 +Whenby 4236 Whenuapai 1238 Wherley 819 Whernside 18887 @@ -113469,6 +115380,7 @@ Whiglings 913 Whigs 2500606 Whimple 18630 Whinery 1683 +Whinham 7029 Whinmoor 4001 Whipkey 1259 Whipp 46367 @@ -113517,6 +115429,7 @@ Whitcombs 426 Whitcraft 639 White 31447401 Whiteacre 38271 +Whiteadder 9666 Whiteaker 2208 Whiteakers 399 Whitean 594 @@ -113529,6 +115442,7 @@ Whitecraigs 4146 Whitecroft 16307 Whited 8938 Whitefield 526063 +Whitefieldian 926 Whiteford 67160 Whitefords 234 Whitehair 2669 @@ -113584,6 +115498,7 @@ Whitewatergate 212 Whiteway 85477 Whiteways 6891 Whitfield 643556 +Whitfieldian 520 Whitfields 3604 Whitford 161438 Whitfords 515 @@ -113681,6 +115596,7 @@ Whixall 7332 Whixley 12134 Who 35885461 Whobrey 389 +Whome 18818 Whoniverse 276 Whoosis 247 Whorf 86814 @@ -113725,6 +115641,7 @@ Wichmanns 267 Wick 721826 Wickard 3393 Wicke 26810 +Wickenby 5528 Wickenden 37688 Wickendens 123 Wickens 132493 @@ -113905,6 +115822,7 @@ Wiker 1514 Wikers 183 Wikes 18396 Wiki 31467 +WikiLeaks 44618 Wikia 842 Wiking 13811 Wikings 3499 @@ -113918,6 +115836,7 @@ Wikoff 7938 Wiks 1403 Wikstrom 14395 Wiktionary 2929 +Wil 390339 Wilbarger 3460 Wilber 87975 Wilberforce 1404038 @@ -113963,6 +115882,7 @@ Wilders 37029 Wilderswil 958 Wildey 22145 Wildgust 1836 +Wildian 167 Wilding 255592 Wildings 6167 Wildish 11116 @@ -114165,6 +116085,7 @@ Wilmeth 4195 Wilmington 468780 Wilmore 46333 Wilmores 159 +Wilmorton 993 Wilmot 959341 Wilmoth 8888 Wilmott 93329 @@ -114324,6 +116245,7 @@ Wingatui 271 Wingding 75 Wingdings 1238 Winge 30206 +Wingecarribee 775 Winger 20834 Wingers 5339 Wingert 4995 @@ -114518,6 +116440,7 @@ Wisener 641 Wiser 68384 Wisers 557 Wish 546544 +Wisham 2326 Wishart 566586 Wisharts 2118 Wishaw 170537 @@ -114572,6 +116495,7 @@ Witczak 2125 Witek 8377 Witham 478601 Withams 2022 +Withcall 3290 Withee 540 Withem 854 Wither 246436 @@ -114581,6 +116505,7 @@ Witherell 6426 Withering 115664 Witherington 85829 Witheringtons 1147 +Witherley 9556 Withern 5696 Withernsea 35070 Witherow 13538 @@ -114655,6 +116580,7 @@ Wixes 295 Wixom 4843 Wixon 6395 Wixson 3174 +Wixted 3891 Wiyot 2025 Wlodarczyk 3059 Wn 79290 @@ -114828,7 +116754,6 @@ Womack 86062 Womacks 281 Womble 10406 Wombles 12022 -Wombo 734 Wombourne 14769 Wombwell 109726 Wombwells 685 @@ -114855,6 +116780,7 @@ Woo 303660 Wooburn 34048 Wood 18143735 Woodacre 1529 +Woodale 1884 Woodall 263723 Woodalls 1499 Woodard 76080 @@ -115041,6 +116967,7 @@ Worden 125639 Wordens 514 Wordian 1219 Wordlaw 181 +Wordsley 23237 Wordsworth 5008740 Wordsworthian 95069 Wordsworthianism 1205 @@ -115069,6 +116996,7 @@ Worlingham 16659 Worm 448328 Worman 16325 Wormans 199 +Wormbridge 2982 Wormegay 8887 Wormeley 12007 Wormian 11538 @@ -115162,6 +117090,7 @@ Wrenbury 62332 Wrench 165366 Wrenches 17308 Wrenn 54917 +Wrennian 245 Wrenns 301 Wrens 83850 Wrenthorpe 6833 @@ -115180,6 +117109,7 @@ Wrightsman 12497 Wrightsmans 301 Wrightson 253625 Wrightsons 917 +Wrightstown 766 Wrightsville 3993 Wrightwood 1997 Wrighty 1984 @@ -115189,6 +117119,7 @@ Wrinehill 3093 Wrington 55634 Wrinkle 20855 Wrinkles 40326 +Wriothesley 195242 Wrisley 1837 Wriston 10830 Writer 1501218 @@ -115241,6 +117172,7 @@ Wuhsien 137 Wuhu 26158 Wujiang 2912 Wuku 583 +Wulai 1419 Wulff 77502 Wulffs 521 Wulfila 10205 @@ -115313,6 +117245,7 @@ Wychnor 6091 Wychwood 72622 Wyckoff 47479 Wyckoffs 148 +Wyclef 2960 Wycliffe 503325 Wycliffes 1566 Wycliffian 811 @@ -115383,6 +117316,7 @@ Wynkoops 271 Wynn 700246 Wynne 925391 Wynns 12289 +Wynona 4670 Wynter 176097 Wynyard 101785 Wyodak 1735 @@ -115460,7 +117394,6 @@ XPointer 1197 XPs 4441 XQ 10877 XQuery 4835 -XR 47111 XRR 1160 XSD 3710 XSL 10947 @@ -115607,6 +117540,7 @@ Xinca 940 Xincai 202 Xincan 188 Xindian 844 +Xinfeng 880 Xinfu 447 Xing 110523 Xingcheng 905 @@ -115621,6 +117555,9 @@ Xinhua 184569 Xinhui 2022 Xining 11631 Xinjiang 232159 +Xinping 1168 +Xinpu 495 +Xinqing 229 Xinrong 259 Xins 113 Xinshi 587 @@ -115713,6 +117650,7 @@ YBAs 2860 YBCO 31100 YBP 2116 YC 55132 +YCH 2641 YCL 17162 YCP 2126 YE 343667 @@ -115806,6 +117744,7 @@ Yagi 50980 Yagis 1254 Yagnob 946 Yagnobi 259 +Yago 12175 Yagua 3774 Yaguchi 3072 Yah 94194 @@ -115814,6 +117753,7 @@ Yahgans 4387 Yahir 663 Yahn 2249 Yahnke 235 +Yahoel 1495 Yahoo 138071 Yahoos 75454 Yahtzee 1716 @@ -115896,6 +117836,7 @@ Yamanaka 40212 Yamanashi 20920 Yamane 22688 Yamanoue 501 +Yamantaka 3286 Yamasaki 40679 Yamasee 3171 Yamasees 1993 @@ -115951,6 +117892,7 @@ Yangluo 111 Yangon 62186 Yangpu 3575 Yangquan 1145 +Yangshao 8545 Yangshuo 5330 Yangshupu 394 Yangtse 137516 @@ -115974,6 +117916,7 @@ Yankeeisms 2343 Yankeeized 133 Yankees 301687 Yankeetown 507 +Yankelovich 12585 Yankes 248 Yankey 7366 Yankeys 493 @@ -116059,6 +118002,7 @@ Yarkand 130779 Yarkandi 2986 Yarkant 317 Yarker 15770 +Yarl 17784 Yarlagadda 1161 Yarm 72430 Yarmouk 16687 @@ -116343,6 +118287,7 @@ Yhi 780 Yi 550010 Yiannitsa 564 Yiannopoulos 2778 +Yib 295 Yibin 3824 Yichang 10033 Yicheng 1450 @@ -116371,6 +118316,7 @@ Yidu 413 Yielding 145399 Yieldings 245 Yiewsley 23343 +Yijiang 630 Yijun 1213 Yilan 3877 Yildirim 14084 @@ -116396,6 +118342,7 @@ Yingshan 639 Yingst 1030 Yingze 787 Yining 6630 +Yinlong 325 Yins 1376 Yintai 155 Yip 83511 @@ -116595,6 +118542,7 @@ Yougoslavia 1762 Yougoslavian 49 Yougoslavs 442 Youkhana 177 +Youlgreave 19073 Youman 2444 Youmans 31981 Youn 38104 @@ -116604,6 +118552,7 @@ Young 21223285 Youngberg 3321 Youngblood 29771 Youngbloods 1806 +Youngdahl 1675 Younger 1604868 Youngerman 2396 Youngers 6627 @@ -116651,6 +118600,7 @@ Yowell 4046 Yown 334 Yows 471 Yoxall 101347 +Yoyo 16291 Yp 16329 Ypres 633004 Ypresian 11292 @@ -116759,7 +118709,6 @@ Yumiko 7886 Yums 497 Yun 218353 Yuna 6186 -Yunan 34400 Yunani 3082 Yuncheng 1494 Yunfu 483 @@ -116777,6 +118726,7 @@ Yunmeng 762 Yunnan 539676 Yunnanese 9746 Yuns 400 +Yunupingu 2503 Yunxi 911 Yunyang 867 Yunzhou 178 @@ -116845,6 +118795,7 @@ ZDV 12990 ZEC 5075 ZELL 5057 ZETA 15654 +ZEZ 485 ZF 71913 ZFC 18486 ZIF 4294 @@ -117283,6 +119234,8 @@ Zecharia 2816 Zechariah 466507 Zechman 1065 Zechstein 67112 +Zeddies 823 +Zeddy 1096 Zedekiah 206258 Zee 302834 Zeeb 31176 @@ -117298,6 +119251,7 @@ Zeeman 219459 Zeenat 5482 Zeerust 24538 Zees 1552 +Zeeshan 1271 Zeewolde 456 Zeferino 2849 Zegarra 2613 @@ -117331,6 +119285,7 @@ Zelasko 598 Zelaya 23240 Zelazny 9889 Zelda 157793 +Zeldas 163 Zeledon 4770 Zelenak 1022 Zelenka 12800 @@ -117416,6 +119371,7 @@ Zeppelins 117689 Zepps 3457 Zepu 183 Zerahiah 3310 +Zeralda 1297 Zeravshan 4888 Zerbe 14152 Zerbes 442 @@ -117447,6 +119403,7 @@ Zetlandic 1869 Zettel 13042 Zettelkasten 138 Zettels 264 +Zetter 21053 Zettler 9421 Zeug 4555 Zeugs 62 @@ -117470,6 +119427,7 @@ Zhai 21693 Zhan 33111 Zhanaozen 404 Zhang 1263912 +Zhanghua 416 Zhangjiajie 1776 Zhangjiakou 2732 Zhangpu 291 @@ -117508,6 +119466,7 @@ Zhmud 1746 Zhmuds 109 Zhong 124679 Zhongdu 1695 +Zhongguo 165876 Zhongli 2771 Zhonglu 1261 Zhongnanhai 8295 @@ -117816,6 +119775,7 @@ Zraick 424 Zsuzsanna 5975 Zu 164726 Zuara 6174 +Zub 3050 Zubair 43673 Zubarevich 608 Zubatovshchina 663 @@ -118329,7 +120289,6 @@ abidingly 13713 abidingness 9731 abidings 3292 abids 234 -abie 15701 abience 769 abient 870 abier 297 @@ -119339,6 +121298,7 @@ accelerometry 3210 accels 485 accendibility 851 accent 4151227 +accentable 548 accented 539807 accentedness 2711 accenting 40111 @@ -119356,6 +121316,7 @@ accentuation 324193 accentuations 10155 accentuator 412 accentuators 671 +accentus 5519 accept 39145733 acceptabilities 1128 acceptability 756682 @@ -119436,6 +121397,7 @@ acciaccaturas 1913 acciaccature 835 accidence 74699 accidences 1929 +accidens 60375 accident 19822145 accidental 5501344 accidentalism 1678 @@ -119446,9 +121408,11 @@ accidentally 3237916 accidentalness 1342 accidentals 74818 accidented 4324 +accidentia 9410 accidently 78197 accidentology 167 accidents 9153137 +accidia 4567 accidie 17080 accinge 117 accinged 215 @@ -120146,6 +122110,7 @@ achari 284 achars 303 acharya 3746 acharyas 1021 +achatina 2937 achatinella 339 achators 181 achatour 368 @@ -120592,7 +122557,6 @@ acquitals 311 acquited 11676 acquites 454 acquiting 1549 -acquitment 1735 acquitments 401 acquits 98563 acquittal 959183 @@ -121298,6 +123262,7 @@ adamellites 2691 adamite 6033 adamites 636 adamsite 671 +adanal 5493 adance 1644 adangle 362 adansonia 1416 @@ -121367,6 +123332,7 @@ adawluts 676 adaxial 65497 adaxially 10622 adaxonal 526 +adaze 190 adazzle 1558 adcauline 607 adcumulate 469 @@ -121441,6 +123407,7 @@ addlement 169 addlepated 2029 addles 3465 addling 6543 +addnl 26035 addolorato 323 addon 16013 addons 3984 @@ -121451,6 +123418,7 @@ address 36115370 address'd 102499 addressability 4017 addressable 43223 +addressal 195 addressed 27140118 addressee 537353 addressees 158330 @@ -121657,6 +123625,8 @@ adespota 1626 adespotic 222 adessive 2678 adfected 2856 +adfreeze 111 +adfreezing 420 adhan 5944 adharma 6102 adharmic 412 @@ -121916,6 +123886,7 @@ adjutator 605 adjutators 3804 adjutor 20347 adjutors 11103 +adjutory 547 adjutrice 133 adjutrices 999 adjutrix 1251 @@ -122091,6 +124062,7 @@ admonitorily 626 admonitors 922 admonitory 115210 admonitrix 95 +admor 3394 admynistre 46 adnascent 134 adnate 136209 @@ -122124,6 +124096,7 @@ adolescent 2142056 adolescently 1103 adolescents 1952831 adolescing 344 +adonidin 943 adonise 211 adonised 75 adonises 86 @@ -122200,6 +124173,8 @@ adorning 504916 adornings 9786 adornment 583769 adornments 216524 +adorno 9921 +adornos 3593 adorns 396869 ados 8010 adovada 65 @@ -122219,6 +124194,7 @@ adradial 8575 adradially 659 adrak 412 adream 3983 +adrectal 256 adrenal 1282181 adrenalectomies 743 adrenalectomised 15824 @@ -122429,6 +124405,7 @@ adv 1289281 advance 33455527 advanceable 274 advanced 34739431 +advancedly 237 advancedness 977 advancement 5005706 advancemente 514 @@ -122482,6 +124459,7 @@ adventitiousness 560 adventive 11833 adventives 1987 advents 11745 +adventual 362 adventure 6514790 adventured 141023 adventureful 108 @@ -122965,6 +124943,8 @@ aeroplaning 3519 aeroplanist 1218 aeroplanists 1281 aeroplankton 429 +aeropolitical 503 +aeropolitics 219 aeroponic 599 aeroponics 797 aeroport 863 @@ -123298,6 +125278,7 @@ affixeth 259 affixial 115 affixing 315718 affixion 833 +affixless 210 affixment 405 affixoids 273 affixture 1112 @@ -123621,6 +125602,7 @@ aftername 210 afternames 43 afterness 813 afternoon 22302370 +afternooners 152 afternoones 3242 afternoonish 151 afternoons 1115266 @@ -123726,6 +125708,8 @@ agalite 584 agalloch 293 agallochum 2203 agallop 227 +agalma 6079 +agalmata 1893 agalmatolite 3145 agalmatophilia 219 agals 305 @@ -123846,6 +125830,7 @@ agemates 3498 agenbite 1020 agencies 11806342 agency 15463871 +agencywide 132 agenda 6231126 agendae 1051 agendaless 59 @@ -124093,6 +126078,7 @@ agitatedly 37111 agitates 105631 agitateth 260 agitating 637742 +agitatingly 275 agitation 6570730 agitational 27154 agitationist 53 @@ -124118,6 +126104,7 @@ aglets 6619 agley 13727 aglimmer 587 aglint 1085 +aglisten 321 aglitter 4733 aglomerates 120 aglomerular 2123 @@ -124245,6 +126232,7 @@ agons 3435 agony 4318550 agora 181120 agorae 819 +agorai 1484 agoranomoi 2024 agoranomos 2629 agoraphilia 168 @@ -124392,6 +126380,8 @@ agroclavine 1552 agroclimate 369 agroclimates 107 agroclimatic 6853 +agroclimatological 725 +agroclimatology 1161 agrodiversity 1226 agrodolce 1330 agroecological 16759 @@ -124494,6 +126484,7 @@ ags 24598 aguacate 2007 aguacates 827 aguaje 625 +aguamiel 1161 aguardiente 25894 aguardientes 602 ague 665333 @@ -124603,8 +126594,10 @@ aidings 543 aidless 3482 aidman 279 aidmen 308 +aidoru 265 aidos 11149 aids 3952626 +aie 186632 aiea 5294 aiee 840 aieee 110 @@ -124655,6 +126648,10 @@ ailurophobia 492 aim 23824136 aim'd 52657 aimable 38831 +aimag 6038 +aimags 1873 +aimak 2070 +aimaks 1433 aimara 272 aimed 10688323 aimer 79586 @@ -124671,6 +126668,7 @@ aimlessness 40000 aimpoint 1581 aimpoints 434 aims 12345185 +ain 778159 ain' 78 ain't 10026 ain'tcha 1130 @@ -124684,6 +126682,7 @@ air 121610103 airable 697 airag 2732 airan 1056 +airation 224 airbag 34788 airbags 31911 airball 561 @@ -124809,6 +126808,7 @@ airhouses 434 airier 14628 airiest 18508 airified 1191 +airigh 1031 airily 190985 airiness 56625 airing 570299 @@ -124999,6 +126999,7 @@ ajies 158 ajingle 323 ajinomoto 85 ajis 363 +ajitter 47 ajiva 1886 ajmalicine 2549 ajmaline 4833 @@ -125012,6 +127013,7 @@ ajowan 4924 ajr 6334 ajuga 1044 ajugas 462 +ajumble 880 ajutage 3900 ajutages 1704 ajvar 369 @@ -125082,6 +127084,7 @@ akinness 199 aklavinone 622 aknee 140 akoluthic 316 +akosmism 313 akousmata 703 akpeteshi 197 akpeteshie 1811 @@ -125770,9 +127773,11 @@ algoneurodystrophy 118 algophilia 113 algophobia 163 algor 2458 +algorisms 1064 algorist 86 algoristic 402 algorists 324 +algorithm 3419955 algorithmic 184715 algorithmical 842 algorithmically 17935 @@ -125895,7 +127900,6 @@ alimentive 543 aliments 97195 alimonies 930 alimonious 114 -alimony 273031 alims 1037 alinasal 4568 alinearity 178 @@ -126483,6 +128487,7 @@ alloantigenic 1489 alloantigens 15931 allobarbital 228 allobetulin 337 +alloc 9590 allocable 18096 allocare 1438 allocatable 7961 @@ -126528,6 +128533,7 @@ allocreadiid 101 allocryptopine 316 allocution 39921 allocutions 9792 +allocutive 719 allocyclic 2109 allod 4919 allodapic 297 @@ -127015,6 +129021,7 @@ alodial 10065 alodialist 281 alodialists 384 alodially 361 +alodiaries 371 alodium 3089 alods 2810 aloe 194308 @@ -127042,6 +129049,7 @@ alone 85391428 alonely 15149 aloneness 64976 aloner 1303 +aloners 529 along 98690755 alongshelf 149 alongshore 25940 @@ -127352,6 +129360,8 @@ alulae 7459 alular 661 alulas 172 alum 1500381 +alumbrado 1047 +alumbrados 2966 alumed 7735 alumian 183 alumina 2449200 @@ -127372,6 +129382,7 @@ aluminising 5207 aluminite 2266 aluminium 9554002 aluminiums 2218 +aluminiumware 532 aluminize 269 aluminized 24615 aluminizing 8256 @@ -127454,7 +129465,6 @@ alveus 26928 alvikite 578 alvikites 475 alvimopan 213 -alvine 56289 alvinellid 239 alvite 522 alway 464093 @@ -127692,6 +129702,7 @@ ambilingual 424 ambilingualism 287 ambilinguals 135 ambilocal 337 +ambilogy 124 ambiophonic 290 ambiphilic 789 ambipolar 13814 @@ -128270,6 +130281,7 @@ aminophospholipid 671 aminophospholipids 606 aminophosphonate 1181 aminophosphonates 983 +aminophyllin 709 aminophylline 37970 aminopiperidine 401 aminoplastic 3492 @@ -128712,6 +130724,10 @@ amphibolies 962 amphibolite 107047 amphibolites 54285 amphibolitic 4573 +amphibolitization 914 +amphibolitized 1107 +amphibolization 1013 +amphibolized 1103 amphibologia 495 amphibological 1927 amphibologically 153 @@ -129078,6 +131094,7 @@ amyotrophies 1058 amyotrophy 18382 amyrin 17003 amyrins 1231 +amyris 2779 amyss 912 amysses 207 amytal 25533 @@ -129715,6 +131732,8 @@ anchorpeople 174 anchorperson 1264 anchorpersons 565 anchors 1171340 +anchorsmith 2319 +anchorsmiths 2241 anchorwoman 5009 anchorwomen 350 anchory 207 @@ -129724,6 +131743,7 @@ anchours 178 anchoveta 9916 anchovetas 314 anchovetta 445 +anchovied 117 anchovies 201835 anchovy 212984 anchusa 4578 @@ -129988,7 +132008,6 @@ anemochorous 1062 anemochory 393 anemogram 1651 anemograms 1887 -anemographic 631 anemological 227 anemology 230 anemometer 238407 @@ -130018,7 +132037,6 @@ anencephalous 4826 anencephalus 9057 anencephaly 36801 anend 3254 -anenst 4538 anenterous 359 anephric 5153 anepigraphic 2686 @@ -130659,6 +132677,7 @@ anisakids 549 anisaldehyde 13346 anisate 3508 anisates 249 +anisatin 206 anise 165185 aniseed 112921 aniseeded 185 @@ -130981,7 +133000,6 @@ annullings 103 annulment 550443 annulments 18047 annuloaortic 706 -annuloid 573 annuloplasty 11417 annulose 10900 annulospiral 1885 @@ -131223,6 +133241,8 @@ ansae 8577 ansafone 5820 ansamycin 1160 ansamycins 917 +ansaphone 19069 +ansaphones 265 ansate 3622 ansated 1036 ansatz 29691 @@ -131308,6 +133328,7 @@ antarctic 124909 antarthritic 343 antas 2889 antazoline 3125 +antbed 132 antbird 1305 antbirds 2678 ante 7542551 @@ -131451,6 +133472,7 @@ anteport 922 anteposition 1651 antepost 465 anteprandial 629 +anterevolutionary 274 anteriad 1807 anterioposterior 1055 anterior 12141090 @@ -131681,6 +133703,7 @@ anthromorphic 1102 anthrone 29440 anthrones 2299 anthrophilic 156 +anthrophobia 214 anthropic 46685 anthropical 359 anthropically 717 @@ -132118,6 +134141,7 @@ antichambers 3474 antichange 202 antichaos 305 anticharm 353 +antichauvinist 50 antichemical 572 antichemotactic 99 antichicken 209 @@ -132558,6 +134582,7 @@ antientropic 441 antients 133189 antienvironment 372 antienvironmental 1087 +antienvironmentalism 266 antienvironmentalist 313 antienvironmentalists 170 antienzymatic 245 @@ -132686,7 +134711,6 @@ antifog 1088 antifoggant 1019 antifoggants 1180 antifogging 1726 -antifogmatic 48 antifolate 7086 antifolates 3032 antifolic 1483 @@ -133391,6 +135415,7 @@ antiopiumists 150 antioppression 522 antioppressive 2665 antiorganic 129 +antiorganization 105 antiorthodox 151 antiosteoporosis 113 antiosteoporotic 435 @@ -133734,6 +135759,7 @@ antiquarianisms 850 antiquarianizing 209 antiquarianly 213 antiquarians 241189 +antiquariat 229 antiquaries 694951 antiquarism 573 antiquarium 1694 @@ -133998,6 +136024,7 @@ antiskating 450 antiskepticism 208 antiskid 3020 antiskidding 121 +antiskinning 465 antislave 1369 antislaver 45 antislavery 109777 @@ -134382,6 +136409,7 @@ antiwaste 820 antiwater 46 antiwear 4675 antiwelfare 765 +antiwestern 1710 antiwesternism 171 antiwetting 67 antiwhaling 682 @@ -135021,6 +137049,7 @@ apodeictical 732 apodeictically 2005 apodeixis 3440 apodema 649 +apodemal 1165 apodeme 17770 apodemes 14332 apodemic 807 @@ -135240,6 +137269,7 @@ aposporous 4671 aposporously 561 apospory 10832 apostacies 7618 +apostacized 141 apostacy 259774 apostasies 15574 apostasize 1293 @@ -135753,6 +137783,7 @@ appreciably 1934465 appreciant 82 appreciate 10642193 appreciated 8204685 +appreciater 194 appreciates 605325 appreciating 1071095 appreciatingly 1225 @@ -136776,6 +138807,7 @@ archiepiscopal 245196 archiepiscopate 15503 archiepiscopates 504 archies 3180 +archils 183 archimage 2558 archimages 815 archimagus 880 @@ -136794,6 +138826,7 @@ archipallial 141 archipallium 1950 archipelagic 47948 archipelago 787941 +archipelagoed 45 archipelagoes 34563 archipelagos 53757 archiphoneme 2565 @@ -136823,6 +138856,8 @@ architecture 14002172 architectured 2313 architectures 360015 architecturesque 1903 +architextual 324 +architextuality 707 architexture 464 architomy 402 architrave 288425 @@ -136921,6 +138956,7 @@ arciform 7312 arciliuto 376 arcing 183739 arcings 273 +arcjet 1448 arcked 181 arcking 1275 arclength 4098 @@ -136977,6 +139013,7 @@ arcure 172 arcus 65541 arcwelded 837 arcwelding 2739 +arcwise 1236 ard 676024 ardeb 7844 ardebs 9861 @@ -137503,6 +139540,7 @@ armloads 5542 armlock 4685 armlocked 119 armlocks 339 +armo 5947 armodafinil 903 armoir 321 armoire 47809 @@ -137928,7 +139966,7 @@ arschin 417 arschins 167 arse 620812 p arsecheeks 156 p -arsed 51176 +arsed 51176 p arseful 138 arsehole 72926 p arseholed 1107 p @@ -138003,7 +140041,7 @@ arsinate 988 arsinates 83 arsine 73488 arsines 15891 -arsing 4929 +arsing 4929 p arsinh 748 arsinic 23907 arsinoline 324 @@ -138375,6 +140413,7 @@ arums 15686 arundinaceous 1199 arura 2684 aruras 1376 +arusha 1783 aruspex 3096 aruspice 205 aruspices 5280 @@ -138499,6 +140538,8 @@ arythmia 554 arythmias 195 arythmic 364 as 3832840435 +asabiya 3331 +asabiyya 7106 asabiyyah 1476 asaccharolytic 981 asaddle 196 @@ -138664,8 +140705,6 @@ ascosporogenous 763 ascosporous 394 ascostroma 498 ascostromata 321 -ascot 6092 -ascots 680 ascribable 114854 ascribe 2249432 ascribed 7007979 @@ -138810,6 +140849,7 @@ ashtanga 1481 ashtray 227189 ashtrays 86578 ashugh 184 +ashwaganda 145 ashwagandha 2786 ashweed 46 ashwood 6574 @@ -139111,6 +141151,7 @@ aspiringness 125 aspirings 26401 aspirinlike 404 aspirins 39593 +aspiritual 3328 aspis 13867 aspish 243 asplenia 8802 @@ -139212,6 +141253,7 @@ assays 1070165 assback 533 asscheeks 312 p assclown 50 p +assed 169228 p assegaai 249 assegaais 199 assegai 60022 @@ -140102,6 +142144,7 @@ atemporal 48998 atemporality 6550 atemporally 3338 atenolol 59657 +atenteben 82 aterritorial 498 atest 21944 atextual 317 @@ -140127,7 +142170,6 @@ atheization 296 atheize 307 atheized 254 atheizing 78 -athel 1218 athelia 233 atheling 8738 athelings 2011 @@ -140601,6 +142643,7 @@ attid 165 attila 1697 attilas 280 attine 2319 +attines 755 attingent 592 attire 1690415 attired 909891 @@ -140733,6 +142776,7 @@ attritors 707 attritted 141 attritus 3551 attry 550 +atts 14853 attuition 1840 attuitional 1707 attunable 191 @@ -140743,6 +142787,7 @@ attunement 127538 attunements 6487 attunes 17643 attuning 28210 +atuk 233 atumble 221 atwain 3058 atween 55932 @@ -141185,6 +143230,7 @@ aurothiosulphate 456 aurous 17718 aurovertin 1665 aurovertins 161 +aurox 247 auroxanthin 383 aurresku 174 aurum 79383 @@ -141779,6 +143825,7 @@ autoinoculated 111 autoinoculation 5618 autoinoculations 649 autointegration 168 +autointoxicated 113 autointoxication 12067 autoionisation 2653 autoionization 13464 @@ -142001,6 +144048,7 @@ autopiloting 115 autopilots 15072 autopista 5591 autopistas 1096 +autopistol 331 autoplagiarism 131 autoplast 642 autoplastic 7633 @@ -142316,6 +144364,7 @@ autozygous 317 autumn 14758544 autumnal 845196 autumnally 1325 +autumned 213 autumnian 111 autumns 69954 autumntide 966 @@ -142467,6 +144516,7 @@ averagers 1116 averages 2484571 averaging 1976901 averagings 802 +averah 253 averbal 1324 averill 172 avermectin 5368 @@ -143308,7 +145358,6 @@ b'ys 1253 bDNA 1162 bTB 3194 ba 1029140 -ba' 1978 baa 154989 baaa 2164 baaad 873 @@ -143429,7 +145478,6 @@ babyfaced 1947 babyfather 281 babyfathers 93 babyfied 218 -babygirl 835 babygram 212 babygro 2359 babygros 1780 @@ -143528,6 +145576,8 @@ bachelours 480 baches 2494 baching 1157 bachs 698 +bachur 305 +bachurim 90 bacillaemia 2687 bacillar 8295 bacillary 139197 @@ -143552,6 +145602,7 @@ back 241873224 backable 372 backache 136204 backaches 9796 +backaching 911 backaction 1286 backarc 9191 backband 1685 @@ -144085,6 +146136,9 @@ bacteremia 68675 bacteremias 2840 bacteremic 5913 bacteria 7543419 +bacteriacidal 431 +bacteriacide 262 +bacteriacides 133 bacteriae 861 bacteriaemia 8565 bacteriaemias 261 @@ -144256,6 +146310,7 @@ badious 587 badjoe 184 badjoo 76 badju 136 +badkhn 574 badla 1303 badland 6522 badlands 33874 @@ -144282,6 +146337,7 @@ badshah 1031 badtempered 18319 baduk 77 badun 134 +badwill 772 bae 15220 baed 2344 bael 7409 @@ -144609,6 +146665,7 @@ baktuns 903 bakuchiol 99 bakufu 38408 bakula 608 +balaban 418 balace 957 balaces 485 balachaung 174 @@ -144656,6 +146713,7 @@ balantidia 655 balantidial 707 balantidiasis 1662 balantidium 868 +balanus 5270 balao 497 balas 12660 balases 291 @@ -144674,7 +146732,6 @@ balboa 6742 balboas 7725 balbriggan 296 balbriggans 94 -balbutient 137 balconet 144 balconets 227 balconette 1183 @@ -144734,6 +146791,7 @@ balefull 12984 balefullest 225 balefully 39245 balefulness 1362 +baleless 198 balenine 425 baler 61299 balers 32595 @@ -144781,7 +146839,7 @@ ballabile 697 ballabili 141 ballace 1759 ballaces 1049 -ballache 145 +ballache 145 p ballad 2640821 ballade 52709 balladed 757 @@ -144834,6 +146892,8 @@ ballcock 4798 ballcocks 1458 ballcourt 3258 ballcourts 2288 +balldress 2115 +balldresses 1018 balled 152803 baller 6251 ballerina 178921 @@ -144908,6 +146968,10 @@ balloonacy 213 ballooned 59380 ballooner 569 ballooners 802 +balloonet 353 +balloonets 431 +balloonette 322 +balloonettes 199 balloonfish 187 ballooning 145441 balloonings 206 @@ -144953,6 +147017,7 @@ ballraces 975 ballroom 600918 ballrooms 47480 balls 5758443 +ballsache 50 p ballsed 2613 ballses 61 ballsier 309 p @@ -145071,6 +147136,7 @@ bambooing 1661 bambooings 99 bamboolike 472 bamboos 354777 +bambooware 156 bamboowork 209 bamboozle 37503 bamboozled 58149 @@ -145447,6 +147513,8 @@ bankless 1570 banklike 332 bankline 335 banklines 167 +bankman 1077 +bankmen 1599 banknote 84189 banknotes 288502 bankocracy 551 @@ -145486,6 +147554,7 @@ banlieues 19143 banlieusard 286 banna 4468 bannable 157 +bannal 843 bannat 1203 bannats 89 banned 2054380 @@ -145507,6 +147576,7 @@ bannermen 9425 bannerol 1668 bannerols 2769 banners 1744079 +bannerstone 159 bannerwise 139 banneton 364 bannian 453 @@ -145646,6 +147716,7 @@ barang 4656 barangay 12393 barangays 5761 barani 2112 +barasingh 1935 barasingha 1763 barathea 3985 baratheas 291 @@ -145709,6 +147780,8 @@ barbecues 70521 barbecuing 14275 barbed 1000869 barbedly 46 +barbeiro 425 +barbeiros 137 barbel 125157 barbeled 85 barbell 26912 @@ -145764,6 +147837,8 @@ barbotine 20059 barbotte 155 barboy 424 barbs 249746 +barbudo 432 +barbudos 1321 barbule 6317 barbules 28366 barbut 681 @@ -146002,6 +148077,7 @@ barlings 465 barm 60154 barma 1039 barmaid 195413 +barmaidens 108 barmaids 53974 barman 309267 barmaster 8874 @@ -146036,6 +148112,7 @@ barnburners 163 barndoor 13612 barndoors 3337 barned 1046 +barnes 31773 barnet 6988 barnets 1081 barney 14880 @@ -146258,6 +148335,7 @@ barricader 280 barricaders 876 barricades 500982 barricading 37907 +barricadings 179 barricado 11257 barricadoed 26856 barricadoes 10124 @@ -146442,6 +148520,7 @@ basemap 2234 basemaps 663 basemen 2098 basement 3276258 +basemented 697 basementless 733 basements 213868 basen 5109 @@ -146829,6 +148908,7 @@ bat'leth 1138 bata 12552 batab 511 batakari 285 +batanga 78 batard 2021 batardeau 1337 batards 792 @@ -146918,6 +148998,7 @@ bathroomy 174 baths 3977964 bathtub 175187 bathtubs 29994 +bathware 165 bathwater 64900 bathwaters 151 bathy 3598 @@ -147156,6 +149237,8 @@ baudrickes 65 baudricks 295 baudrons 1416 bauds 48214 +bauer 11044 +bauers 2134 bauf 1356 baugh 4552 bauhinia 3097 @@ -147230,6 +149313,7 @@ bawneens 308 bawns 2287 bawtie 126 bawty 156 +bawu 254 bay 9828417 bay'd 8565 baya 9358 @@ -147319,7 +149403,9 @@ bc 1607168 bcc 51892 bcm 38014 bcos 1121 +bcs 3476 bcse 67 +bcus 300 bd 671137 bday 938 bdellion 196 @@ -147668,9 +149754,11 @@ beatus 36937 beau 820677 beaucoup 185973 beaucoups 140 +beaued 175 beaufet 8069 beaufets 1081 beaufin 229 +beauing 380 beauish 1078 beaumontague 138 beaupot 362 @@ -147934,6 +150022,7 @@ bedelship 245 bedenimed 133 bedes 14121 bedesmen 19808 +bedesten 853 bedeswoman 945 bedeswomen 2281 bedevil 54734 @@ -148116,6 +150205,7 @@ bedtime 596209 bedtimes 17124 bedtop 101 beducked 258 +bedug 191 beduked 217 bedumbed 139 bedung 212 @@ -148683,6 +150773,7 @@ behoved 378346 behoveful 11734 behovefully 267 behovely 1193 +behoven 1461 behoves 640255 behoveth 72408 behoving 3898 @@ -148719,6 +150810,7 @@ beingness 13886 beings 14611031 beining 530 beira 1934 +beis 39108 beisa 5390 bejabbers 529 bejabers 592 @@ -149053,6 +151145,7 @@ belowstairs 4738 bels 29240 belsire 347 belt 8731416 +belta 3172 belted 316896 belter 106994 belters 2162 @@ -149141,6 +151234,7 @@ bemuddlement 334 bemuddles 148 bemuddling 272 bemuffled 401 +bemuscled 44 bemuse 21693 bemused 380391 bemusedly 11375 @@ -149342,6 +151436,7 @@ bennettitaleans 235 benni 1817 bennie 1399 bennies 2694 +benniseed 6901 benny 4399 beno 10465 benodanil 1944 @@ -149436,6 +151531,7 @@ benzazoles 476 benzbromarone 1399 benzedrine 15683 benzene 3297843 +benzeneazophenol 2723 benzenediamine 213 benzenedicarboxylate 304 benzenediol 648 @@ -149830,7 +151926,6 @@ bergh 3786 berghs 107 bergie 276 bergies 316 -bergmaster 125 bergmehl 466 bergs 121081 bergschrund 26498 @@ -149908,8 +152003,10 @@ bersagliere 1565 bersaglieri 6892 berseem 9288 berserk 111803 +berserked 46 berserker 16987 berserkers 8895 +berserking 438 berserkly 213 berserks 6438 bertam 918 @@ -150400,6 +152497,7 @@ betony 22645 betook 634741 betorn 755 betossed 1732 +betowelled 55 betrap 1503 betray 3119229 betrayable 56 @@ -150722,6 +152820,7 @@ bhangy 217 bharal 4013 bharals 155 bharta 713 +bhat 6962 bhatura 356 bhaturas 173 bhava 15994 @@ -150738,6 +152837,7 @@ bheesties 2614 bheesty 938 bhel 1804 bhelpuri 450 +bher 1869 bhikkhu 32594 bhikkhuni 2925 bhikkhunis 2416 @@ -150795,6 +152895,7 @@ bialys 613 biamped 65 biamping 368 biangle 452 +biangles 341 biangular 2006 biangulate 1299 biangulated 1763 @@ -150872,7 +152973,6 @@ bibenzimidazole 202 bibenzyl 6588 bibenzyls 851 bibes 1957 -bibi 12053 bibimbap 1901 bibingka 460 bibionid 467 @@ -151179,6 +153279,7 @@ bicycler 391 bicyclers 569 bicycles 823577 bicyclette 2859 +bicyclettes 498 bicyclic 77092 bicyclics 316 bicycling 102022 @@ -151343,6 +153444,7 @@ biflecnodes 251 bifloral 133 biflorous 550 bifluoride 9366 +bifluorides 737 bifocal 42563 bifocaled 112 bifocality 628 @@ -151356,6 +153458,7 @@ bifoliolate 745 bifolios 1249 bifolium 19652 bifonazole 1422 +bifora 1294 biforate 449 biforines 207 biforked 1516 @@ -151490,6 +153593,7 @@ bigtooth 281 biguanide 12413 biguanides 10422 biguanidine 558 +biguanidines 93 biguine 1778 bigun 275 biguttulate 1984 @@ -151705,6 +153809,7 @@ billables 173 billabong 9082 billabongs 5399 billander 300 +billanders 787 billboard 116163 billboarded 220 billboarding 325 @@ -151880,7 +153985,7 @@ bimillennial 384 bimineralic 611 bimini 987 biminis 164 -bimmer 135 +bimmer 135 p bimodal 138728 bimodalities 137 bimodality 13571 @@ -152014,6 +154119,7 @@ binit 528 binitarian 2979 binitarianism 660 bink 6200 +binkie 867 binkies 487 binks 2003 binky 706 @@ -152249,6 +154355,7 @@ biocognitive 323 biocolloid 409 biocolloidal 128 biocolloids 1460 +biocolonialism 353 biocommunication 417 biocommunications 173 biocommunities 169 @@ -152567,6 +154674,7 @@ biohydrogen 2459 biohydrogenation 3400 biohydrometallurgical 226 biohydrometallurgy 442 +bioi 3251 bioidentical 1516 bioimage 307 bioimaging 3050 @@ -153216,6 +155324,8 @@ biotissues 165 biotite 540408 biotites 21517 biotitic 3972 +biotitization 316 +biotitized 211 biotome 799 biotomes 197 biotope 24562 @@ -153330,6 +155440,7 @@ biphenylenes 890 biphenyls 72789 biphobia 2041 biphobic 702 +biphonemic 213 biphonic 221 biphosphatase 729 biphosphate 17165 @@ -153415,6 +155526,7 @@ biquadrate 3111 biquadrates 984 biquadratic 33236 biquadratics 2581 +biquaternary 188 biquaternion 643 biquaternions 1287 biquinary 677 @@ -153687,6 +155799,7 @@ biscuit 1355498 biscuitless 104 biscuitlike 153 biscuits 1579264 +biscuitware 795 biscuity 8083 bisdemethoxycurcumin 252 bise 14702 @@ -153744,6 +155857,7 @@ bishopping 840 bishopric 1433452 bishopricks 52474 bishoprics 549851 +bishopries 8110 bishopry 278 bishops 10718108 bishopship 165 @@ -153976,6 +156090,7 @@ bitopic 371 bitoscanate 120 bitplane 1023 bitplanes 858 +bitransitive 869 bitrate 13781 bitrates 4056 bitrochanteric 771 @@ -154036,6 +156151,7 @@ bittocks 207 bittorrent 181 bitts 37685 bitty 36065 +bitubercular 218 bituberculate 4438 bitumen 1220749 bitumened 605 @@ -154155,6 +156271,7 @@ bizzy 1695 bj 289404 bk 519526 bks 32232 +bla 53179 blaa 2325 blaas 2340 blab 64371 @@ -154175,7 +156292,7 @@ blabby 250 blabs 8208 blachang 321 black 79739521 -blackamoor 43237 +blackamoor 43237 p blackamoors 17164 blackamore 2989 blackamores 1107 @@ -154636,12 +156753,14 @@ blastomeres 88283 blastomeric 501 blastomers 397 blastomogenic 283 +blastomycetes 4416 blastomycetic 1646 blastomycin 1294 blastomycoses 378 blastomycosis 31776 blastomycotic 889 blastomylonite 707 +blastomylonites 884 blastophthoria 450 blastoporal 4333 blastopore 112530 @@ -154665,6 +156784,7 @@ blastular 569 blastulas 692 blastulation 1629 blastwave 670 +blasty 840 blat 16069 blatancies 647 blatancy 11930 @@ -154982,6 +157102,7 @@ blik 8668 bliks 1269 blim 1380 blimbing 367 +blime 3033 blimey 20818 blimming 629 blimp 26402 @@ -154999,7 +157120,6 @@ blinatumomab 217 blind 15728208 blindage 2067 blindages 3070 -blinde 83148 blinded 1817211 blindedly 97 blinden 2151 @@ -155283,6 +157403,8 @@ blondism 553 blondly 390 blondness 8755 blonds 19818 +blone 717 +blones 254 bloo 16560 blood 78535615 bloodbath 79268 @@ -155376,6 +157498,7 @@ bloodthirsting 110 bloodthirsts 113 bloodthirsty 429907 bloodthirstyness 133 +bloodwater 160 bloodwit 1436 bloodwite 1427 bloodwites 243 @@ -155390,6 +157513,7 @@ bloodyminded 8731 bloodymindedly 126 bloodymindedness 4947 blooey 923 +blooie 268 blook 6834 blooks 3959 bloom 4399623 @@ -155405,6 +157529,7 @@ bloometh 3896 bloomier 70 bloomiest 292 bloomin' 174 +bloominess 142 blooming 1494272 bloomingly 903 bloomings 1116 @@ -155775,6 +157900,7 @@ blurp 497 blurps 185 blurr 9567 blurred 1666714 +blurredly 345 blurredness 1125 blurrer 341 blurrers 603 @@ -155795,6 +157921,7 @@ blurting 52213 blurtingly 141 blurtings 313 blurts 38408 +blus 3584 blush 2619873 blushed 1187381 blusher 25964 @@ -155833,7 +157960,6 @@ bly 159118 blype 155 blypes 171 bm 86425 -bn 1077650 bo 7827851 bo's'n 2854 bo's'ns 117 @@ -155843,6 +157969,7 @@ bo't 1070 boa 242231 boa'd 439 boab 2947 +boabs 371 boaded 339 boading 1447 boads 1130 @@ -155934,6 +158061,7 @@ boating 518318 boatings 1626 boatkeeper 970 boatkeepers 1375 +boatlengths 141 boatless 1903 boatlift 2768 boatlifts 200 @@ -155962,6 +158090,7 @@ boatside 1074 boatsman 1716 boatsmen 1835 boatsteerer 2102 +boatsteerers 661 boatswain 419143 boatswains 31948 boattail 2254 @@ -155988,6 +158117,7 @@ bobbed 322927 bobber 5108 bobberies 331 bobbers 3712 +bobbes 821 bobbies 31770 bobbin 510782 bobbinet 5963 @@ -156161,6 +158291,7 @@ bodyhood 688 bodying 25342 bodyism 680 bodylength 1576 +bodylengths 212 bodyless 4736 bodylessness 85 bodylike 358 @@ -156314,6 +158445,7 @@ bohereens 227 bohireen 726 bohireens 165 boho 9401 +bohort 746 bohos 787 bohr 3791 bohrium 870 @@ -156391,6 +158523,7 @@ bokke 561 bokken 3271 bokmakierie 218 boko 6531 +bokola 661 bokor 2946 bokors 408 bokos 390 @@ -156888,8 +159021,8 @@ bonzes 33644 bonzo 596 bonzos 160 boo 261996 +boo'd 540 boob 55275 -booba 297 boobage 354 boobed 3641 boobery 48 @@ -156907,7 +159040,6 @@ booboos 325 boobs 100642 booby 253863 boobyalla 121 -boobyish 648 boobyism 550 boobytrap 1864 boobytrapped 2932 @@ -157059,6 +159191,7 @@ bookracks 405 bookrest 2025 bookrests 731 bookright 461 +bookrights 183 bookroll 1099 bookrolls 845 bookroom 7135 @@ -157114,6 +159247,7 @@ boomers 84194 boometh 885 boomie 241 boomier 182 +boomies 315 boominess 1130 booming 824586 boomingly 1306 @@ -157265,6 +159399,7 @@ boottopping 960 boottree 193 boottrees 339 bootup 702 +bootwear 87 booty 1444713 bootyless 142 bootylicious 745 @@ -157345,6 +159480,7 @@ bordarius 2344 bordars 99342 bordeaux 17464 bordei 1258 +bordeis 609 bordel 6621 bordello 28409 bordelloes 1192 @@ -157573,6 +159709,7 @@ borzoi 6162 borzois 4377 bos 104827 bos'n 8287 +bos'ns 233 bosa 1893 bosal 557 bosberaad 334 @@ -157592,7 +159729,9 @@ bosket 1191 boskets 1121 boskier 125 boskiest 69 +boskin 53 boskiness 596 +boskins 179 bosks 1791 bosky 49349 bosminids 194 @@ -157976,6 +160115,7 @@ bouncer 99346 bouncers 63213 bounces 149518 bounceth 457 +bounches 676 bouncier 1828 bounciest 820 bouncily 1187 @@ -158384,6 +160524,7 @@ bpd 128487 bpm 73937 bpp 3680 bps 80753 +br 520708 bra 603464 braai 12431 braaied 615 @@ -158456,6 +160597,7 @@ brachium 35082 brachot 126 brachs 704 brachy 14008 +brachyaxis 136 brachyblast 491 brachyblasts 703 brachycalyx 1309 @@ -158958,6 +161100,7 @@ brassfounding 2199 brassic 1586 brassica 60787 brassicaceous 600 +brassicae 108509 brassicas 55626 brassicasterol 1978 brassidate 222 @@ -159229,6 +161372,7 @@ breakee 54 breaker 1143303 breakerless 1390 breakers 1392327 +breakes 19012 breakest 10855 breaketh 101886 breakeven 76915 @@ -159571,6 +161715,7 @@ brewsterite 1102 brewsters 4703 brezilin 128 brian 28876 +brians 1866 briar 219095 briard 574 briared 647 @@ -159606,6 +161751,7 @@ brickclay 1343 brickclays 537 brickcoloured 1330 brickdust 24022 +brickearth 66670 bricked 146817 bricken 1639 bricker 331 @@ -159707,6 +161853,7 @@ bridgeless 10044 bridgelike 878 bridgeline 126 bridgemaker 332 +bridgemakers 211 bridger 1943 bridgers 1616 bridges 6809621 @@ -159771,8 +161918,6 @@ brigaded 44995 brigader 723 brigaders 2220 brigades 1152174 -brigadier 404921 -brigadiers 68258 brigadiership 369 brigading 6635 brigadista 536 @@ -159969,6 +162114,7 @@ bristols 1335 brisure 3790 brisures 1228 brit 25221 +britch 3348 britchen 296 britches 32750 britchka 3582 @@ -160047,12 +162193,14 @@ broadest 1154768 broadhead 1916 broadheads 1763 broadhorn 302 +broadhorns 241 broadish 29743 broadleaf 43671 broadleafs 372 broadleaved 132329 broadleaves 31748 broadline 1310 +broadloid 63 broadloom 7044 broadlooms 570 broadly 6507454 @@ -160113,6 +162261,7 @@ broccolini 1342 broccolis 2219 broccolo 286 broch 103133 +brocha 737 brochantite 4352 broched 2540 broches 7535 @@ -160121,6 +162270,7 @@ brochettes 6279 brochi 661 brochidodromous 466 broching 471 +brochos 101 brochs 47008 brochure 1681595 brochures 530460 @@ -160211,6 +162361,7 @@ brokership 759 brokerships 157 brokes 6975 brokest 887 +broket 1302 broking 150006 brolga 1386 brolgas 1166 @@ -160339,6 +162490,8 @@ bromoethanol 742 bromoform 43282 bromohydrin 8461 bromohydrins 1903 +bromoil 11427 +bromoils 1061 bromoindole 435 bromoiodized 463 bromoisatin 598 @@ -160365,6 +162518,7 @@ bromopropylate 885 bromopyridine 2911 bromopyridines 415 bromopyrrole 360 +bromopyrroles 133 bromopyruvate 1419 bromos 971 bromosuccinimide 20332 @@ -160461,6 +162615,7 @@ bronchopleural 9818 bronchopneumonia 93341 bronchopneumonias 791 bronchopneumonic 4594 +bronchopneumopathies 138 bronchopneumopathy 379 bronchoprotection 271 bronchoprotective 461 @@ -160803,6 +162958,7 @@ brume 8956 brumes 4191 brummagem 2229 brumous 1677 +brunatre 298 brunch 111859 brunched 271 brunchers 191 @@ -160824,6 +162980,7 @@ brunies 213 brunneous 1097 brunnera 382 brunneras 175 +brunnescent 121 brunoise 1445 brunost 165 brunted 197 @@ -160893,6 +163050,7 @@ brusquest 355 brusting 288 brustle 340 brustled 211 +brustles 677 brustling 580 brusts 283 brut 29090 @@ -160952,6 +163110,7 @@ bruxing 1069 bruxism 17671 bruxist 325 bruxists 251 +bruz 169 bryndza 329 bryoflora 656 bryological 4067 @@ -161279,6 +163438,7 @@ bufalin 508 bufexamac 314 buff 1879118 buffa 52906 +buffability 210 buffable 608 buffalo 1324340 buffaloberry 191 @@ -161379,7 +163539,7 @@ buggeree 64 buggerer 707 buggerers 429 buggeries 498 -buggering 18713 +buggering 18713 p buggers 106839 buggery 88057 buggier 159 @@ -161531,6 +163691,7 @@ bulimic 40823 bulimics 11540 buliminids 251 bulimy 1441 +bulin 1122 bulinid 319 bulk 15401475 bulkage 1311 @@ -161577,6 +163738,7 @@ bulldogged 305 bulldoggedness 92 bulldogger 216 bulldogging 938 +bulldoggish 438 bulldoggy 147 bulldogs 36745 bulldoze 25357 @@ -161724,6 +163886,7 @@ bumbarrels 261 bumbasted 1721 bumbasting 545 bumbee 713 +bumbees 813 bumbershoot 335 bumble 147510 bumblebee 46370 @@ -161747,6 +163910,7 @@ bumboats 4784 bumboo 270 bumboy 875 p bumboys 322 p +bumbum 295 bumetanide 13159 bumfit 1160 bumfluff 696 @@ -161873,7 +164037,7 @@ bungeed 383 bungees 1417 bunger 1771 bungers 188 -bunghole 18047 +bunghole 18047 p bungholes 2913 bungie 697 bungies 176 @@ -161940,6 +164104,7 @@ bunniahs 1198 bunnias 1104 bunnies 49084 bunning 711 +bunnock 309 bunns 975 bunny 130589 bunnyhopping 51 @@ -162041,6 +164206,7 @@ burdets 335 burdizzo 225 burdock 46005 burdocks 7029 +burdon 4822 burdons 996 burds 3767 bure 26360 @@ -162415,8 +164581,6 @@ buscon 654 bused 17221 buserelin 8504 buses 2960238 -busfare 663 -busfares 197 busful 492 busgirl 210 bush 5752505 @@ -162537,6 +164701,8 @@ businesswoman 68838 businesswomen 20675 businessy 954 busing 38488 +busk 48400 +busked 14061 busker 19798 buskers 25021 buskin 62474 @@ -162963,6 +165129,8 @@ butyrylcholine 2286 butyrylcholinesterase 6627 butyrylcholinesterases 348 butyrylthiocholine 1151 +buvette 2225 +buvettes 606 buxees 143 buxies 152 buxine 906 @@ -162980,6 +165148,7 @@ buydown 410 buyed 1825 buyer 4671649 buyers 4480990 +buyership 656 buyest 3685 buyeth 18630 buying 8873150 @@ -163033,6 +165202,7 @@ bwoys 1791 bwthyn 193 by 3660089807 by'r 11041 +bya 206239 byard 213 byblow 2717 byblows 540 @@ -163055,6 +165225,8 @@ byepaths 2522 byes 84150 byestreet 602 byestreets 599 +byewash 2511 +byewashes 525 byfall 78 byform 1086 byforms 287 @@ -163083,6 +165255,7 @@ bylini 616 byliny 10672 bymatter 129 bymatters 83 +bymeby 450 byname 19237 bynamed 362 bynames 7692 @@ -163112,6 +165285,8 @@ byroads 7369 byrunning 290 bys 57378 byshops 4431 +bysmalith 341 +bysmaliths 133 byssal 21497 byssally 1251 byssate 531 @@ -163133,6 +165308,7 @@ byte 311472 bytecode 6288 bytecodes 1363 byter 3301 +byters 3427 bytes 354871 bytime 626 bytimes 2550 @@ -163195,6 +165371,7 @@ cabalistic 93846 cabalistical 15986 cabalistically 1502 cabalists 7624 +caballada 1024 caballed 10368 caballer 910 caballeria 3644 @@ -163218,6 +165395,7 @@ cabaret 353148 cabarets 71606 cabarettist 104 cabas 1829 +cabasa 438 cabasset 976 cabassets 237 cabaya 358 @@ -163406,6 +165584,7 @@ cacique 121910 caciques 67647 caciqueship 93 caciquism 575 +caciquismo 7004 cack 16908 cacked 810 cackhanded 1769 @@ -163415,7 +165594,6 @@ cacking 747 cackle 147217 cackleberries 101 cackled 96649 -cackler 1663 cacklers 1417 cackles 26577 cackleth 64 @@ -163585,6 +165763,7 @@ cadmous 479 cadr 1182 cadrans 734 cadre 448599 +cadremen 368 cadres 656721 cadreship 281 cads 48297 @@ -163596,7 +165775,6 @@ caducibranch 88 caducibranchiate 987 caducity 6595 caducous 42262 -cady 6602 caeca 129986 caecal 142004 caecally 1240 @@ -163611,6 +165789,8 @@ caecotrophs 966 caecotrophy 869 caecum 416360 caecums 738 +caenobia 57 +caenobium 381 caenogastropod 312 caenogastropods 444 caenogenesis 548 @@ -163656,6 +165836,7 @@ cafetier 853 cafetiers 320 cafetorium 334 caff 33835 +caffa 1419 caffeate 1099 caffeates 104 caffeic 23885 @@ -163666,12 +165847,14 @@ caffeinating 100 caffeine 653814 caffeines 195 caffeinism 1017 +caffeol 856 caffeoyl 2050 caffeoylquinic 1864 caffers 185 p caffila 476 caffilas 181 caffiso 249 +caffoy 421 caffres 770 p caffs 4562 cafila 3323 @@ -163751,6 +165934,7 @@ caimitos 89 cain 26389 cain't 18073 caingin 234 +cainism 233 cainito 1269 cains 1401 caipirinha 3091 @@ -163779,6 +165963,7 @@ cajan 18715 cajans 470 cajaput 484 cajeput 13672 +cajeputene 159 cajeputol 511 cajole 174728 cajoled 245529 @@ -163833,6 +166018,7 @@ cakra 9045 cakras 3528 cakravartin 3688 cakravartins 273 +caks 1378 caky 1075 cal 1534000 calabarine 881 @@ -164133,6 +166319,8 @@ caldesmon 4811 caldron 143710 caldrons 40743 cale 53061 +calean 614 +caleans 181 calebashes 511 caledonite 1389 calefaction 2543 @@ -164178,6 +166366,7 @@ calendulin 186 calenture 18011 calentured 281 calentures 5218 +cales 20947 calesa 2281 calesas 949 calescence 791 @@ -164238,6 +166427,9 @@ calicos 15492 calicular 17354 caliculate 380 caliculus 215 +calid 3148 +calidaria 460 +calidarium 4856 calidrid 244 caliduct 199 caliducts 1427 @@ -164326,6 +166518,7 @@ calli 44118 callianassid 504 callianassids 202 calliandra 361 +callibogus 124 callicarpa 827 callicarpas 127 callico 9392 @@ -164445,6 +166638,7 @@ calorescence 2170 caloric 642318 calorically 3370 caloricity 775 +calorics 4740 calories 1196025 calorifacient 1526 calorifere 1679 @@ -164542,6 +166736,7 @@ calumnied 953 calumnies 571147 calumnious 155967 calumniously 19305 +calumnize 151 calumny 885886 calung 279 calusterone 154 @@ -164657,6 +166852,7 @@ cambic 3684 cambiform 2548 cambio 38281 cambion 637 +cambios 9377 cambisol 502 cambisols 1028 cambist 1467 @@ -164721,6 +166917,7 @@ camelpox 690 camelry 4630 camels 2403434 camelshair 135 +camelteers 139 camelthorn 3816 camelthorns 330 camembert 8629 @@ -164944,6 +167141,7 @@ camptonitic 1170 camptothecin 8262 camptothecins 605 camptown 325 +camptowns 231 campus 1458322 campuses 257918 campuslike 169 @@ -165530,6 +167728,9 @@ canteens 402779 cantefable 616 cantel 3426 cantelope 331 +cantelopes 325 +canteloupe 1797 +canteloupes 610 cantels 1294 canter 360633 canterburies 353 @@ -165813,6 +168014,7 @@ capersome 115 capes 286474 capesize 4053 capeskin 178 +capettes 93 capeweed 592 capework 349 capful 12100 @@ -165835,6 +168037,7 @@ capillaires 1494 capillament 132 capillaments 1526 capillariasis 1848 +capillaric 127 capillarid 109 capillarids 127 capillaries 1387754 @@ -165937,6 +168140,8 @@ capitulations 117847 capitulator 819 capitulators 2597 capitulatory 12463 +capitule 2382 +capitules 3722 capituliform 1122 capitulum 136530 capivara 883 @@ -165949,6 +168154,7 @@ caplets 5305 caplike 1302 caplin 7934 capline 176 +caplines 137 capling 132 caplins 719 caplock 246 @@ -166024,6 +168230,7 @@ cappies 241 capping 512099 cappings 48278 cappo 239 +capps 5195 cappucci 146 cappuccini 636 cappuccino 81754 @@ -166755,6 +168962,7 @@ carboxysomal 103 carboxysome 850 carboxysomes 1988 carboxyterminal 4695 +carboxytetramethylrhodamine 135 carboxyvinyl 298 carboy 31314 carboys 46790 @@ -166798,6 +169006,7 @@ carburization 32226 carburize 2600 carburized 37531 carburizer 1949 +carburizers 825 carburizes 346 carburizing 69261 carbutamide 2353 @@ -166874,6 +169083,7 @@ cardboardy 1560 cardcase 2487 cardcases 754 cardcastle 293 +cardcastles 153 cardeck 455 cardecks 365 cardecu 992 @@ -167148,6 +169358,7 @@ carelessness 1940619 carelessnesses 4175 careline 553 carelines 335 +carena 7022 carenes 804 carenum 284 carer 651516 @@ -167255,6 +169466,7 @@ caries 917933 carignan 425 carillon 57875 carilloneur 1533 +carilloneurs 221 carillonist 279 carillonneur 2561 carillonneurs 790 @@ -167341,6 +169553,7 @@ carmalum 2837 carmel 2061 carmelized 135 carmellose 1570 +carmels 134 carminate 5206 carminated 968 carminates 208 @@ -167392,6 +169605,7 @@ carnation 256979 carnationed 522 carnations 299909 carnauba 23330 +carnavals 278 carnegieite 2320 carnelian 90904 carnelians 8034 @@ -167761,6 +169975,7 @@ carsick 4878 carsickness 1216 carsies 415 carstone 6899 +carstones 147 carsy 246 cart 5235258 cartable 391 @@ -168511,6 +170726,7 @@ catamnesis 401 catamnestic 731 catamorphism 635 catamountain 741 +catamountains 141 catamounts 1764 catanionic 413 catapan 942 @@ -168992,6 +171208,7 @@ catlover 212 catlovers 274 catloving 66 catly 733 +catma 249 catmeat 242 catmint 11563 catmints 454 @@ -169085,6 +171302,8 @@ catwalks 27737 catwise 212 catwoman 631 catwomen 89 +catydid 189 +catydids 107 caubeen 4046 caubeens 609 caucasian 6486 @@ -169601,6 +171820,7 @@ cecropias 570 cecropin 3702 cecropins 2062 cecum 44769 +cecutiency 136 cedant 12591 cedants 1007 cedar 1233702 @@ -169750,6 +171970,7 @@ celebutantes 212 celecoxib 15375 celemin 184 celemines 369 +celempung 135 celeration 3302 celeriac 60006 celeriacs 143 @@ -169903,6 +172124,7 @@ celluloids 3013 cellulolysis 2567 cellulolytic 34493 cellulose 2940630 +celluloselike 124 celluloses 66720 cellulosic 162013 cellulosics 10358 @@ -169925,6 +172147,7 @@ celtium 3246 celts 137691 celtuce 433 celure 2025 +celures 174 cem 24435 cembali 537 cembalist 1559 @@ -170418,6 +172641,7 @@ cephalhematoma 2099 cephalhematomas 262 cephalic 454768 cephalically 1655 +cephalick 825 cephalin 18278 cephaline 963 cephalins 2745 @@ -170975,7 +173199,6 @@ ceylonite 978 cezve 253 cfDNA 3270 cfg 3448 -cgs 15311 ch 7849225 cha 559461 cha'm 44 @@ -171004,6 +173227,7 @@ chacha 4037 chachacha 810 chachalaca 767 chachalacas 728 +chacham 873 chachas 317 chacid 103 chack 10531 @@ -171021,6 +173245,7 @@ chaconine 1697 chaconne 15987 chaconnes 3020 chacos 1769 +chacruna 168 chad 23702 chadacrysts 241 chadar 3820 @@ -171115,6 +173340,7 @@ chagomas 113 chagreen 607 chagrin 635862 chagrined 183624 +chagrines 131 chagrining 424 chagrinned 765 chagrins 16751 @@ -171314,6 +173540,7 @@ chalicosis 559 chalicothere 586 chalicotheres 1305 chalimus 1476 +chalitzah 257 chalk 5607182 chalkboard 52380 chalkboards 8058 @@ -171446,6 +173673,7 @@ chamisal 51 chamise 1297 chamiso 239 chamlets 729 +chamma 726 chammy 552 chamois 339818 chamoised 245 @@ -171594,6 +173822,7 @@ chandlering 995 chandlers 81121 chandlery 25758 chandoo 1456 +chandu 14701 chanfrin 397 chanfron 3725 chanfrons 844 @@ -171705,6 +173934,7 @@ chanterelle 8638 chanterelles 10544 chanters 39872 chantership 1254 +chanterships 143 chantest 418 chanteth 1620 chanteur 4146 @@ -171971,6 +174201,7 @@ charbroiled 1521 charbroiling 94 charcoal 4789072 charcoaled 5375 +charcoalified 1090 charcoaling 1308 charcoals 52435 charcoaly 891 @@ -172155,6 +174386,7 @@ charreada 360 charreadas 473 charred 755105 charrer 292 +charrers 107 charres 585 charrets 467 charrette 9347 @@ -172197,6 +174429,7 @@ charterparties 46191 charterparty 526341 charters 2624064 charthouse 6371 +charthouses 111 charting 303047 chartings 1283 chartism 11276 @@ -172387,6 +174620,8 @@ chaturanga 1998 chatwood 157 chaudfroid 2111 chaudfroids 163 +chaudhari 604 +chaudharis 697 chaudhuri 989 chaudhuris 262 chauf 1056 @@ -172529,7 +174764,9 @@ cheated 1107790 cheatee 335 cheatees 167 cheater 57498 +cheateries 874 cheaters 37979 +cheatery 5478 cheatest 769 cheateth 1083 cheatgrass 2228 @@ -172649,7 +174886,9 @@ cheeked 279645 cheekes 41457 cheekful 394 cheekfuls 119 +cheekie 276 cheekier 2908 +cheekies 94 cheekiest 4103 cheekily 48838 cheekiness 10299 @@ -173139,6 +175378,7 @@ chemurgical 122 chemurgy 1301 chenar 5929 chenars 2507 +chenda 1021 cheng 72542 chengguan 389 chengyu 398 @@ -173159,7 +175399,6 @@ chenopods 2426 cheongsam 9077 cheongsams 1544 chequable 538 -cheque 3911328 chequebook 34087 chequebooks 6677 chequeen 63 @@ -173213,6 +175452,7 @@ chernukha 590 cheroot 79761 cheroots 50123 cherried 787 +cherrier 43 cherries 839183 cherriest 54 cherry 1765914 @@ -173304,6 +175544,7 @@ chet 12044 chetah 3221 chetahs 1779 chete 4161 +chetes 910 cheth 3332 chetnik 1546 chetniks 3361 @@ -173466,6 +175707,7 @@ chichi 10501 chichis 290 chichling 263 chick 1205669 +chick'n 185 chickabiddies 757 chickabiddy 1369 chickadee 13354 @@ -173552,6 +175794,7 @@ chiefess 2362 chiefesses 397 chiefest 520559 chiefhood 251 +chiefie 310 chiefless 4832 chiefliest 1252 chiefling 129 @@ -173676,6 +175919,8 @@ childminded 405 childminder 49105 childminders 51621 childminding 26270 +childness 2559 +childnesses 163 childproof 7090 childproofed 406 childproofing 721 @@ -173754,6 +175999,7 @@ chillproof 89 chillproofed 107 chillproofing 1439 chillroom 453 +chillrooms 405 chills 432019 chillsome 340 chillum 6844 @@ -173883,12 +176129,13 @@ chinchillas 20369 chinchillon 193 chinchin 872 chinchona 26028 +chinchonas 1185 chinchy 347 chincloth 159 chincona 729 -chincough 4472 chindi 2142 chine 195366 +chinelas 177 chines 54421 chinful 49 ching 151049 @@ -173905,6 +176152,7 @@ chinkapins 111 chinkara 3208 chinked 26485 chinker 234 +chinkers 275 chinkie 182 p chinkies 229 p chinking 37965 @@ -174022,6 +176270,7 @@ chirches 7388 chiretta 7006 chirimen 573 chirimia 675 +chirimias 351 chirimoya 3682 chirimoyas 2280 chirk 2729 @@ -174393,6 +176642,7 @@ chlorinous 3198 chlorins 4463 chloriodic 976 chloriodide 3909 +chloriodides 217 chloriodine 232 chlorion 1642 chlorions 781 @@ -174440,6 +176690,7 @@ chloroaluminates 578 chloroamide 1278 chloroamides 860 chloroamine 10135 +chloroamines 4422 chloroamphenicol 475 chloroanaemia 178 chloroaniline 20621 @@ -174451,6 +176702,7 @@ chloroarenes 415 chloroaromatic 520 chloroaromatics 294 chloroaurate 3654 +chloroaurates 511 chloroauric 2718 chlorobactene 309 chlorobenzaldehyde 4592 @@ -174493,6 +176745,7 @@ chlorocyclohexane 1531 chlorocyclopentane 718 chlorodeoxyadenosine 1417 chlorodeoxyuridine 137 +chlorodibromomethane 289 chlorodifluoromethane 2102 chlorodimethylsilane 203 chlorodiphenylphosphine 926 @@ -174570,11 +176823,13 @@ chloronaphthols 99 chloroneb 1502 chloronema 711 chloronitrile 203 +chloronitriles 146 chloronitrobenzene 12467 chloronitrobenzenes 2797 chloronium 1476 chloropal 932 chloropalladate 842 +chloropalladates 243 chloropercha 730 chloroperoxidase 2554 chloroperoxidases 156 @@ -174712,6 +176967,7 @@ chlorproguanil 1482 chlorpromazine 174241 chlorpropamide 20901 chlorpropham 12781 +chlorprophenpyridamine 162 chlorprothixene 1822 chlorpyrifos 23011 chlorpyriphos 1171 @@ -174748,6 +177004,7 @@ choanosome 5100 choate 1559 chobdar 1872 chobdars 2429 +chobedar 242 choc 40912 chocaholic 488 chocaholics 230 @@ -174767,6 +177024,7 @@ chockers 356 chockie 160 chockies 226 chocking 10278 +chocklit 264 chocks 87504 chockstone 3507 chockstones 1077 @@ -174778,6 +177036,7 @@ chocoholism 151 chocolate 3969909 chocolated 438 chocolatelike 63 +chocolately 435 chocolates 389405 chocolatey 15426 chocolatier 6032 @@ -174815,6 +177074,8 @@ choiceworthy 14807 choicy 120 choil 453 choir 4725661 +choirbook 4596 +choirbooks 3555 choirboy 32792 choirboys 32477 choired 1849 @@ -174965,6 +177226,7 @@ choledochoscope 1976 choledochoscopes 209 choledochoscopy 2059 choledochostomy 1386 +choledochotomies 249 choledochotomy 6686 choleglobin 1298 cholehepatic 272 @@ -174993,6 +177255,7 @@ choleriform 1492 cholerine 5505 choleroid 657 cholers 3324 +choles 3246 cholescintigraphy 1908 cholestadiene 887 cholestadienes 136 @@ -175098,6 +177361,7 @@ chondres 637 chondri 453 chondrichthyan 2195 chondrichthyans 3893 +chondrichthyes 579 chondrification 9456 chondrifications 547 chondrified 5705 @@ -175171,6 +177435,7 @@ chondron 329 chondronecrosis 191 chondronectin 272 chondrons 473 +chondroosseous 201 chondropathies 220 chondropathy 684 chondrophore 2942 @@ -175292,6 +177557,7 @@ choralist 830 choralists 10910 chorally 7499 chorals 7012 +chorba 1036 chord 2767646 chordal 88971 chordally 1433 @@ -175514,6 +177780,8 @@ chowderhead 340 chowderheaded 237 chowderheads 129 chowders 3082 +chowdries 883 +chowdry 589 chowed 1933 chowhound 208 chowhounds 196 @@ -175527,6 +177795,8 @@ chowkidars 2689 chowkis 66 chowks 738 chowpatties 121 +chowree 611 +chowrees 227 chowri 608 chowrie 2345 chowries 4631 @@ -175594,6 +177864,7 @@ chromalveolate 372 chromalveolates 547 chromameter 308 chromammine 183 +chromammines 330 chroman 6219 chromane 550 chromanes 125 @@ -175614,6 +177885,7 @@ chromaticisms 5379 chromaticities 8526 chromaticity 56622 chromaticization 129 +chromaticized 792 chromaticness 1078 chromatics 17317 chromatid 100003 @@ -175762,6 +178034,7 @@ chromolithographers 396 chromolithographic 6553 chromolithographs 17378 chromolithography 15487 +chromoliths 377 chromoly 639 chromolysis 462 chromomagnetic 281 @@ -175811,6 +178084,7 @@ chromoprotein 3026 chromoproteins 2355 chromos 11011 chromoscope 2285 +chromoscopes 123 chromosomal 665954 chromosomally 23497 chromosome 2822911 @@ -175994,6 +178268,7 @@ chrysalides 28442 chrysalids 27436 chrysaline 198 chrysalis 315302 +chrysalised 104 chrysalises 10526 chrysaloid 262 chrysamine 458 @@ -176039,8 +178314,10 @@ chrysom 3623 chrysome 1436 chrysomelid 4438 chrysomelids 1042 +chrysomes 169 chrysomonad 825 chrysomonads 1329 +chrysoms 755 chrysophan 782 chrysophane 1299 chrysophanic 24368 @@ -176083,6 +178360,8 @@ chubbiness 5681 chubbing 771 chubbs 249 chubby 299253 +chubdar 531 +chubdars 433 chubes 215 chubs 4969 chubster 246 @@ -176344,6 +178623,7 @@ churlishness 31193 churls 64222 churly 316 churm 1208 +churms 133 churn 438100 churnability 991 churnable 70 @@ -176361,6 +178641,7 @@ churns 188080 churny 298 churr 9985 churra 704 +churras 282 churrascaria 2179 churrascarias 1024 churrasco 3419 @@ -177104,7 +179385,6 @@ circumfulgent 42 circumfuse 765 circumfused 5726 circumfuses 203 -circumfusile 148 circumfusing 116 circumfusion 1181 circumgenital 2738 @@ -177638,7 +179918,7 @@ clachan 33441 clachans 6578 clack 172333 clacked 36157 -clacker 2503 +clacker 2503 p clackers 1610 clacket 175 clacketing 483 @@ -177987,6 +180267,7 @@ claspeth 1747 claspin 786 clasping 713652 claspings 3218 +claspless 106 clasps 621741 claspt 10519 class 99037526 @@ -178173,7 +180454,6 @@ clavichordist 549 clavichordists 187 clavichords 14391 clavicipitaceous 297 -clavicle 502385 clavicles 118615 clavicor 217 clavicorn 498 @@ -178183,6 +180463,7 @@ clavicular 142206 claviculate 642 clavicylinder 165 clavicymbal 704 +clavicymbals 174 clavicymbalum 737 clavicytherium 1885 clavie 2072 @@ -178817,6 +181098,7 @@ clinoforms 3847 clinograde 109 clinograph 875 clinographic 2101 +clinographs 151 clinohedrite 231 clinohumite 5121 clinohypersthene 443 @@ -178895,6 +181177,7 @@ cliquism 4125 cliquy 388 clisere 86 clishmaclaver 1503 +clishmaclavers 987 clit 121865 clitch 1226 clitches 122 @@ -179017,6 +181300,7 @@ clocksprings 201 clockstar 128 clockstars 372 clocktime 2043 +clocktimes 185 clockwatcher 392 clockwatchers 313 clockwatching 1173 @@ -179187,7 +181471,9 @@ closelier 4101 closeliest 63 closeminded 375 closemindedness 222 +closemouth 1116 closemouthed 5269 +closemouths 150 closen 2880 closened 239 closeness 1286597 @@ -179210,6 +181496,7 @@ closetful 1419 closeth 16129 closeting 7625 closetings 1809 +closetkeeper 155 closetlike 429 closets 785042 closety 923 @@ -179396,7 +181683,6 @@ clowndom 112 clowned 7365 clowneries 791 clownery 3222 -clowness 102 clownfish 5515 clownfishes 387 clowning 92268 @@ -179438,6 +181724,7 @@ clubber 5511 clubbers 30885 clubbie 110 clubbier 301 +clubbies 259 clubbiness 1631 clubbing 190634 clubbings 1009 @@ -179483,6 +181770,7 @@ clubrush 591 clubs 6680335 clubstart 59 clubster 297 +clubsters 395 clubtail 174 clubwear 999 clubwoman 1189 @@ -179533,6 +181821,7 @@ clunches 869 clunching 189 cluneal 1499 clunge 508 p +clunges 93 p clungest 77 clunial 424 clunk 58580 @@ -179565,6 +181854,8 @@ clusterability 159 clusterable 404 clusterbean 456 clustered 1414986 +clusterer 356 +clusterers 247 clustereth 179 clusterfuck 4218 p clusterfucks 211 p @@ -179632,6 +181923,7 @@ cmon 853 cms 578137 cmt 11862 cmte 1439 +cmtes 139 cmts 770 cnemial 4435 cnemis 62 @@ -179742,6 +182034,7 @@ coadapted 6142 coadapting 76 coadaptive 459 coadded 318 +coadding 124 coaddition 389 coadhesion 318 coadjacency 167 @@ -179779,6 +182072,7 @@ coaeval 2442 coaevals 253 coag 2866 coagel 694 +coagels 461 coagency 340 coagent 1226 coagents 1082 @@ -179830,6 +182124,7 @@ coaked 2643 coaking 1571 coaks 5469 coal 40278181 +coalas 173 coalbags 211 coalbearing 7228 coalbin 583 @@ -179842,6 +182137,7 @@ coaldust 23341 coaled 35716 coaler 1557 coalers 2085 +coales 35385 coalesce 621404 coalesced 376235 coalescence 423614 @@ -179866,7 +182162,6 @@ coalgebras 1367 coalheaver 15314 coalheavers 12765 coalheaving 605 -coalholes 551 coalhouse 7850 coalhouses 651 coalie 656 @@ -180008,6 +182303,7 @@ coastless 304 coastline 1134405 coastlines 147885 coastwaiter 4042 +coastwaiters 841 coastward 6399 coastwards 5616 coastwatcher 627 @@ -180083,6 +182379,7 @@ cobaloxime 2511 cobaloximes 1892 cobalt 2527615 cobaltammine 3566 +cobaltammines 3827 cobaltate 3576 cobaltates 727 cobaltian 355 @@ -180188,6 +182485,7 @@ cobwebless 167 cobweblike 991 cobwebs 391323 cobwork 263 +cobyric 1099 cobza 744 coca 298197 cocaethylene 1366 @@ -180494,6 +182792,8 @@ cockteasing 130 p cockups 1289 cockwomble 97 cocky 181414 +cockyleekie 327 +cockyleeky 310 coclaurine 1037 coclustering 227 coco 257645 @@ -180505,6 +182805,7 @@ cocoawood 94 cocobola 143 cocobolo 948 cocodette 344 +cocodettes 563 cocoes 1580 cocommentator 169 cocommutative 439 @@ -180599,6 +182900,7 @@ codable 4393 codas 27501 codbait 196 codbank 221 +codbanks 215 codded 1689 coddle 34448 coddled 58099 @@ -180785,6 +183087,8 @@ codpieces 6864 codriver 1271 codrivers 199 cods 37453 +codshead 1243 +codsheads 193 codswallop 8435 codworm 737 codydramol 213 @@ -181175,6 +183479,7 @@ cognatically 728 cognation 15496 cognations 432 cognatus 13666 +cogniac 2865 cognisable 76624 cognisably 198 cognisance 578713 @@ -182522,7 +184827,6 @@ columbines 25412 columbite 56366 columbites 1975 columbo 5170 -columbyn 152 columel 863 columella 295655 columellae 7932 @@ -182537,6 +184841,7 @@ columnals 16005 columnar 776438 columnarity 193 columnarization 183 +columnarly 242 columnary 273 columnated 980 columned 106827 @@ -182551,6 +184856,7 @@ columnization 454 columnized 198 columnizing 47 columnless 877 +columnlike 992 columns 15358875 columnwise 2058 colupulone 3320 @@ -183127,6 +185433,7 @@ commission 20150504 commissionable 1573 commissionaire 56258 commissionaires 19150 +commissional 1596 commissionaries 416 commissionary 1641 commissioned 6122796 @@ -183279,11 +185586,13 @@ commoratio 622 commorient 198 commorients 124 commos 2975 +commot 10385 commotal 844 commotes 17777 commotion 1356997 commotional 2347 commotions 444168 +commots 5514 commove 1023 commoved 5048 commoves 144 @@ -183368,6 +185677,7 @@ communitas 66117 communities 17917078 communitive 665 communitization 1574 +communitized 146 community 58400610 communitywide 3972 communiversity 184 @@ -183623,6 +185933,7 @@ compellations 2232 compellative 191 compellatory 210 compelled 16121539 +compellence 6907 compeller 12081 compellers 1702 compellest 3960 @@ -183944,6 +186255,7 @@ composed 28317228 composedly 151477 composedness 6558 composer 5881010 +composeress 323 composerly 710 composers 2540746 composes 303843 @@ -184045,6 +186357,7 @@ comprendo 2042 compresence 14276 compresent 10359 compress 789911 +compressability 389 compressable 281 compressed 5740106 compressedly 1885 @@ -184378,6 +186691,7 @@ concentricity 39674 concentring 4541 concents 3285 concentual 241 +concentus 5395 concept 28481882 conceptacle 18858 conceptacles 29702 @@ -184789,9 +187103,7 @@ condensability 1377 condensable 64140 condensary 525 condensate 522320 -condensated 1409 condensates 85141 -condensating 882 condensation 3583014 condensational 9568 condensations 140041 @@ -185576,6 +187888,7 @@ congregation 6762017 congregational 373298 congregationalism 8089 congregationalist 8193 +congregationalists 8606 congregationally 2865 congregationless 211 congregations 2082308 @@ -185669,8 +187982,8 @@ conima 102 conine 16376 conines 131 coning 52486 +conioses 127 coniosis 1476 -conirostral 1450 conisation 1854 conistra 413 conite 1043 @@ -185991,7 +188304,6 @@ conreligion 127 conreport 223 conrotatory 7359 cons 964739 -consang 615 consanguinal 1132 consanguine 14659 consanguinea 3887 @@ -186626,6 +188938,7 @@ consumable 234290 consumables 131595 consumably 108 consumahs 132 +consumation 4526 consume 3100195 consumed 8164277 consumedly 17139 @@ -187642,6 +189955,7 @@ conveyances 772653 conveyancing 564431 conveyaunces 918 conveyed 11303188 +conveyee 202 conveyer 101563 conveyers 39005 conveyest 576 @@ -187808,6 +190122,7 @@ cookies 482009 cookin' 138 cooking 6892255 cookings 1947 +cookingware 263 cookish 228 cookless 517 cookmaid 11238 @@ -188049,6 +190364,8 @@ copartnership 173228 copartnerships 8633 copartnery 53828 copasetic 569 +copassenger 107 +copassengers 133 copastor 1389 copastors 189 copatentee 295 @@ -188178,6 +190495,7 @@ copperish 3055 copperized 770 copperleaf 264 copperless 284 +copperous 456 copperplate 131239 copperplated 1753 copperplates 61067 @@ -188427,6 +190745,7 @@ coquetry 230131 coquets 11341 coquette 213205 coquetted 30808 +coquettery 160 coquettes 41895 coquetting 63595 coquettings 2334 @@ -188458,6 +190777,7 @@ coracoclavicular 5387 coracohumeral 2939 coracoid 191995 coracoidal 3457 +coracoideum 413 coracoids 22397 coracoscapular 374 corah 1740 @@ -188538,6 +190858,7 @@ corcelets 187 corchorus 1655 corcur 508 cord 7906378 +cordage 421989 cordages 3310 cordaitalean 168 cordaite 111 @@ -188777,6 +191098,7 @@ cormus 4947 corn 15618993 cornage 25810 cornages 219 +cornamuse 679 cornball 3518 cornballs 185 cornbind 130 @@ -188884,7 +191206,6 @@ cornichon 1283 cornichons 6254 cornicing 5086 cornicings 87 -cornicle 2236 cornicles 17760 cornicula 4222 cornicular 580 @@ -188951,6 +191272,7 @@ cornuate 996 cornuated 71 cornubianite 249 cornucopia 183986 +cornucopiae 41285 cornucopian 5647 cornucopias 21212 cornucopious 259 @@ -189073,6 +191395,7 @@ corporates 90816 corporatespeak 118 corporatewide 1149 corporation 9855342 +corporational 940 corporations 6019295 corporationwide 50 corporatisation 15655 @@ -189124,6 +191447,7 @@ corporization 243 corporosity 217 corposant 1643 corposants 1336 +corps 7858185 corpse 4002504 corpsed 2063 corpsehood 118 @@ -189645,7 +191969,6 @@ cosigning 709 cosigns 175 cosily 79156 cosimulation 1112 -cosinage 7583 cosine 456492 cosines 183639 cosiness 54343 @@ -190019,6 +192342,7 @@ cothons 487 cothouse 1099 cothouses 1216 cothurn 632 +cothurnal 356 cothurnate 153 cothurni 3733 cothurns 536 @@ -190116,6 +192440,7 @@ cottered 7881 cottering 1014 cotterless 137 cotters 58478 +cotticed 222 cottid 850 cottids 763 cottier 58029 @@ -190682,6 +193007,8 @@ countering 325203 counterinitiative 127 counterinstance 2143 counterinstances 1749 +counterinstitution 105 +counterinstitutions 401 counterinsurgencies 1732 counterinsurgency 103549 counterinsurgent 3879 @@ -191039,6 +193366,8 @@ countersigns 11875 countersing 147 countersinging 891 countersink 22770 +countersinker 151 +countersinkers 175 countersinking 18280 countersinks 5427 counterslope 1903 @@ -191318,6 +193647,7 @@ courageous 2025868 courageously 433933 courageousness 4481 courages 23068 +couraging 23008 courant 97578 courante 15321 courantes 7035 @@ -191634,6 +193964,8 @@ cowards 584807 cowardy 2901 cowback 151 cowbane 2098 +cowbarn 343 +cowbarns 111 cowbells 14436 cowberries 1294 cowberry 6029 @@ -192199,6 +194531,8 @@ craniometers 277 craniometric 6617 craniometrical 2097 craniometrics 493 +craniometrist 123 +craniometrists 230 craniometry 7946 craniopagus 1224 craniopathy 165 @@ -192251,6 +194585,7 @@ crankinesses 95 cranking 82824 crankings 215 crankish 2132 +crankism 240 crankle 2577 crankled 653 crankles 762 @@ -192668,6 +195003,8 @@ creedism 207 creedless 7260 creedlessness 368 creeds 1291430 +creedsman 111 +creedsmen 156 creek 1559209 creekbank 376 creekbanks 125 @@ -192973,7 +195310,6 @@ crewels 6822 crewelwork 1718 crewer 55 crewes 1002 -crewet 875 crewets 1175 crewing 34481 crewless 3312 @@ -193216,6 +195552,7 @@ crinose 216 crinosity 117 crinum 1840 crinums 1699 +criolla 7316 criollo 25511 criollos 12129 criosphinx 515 @@ -193366,7 +195703,6 @@ crizzle 416 crizzled 931 crizzles 596 crizzling 1315 -crna 505 cro 82163 croak 247721 croaked 240491 @@ -193750,6 +196086,8 @@ crosshybridizing 129 crossing 10572794 crossings 1238063 crossish 391 +crossite 2686 +crossites 285 crossjack 4276 crosskick 106 crosslegged 42745 @@ -194098,6 +196436,7 @@ crucifer 14486 cruciferin 907 cruciferous 51588 crucifers 15418 +crucifices 212 crucificial 207 crucified 1823113 crucifier 2114 @@ -194358,6 +196697,7 @@ crutchlike 178 cruth 2220 cruts 1056 crutter 113 +crutting 50 cruve 442 cruves 1120 crux 677076 @@ -195612,6 +197952,7 @@ curatory 15963 curatours 1356 curats 4688 curb 1707021 +curbash 240 curbed 329601 curber 1105 curbers 660 @@ -195862,6 +198203,8 @@ curtainings 1095 curtainless 14655 curtainlike 422 curtains 3594431 +curtainsider 289 +curtainsiders 235 curtainwall 2447 curtainwalls 515 curtainwise 190 @@ -195916,6 +198259,7 @@ curvedly 1493 curvedness 1186 curveless 1077 curvelet 380 +curvelinear 966 curves 12374905 curvesome 55 curvet 20609 @@ -196364,7 +198708,6 @@ cyanophilous 1006 cyanophils 465 cyanophycean 927 cyanophycin 4410 -cyanophyll 582 cyanophyte 2309 cyanophytes 3748 cyanopindolol 517 @@ -196983,6 +199326,7 @@ cycloreversions 373 cyclorotation 462 cyclorrhaphan 707 cyclorrhaphous 1631 +cyclorubber 151 cyclos 2969 cyclosarin 554 cycloscope 309 @@ -197202,8 +199546,10 @@ cypionate 2203 cypraeids 198 cyprenorphine 84 cypress 723236 +cypressed 2383 cypresses 259527 cyprid 5871 +cyprides 1407 cyprids 8449 cyprine 827 cyprinid 15943 @@ -197907,8 +200253,10 @@ dafty 1012 dag 106899 dagaba 5988 dagabas 2661 +dage 10022 dagen 5563 dagens 3675 +dages 6357 dagesh 8574 dagga 14202 dagged 5529 @@ -198119,6 +200467,8 @@ dalmatica 15124 dalmaticae 121 dalmaticas 624 dalmatics 11748 +dalmatique 1166 +dalmatiques 341 dalradian 60 dals 6606 dalteparin 7372 @@ -198129,6 +200479,7 @@ daltonism 1097 daltons 84930 dalyite 187 dam 4691452 +dam' 719 p dama 67287 damage 28377754 damageability 953 @@ -198528,6 +200879,7 @@ dardy 1386 dare 12057865 dared 5437802 daredevil 47630 +daredevilish 170 daredevilry 2702 daredevils 8372 daredeviltry 254 @@ -199044,6 +201396,7 @@ dayflower 437 dayfly 239 dayflying 899 dayful 41 +dayger 97 daygirl 139 daygirls 329 dayglo 5004 @@ -199584,6 +201937,7 @@ debarring 63885 debars 60162 debase 233736 debased 904676 +debasedness 121 debasement 330541 debasements 16780 debaser 1225 @@ -199593,6 +201947,7 @@ debash 626 debashes 161 debasing 300814 debasingly 457 +debasings 191 debatability 931 debatable 753760 debatableness 104 @@ -199803,6 +202158,7 @@ debunkers 6702 debunking 95947 debunkings 741 debunks 19102 +debureaucratisation 1029 debureaucratise 134 debureaucratised 116 debureaucratising 47 @@ -200084,7 +202440,6 @@ decars 172 decartelization 2636 decasaccharide 429 decasaccharides 124 -decastere 221 decastich 328 decastichs 180 decastyle 4598 @@ -200312,6 +202667,8 @@ dechristianising 538 dechristianization 5924 dechristianize 482 dechristianized 1586 +dechristianizer 105 +dechristianizers 406 dechristianizing 995 dechurch 100 dechurched 284 @@ -200731,6 +203088,7 @@ decommissioning 266946 decommissionings 221 decommissions 612 decommit 167 +decommitment 502 decommitted 290 decommodification 20022 decommodified 4741 @@ -201333,6 +203691,7 @@ deeply 21012277 deepmost 1176 deepness 40468 deepnesses 361 +deepo 755 deepoxidation 252 deeprooted 45427 deeps 323492 @@ -201368,7 +203727,6 @@ deers 22672 deerskin 44652 deerskins 13786 deerstalkers 3555 -deerstalking 10873 deerstealer 1084 deerstealers 1891 dees 63994 @@ -201847,6 +204205,7 @@ defluorinating 163 defluorination 3001 defluxions 9665 defn 21331 +defns 1683 defo 2144 defoam 156 defoamed 487 @@ -201965,6 +204324,7 @@ defrosting 56091 defrosts 1993 defrozen 620 defrutum 4150 +defs 12257 deft 791547 defter 9767 defterdar 3818 @@ -202158,6 +204518,7 @@ degranulation 53659 degranulator 151 degras 5717 degreasant 1562 +degreasants 1057 degrease 8678 degreased 42156 degreaser 11963 @@ -202405,6 +204766,7 @@ deifier 609 deifiers 511 deifies 19359 deiform 3637 +deiformity 1231 deify 68562 deifying 40136 deign 453829 @@ -202592,6 +204954,7 @@ deleaded 413 deleading 833 deleatur 2134 deleaturs 131 +delect 11782 delectabilities 344 delectability 1147 delectable 404744 @@ -202604,7 +204967,10 @@ delectates 101 delectating 145 delectation 157966 delectations 4163 +delected 9797 +delecting 2038 delection 1466 +delects 7181 deled 4458 delegable 17479 delegacies 4684 @@ -202725,6 +205091,7 @@ delict 105049 delicts 36707 delictual 21265 delid 560 +delie 3530 deligate 930 deligated 1189 deligating 146 @@ -202992,6 +205359,7 @@ delustred 3114 delustring 3709 deluvial 1038 deluxe 116878 +deluxes 109 delvauxite 366 delve 322988 delved 171084 @@ -204243,6 +206611,7 @@ deops 47 deorbit 1483 deorbited 584 deorbiting 351 +deorganization 135 deos 67207 deosil 1635 deossification 229 @@ -204695,6 +207064,8 @@ deponers 425 depones 94258 deponeth 1355 deponing 7445 +depopularize 326 +depopularized 296 depopulate 52993 depopulated 331327 depopulates 6992 @@ -204704,6 +207075,7 @@ depopulations 7710 depopulator 2045 depopulators 2162 deport 175291 +deportability 1767 deportable 4251 p deportation 930912 deportations 217956 @@ -205265,6 +207637,7 @@ derivatographic 1981 derivatographs 183 derivatography 560 derive 7845460 +deriveable 1090 derived 36335381 derivedness 349 deriver 1158 @@ -205469,6 +207842,7 @@ dervise 36543 dervises 13353 dervish 192826 dervishes 170281 +dervishhood 414 dervishlike 160 des 26550042 desacralization 9064 @@ -205734,6 +208108,8 @@ desertness 1512 deserts 2386945 desertscape 751 desertscapes 423 +desertward 243 +desertwards 418 deserty 478 deservant 46 deservedly 1226094 @@ -205901,6 +208277,7 @@ desires 12382800 desirest 92936 desireth 194899 desiring 3423451 +desiringly 695 desirings 1676 desirous 7499858 desirously 4839 @@ -205983,7 +208360,6 @@ desmodont 220 desmodromic 860 desmoglein 6374 desmogleins 1264 -desmognathous 3409 desmoid 8820 desmoids 1722 desmolase 3780 @@ -206101,6 +208477,7 @@ despatialization 616 despatialize 116 despatialized 726 despatializing 133 +despecialization 1484 despecialize 171 despecialized 223 despeciated 147 @@ -206300,7 +208677,6 @@ destigmatized 409 destigmatizes 106 destigmatizing 939 destin'd 81754 -destinable 68 destinate 5169 destinated 7482 destinates 305 @@ -206310,6 +208686,7 @@ destinational 1589 destinationless 168 destinations 1520250 destinative 203 +destinatory 140 destine 46512 destined 7868988 destines 29155 @@ -206330,6 +208707,7 @@ destocked 951 destocking 24318 destone 478 destoned 739 +destoner 357 destoning 403 destool 1219 destooled 3406 @@ -206371,6 +208749,8 @@ destructibility 9809 destructible 57528 destructing 9847 destruction 21616260 +destructional 935 +destructionism 636 destructionist 890 destructionists 1387 destructions 91490 @@ -206455,6 +208835,8 @@ desuperheater 9413 desuperheaters 3832 desuperheating 5722 desupersaturation 587 +desurfaced 143 +desurfacing 464 desvenlafaxine 1028 deswelling 1883 desyatin 1941 @@ -206528,6 +208910,7 @@ detainers 21916 detainest 867 detaineth 4735 detaining 568528 +detainingly 433 detainings 89 detainment 24391 detainments 11074 @@ -206627,7 +209010,6 @@ determinatively 2092 determinativeness 442 determinatives 22102 determinators 1927 -determinatum 4618 determine 30765954 determined 58317477 determinedly 319880 @@ -206811,6 +209193,7 @@ detribalization 6746 detribalize 476 detribalized 12027 detribalizing 543 +detriment 2240966 detrimental 2349404 detrimentality 194 detrimentally 73717 @@ -206840,9 +209223,11 @@ detrunk 315 detrunked 1221 detrunking 2075 detrusion 5010 +detrusive 657 detrusor 144511 detrusors 376 dets 7971 +dettes 28506 detubularized 1372 detumesce 359 detumesced 203 @@ -206913,6 +209298,7 @@ deuteroconch 1017 deuterocone 646 deuterogamists 199 deuterogamy 1093 +deuterolearning 305 deuteromycete 660 deuteromycetes 1289 deuteron 87505 @@ -207119,6 +209505,7 @@ devilship 1557 devilsome 43 deviltries 2305 deviltry 10619 +devilward 555 deviometer 189 devious 625183 deviously 27398 @@ -207130,6 +209517,7 @@ devirgination 213 devirginized 133 devirilization 158 devirilized 151 +devisability 417 devisable 43272 devisal 1453 devise 4309283 @@ -207435,6 +209823,7 @@ dghaisa 1214 dghaisas 525 dghajsa 733 dghajsas 156 +dha 25898 dhaal 101 dhaba 3004 dhabas 2730 @@ -207471,6 +209860,7 @@ dharmsalas 655 dharmshala 251 dharna 3955 dharnas 409 +dhas 2798 dhau 559 dhenkli 146 dhikr 41165 @@ -207530,6 +209920,7 @@ dhurra 19374 dhurrie 1398 dhurries 1830 dhurrin 3631 +dhurry 224 dhuti 1793 dhutis 826 dhyana 19178 @@ -207615,6 +210006,7 @@ diachronically 36055 diachronicity 2486 diachronies 239 diachronous 18150 +diachronously 1144 diachrony 27307 diachylon 18792 diachylum 922 @@ -207669,6 +210061,7 @@ diadem 623186 diadematid 73 diadematoid 534 diademed 33059 +diademmed 500 diadems 90863 diadenosine 1770 diadic 2919 @@ -208013,7 +210406,6 @@ diams 23139 diamthazole 63 diamylene 1915 diandric 540 -diandrous 3224 diandry 262 dianetic 529 dianetics 2083 @@ -208189,6 +210581,7 @@ diascopic 1363 diascopy 1571 diaskeuast 1135 diaskeuasts 622 +diasone 783 diaspidid 281 diaspora 760433 diasporal 229 @@ -208275,6 +210668,7 @@ diatomous 350 diatoms 394774 diatonic 214501 diatonically 6591 +diatonicism 5926 diatonism 247 diatopic 2386 diatoric 2384 @@ -208339,6 +210733,7 @@ diazobenzol 4204 diazocarbonyl 1367 diazocine 1154 diazocines 622 +diazodinitrophenol 721 diazoester 730 diazoesters 2066 diazoethane 4062 @@ -208464,6 +210859,7 @@ dibromobutane 3852 dibromobutanes 336 dibromocarbene 1663 dibromochloromethane 858 +dibromochloropropane 1879 dibromocyclopropane 393 dibromocyclopropanes 570 dibromodifluoromethane 311 @@ -208852,6 +211248,8 @@ didact 2658 didactic 1245308 didactical 14499 didactically 27065 +didactician 247 +didacticians 324 didacticism 81778 didacticisms 315 didacticist 270 @@ -209081,6 +211479,8 @@ dieters 24502 dietetic 292216 dietetical 7417 dietetically 6831 +dietetician 216 +dieteticians 264 dietetics 94132 dietetist 97 dietetists 88 @@ -209552,6 +211952,7 @@ dihalomethane 94 dihalomethanes 331 dihalomethyl 174 dihaploid 4358 +dihaploids 3934 dihedra 549 dihedral 168305 dihedrals 1425 @@ -209734,6 +212135,7 @@ diiodine 1464 diiodo 6293 diiodoacetylene 232 diiodoethane 329 +diiodohydroxyquin 400 diiodohydroxyquinoline 383 diiodomethane 1593 diiodosalicylate 749 @@ -209819,7 +212221,6 @@ dilactones 1457 dilal 293 dilambdodont 139 dilaniate 293 -dilaniation 105 dilapidate 9542 dilapidated 1017857 dilapidates 1067 @@ -210355,6 +212756,7 @@ dinked 1190 dinker 267 dinkey 384 dinkier 228 +dinkies 896 dinkiest 853 dinkily 93 dinkiness 198 @@ -211621,6 +214023,8 @@ disclamatory 499 disclamed 435 disclames 135 disclaming 216 +disclaunder 779 +disclaundered 134 discless 549 disclike 2606 disclimax 987 @@ -211897,6 +214301,8 @@ discourages 299212 discourageth 2507 discouraging 1214546 discouragingly 22415 +discource 2791 +discources 1203 discoured 440 discoures 412 discouring 53 @@ -212500,6 +214906,7 @@ dishevelment 11728 dishevels 1075 dishful 7069 dishfuls 993 +dishie 212 dishier 177 dishiest 400 dishing 107421 @@ -212998,6 +215405,7 @@ dismutation 17164 dismutations 337 disna 13695 disnaturalized 136 +disneyfication 513 disobedience 2048214 disobediences 5575 disobediencies 89 @@ -213037,6 +215445,7 @@ disomic 7981 disomics 657 disomies 945 disomy 11336 +disoperation 261 disoproxil 1860 disopyramide 19313 disorbed 496 @@ -213919,6 +216328,7 @@ distancings 323 distannoxane 402 distannoxanes 288 distant 23822440 +distantial 470 distantiate 578 distantiated 2138 distantiates 181 @@ -214062,7 +216472,6 @@ distomiasis 1624 distomolar 157 distonic 2477 distopalatal 498 -distopias 93 distoproximal 208 distoproximally 102 distort 953263 @@ -214794,6 +217203,7 @@ dixey 226 dixie 9236 dixies 5762 dixonary 623 +dixy 388 dixyrazine 150 diya 13015 diyas 792 @@ -214850,6 +217260,7 @@ djent 64 djereed 1667 djereeds 215 djerfisherite 283 +djerid 1880 djerrid 343 djes 786 djibbah 789 @@ -214926,6 +217337,7 @@ dochmiac 6539 dochmiacs 4554 dochmii 699 dochmius 2033 +docibility 349 docible 6239 docile 805345 docilely 27347 @@ -215192,6 +217604,7 @@ dodecylsulfate 5229 dodecylsulphate 7935 dodecyltrimethylammonium 1757 dodemorph 734 +dodgasted 187 dodge 508650 dodgeball 3464 dodged 307398 @@ -215439,6 +217852,7 @@ doh 39999 doha 2231 dohai 175 dohas 653 +dohol 415 dohs 613 dohyo 530 doid 1637 @@ -215674,6 +218088,7 @@ domeless 5178 domelike 6209 domes 1043438 domeshaped 15695 +domesmen 464 domestic 35336117 domesticability 321 domesticable 3485 @@ -215916,6 +218331,7 @@ doobie 1565 doobies 293 doobs 207 doobt 4293 +dooby 771 dooce 5228 dooced 2265 doocedly 129 @@ -215988,6 +218404,8 @@ doomsaying 1010 doomsday 132641 doomsdayers 143 doomsdays 615 +doomsman 3544 +doomsmen 4879 doomster 3521 doomsters 3515 doomward 43 @@ -216080,6 +218498,7 @@ doosh 916 doosra 1772 doosras 167 doot 31864 +dooties 2765 dootless 2028 doots 5991 dooty 23314 @@ -216163,7 +218582,6 @@ dorf 15351 dorfs 452 dorgi 174 dorgis 242 -dorhawk 465 dorian 6579 dorians 656 dorid 1642 @@ -216400,6 +218818,7 @@ dotings 1299 dotis 16889 dotish 722 dotless 2364 +dotlets 137 dotlike 1442 dotplot 1833 dotplots 776 @@ -216488,7 +218907,9 @@ doubletracking 1210 doubletree 294 doubletrees 131 doublets 314095 +doublette 1094 doubletted 60 +doublettes 1263 doubleweight 541 doublewide 847 doubleword 1072 @@ -216798,9 +219219,9 @@ downhilling 64 downhills 1819 downhole 36808 downhome 4594 -downie 3111 +downie 3111 p downier 1214 -downies 767 +downies 767 p downiest 2565 downily 335 downiness 4036 @@ -217102,6 +219523,7 @@ dozy 32464 dozzle 1507 dozzles 315 dppe 4362 +dpty 708 dr 939813 drab 856981 drabber 8212 @@ -217129,6 +219551,7 @@ drachme 4754 drachmes 4839 drachms 627725 dracmas 55 +draco 27043 dracocephalum 191 dracone 2036 dracones 5942 @@ -217201,6 +219624,7 @@ draggletail 1391 draggletailed 1729 draggletails 449 draggling 7312 +draggly 453 draggy 3645 draghound 205 draghounds 1664 @@ -217228,6 +219652,7 @@ dragonesses 283 dragonet 6769 dragonets 3570 dragonettes 811 +dragonfire 910 dragonfish 1305 dragonfishes 278 dragonflies 120300 @@ -217244,6 +219669,7 @@ dragonlet 382 dragonlike 2400 dragonlord 375 dragonlore 77 +dragonly 162 dragonnade 1741 dragonnades 11738 dragonne 394 @@ -217253,6 +219679,7 @@ dragonskin 367 dragonslayer 1654 dragonslayers 544 dragonsome 150 +dragonstone 883 dragonwort 302 dragony 340 dragoon 289556 @@ -217476,6 +219903,7 @@ drawdowns 14591 drawed 21280 drawee 192686 drawees 20041 +drawen 105273 drawer 2850741 drawered 876 drawerful 4841 @@ -217483,6 +219911,7 @@ drawerfuls 399 drawerless 160 drawers 1861297 drawersful 180 +drawes 34359 drawest 13622 draweth 165275 drawfiling 193 @@ -217561,6 +219990,7 @@ dreadnought 48821 dreadnoughts 48441 dreads 310776 dreadsome 227 +dready 1291 dream 18104649 dreamable 291 dreamboat 5276 @@ -217721,6 +220151,7 @@ dretching 264 dretful 1821 drever 204 drew 21884469 +drewe 38303 drewest 3025 drey 19850 dreys 5792 @@ -219137,6 +221568,7 @@ duppies 4372 dupping 63 duppy 8307 dups 505 +dur 189338 dura 776231 durabilities 4071 durability 1901305 @@ -219213,6 +221645,7 @@ duroquinone 5972 durotomy 780 duroy 623 duroys 1308 +durr 3922 durra 26538 durras 1216 durrie 828 @@ -219671,6 +222104,7 @@ dyscohesive 127 dysconjugate 1379 dysconnection 199 dysconnectivity 760 +dysconscious 411 dyscontrol 6987 dyscoordination 645 dyscopia 134 @@ -219727,6 +222161,7 @@ dysgeneses 644 dysgenesis 53119 dysgenetic 4160 dysgenic 14301 +dysgenically 285 dysgenics 983 dysgerminoma 7595 dysgerminomas 2394 @@ -219989,6 +222424,7 @@ dytiscids 481 dyuers 51830 dyun 359 dz 399661 +dzeggetai 153 dzeren 196 dzhigit 408 dzhigits 164 @@ -220016,6 +222452,7 @@ eBaying 135 eBays 155 eBook 192089 eBooks 80750 +eCall 1326 eCommerce 11453 eGFR 25164 eGFRs 187 @@ -220023,6 +222460,7 @@ eGoli 527 eGovernment 7553 eH 11659 eHealth 16802 +eID 2832 eISBN 99025 eLISA 267 eLearning 12966 @@ -220035,6 +222473,7 @@ eaches 4045 eager 8819225 eagerer 1027 eagerest 3297 +eagering 134 eagerly 5037151 eagernesses 275 eagers 399 @@ -220217,6 +222656,7 @@ earthful 253 earthholes 123 earthhouse 838 earthhouses 595 +earthie 1191 earthier 14130 earthiest 2890 earthily 3736 @@ -220331,6 +222771,7 @@ easing 934065 easings 2672 easles 653 easse 811 +eassel 241 east 42555326 eastabout 1126 eastbound 76787 @@ -220358,6 +222799,7 @@ eastland 931 eastlands 369 eastly 2000 eastmost 11216 +eastness 127 eastonite 518 easts 12910 eastside 5953 @@ -220377,6 +222819,7 @@ eatables 151562 eatage 5641 eatches 304 eated 35413 +eateing 769 eaten 7338642 eater 652846 eaterie 5938 @@ -220384,6 +222827,7 @@ eateries 57488 eaters 624379 eatertainment 557 eatery 47127 +eates 11405 eatest 55710 eateth 235223 eath 79489 @@ -220654,6 +223098,7 @@ echinulate 14487 echinulated 821 echinulation 213 echinulations 1193 +echinulin 931 echinus 42580 echinuses 147 echistatin 602 @@ -220831,6 +223276,7 @@ ecocinema 1057 ecocities 465 ecocity 859 ecoclimate 773 +ecoclimates 240 ecoclimatic 2023 ecoclinal 145 ecocline 701 @@ -220855,6 +223301,7 @@ ecodesign 5797 ecodevelopment 5233 ecodisaster 535 ecodisasters 370 +ecodriving 50 ecoducts 203 ecodynamics 989 ecoefficiency 2862 @@ -221031,7 +223478,9 @@ ecosphere 18677 ecospheres 647 ecospheric 678 ecospiritual 341 +ecospirituality 669 ecostate 720 +ecostratigraphic 131 ecostratigraphy 222 ecosynthesis 170 ecosystem 1516969 @@ -221588,6 +224037,7 @@ eer 76772 eerie 616326 eerieness 1663 eerier 2987 +eeries 1899 eeriest 3615 eerily 172787 eeriness 18586 @@ -222032,6 +224482,7 @@ eidolons 1862 eidos 48396 eidouranion 374 eids 816 +eies 122129 eigenanalysis 1738 eigenbasis 1562 eigenchannel 144 @@ -222211,6 +224662,7 @@ ejectments 50208 ejector 321489 ejectors 90664 ejects 86834 +ejidal 5064 ejido 28220 ejidos 21492 ejit 256 @@ -222688,7 +225140,6 @@ electrodermal 21180 electrodermally 233 electrodes 3727850 electrodesiccation 3139 -electrodessication 990 electrodiagnosis 3987 electrodiagnostic 13109 electrodiagnostically 227 @@ -222758,6 +225209,7 @@ electrofunk 146 electrofused 1359 electrofusion 8607 electrogalvanic 1055 +electrogas 1527 electrogasdynamic 281 electrogasdynamics 206 electrogastrogram 507 @@ -223016,6 +225468,7 @@ electrophorus 29218 electrophotographic 12141 electrophotographically 101 electrophotography 6071 +electrophotometer 993 electrophotometric 370 electrophrenic 478 electrophylic 202 @@ -223029,6 +225482,7 @@ electrophysiologists 4100 electrophysiology 67051 electroplaque 1215 electroplaques 1206 +electroplastic 758 electroplate 19350 electroplated 73691 electroplater 3351 @@ -223370,6 +225824,9 @@ eliche 520 elicit 1614327 elicitability 157 elicitable 5158 +elicitate 207 +elicitated 476 +elicitating 227 elicitation 168623 elicitations 5886 elicited 2012623 @@ -223475,6 +225932,7 @@ ellipticines 426 ellipticities 7591 ellipticity 138853 elliptick 554 +elliptics 4426 elliptocyte 153 elliptocytes 1801 elliptocytic 323 @@ -224819,6 +227277,7 @@ enamelist 549 enamelists 175 enamell'd 17777 enamelled 1143337 +enamelledware 298 enameller 32775 enamellers 28952 enamelling 255935 @@ -225257,6 +227716,7 @@ encowled 174 encradled 1008 encreased 208546 encreases 31801 +encreaseth 10997 encreasing 92276 encrimson 212 encrimsoned 3051 @@ -225487,6 +227947,8 @@ endict 201 endicted 1555 endicting 53 endictments 433 +endie 455 +endies 170 endif 14499 ending 15124409 endingless 2011 @@ -226700,6 +229162,7 @@ enneagram 3029 enneagrams 147 enneandrous 107 enneastyle 278 +enneasyllable 118 ennemies 17201 ennet 2835 ennets 47 @@ -226997,6 +229460,7 @@ enslavest 46 enslaveth 308 enslaving 169801 enslavings 177 +enslumbered 110 ensnare 169272 ensnared 194105 ensnarement 4230 @@ -227598,7 +230062,6 @@ entreative 237 entreaty 659338 entrechat 6547 entrechats 6706 -entred 391414 entrelac 1479 entremet 4362 entremetier 292 @@ -227629,7 +230092,6 @@ entresols 2012 entrest 1538 entreth 23759 entries 7445398 -entring 113917 entrism 1491 entrist 969 entrists 312 @@ -227774,6 +230236,7 @@ enviableness 277 enviably 30796 envier 8240 enviers 10185 +envies 154816 envigorate 454 envigorated 579 envigorates 106 @@ -227827,12 +230290,16 @@ envoplakin 622 envoy 1728294 envoys 1219365 envoyship 1168 +envy 5182761 envyingly 526 envyings 21514 enwall 182 enwalled 871 enwalling 59 enweave 628 +enweaved 301 +enweaves 631 +enweaving 124 enwiden 63 enwidened 103 enwind 600 @@ -227843,6 +230310,8 @@ enwombed 3852 enwombing 250 enwombs 271 enwound 4172 +enwove 1064 +enwoven 7367 enwrap 27097 enwrapment 387 enwrapped 60370 @@ -229348,7 +231817,9 @@ equips 80896 equipt 18446 equiradial 243 equiradiate 256 +equire 8461 equirectangular 139 +equires 5095 equiripple 1886 equirotal 810 equiseta 1981 @@ -229697,6 +232168,7 @@ erm 147465 ermine 527377 erminea 12658 ermined 23705 +erminee 111 ermines 37975 ermining 810 erminois 7305 @@ -230324,6 +232796,7 @@ espaliering 53 espaliers 54959 esparto 141084 especial 3520134 +especiality 234 especially 105853074 especifically 165 esper 3803 @@ -230565,6 +233038,8 @@ estivates 187 estivating 1212 estivation 9341 estivoautumnal 280 +estoc 3234 +estocs 393 estoile 11419 estoiles 17109 estop 33033 @@ -230760,6 +233235,7 @@ ethanolysis 4282 ethchlorvynol 1896 ethea 391 ethel 9083 +ethels 45 ethene 63390 ethenes 2697 ethenic 273 @@ -231519,6 +233995,7 @@ eulogomania 141 eulogy 834904 eulophid 1021 eulophids 279 +eulytine 444 eulytite 198 eumalacostracan 317 eumedusoid 87 @@ -231638,6 +234115,7 @@ euphorically 7009 euphorics 576 euphorigenic 539 euphorine 315 +euphorious 236 euphorogenic 179 euphory 470 euphotic 31632 @@ -231658,6 +234136,7 @@ euphuistical 294 euphuistically 2454 euphuists 1963 euphuize 56 +euphyllin 420 euphylline 154 euphyllophytes 451 eupion 3871 @@ -232059,6 +234538,8 @@ eventless 14358 eventlessly 225 eventlessness 855 eventlike 255 +eventrate 412 +eventrated 815 eventration 7858 eventrations 410 events 52882383 @@ -232141,6 +234622,7 @@ everythang 156 everythin' 45 everything 50495865 everythingness 495 +everythink 11879 everyting 3879 everyware 260 everyway 23247 @@ -232625,6 +235107,8 @@ exchangeable 466974 exchangeables 1152 exchangeably 639 exchanged 5525559 +exchangee 2242 +exchangees 1442 exchangeless 144 exchanger 839191 exchangers 582434 @@ -232813,6 +235297,8 @@ excoriation 85440 excoriations 47914 excoriator 289 excorporation 2125 +excorticate 248 +excorticated 71 excortication 109 excos 50 excrement 442680 @@ -233172,6 +235658,8 @@ exhaustless 119342 exhaustlessly 240 exhaustlessness 493 exhausts 433236 +exhbn 8575 +exhbns 17617 exhedra 2297 exhedrae 940 exhedras 274 @@ -233398,6 +235886,7 @@ exodermis 5754 exodes 349 exodeviation 1326 exodeviations 561 +exodi 176 exodic 648 exodists 96 exodoi 159 @@ -233981,6 +236470,9 @@ explanatorily 34742 explanatoriness 2467 explanators 648 explanatory 3950420 +explaned 5043 +explanes 442 +explaning 2077 explant 53580 explantation 12338 explantations 420 @@ -234247,7 +236739,6 @@ expropriative 1496 expropriator 2342 expropriators 11165 expropriatory 10563 -expugnable 547 expugnation 1274 expugner 152 expulsatory 965 @@ -234342,6 +236833,7 @@ exsiccator 8264 exsiccators 271 exsiccatum 1282 exsiccosis 145 +exsmoker 351 exsolution 34627 exsolutions 935 exsolve 1412 @@ -234780,6 +237272,7 @@ extraglomerular 1272 extragonadal 4640 extragranular 686 extrahaustorial 1857 +extrahazardous 459 extrahelical 343 extrahepatic 74711 extrahepatically 385 @@ -234977,6 +237470,7 @@ extrasellar 1448 extrasemantic 179 extrasensible 123 extrasensitive 776 +extrasensorial 166 extrasensorily 155 extrasensory 30570 extrasentential 418 @@ -235261,6 +237755,7 @@ exuvium 4435 exvessel 326 exwife 8026 exwives 1166 +exworker 95 exx 24948 exy 4005 ey 698708 @@ -235461,6 +237956,7 @@ f'rever 52 fALS 716 fCT 496 fMRI 248134 +fMRIs 849 fNIRS 2524 fa 2169272 fa'afafine 9536 @@ -235580,6 +238076,7 @@ facelifted 3791 facelifting 1637 facelifts 9337 facelike 918 +facemaking 449 facemask 20169 facemasks 6293 faceoff 1128 @@ -235769,6 +238266,7 @@ factorial 303412 factoriality 274 factorially 6839 factorials 14887 +factoried 425 factories 9746138 factoring 187393 factorings 299 @@ -235994,6 +238492,7 @@ faineant 11607 faineantise 541 faineants 3837 fainer 1771 +faines 2650 fainest 2439 faining 7991 fainites 391 @@ -236759,6 +239258,7 @@ farmerly 1036 farmers 16998335 farmership 256 farmery 24965 +farmes 12507 farmeth 616 farmette 97 farmfield 46 @@ -237236,6 +239736,7 @@ faucial 42997 faucitis 271 faudes 165 faugh 11294 +fauj 618 faujasite 11163 faujasites 3275 faujdar 3355 @@ -237572,7 +240073,6 @@ featless 508 featliest 135 featly 23979 featness 435 -featous 196 feats 1399774 featural 21456 featurally 1776 @@ -237618,17 +240118,17 @@ fecaluria 198 feces 258923 fecial 5002 fecials 427 -feck 29935 p -fecked 1239 p +feck 29935 +fecked 1239 fecker 2262 feckers 880 feckful 251 -fecking 17677 p +fecking 17677 feckless 154512 fecklessly 3181 fecklessness 26644 feckly 346 -fecks 2336 p +fecks 2336 fecolith 116 fecosterol 393 fecula 54718 @@ -237803,6 +240303,7 @@ feelingness 438 feelings 30801263 feels 12406862 feelsome 148 +feelst 961 feelth 249 feely 30213 feen 291067 @@ -237817,6 +240318,7 @@ feesh 2852 feete 150951 feeted 1465 feetfirst 2859 +feeties 192 feetless 896 feetlong 2293 feets 7013 @@ -237911,6 +240413,7 @@ fella 256390 fellable 549 fellage 93 fellagha 2076 +fellaghas 1294 fellah 100790 fellaheen 66423 fellahin 63964 @@ -238960,6 +241463,7 @@ ff 6846185 fforde 5345 ffrench 30173 ffs 12910 p +fg 90059 fi 3081099 fiacre 42675 fiacres 10133 @@ -239404,6 +241908,8 @@ fiducials 2815 fiduciaries 37692 fiduciarily 305 fiduciary 830458 +fidya 327 +fidyah 82 fie 547217 fied 337742 fiedlerite 428 @@ -240238,6 +242744,7 @@ finnage 3115 finned 170513 finner 24466 finners 28110 +finnes 22884 finnesko 3316 finnicky 2253 finnikin 1484 @@ -240332,6 +242839,7 @@ firebrick 158322 firebricks 83579 firebug 3080 firebugs 1328 +firecoal 1416 firecock 775 firecocks 1074 firecracker 28487 @@ -240644,6 +243152,7 @@ fishes 4204990 fishest 172 fisheth 1130 fisheye 12241 +fisheyed 186 fisheyes 1889 fishfag 518 fishfags 326 @@ -241132,6 +243641,7 @@ flagstones 243343 flagwaver 1437 flagwavers 465 flagwaving 3344 +flagway 2034 flail 298446 flailed 74663 flailing 202100 @@ -241185,6 +243695,7 @@ flamboyant 508391 flamboyantly 43642 flamboyants 3414 flamboyer 47 +flamboys 846 flame 12199364 flamed 298283 flameful 215 @@ -241515,6 +244026,7 @@ flatulence 227033 flatulences 664 flatulencies 6919 flatulency 35921 +flatulent 93302 flatulently 674 flatus 133074 flatuses 569 @@ -241967,7 +244479,6 @@ flickering 1058498 flickeringly 3399 flickerings 14901 flickerless 1943 -flickermouse 167 flickers 144576 flickery 2660 flicking 386678 @@ -242312,7 +244823,6 @@ floody 1177 flooey 202 floof 457 floofy 127 -flook 4308 flookan 906 flookans 378 flooks 2806 @@ -242654,6 +245164,7 @@ floxacillin 160 floxed 2466 floxuridine 1528 floytes 139 +flr 11457 flu 656117 fluanisone 1269 fluavil 706 @@ -242682,6 +245193,7 @@ fluctuated 573619 fluctuates 338819 fluctuatest 135 fluctuating 1558400 +fluctuatingly 774 fluctuation 1520744 fluctuational 3143 fluctuations 4823916 @@ -243210,7 +245722,6 @@ fluvialists 325 fluvially 4109 fluviatic 594 fluviatile 129088 -fluviation 42 fluvic 237 fluvioglacial 24833 fluviograph 180 @@ -243230,7 +245741,6 @@ fluxes 866674 fluxgate 13966 fluxgates 683 fluxibility 313 -fluxible 813 fluxile 904 fluxing 107288 fluxion 84253 @@ -243249,7 +245759,9 @@ fluxoids 1202 fluxomics 227 fluxon 1432 fluxons 1118 +fluxstone 147 fluxtube 365 +fluxy 87 fluyt 1826 fluyts 494 fly 16896692 @@ -243378,12 +245890,12 @@ fmole 661 fmoles 1270 fmols 125 fmr 55123 -fmri 906 fmt 7288 fmz 125 fn 582333 fnar 523 fnarr 83 +fnc 3322 fns 8983 fo 6678245 fo' 1598 @@ -243538,6 +246050,7 @@ foges 141 fogey 27041 fogeydom 1454 fogeyish 2474 +fogeyishness 49 fogeyism 2357 fogeys 11629 foggage 11848 @@ -243798,7 +246311,6 @@ followups 2561 folly 7095910 folpet 2236 folwed 4912 -folwes 178 folwing 1951 folx 66 folyl 280 @@ -244615,6 +247127,7 @@ forelight 437 forelights 267 forelimb 66271 forelimbs 46838 +foreline 939 forelive 43 forellenstein 86 forelock 130782 @@ -245012,6 +247525,8 @@ forgeability 8793 forgeable 6017 forged 3212376 forgeman 6420 +forgemaster 1793 +forgemasters 3085 forgemen 8793 forger 310277 forgeries 584920 @@ -245318,6 +247833,7 @@ formularizes 120 formularizing 449 formulary 205089 formulas 1680407 +formulatable 834 formulate 2198207 formulated 4129780 formulates 247367 @@ -246112,6 +248628,7 @@ fraid 31349 fraidy 1099 frail 2192696 frailed 280 +frailejon 376 frailer 43676 frailest 28776 frailing 468 @@ -246273,6 +248790,7 @@ frap 2822 frape 1493 fraped 117 fraping 137 +frapp 719 frappe 26341 frapped 2817 frappes 2619 @@ -246371,7 +248889,6 @@ frayeth 845 fraying 98397 frayings 1142 frays 46144 -frazil 8702 frazils 308 frazzle 13343 frazzled 47384 @@ -247360,6 +249877,7 @@ frouncing 296 froup 1704 froups 126 froust 638 +frousy 1170 frouzily 193 frouzy 4274 frow 14648 @@ -247624,13 +250142,14 @@ frypan 2054 frypans 541 fsck 1163 fsec 723 -fsr 6713 ft 13573795 ftira 205 ftpi 167 ftw 7804 fu 767654 fuage 832 +fuang 1215 +fuangs 215 fuar 3005 fubar 436 fubby 254 @@ -247853,6 +250372,7 @@ fuguists 155 fuh 19670 fuidhir 727 fuidhirs 439 +fujara 329 fuji 6353 fujo 396 fuki 1118 @@ -248140,6 +250660,7 @@ funda 77254 fundability 389 fundable 6039 fundae 414 +fundage 101 fundal 33145 fundament 68025 fundamental 24481456 @@ -248267,6 +250788,7 @@ fungosities 2373 fungosity 469 fungous 108717 fungs 498 +funguria 545 fungus 2439655 fungused 619 funguses 18705 @@ -248483,9 +251005,11 @@ furnisheth 12574 furnishing 2648696 furnishings 953620 furniture 12222407 +furnitured 693 furnitureless 805 furnituremaker 736 furnituremakers 1234 +furnituremaking 2844 furnitures 22044 furo 12363 furoate 7109 @@ -248547,6 +251071,8 @@ furst 54420 fursuit 177 fursuits 103 furth 375187 +furthcoming 25536 +furthcomings 165 furthen 876 further 172685735 furtherance 1242633 @@ -248858,6 +251384,7 @@ fyttes 2874 g'bye 431 g'day 1352 g'night 646 +g's 308 gDNA 1299 gE 6345 gab 101517 @@ -248918,7 +251445,6 @@ gabionades 169 gabioned 198 gabionnade 316 gabions 73683 -gable 994641 gabled 306984 gablelike 48 gables 592353 @@ -248962,6 +251488,7 @@ gadgers 235 gadges 370 gadget 151341 gadgeteer 1249 +gadgeteering 468 gadgeteers 615 gadgetless 47 gadgetry 49602 @@ -249116,7 +251643,6 @@ gainstanders 601 gainstanding 271 gainstood 483 gairaigo 682 -gairfowl 258 gaison 215 gait 1478623 gaited 12085 @@ -249344,6 +251870,7 @@ galingale 10189 galingales 87 galiot 5909 galiots 3166 +galip 363 galipot 2685 galipots 159 galium 4943 @@ -249358,6 +251885,7 @@ gallabiya 728 gallabiyas 221 gallabiyeh 184 gallacetophenone 1374 +gallah 204 gallamine 13037 gallane 1273 gallanes 182 @@ -249373,6 +251901,7 @@ gallants 308188 gallate 50020 gallates 6442 gallaunts 291 +gallavanting 216 gallberry 335 galleass 10627 galleasses 19856 @@ -250021,7 +252550,6 @@ gannin 4516 gannister 8625 gannisters 317 ganoid 31020 -ganoidal 1013 ganoids 14418 ganoin 2973 ganoine 7211 @@ -251027,6 +253555,7 @@ gazons 1485 gazoo 225 gazooka 149 gazoon 218 +gazoz 272 gazpacho 18339 gazpachos 466 gazump 1682 @@ -251296,6 +253825,7 @@ gemeinschaft 10558 gemeinschaften 75 gemel 4111 gemelle 1625 +gemelles 5589 gemels 1882 gemeprost 2666 gemfibrozil 12130 @@ -251324,6 +253854,7 @@ gemmaceous 647 gemmae 37153 gemmal 252 gemman 12850 +gemmas 4882 gemmate 894 gemmated 273 gemmates 111 @@ -251396,6 +253927,7 @@ gendarmery 4610 gendarmes 356839 gendarussa 242 gender 11993714 +genderal 151 genderbending 1096 genderblind 821 gendercide 1654 @@ -251673,6 +254205,7 @@ geniza 2332 genizah 4350 genizot 188 genkan 1610 +genki 1273 genkwanin 253 genlock 2109 genlocked 316 @@ -252445,6 +254978,7 @@ geriatry 153 gerim 3038 geringsing 1340 geris 6728 +gerkins 980 germ 2985599 germacranolide 698 germacranolides 744 @@ -252783,6 +255317,7 @@ ghaut 39570 ghauts 36202 ghawazee 608 ghayn 689 +ghayra 410 ghazal 33550 ghazals 15997 ghazawat 415 @@ -252811,6 +255346,7 @@ ghettoise 1378 ghettoised 7679 ghettoises 306 ghettoising 1775 +ghettoism 432 ghettoization 23129 ghettoize 2113 ghettoized 11708 @@ -252824,6 +255360,7 @@ ghichak 193 ghillie 18023 ghillies 10364 ghillying 179 +ghira 111 ghit 970 ghittern 2307 ghitterns 175 @@ -253044,6 +255581,7 @@ gifty 685 gig 1001631 gigabase 180 gigabases 402 +gigabecquerel 161 gigabit 8676 gigabits 3416 gigabucks 110 @@ -253555,6 +256093,7 @@ givers 320373 gives 75058586 givest 152199 giveth 941282 +givey 599 giving 69795991 givingness 1010 givings 25714 @@ -253698,6 +256237,7 @@ gladwyn 457 glady 3746 glaebules 924 glafenine 495 +glagah 285 glagol 481 glaik 549 glaikit 4535 @@ -253705,7 +256245,10 @@ glaiks 1284 glair 6510 glaired 1074 glairin 283 +glairiness 147 glairing 560 +glaistig 1312 +glaistigs 216 glaive 36186 glaived 249 glaives 11331 @@ -253801,7 +256344,10 @@ glaringness 549 glarings 597 glark 199 glary 7239 +glased 6799 glaserite 4301 +glases 1980 +glasing 2790 glasnost 112053 glasphalt 95 glass 49308601 @@ -253840,6 +256386,7 @@ glassines 407 glassiness 8408 glassing 9530 glassings 202 +glassite 868 glassless 16320 glasslike 7591 glassmaker 19401 @@ -253915,6 +256462,7 @@ glazes 332291 glazier 167418 glaziers 86283 glaziery 259 +glaziness 247 glazing 1005292 glazings 18575 glazy 5256 @@ -253952,10 +256500,12 @@ glebelands 1719 glebes 85258 glebous 126 gleby 1083 +gled 27509 glede 9963 gledes 2913 gledge 186 gledging 203 +gleds 1407 glee 1100039 gleed 3928 gleeds 1992 @@ -254000,6 +256550,7 @@ glent 3901 glented 253 glenting 268 glents 133 +gletcher 262 glews 500 gley 40072 gleyed 15673 @@ -254290,6 +256841,7 @@ globulists 855 globulite 368 globulites 6645 globulitic 1157 +globulol 301 globulose 1241 globulous 2685 globus 107434 @@ -254436,18 +256988,24 @@ gloryholes 192 glorying 195068 gloryingly 179 gloryless 217 +glose 24760 +glosed 3039 glosers 747 +gloses 5481 +glosing 6752 gloss 1782929 glossa 19280 glossae 5119 glossal 12627 glossalgia 149 glossanthrax 595 +glossaria 469 glossarial 18548 glossarially 152 glossaries 140951 glossarist 3723 glossarists 4832 +glossarium 1768 glossary 948147 glossas 918 glossator 25424 @@ -254457,6 +257015,7 @@ glossatory 83 glossectomy 4617 glossed 405211 glossematic 1358 +glossematicians 308 glossematics 3210 glosseme 238 glossemes 227 @@ -254782,6 +257341,7 @@ gluelike 1485 gluemaker 365 gluemakers 435 gluemaking 318 +glueman 226 gluepot 3643 gluepots 797 gluer 2293 @@ -255242,6 +257802,7 @@ glyphs 57732 glypican 1966 glypicans 383 glyptal 6119 +glyptals 1450 glyptic 35944 glyptics 2999 glyptodons 1275 @@ -255339,11 +257900,13 @@ gnawingly 639 gnawings 16722 gnawn 9838 gnaws 94275 +gnc 764 gneeve 173 gneiss 855933 gneisses 290244 gneissgranite 240 gneissic 58446 +gneissification 445 gneissoid 7848 gneissose 34602 gneissy 144 @@ -255406,6 +257969,8 @@ gnotobiotes 867 gnotobiotic 19709 gnotobiotically 187 gnotobiotics 4536 +gnr 3316 +gnrs 48 gnu 52565 gnudi 1109 gnus 22356 @@ -255493,6 +258058,7 @@ goatish 16789 goatishly 308 goatishness 666 goatkeeper 628 +goatkeepers 931 goatless 122 goatlike 3811 goatling 1219 @@ -255803,6 +258369,7 @@ goldcrests 7481 goldcup 448 goldcups 165 golddigging 2755 +golddiggings 1331 golde 289225 golded 858 golden 15303400 @@ -256274,6 +258841,7 @@ gooky 258 p goolie 960 goolies 4270 p gooly 878 p +goom 3641 goomah 140 goomba 251 goombah 1063 @@ -256346,9 +258914,7 @@ goosestep 3568 goosestepped 539 goosestepping 1865 goosesteps 228 -goosewing 918 goosewinged 640 -goosewings 153 goosey 9528 gooseys 87 goosh 692 @@ -256373,6 +258939,7 @@ gopura 9861 gopuram 5946 gopurams 3904 gopuras 7267 +gor 46603 gora 15283 goral 6181 gorals 987 @@ -256547,6 +259114,7 @@ gossamery 2922 gossan 29329 gossans 7869 gosses 1533 +gossibs 289 gossip 3109792 gossip'd 1509 gossiped 100545 @@ -256624,6 +259192,7 @@ gouging 93501 gougings 1160 goujon 1261 goujons 4992 +goulasch 554 goulash 34919 goulashes 647 gouls 1270 @@ -256716,6 +259285,7 @@ governessy 3492 governest 6308 governeth 23299 governing 9277210 +governless 164 government 129663661 governmental 3892223 governmentalise 50 @@ -256898,6 +259468,7 @@ gradiometer 12408 gradiometers 2984 gradiometric 317 gradiometry 1508 +gradocol 1539 grads 126493 gradual 9176160 gradualism 74906 @@ -257078,6 +259649,7 @@ grammelot 730 grammeme 247 grammemes 257 grammes 1698487 +grammie 238 grammies 195 grammy 1710 gramophone 834646 @@ -257786,6 +260358,7 @@ gravitator 396 gravitatory 323 gravitaxis 1069 gravitic 3427 +gravitics 1242 gravities 311330 gravitino 2982 gravitinos 1467 @@ -258013,7 +260586,7 @@ greenheads 392 greenheart 53712 greenhearts 307 greenhood 241 -greenhorn 41572 +greenhorn 41572 p greenhornism 81 greenhorns 16129 greenhouse 2706031 @@ -258144,6 +260717,7 @@ greisens 4889 greit 167640 greiting 2155 greits 234 +grem 1694 gremial 4084 gremials 1099 gremlin 16990 @@ -258280,6 +260854,7 @@ grieflessness 206 grieflike 139 griefs 825010 griefwork 807 +griefy 165 gries 11428 grievance 2999150 grievances 3854361 @@ -258566,6 +261141,7 @@ groatsworth 1188 groaty 62 grob 2940 grobian 163 +grobianism 117 grobians 98 grocer 1201512 grocer's 533 @@ -258759,6 +261335,8 @@ groundbreakingly 199 groundbreakings 147 groundburst 748 groundbursts 302 +groundcar 2478 +groundcars 703 groundcherry 270 groundcloth 338 groundcrew 8296 @@ -258812,6 +261390,7 @@ groundsels 4373 groundshare 161 groundsheet 16978 groundsheets 8145 +groundside 1345 groundsill 2343 groundsills 896 groundskeeper 8718 @@ -258887,6 +261466,7 @@ groupwork 73701 groupworker 5173 groupworkers 5663 groupy 1090 +grouse 961922 groused 25876 grouselike 58 grouser 5614 @@ -259147,6 +261727,7 @@ gryphons 19374 gryphosis 55 gryping 1065 grysbok 2348 +gs 686427 gsg 369 gsm 18004 gsoh 669 @@ -259172,6 +261753,7 @@ guaiacol 62135 guaiacolate 1048 guaiacols 862 guaiacum 86680 +guaiacwood 351 guaiacyl 4900 guaiane 526 guaianolide 684 @@ -259185,6 +261767,7 @@ guajillo 944 guajira 1133 guajiro 1303 guajiros 873 +guala 533 guama 274 guan 24535 guana 10604 @@ -259345,6 +261928,7 @@ gubernators 268 gubernatrix 1111 gubernia 11562 gubernias 9414 +gubernium 1688 guberniya 6182 guberniyas 924 gubs 688 @@ -259391,6 +261975,7 @@ guernsey 9415 guernseyed 193 guernseys 3490 guerrilla 1212772 +guerrillaism 442 guerrillas 791206 guerrillero 6531 gues 19728 @@ -259515,6 +262100,7 @@ guidons 8968 guidos 503 guidress 114 guids 11794 +guifts 11489 guige 5875 guiges 469 guijo 307 @@ -259630,6 +262216,8 @@ guitarwork 548 guitary 144 guittar 4379 guittars 502 +guivre 777 +guivres 64 guizer 182 guizers 928 guizing 381 @@ -259643,6 +262231,7 @@ gular 130016 gulars 4078 gulas 827 gulasch 271 +gulash 238 gulden 137608 guldens 19614 gules 659651 @@ -260208,6 +262797,9 @@ gyani 210 gyanis 406 gyants 4479 gyaru 441 +gyassa 1105 +gyassas 1206 +gyat 157 gybe 24046 gybed 4849 gybes 3501 @@ -260247,12 +262839,10 @@ gymnical 374 gymnics 353 gymnite 377 gymnoblast 55 -gymnoblastic 1459 gymnocarpous 1009 gymnocyst 2195 gymnodinioid 390 gymnodinoid 63 -gymnodonts 115 gymnogens 571 gymnolaemate 509 gymnopaedic 223 @@ -260420,7 +263010,7 @@ gypsy 518416 gypsydom 700 gypsying 1734 gypsyish 1623 -gypsyism 745 p +gypsyism 745 gypsylike 743 gypsywort 267 gyptians 4419 @@ -261572,6 +264162,7 @@ halictids 252 halictine 1421 halictines 146 halid 1464 +halidame 1861 halide 542148 halides 671497 halidohydrolase 292 @@ -262127,6 +264718,7 @@ handcarried 544 handcars 544 handcart 43647 handcarts 21655 +handcarved 3354 handclap 7418 handclappers 125 handclapping 8901 @@ -262187,6 +264779,8 @@ handguns 74526 handheld 174079 handhelds 5591 handhold 41606 +handholder 243 +handholders 157 handholding 6080 handholds 32436 handhole 3981 @@ -262320,6 +264914,7 @@ handpresses 1445 handprint 20038 handprinted 5699 handprints 22401 +handproduced 381 handpull 68 handpump 38860 handpumps 11394 @@ -262354,6 +264949,7 @@ handselling 1638 handsels 911 handset 182077 handsets 64660 +handsetting 1288 handsewn 5557 handsfree 2353 handsful 11714 @@ -262537,7 +265133,6 @@ hanok 1540 hanse 9796 hansel 8725 hanseled 286 -hanselines 327 hanseling 126 hanselled 1963 hanselling 441 @@ -262799,6 +265394,7 @@ hardboil 210 hardboiled 39603 hardbottom 288 hardbound 18741 +hardcoal 765 hardcoat 239 hardcore 202627 hardcourt 474 @@ -262907,6 +265503,7 @@ hardun 69 hardveld 788 hardwall 1348 hardware 3123452 +hardwares 14749 hardway 1262 hardways 158 hardwearing 28868 @@ -263204,7 +265801,6 @@ harshness 993009 harshnesses 7410 harslet 1194 harslets 111 -hart 878464 hartal 21284 hartals 4061 hartbeest 490 @@ -263903,6 +266499,7 @@ headhunter 15877 headhunters 30476 headhunting 30856 headhunts 167 +headie 1812 headier 8229 headies 43 headiest 3631 @@ -264167,6 +266764,7 @@ hear 64355463 hearability 786 hearable 6627 hearably 1634 +hearbes 16746 heard 95024987 heardest 24976 heardst 6815 @@ -264226,6 +266824,7 @@ heartbroken 192884 heartbrokenly 1400 heartbrokenness 142 heartburn 126530 +heartburned 440 heartburning 34403 heartburnings 47281 heartburns 1158 @@ -264429,7 +267028,6 @@ heavenlike 1547 heavenlily 211 heavenliness 10857 heavenly 7401101 -heavenlyminded 2539 heavens 6154024 heavenward 193628 heavenwards 76449 @@ -264624,6 +267222,7 @@ hedonic 181138 hedonical 208 hedonically 4009 hedonics 4409 +hedonimeter 418 hedonism 240690 hedonisms 343 hedonist 68736 @@ -264840,7 +267439,6 @@ heliacally 9286 helianthemum 2122 helianthemums 3055 helianthin 3666 -helianthoid 727 helianthus 5441 helianthuses 375 heliast 419 @@ -264848,6 +267446,7 @@ heliastic 1359 heliasts 1291 heliborne 3959 helibus 157 +helicab 283 helical 852020 helically 47202 helicase 36004 @@ -265075,6 +267674,7 @@ hells 195385 hellscape 1098 hellscapes 157 hellspawn 933 +hellstorm 389 helluva 52172 helluvalot 144 hellward 2409 @@ -265507,6 +268107,7 @@ hemiplegias 4585 hemiplegic 69617 hemiplegics 6299 hemiplegy 428 +hemipneustic 112 hemipode 433 hemipodes 553 hemiprism 194 @@ -266119,6 +268720,7 @@ heptastich 700 heptastyle 227 heptasulphide 1865 heptasyllabic 4471 +heptasyllable 1083 heptathlete 677 heptathletes 247 heptathlon 2896 @@ -266224,7 +268826,6 @@ herbicidally 711 herbicide 410825 herbicides 556320 herbier 2285 -herbiferous 546 herbimycin 938 herbiness 262 herbist 177 @@ -266346,6 +268947,7 @@ hereness 2310 hereof 1359992 hereon 295109 hereout 1350 +herepath 1523 heres 137354 heresiarch 51493 heresiarchs 23820 @@ -266609,12 +269211,14 @@ herstory 7737 hersum 65 hertz 62926 hertzian 3589 +herx 219 herye 536 herying 1513 herzenbergite 328 herzog 2373 herzogs 137 hes 874076 +hesed 14601 heshe 233 p hesionid 188 hesitance 17627 @@ -266682,6 +269286,7 @@ hetarynes 144 hetas 50 hetastarch 2989 hetchel 56 +heter 8136 heteranthery 179 heterarchic 1817 heterarchical 11288 @@ -266872,6 +269477,7 @@ heterogenised 1091 heterogenising 310 heterogenist 639 heterogenists 1630 +heterogenite 573 heterogenization 5352 heterogenize 184 heterogenized 930 @@ -266880,6 +269486,7 @@ heterogenizing 989 heterogenous 96702 heterogenously 703 heterogeny 3158 +heterogloss 314 heteroglossia 34438 heteroglossic 10579 heteroglot 4631 @@ -267201,6 +269808,7 @@ heterozygotes 150927 heterozygotic 4304 heterozygous 313208 heterozygously 555 +heterzygous 111 heth 20627 hethers 259 heths 170 @@ -267518,6 +270126,8 @@ hexastichs 513 hexastyle 27271 hexastyles 491 hexasyllabic 1163 +hexasyllable 272 +hexasyllables 316 hexatic 2179 hexatomic 4845 hexatonic 3296 @@ -267798,6 +270408,7 @@ hierocrat 239 hierocratic 12638 hierocratically 122 hierocrats 778 +hierodeacon 68 hierodule 1826 hierodules 2308 hierogamy 1935 @@ -267857,6 +270468,7 @@ higab 549 higashi 2008 higgle 10265 higgled 3137 +higgledy 65152 higgledypiggledy 8940 higgler 16195 higglers 13149 @@ -268206,6 +270818,7 @@ hinnying 464 hinoki 3682 hinokiflavone 168 hinokinin 256 +hinokitiol 304 hins 9040 hint 6618966 hinted 2654088 @@ -268393,6 +271006,7 @@ hirsels 5045 hirsute 145501 hirsutely 425 hirsuteness 2506 +hirsutes 1842 hirsutic 576 hirsutidin 348 hirsuties 5552 @@ -268567,7 +271181,6 @@ histoplasmomas 167 histoplasmosis 62901 historadiography 261 historian 9583527 -historianess 107 historians 7988642 historiated 61576 historic 7422312 @@ -268705,6 +271318,7 @@ hitter 137070 hitters 45023 hittest 900 hitteth 2144 +hittile 63 hitting 1958035 hittingest 103 hittings 465 @@ -269029,6 +271643,7 @@ hogweed 14556 hogweeds 264 hogyard 107 hoh 18824 +hoha 488 hohlraum 2742 hoi 141915 hoick 4276 @@ -269064,6 +271679,7 @@ hoists 348765 hoistway 3443 hoistways 843 hoit 2552 +hoiting 710 hoits 489 hoju 256 hok 9758 @@ -269136,6 +271752,7 @@ holers 6855 holes 12089418 holethnic 196 holey 22135 +holeyness 183 holibut 2637 holibuts 173 holiday 9621892 @@ -269251,7 +271868,9 @@ holoblastically 115 holobranch 871 holobranchs 611 holocaine 2743 +holocam 802 holocamera 575 +holocams 308 holocarboxylase 1739 holocarpic 723 holocaust 332662 @@ -269347,6 +271966,7 @@ holophytes 97 holophytic 5147 holoplankton 1216 holoplanktonic 1827 +holopneustic 480 holoprojection 157 holoprojector 749 holoprojectors 203 @@ -269872,6 +272492,7 @@ homoharringtonine 509 homohedral 872 homohexamer 254 homohexameric 113 +homohysteria 1404 homoimmune 367 homoiohydric 502 homoiomerous 2526 @@ -270329,6 +272950,7 @@ hooch 26141 hooches 1585 hoochie 1957 hoochies 275 +hoochinoo 126 hood 2581236 hooded 588647 hoodedness 50 @@ -270364,6 +272986,7 @@ hoodwinking 23803 hoodwinkings 189 hoodwinks 4289 hoody 10501 +hooer 549 hooey 8680 hoof 818578 hoofbeat 1001 @@ -270446,6 +273069,8 @@ hooly 23269 hooman 806 hoon 14172 hoond 2455 +hoondee 2385 +hoondees 2711 hoondi 257 hoondie 487 hoondies 1246 @@ -270609,6 +273234,7 @@ hoquet 1057 hoquets 342 hor 295607 hora 171198 +horagai 97 horah 725 horal 2349 horaries 209 @@ -271469,6 +274095,7 @@ housewifish 167 housewifization 1250 housewive 549 housewived 126 +housewively 48 housewives 699925 housewoman 396 housework 544800 @@ -271556,6 +274183,7 @@ howdunit 117 howdunnit 169 howdy 8786 howe 408385 +howe'er 74920 howel 2707 howelling 276 howels 3040 @@ -271637,7 +274265,7 @@ hryvnya 1563 hryvnyas 463 hs 219722 hse 8231 -hsien 83274 p +hsien 83274 hsiens 953 hstead 54 ht 1540390 @@ -271645,6 +274273,7 @@ hts 111831 http 226597 https 7176 hu 395958 +hua 108330 huanaco 3394 huanacos 1717 huanghuali 1008 @@ -271660,6 +274289,7 @@ huarizo 325 huashi 135 huayno 1385 hub 1333321 +hubba 3151 hubbed 1729 hubbies 2870 hubbing 5425 @@ -271695,7 +274325,9 @@ huckleberries 7044 huckleberry 11892 huckleberrying 324 hucklebuck 48 +huckled 1048 huckles 506 +huckling 283 hucks 1578 huckster 69835 hucksterage 203 @@ -271955,6 +274587,7 @@ humbuggeries 153 humbuggers 407 humbuggery 3145 humbugging 33679 +humbuggy 227 humbuging 146 humbugs 75561 humdinger 7363 @@ -271985,10 +274618,10 @@ humeruses 95 humet 336 humets 271 humette 724 -humetty 1323 humf 66 humic 273671 humicolous 777 +humics 1494 humid 1267152 humidicrib 762 humidicribs 249 @@ -272367,6 +275000,8 @@ hurtled 161320 hurtles 27755 hurtless 8458 hurtlessly 257 +hurtlest 245 +hurtleth 666 hurtling 254724 hurtlingly 199 hurtlings 501 @@ -272524,6 +275159,7 @@ hyalinisation 3493 hyalinised 2508 hyalinising 135 hyalinization 12445 +hyalinize 57 hyalinized 11135 hyalinizing 1480 hyalinocytes 497 @@ -273397,6 +276033,8 @@ hydrotropically 211 hydrotropism 4115 hydrotropy 678 hydrotubation 721 +hydroturbine 1049 +hydroturbines 862 hydroureter 6021 hydroureteronephrosis 1586 hydroureters 541 @@ -273468,6 +276106,7 @@ hydroxychalcone 550 hydroxychalcones 541 hydroxychloride 3224 hydroxychloroquine 22886 +hydroxychlorpromazine 363 hydroxycholecalciferol 16205 hydroxycholesterol 5250 hydroxycholesterols 234 @@ -273614,6 +276253,7 @@ hydroxytryptophan 17511 hydroxytyrosol 1580 hydroxyurea 33659 hydroxyureas 113 +hydroxyvalerate 3231 hydroxyvitamin 24339 hydroxywarfarin 269 hydroxyxanthone 1016 @@ -273839,6 +276479,7 @@ hyoplastra 318 hyoplastron 505 hyoscine 84081 hyoscines 492 +hyoscyami 8111 hyoscyamine 51323 hyoscyamines 352 hyoscyamus 55975 @@ -274249,6 +276890,7 @@ hyperdynamics 174 hyperechogenic 3069 hyperechogenicity 1651 hyperechoic 24156 +hypered 833 hyperedge 1453 hyperedges 1571 hypereducated 315 @@ -274471,6 +277113,7 @@ hyperinflating 259 hyperinflation 137830 hyperinflationary 14388 hyperinflations 7302 +hypering 599 hyperinnervated 82 hyperinnervation 1353 hyperinosis 3005 @@ -275854,6 +278497,7 @@ hypostatizes 2299 hypostatizing 5683 hyposthenia 328 hyposthenuria 1306 +hypostoichiometric 1735 hypostoma 8756 hypostomal 5792 hypostomatic 466 @@ -276151,6 +278795,7 @@ hythergraph 426 hythergraphs 319 hyuk 926 hz 19241 +hzy 239 i' 49175 i'faith 71289 i'ma 267 @@ -276290,6 +278935,7 @@ icemaker 1506 icemakers 599 icemaking 5637 iceman 9050 +icemanship 470 icemelt 765 icemen 3699 icen 2678 @@ -276435,6 +279081,7 @@ ickle 8804 ickler 244 ickles 1205 icky 16139 +icl 9779 icodextrin 1794 icon 1150876 iconic 643487 @@ -276548,6 +279195,7 @@ icterometer 179 icterus 71648 ictic 2361 ictidosaurian 98 +ictidosaurs 240 ictogenesis 344 ictogenic 185 ictus 72178 @@ -276605,6 +279253,7 @@ idealogic 142 idealogical 5412 idealogue 1708 idealogues 3049 +idealogy 2965 ideals 4946929 ideamongers 97 idear 7925 @@ -277269,6 +279918,7 @@ illimitedness 551 illing 18792 illinitions 282 illipe 3929 +illipi 283 illiquid 92968 illiquidity 37448 illish 385 @@ -277420,6 +280070,7 @@ ilot 12979 ilsemannite 627 iluy 279 ilvaite 2362 +im 6295720 ima 155847 imaam 464 imaams 113 @@ -277462,6 +280113,8 @@ imaginations 1297978 imaginative 4567249 imaginatively 389714 imaginativeness 28450 +imaginator 872 +imaginators 199 imagine 22049745 imagined 11933608 imagineer 1049 @@ -277510,6 +280163,7 @@ imatinib 31776 imaum 6463 imaums 2721 imazalil 4369 +imazamethabenz 312 imazapyr 2486 imazaquin 960 imazethapyr 1177 @@ -277592,6 +280246,7 @@ imbizo 778 imblaze 409 imblazed 361 imblazoned 145 +imbo 1497 imbodied 8473 imbodies 897 imbody 2766 @@ -279019,6 +281674,7 @@ implications 13272791 implicative 20842 implicatively 647 implicativeness 799 +implicator 183 implicatory 2808 implicatum 2101 implicature 98564 @@ -279241,6 +281897,7 @@ impregnability 30161 impregnable 907442 impregnableness 257 impregnably 15106 +impregnants 7642 impregnatable 115 impregnate 140844 impregnated 1765380 @@ -279837,7 +282494,6 @@ incalculability 7050 incalculable 1262919 incalculableness 985 incalculably 139138 -incalescence 854 incalescency 101 incalescent 657 incall 822 @@ -280134,6 +282790,7 @@ inciting 462090 incitingly 313 incitive 776 incivil 2711 +incivilisation 501 incivilities 23437 incivility 138506 incivilization 966 @@ -280251,7 +282908,6 @@ incohesion 2937 incohesive 5050 incoincidence 255 incoincident 583 -incomber 704 incombered 115 incombinable 146 incombustibility 7758 @@ -280327,6 +282983,7 @@ incompetency 267183 incompetent 2168134 incompetently 35164 incompetents 38673 +incompletability 701 incompletable 1857 incomplete 6234210 incompleted 21516 @@ -281443,6 +284100,7 @@ indorses 28587 indorsing 59924 indorsor 2831 indorsors 470 +indospicine 390 indowed 4979 indowing 191 indowment 1000 @@ -282104,6 +284762,7 @@ infernalism 125 infernalities 188 infernality 393 infernally 47378 +infernals 10643 inferno 198168 infernoes 144 infernos 8987 @@ -282437,6 +285096,7 @@ inforg 236 inforgs 393 inform 11130142 informal 7739933 +informalisation 7702 informalism 5030 informalist 597 informalists 384 @@ -283161,6 +285821,9 @@ injera 6934 injoined 19823 injoining 5236 injoins 3709 +injoyed 10269 +injoying 4179 +injoys 1048 injudicial 12338 injudicious 795565 injudiciously 190365 @@ -283528,6 +286191,9 @@ inoperculate 2068 inopportune 265111 inopportunely 33301 inopportuneness 4964 +inopportunism 229 +inopportunist 1466 +inopportunists 1088 inopportunity 1554 inoppressive 459 inoppugnable 217 @@ -283857,6 +286523,7 @@ insertor 915 insertors 298 inserts 953758 inservice 86127 +inservices 1507 insession 592 insessions 177 insessorial 2611 @@ -284008,6 +286675,7 @@ insoluble 4427881 insolubleness 173 insolubles 18171 insolubly 2952 +insolvability 475 insolvable 11604 insolvencies 61716 insolvency 1377681 @@ -284114,6 +286782,7 @@ inspiringly 10445 inspirings 514 inspirit 37954 inspirited 43117 +inspiriter 109 inspiriting 135735 inspiritingly 567 inspirits 7029 @@ -284170,6 +286839,7 @@ instantaneousness 11877 instanter 68247 instantiable 2239 instantial 8901 +instantially 686 instantiatable 217 instantiate 93525 instantiated 192077 @@ -284385,8 +287055,10 @@ insubstantiality 21545 insubstantially 2448 insubstantiated 205 insubstantive 490 +insubvertible 380 insuccess 1935 insuck 488 +insucked 79 insucken 1071 insucking 129 insudation 843 @@ -285296,6 +287968,7 @@ interdelivery 162 interdeltaic 259 interdendritic 17228 interdenominational 44948 +interdenominationalism 755 interdenominationally 265 interdental 49591 interdentally 1587 @@ -285926,6 +288599,7 @@ intermediums 446 intermedullary 655 intermell 556 intermelled 103 +intermember 1011 intermembral 1226 intermembrane 11120 intermembranous 1293 @@ -286720,6 +289394,7 @@ interstacking 250 interstadial 27563 interstadials 8159 interstage 26532 +interstages 460 interstaminal 478 interstapedial 545 interstate 478849 @@ -287087,6 +289762,7 @@ inti 80079 intice 8874 inticed 4763 intices 525 +intichiuma 2748 inticing 5281 intifada 96043 intifadah 1933 @@ -287340,6 +290016,7 @@ intracorneal 2442 intracoronal 2072 intracoronary 24519 intracorporal 582 +intracorporate 3792 intracorporeal 7641 intracorporeally 839 intracorpuscular 6003 @@ -288589,6 +291266,7 @@ involvements 121081 involver 403 involvers 182 involves 17442263 +involveth 2831 involving 16291371 invulnerabilities 121 invulnerability 84856 @@ -288840,6 +291518,7 @@ ionones 3677 ionopause 3653 ionophore 43856 ionophores 20985 +ionophoresis 9730 ionophoretic 3980 ionophoretically 1464 ionophoric 1440 @@ -289583,7 +292262,6 @@ isleted 719 islets 839346 isleward 104 islomania 235 -islot 817 ism 479739 ismatic 524 isms 129353 @@ -289819,6 +292497,7 @@ isoechoic 2683 isoeffect 3176 isoeffective 1002 isoelastic 3176 +isoelasticity 62 isoelectric 219535 isoelectrical 801 isoelectrically 634 @@ -289958,6 +292637,7 @@ isokinetically 1411 isokinetics 798 isokite 373 isokont 433 +isolability 1784 isolable 36627 isolani 1036 isolant 1032 @@ -290299,7 +292979,6 @@ isospecific 1145 isospectral 3237 isospin 41865 isospins 880 -isospondylous 588 isosporan 286 isospore 387 isospores 1136 @@ -290473,6 +293152,7 @@ ispravnik 3180 ispravniks 393 isradipine 3875 issa 17067 +issant 1116 issaron 236 issei 2235 isses 6213 @@ -290481,6 +293161,7 @@ issuable 65762 issuably 10084 issuance 393273 issuances 12625 +issuant 20950 issue 71059706 issued 40173970 issueless 22837 @@ -290632,6 +293313,7 @@ itinually 112 itis 233128 itises 202 itive 21986 +itmo 1392 itness 17470 itongo 1437 itraconazole 47423 @@ -290650,6 +293332,8 @@ itzeboos 319 itzebu 227 itzebus 323 iudgements 15163 +iudges 20515 +iuells 90 iump 2733 iustices 9686 ivabradine 3746 @@ -290671,7 +293355,9 @@ ivory 3833895 ivorybill 1110 ivorylike 1257 ivorytype 119 +ivoryware 116 ivry 3594 +ivver 4283 ivy 1534373 ivyed 1134 ivylike 304 @@ -290940,8 +293626,10 @@ jaffle 80 jaffles 115 jag 68549 jagat 3530 +jageer 3953 jageerdar 635 jageerdars 1500 +jageers 2030 jager 8362 jagers 4903 jagg 1620 @@ -290969,6 +293657,8 @@ jaghir 5174 jaghirdar 894 jaghirdars 2882 jaghire 32182 +jaghiredar 2031 +jaghiredars 7735 jaghires 22133 jaghirs 2328 jagir 23935 @@ -290989,6 +293679,8 @@ jaguarundis 414 jahaji 82 jahiliya 1951 jahiliyyah 3310 +jaidad 714 +jaidads 137 jail 2601391 jailable 328 jailbait 3741 @@ -291064,6 +293756,7 @@ jalousied 2454 jalousies 27711 jalousing 765 jalpaite 214 +jalt 223 jam 2250013 jamaat 2506 jamaats 939 @@ -291151,6 +293844,7 @@ janes 3295 janeu 419 jangada 3567 jangadas 2318 +jangadeiros 461 janggi 70 jangle 96531 jangled 100515 @@ -291203,6 +293897,7 @@ jantu 406 janty 3702 janusian 119 jap 38339 +japa 5831 japaconine 621 japaconitine 5866 japan 302755 @@ -291379,7 +294074,6 @@ jaums 131 jaun 2878 jaunce 695 jauncing 1933 -jaunders 332 jaundice 1124820 jaundiced 271721 jaundices 1475 @@ -291465,6 +294159,7 @@ jazails 295 jazarine 126 jazerant 1120 jazey 352 +jaziya 569 jazy 456 jazz 2482528 jazzbo 373 @@ -291858,6 +294553,7 @@ jewellery 2226024 jewelless 199 jewellike 3357 jewelling 9643 +jewelly 1158 jewelries 1325 jewelry 553851 jewels 3582879 @@ -291919,7 +294615,6 @@ jibberish 920 jibbers 1665 jibbing 16618 jibbings 193 -jibboom 20770 jibbooms 1673 jibbs 163 jibe 125340 @@ -291931,6 +294626,8 @@ jibhead 256 jibing 12157 jibingly 293 jibs 62246 +jibsheet 1537 +jibsheets 425 jibstay 938 jicama 3059 jicara 1082 @@ -292026,6 +294723,7 @@ jimcrack 1217 jimcrackery 171 jimcracks 825 jimdandy 53 +jiminy 1684 jimjam 201 jimjams 1899 jimmied 5424 @@ -292385,6 +295083,7 @@ joisting 7133 joistings 433 joists 607555 joistwork 125 +jojo 1003 jojoba 15406 joke 5199589 joked 491087 @@ -292513,7 +295212,6 @@ joshing 15365 joshingly 457 joskin 966 joskins 841 -joso 291 joss 73789 jossakeed 250 jossakeeds 133 @@ -292693,6 +295391,7 @@ jpgs 343 jpsi 99 jr 345503 jth 169303 +jtly 11334 ju 360422 juanes 234 juarez 933 @@ -293104,12 +295803,14 @@ junkspace 612 junky 13949 junkyard 29040 junkyards 4542 +junonia 634 junshi 3300 junta 477860 juntas 55125 junto 80166 juntoes 329 juntos 9043 +junzi 10014 jupe 11335 juped 47 jupes 5431 @@ -293160,6 +295861,8 @@ jurisprudentialists 135 jurisprudentially 3520 jurisprudents 8705 jurisprudes 604 +jurisprudist 187 +jurisprudists 244 jurist 549060 juristic 191785 juristical 6941 @@ -293444,6 +296147,7 @@ kadkhoda 662 kadogo 292 kadogos 183 kadomatsu 557 +kadsurenone 130 kady 2566 kaemferol 139 kaempferia 123 @@ -293458,10 +296162,13 @@ kafal 433 kafala 3586 kafana 1345 kafanas 475 +kafeel 812 kafeneio 353 kafenio 1717 kafenion 2590 kafenions 125 +kaffara 606 +kaffarah 539 kaffeeklatsch 481 kaffeeklatsches 95 kaffer 963 p @@ -293577,6 +296284,7 @@ kaitiaki 1717 kaitiakitanga 845 kaizen 24893 kaizo 307 +kaizuka 201 kaj 14238 kajal 1006 kajavah 191 @@ -293672,6 +296380,7 @@ kalied 153 kalif 5478 kalifate 1160 kalifs 1677 +kalij 780 kalima 3884 kalimba 1639 kalimbas 131 @@ -293752,6 +296461,7 @@ kamleika 180 kamon 1077 kamote 96 kamp 6319 +kampferol 157 kampong 32870 kampongs 16423 kamptulicon 6029 @@ -293947,6 +296657,7 @@ karelas 173 karen 7489 karengo 61 karesansui 708 +karet 1905 karez 4994 karezes 1521 karezza 377 @@ -294187,6 +296898,7 @@ katties 1231 kattis 359 katun 6584 katuns 2398 +katwa 148 p katydid 5426 katydids 8864 katyusha 667 @@ -294543,12 +297255,14 @@ kenaf 28091 kenas 552 kench 558 kenches 214 +kencur 273 kendang 1515 kendi 3732 kendis 353 kendo 10521 kendra 957 kendras 306 +kenjutsu 1048 kenke 314 kenkey 3314 kenky 1409 @@ -294817,6 +297531,7 @@ kerseymeres 9152 kerseys 31183 kersies 17664 kerslap 220 +kersplash 114 kersplat 54 kerugma 1116 keruing 5255 @@ -295264,9 +297979,11 @@ khedivate 448 khedive 29550 khedives 1475 khedivial 2120 +khediviate 163 kheema 400 kheer 2750 khel 6861 +khelat 1885 khelaut 1305 khelauts 415 khella 210 @@ -295380,6 +298097,7 @@ kiangs 992 kiasi 320 kiasu 721 kiawe 661 +kibabs 545 kibanja 2885 kibbe 665 kibbeh 4826 @@ -295764,7 +298482,6 @@ kimberlitic 4685 kimbo 18549 kimchee 1585 kimchi 21352 -kimes 661 kimkhab 336 kimkhabs 208 kimmer 2970 @@ -296015,7 +298732,6 @@ kink 245809 kinkable 545 kinkajou 5154 kinkajous 1815 -kinkcough 764 kinked 69325 kinker 199 kinkers 133 @@ -296091,6 +298807,7 @@ kinterm 215 kinterms 422 kintledge 924 kintsugi 390 +kinyan 7656 kinzhal 405 kinzigite 341 kiondo 297 @@ -296316,6 +299033,7 @@ kitmagar 637 kitmagars 171 kitmutgar 1951 kitmutgars 817 +kito 3103 kiton 653 kits 577862 kitsch 184163 @@ -296457,6 +299175,7 @@ klik 1903 kliks 218 kline 5876 klines 152 +klink 12831 klinker 1423 klinkers 481 klinokinesis 1431 @@ -296509,6 +299228,7 @@ klutziness 389 klutzy 2284 kly 10271 klydonograph 946 +klydonographs 245 klystron 52695 klystrons 17553 kmc 3853 @@ -297006,6 +299726,7 @@ kodaker 382 kodakers 177 kodaking 513 kodaks 3830 +kodama 571 kodkod 190 kodo 5574 kodomo 2884 @@ -297018,6 +299739,7 @@ koelie 141 koelies 64 koelreuteria 128 koels 1083 +kofer 3410 koff 5479 koffs 268 kofia 1171 @@ -297191,6 +299913,7 @@ konked 452 konking 60 konks 111 konnyaku 1826 +konohiki 294 konpa 571 kontakia 1764 kontakion 3486 @@ -297253,6 +299976,7 @@ korai 10180 koranic 3932 koras 976 korban 3764 +kordax 1294 kore 25909 korero 3281 koreros 93 @@ -297307,11 +300031,16 @@ kosso 2342 kotal 5628 kotals 916 kotatsu 2408 +kotch 800 +kotched 327 +kotches 235 koteka 354 kothi 2236 kothis 1260 kothon 1157 kothons 354 +kothornoi 823 +kothornos 464 koti 5595 kotis 11678 koto 50622 @@ -297337,6 +300066,7 @@ kotwals 510 kotyle 8641 kotyliskos 137 kotylos 258 +koudou 195 koukoulion 155 koulak 763 koulaks 832 @@ -297372,6 +300102,7 @@ kowari 99 kowhai 2396 kowhais 58 kowliang 990 +kowrie 787 kowtow 28483 kowtowed 8505 kowtowing 16566 @@ -297466,6 +300197,7 @@ kriging 43668 krill 128492 krills 212 krimmer 227 +kringla 824 kringle 5542 kringles 1210 kriophoros 362 @@ -297652,6 +300384,7 @@ kunkar 1755 kunkur 9941 kunkurs 563 kunoichi 471 +kunshi 81 kunsthalle 321 kunstkammer 419 kunya 4592 @@ -297695,12 +300428,14 @@ kurush 1418 kush 7476 kushari 702 kushiyaki 80 +kushti 1696 kuskus 1750 kusso 282 kut 24012 kutch 1366 kutcha 5555 kuti 7236 +kutnahorite 660 kutnohorite 251 kuttar 325 kuttars 211 @@ -297729,6 +300464,7 @@ kwans 1072 kwanza 6956 kwanzas 2683 kwashiorkor 70561 +kwazoku 242 kwd 884 kween 466 kwela 4410 @@ -297854,6 +300590,8 @@ labara 273 labarum 22646 labba 2906 labbas 215 +labber 248 +labbers 103 labbie 56 labda 1263 labdane 1753 @@ -298059,6 +300797,7 @@ lacemaking 24521 laceman 7976 lacemen 3901 lacer 4167 +lacerability 614 lacerable 6832 lacerant 1375 lacerate 69286 @@ -298528,6 +301267,7 @@ lagging 707732 laggingly 1531 laggings 10475 laggy 553 +laghman 603 lagna 2047 lagniappe 2017 lagobolon 1353 @@ -298667,6 +301407,7 @@ laky 3668 lala 16132 lalang 10945 lalapalooza 46 +laldy 833 lall 26214 lalla 3781 lallang 2309 @@ -298764,6 +301505,7 @@ lambswool 21935 lambswools 262 lamburger 108 lamby 819 +lamdan 76 lamdas 46 lamdoidal 306 lame 2217314 @@ -299008,6 +301750,7 @@ lampshades 44534 lampstand 20073 lampstands 10719 lampuki 153 +lampware 2705 lampwork 527 lampworked 665 lampworker 221 @@ -299017,6 +301760,7 @@ lampworks 122 lampyrid 473 lampyrids 137 lams 15069 +lamsiekte 738 lamster 73 lamziekte 1955 lana 35127 @@ -299220,6 +301964,7 @@ landscapist 20378 landscapists 19388 landscrip 87 landship 3029 +landships 2531 landsick 194 landside 21808 landsides 538 @@ -299294,6 +302039,7 @@ languagelessness 125 languagelike 850 languagers 346 languages 17139286 +languagey 58 languaging 11308 langue 356284 langued 28205 @@ -299432,6 +302178,7 @@ lanzknechts 8271 lanzon 136 lanzones 483 lanzoprazole 120 +laodicean 478 laogai 2653 laojiao 686 laoshi 746 @@ -299610,7 +302357,6 @@ lares 41734 larf 8773 larfed 4275 larfs 938 -largactil 2178 large 245534726 largehearted 10489 largeheartedness 1990 @@ -299659,6 +302405,7 @@ lark 969970 larked 7340 larker 1839 larkers 1083 +larkheels 95 larkier 87 larkiest 170 larkily 253 @@ -299739,6 +302486,7 @@ larvivorous 1718 laryngal 2048 laryngals 920 laryngeal 717490 +laryngealization 805 laryngealized 1070 laryngeally 625 laryngeals 8290 @@ -299888,6 +302636,7 @@ lastings 6199 lastly 4251056 lastness 1472 lasts 2830659 +lasya 1124 lat 2662047 lata 322404 latah 9086 @@ -300103,6 +302852,7 @@ laton 11749 latosol 2477 latosolic 662 latosols 5190 +latration 229 latreutic 386 latria 16888 latrinal 141 @@ -300531,6 +303281,8 @@ layin 35334 laying 11037377 layings 43783 layins 126 +layline 495 +laylines 58 laylocks 487 layman 1475327 laymanship 441 @@ -301430,6 +304182,7 @@ legumins 858 legwear 1997 legwork 26079 leh 19504 +lehavdil 52 lehendakari 453 lehenga 621 lehnga 243 @@ -301459,6 +304212,7 @@ leiomyosarcomas 6980 leiomyosarcomata 140 leiothrix 134 leiotrichous 417 +leipoa 404 leis 44070 leish 1928 leishmania 17168 @@ -302057,6 +304811,7 @@ letterpress 578619 letterpressed 214 letterpresses 395 letters 57423509 +letterset 815 lettersheet 242 lettersheets 148 letterspace 449 @@ -302394,6 +305149,8 @@ levelment 187 levelness 15342 levels 41223215 levelwise 290 +levened 424 +levening 670 lever 5935655 leverage 1321249 leverageable 513 @@ -302510,6 +305267,7 @@ lewisia 626 lewisias 2022 lewisite 10587 lewk 385 +lewks 72 lews 27989 lewth 1027 lex 930278 @@ -302579,6 +305337,7 @@ lexigrams 2962 lexigraphic 812 lexigraphy 309 lexing 1179 +lexipafant 443 lexiphanic 56 lexis 106549 lexon 165 @@ -303073,6 +305832,7 @@ lifesavers 8443 lifesaving 78480 lifescape 477 lifescapes 240 +lifeship 1590 lifesize 46790 lifesized 8287 lifeskill 381 @@ -303100,6 +305860,7 @@ lifetimes 379640 lifeward 833 lifeway 3224 lifeways 20585 +lifewide 2073 lifework 35086 lifeworks 204 lifeworld 144460 @@ -303315,7 +306076,9 @@ lignaloes 765 lignan 6132 lignans 17155 lignase 70 +ligne 60108 ligneous 128324 +lignes 30916 lignicolous 5438 ligniferous 97 lignification 29956 @@ -303431,6 +306194,7 @@ lil 163795 lila 13370 lilac 990599 lilacin 60 +lilacine 14975 lilacky 98 lilacs 119808 lilangeni 2096 @@ -303439,6 +306203,9 @@ lilied 15893 lilies 1350368 liliform 385 lilikoi 63 +lilim 305 +lilin 2012 +lilins 95 lilith 2396 liliths 272 lillianite 785 @@ -303496,6 +306263,7 @@ limblessness 929 limbmeal 508 limbo 465997 limboed 443 +limboes 648 limboing 160 limbolike 113 limbos 3894 @@ -303703,6 +306471,8 @@ linacs 4382 linage 36850 linages 3799 linagliptin 908 +linaloe 3127 +linaloes 364 linalol 10752 linalool 33355 linalools 103 @@ -303883,6 +306653,7 @@ lingualis 9854 linguality 615 lingually 23737 linguals 5540 +linguaphone 780 linguica 346 linguicide 752 linguicism 2075 @@ -304326,6 +307097,7 @@ lipreading 16261 lipreads 161 lips 20310993 lipsanotheca 147 +lipsing 49 lipsmack 379 lipsmacks 242 lipstatin 162 @@ -304356,6 +307128,7 @@ liquefact 145 liquefaction 531253 liquefactions 1827 liquefactive 4086 +liquefiability 159 liquefiable 16247 liquefication 2731 liquefied 592275 @@ -305062,6 +307835,7 @@ liza 10337 lizard 804496 lizardfish 902 lizardfishes 259 +lizardish 160 lizardite 5501 lizardlike 2974 lizardly 315 @@ -305083,6 +307857,7 @@ llanero 2774 llaneros 5458 llano 10232 llanos 38280 +llareta 150 llautu 1067 llyn 16809 llyns 1653 @@ -305479,6 +308254,8 @@ lockup 36297 lockups 5639 lockwork 1256 locky 1914 +locn 612 +locns 430 loco 915092 locodescriptive 637 locoed 1254 @@ -305543,6 +308320,8 @@ locustids 369 locusting 142 locustlike 378 locusts 830595 +locute 50 +locuted 45 locution 80238 locutionary 21746 locutions 70992 @@ -305643,6 +308422,7 @@ logarithmetically 211 logarithmic 932638 logarithmical 3020 logarithmically 64061 +logarithmics 310 logarithmized 351 logarithms 714334 logboard 527 @@ -305665,6 +308445,7 @@ loggerhead 30619 loggerheaded 2023 loggerheads 177595 loggers 98046 +logges 1738 loggia 221543 loggiaed 61 loggias 36574 @@ -305829,6 +308610,7 @@ logwood 283903 logwoods 477 logy 154517 lohoch 398 +lohochs 217 loial 3910 loialty 1130 loiasis 5118 @@ -305867,6 +308649,7 @@ loke 109832 lokes 7025 lokma 350 lokshen 1020 +lokum 2063 lol 80740 lola 5366 lolcat 310 @@ -306196,7 +308979,6 @@ looking 65909469 lookings 6079 lookism 1097 lookist 263 -lookit 20063 lookout 573574 lookouts 60392 lookover 508 @@ -306316,7 +309098,6 @@ loph 677 lophenol 448 lophids 156 lophine 5969 -lophobranchiate 138 lophodont 2404 lophodonty 54 lophophoral 2320 @@ -306355,6 +309136,7 @@ loquacities 191 loquacity 121014 loquat 13740 loquats 7902 +loquitur 100368 loquot 636 loquots 471 lor 2467779 @@ -307567,13 +310349,13 @@ lusk 1584 lusks 1081 lusophone 6128 lusophones 169 +lusorious 415 +lusory 3045 lusotropical 199 lusotropicalism 540 lust 3322878 lusted 75076 luster 87823 -lustered 1198 -lustering 784 lusterless 5747 lusters 4824 lusterware 582 @@ -307592,7 +310374,6 @@ lustings 4298 lustious 119 lustra 17911 lustral 37983 -lustrate 6102 lustrated 22505 lustrates 1861 lustrating 2511 @@ -307668,6 +310449,7 @@ lutestring 16062 lutestrings 3320 lutetium 18672 luteum 281396 +lutfisk 331 luth 15341 lutherie 1535 luthern 571 @@ -308210,6 +310992,8 @@ m'lords 335 m'lud 7523 m'luds 196 m's 1641 +m'sieur 14622 +m'sieurs 272 mDNA 2083 mGal 5597 mM 1146352 @@ -308941,6 +311725,7 @@ macrosegments 180 macrosegregation 4326 macroseismic 4209 macroseisms 123 +macrosequence 260 macroseta 115 macrosetae 966 macroshock 473 @@ -308962,6 +311747,7 @@ macrospecies 420 macrosphere 1012 macrospheres 333 macrospheric 246 +macrosplanchnic 187 macrosporangia 4112 macrosporangium 4104 macrospore 10867 @@ -308991,6 +311777,8 @@ macrosystemic 435 macrosystems 3766 macrotetrolide 392 macrotetrolides 404 +macrotext 843 +macrotextual 498 macrotexture 2271 macrotheoretical 542 macrotheories 654 @@ -309030,7 +311818,6 @@ macrozoospore 203 macrozoospores 1017 macruran 714 macrurans 361 -macrurous 2505 macs 18713 mactation 1694 mactra 1895 @@ -309063,6 +311850,7 @@ macushla 409 macuta 403 macute 618 mad 10250248 +madal 1058 madala 584 madam 3255421 madame 796358 @@ -309083,6 +311871,7 @@ madcaps 8961 madd 14189 madda 2533 maddah 852 +maddalam 442 madded 6734 madden 62797 maddened 380301 @@ -309110,7 +311899,6 @@ maddogs 111 made 629726212 madecassic 175 madecassoside 165 -madefaction 302 madeira 54869 madeiras 2359 madeleine 22194 @@ -309275,6 +312063,7 @@ magazinish 476 magazinist 1272 magazinists 519 magaziny 247 +magenblase 221 magendo 4009 magenstrasse 159 magenta 365253 @@ -309578,6 +312367,7 @@ magnification 1079808 magnifications 138680 magnificence 2559746 magnificences 9722 +magnificencies 481 magnificent 12046172 magnificently 868289 magnified 1969538 @@ -309627,8 +312417,10 @@ magslip 5510 magslips 1638 magsman 1771 magsmen 1352 +magstripe 259 magtape 478 magtig 521 +magua 698 maguari 1164 maguey 33572 magueys 1204 @@ -309684,6 +312476,7 @@ mahfils 259 mahi 17600 mahila 2108 mahimahi 2048 +mahiole 121 mahjong 9178 mahjongg 752 mahlab 964 @@ -309695,6 +312488,7 @@ mahmals 225 mahmil 399 mahmudi 827 mahmudis 2604 +mahobohobo 300 mahoe 3817 mahoganies 9548 mahogany 1539634 @@ -309741,6 +312535,7 @@ maidenly 108321 maidens 1490263 maides 25338 maidhood 4874 +maidie 733 maidish 14517 maidism 2020 maidless 477 @@ -309749,6 +312544,7 @@ maidly 148 maids 1992515 maidservant 162143 maidservants 76729 +maidy 1524 maieutic 9767 maieutical 126 maieutically 534 @@ -309763,6 +312559,8 @@ mailability 256 mailable 8283 mailbag 19050 mailbags 21283 +mailbase 1119 +mailbases 176 mailboat 10317 mailboats 3061 mailbox 147004 @@ -310275,6 +313073,7 @@ maledicted 297 maledicting 44 malediction 145936 maledictions 92556 +maledictive 558 maledictory 5619 maledom 263 maleducation 250 @@ -310376,6 +313175,7 @@ malignants 78378 maligned 304761 maligner 5845 maligners 14374 +malignes 1674 malignest 404 malignified 163 malignin 298 @@ -310403,6 +313203,7 @@ malingerers 32768 malingering 148207 malingeror 158 malingers 1755 +malintegration 1688 malintent 244 malinvested 54 malinvestment 1929 @@ -310812,6 +313613,7 @@ mamzelles 127 mamzer 7414 mamzerim 1707 mamzers 201 +mamzerut 472 man 387573920 mana 217583 manaca 511 @@ -311045,6 +313847,7 @@ manducates 140 manducating 161 manducation 18771 manducations 121 +manducator 1871 manducatory 4272 mandy 20540 mandyas 634 @@ -311192,6 +313995,8 @@ mangy 122588 manhaden 46 manhandle 26740 manhandled 81845 +manhandler 154 +manhandlers 93 manhandles 2236 manhandling 41185 manhandlings 81 @@ -311664,6 +314469,7 @@ manubria 4311 manubrial 5971 manubriosternal 2898 manubrium 117200 +manucaptors 4393 manucode 348 manucodes 144 manuductor 212 @@ -311718,6 +314524,7 @@ manury 100 manus 350260 manuscribed 92 manuscript 10182273 +manuscriptal 542 manuscripts 6013447 manuscriptural 241 manushya 878 @@ -311798,6 +314605,7 @@ maps 10991457 mapwise 156 mapwork 4801 maqam 9741 +maqama 3360 maqamat 4202 maqams 833 maqluba 89 @@ -312948,6 +315756,7 @@ masting 20737 mastings 99 mastitic 5213 mastitis 266629 +mastives 3057 mastless 12380 mastlike 414 mastlin 605 @@ -312990,7 +315799,7 @@ masturbation 369533 p masturbational 541 masturbations 825 masturbator 8873 p -masturbatorium 114 +masturbatorium 114 p masturbators 5235 masturbatory 42544 mastwood 229 @@ -313193,6 +316002,7 @@ mathletes 212 mathnawi 1802 mathnawis 688 mathom 232 +mathophobia 341 maths 1018025 mathy 586 matical 48425 @@ -313392,6 +316202,8 @@ matters 59241613 mattes 50387 matteucinol 298 mattha 68 +mattie 1231 +matties 3118 mattifying 213 matting 534734 mattings 9712 @@ -313495,6 +316307,7 @@ maundered 6534 maunderer 739 maunderers 335 maundering 32916 +maunderingly 159 maunderings 10913 maunders 4650 maundies 299 @@ -314593,6 +317406,7 @@ megabases 3399 megabat 505 megabats 1778 megabaud 67 +megabecquerel 245 megabenthic 347 megabenthos 680 megabid 71 @@ -314705,6 +317519,7 @@ megafossils 2412 megagamete 1050 megagametes 487 megagametocyte 217 +megagametocytes 134 megagametogenesis 544 megagametophyte 2658 megagametophytes 935 @@ -315063,6 +317878,7 @@ meitnerium 891 meizothrombin 157 mejlis 5034 mejorana 691 +meju 414 mekin 1399 mekometer 1591 mekometers 268 @@ -315116,6 +317932,7 @@ melaniferous 527 melaniid 54 melaniline 5177 melanin 217789 +melaninlike 124 melanins 13367 melanisation 1379 melanised 593 @@ -315299,6 +318116,7 @@ melitzanosalata 156 melizitose 517 melkhout 60 melktert 468 +mell 224530 mellate 776 mellates 129 mellays 145 @@ -315512,6 +318330,8 @@ memery 949 memes 126636 memester 172 memetic 12842 +memeticist 159 +memeticists 711 memetics 8054 memex 3234 memey 118 @@ -315776,7 +318596,6 @@ menotaxis 591 menotrophin 980 menotropin 291 menotropins 589 -mens 1020101 mensa 89408 mensae 11674 mensal 12889 @@ -315790,6 +318609,7 @@ menseful 1134 menseless 796 menservants 35646 menses 220693 +mensh 1905 menshevism 281 mensing 131 mensiversary 117 @@ -315994,6 +318814,7 @@ mercaptophenyl 211 mercaptopropionate 687 mercaptopropionic 2335 mercaptopropyl 547 +mercaptopropyltrimethoxysilane 289 mercaptopurine 40766 mercaptopurines 388 mercaptopyridine 1536 @@ -316438,6 +319259,8 @@ mesethmoid 14798 mesethmoidal 394 mesh 2759145 meshed 190440 +mesher 993 +meshers 97 meshes 843842 meshfree 1006 meshing 123048 @@ -316902,6 +319725,7 @@ metaanalyses 10685 metaanalysis 64226 metaanalytic 6457 metaarsenite 168 +metaawareness 291 metaballs 380 metabarcoding 1774 metabasalt 2817 @@ -317182,6 +320006,7 @@ metahistories 313 metahistory 4077 metahuman 1136 metahumans 438 +metaigneous 941 metainformation 1378 metaiodobenzylguanidine 3594 metajuridical 329 @@ -317197,6 +320022,7 @@ metalanguage 99445 metalanguages 6038 metalate 247 metalates 219 +metalating 257 metalation 6095 metalations 182 metalaw 452 @@ -317540,6 +320366,7 @@ metaphase 209680 metaphases 28035 metaphasic 787 metaphasis 192 +metaphen 856 metaphenomena 228 metaphenomenal 1366 metaphenomenon 530 @@ -317601,6 +320428,9 @@ metaphysicianism 187 metaphysicians 253469 metaphysicist 1351 metaphysicists 1096 +metaphysicize 236 +metaphysicized 322 +metaphysicizing 298 metaphysics 2494268 metaphysiological 471 metaphysiology 183 @@ -318180,6 +321010,7 @@ methosulphates 779 methotrexate 223063 methotrimeprazine 3938 methought 268128 +methoughts 3135 methoxamine 7731 methoxatin 307 methoxetamine 329 @@ -318303,6 +321134,7 @@ methylcyclohexanol 4166 methylcyclohexanols 1061 methylcyclohexanone 8093 methylcyclohexanones 1073 +methylcyclohexenone 649 methylcyclohexyl 2929 methylcyclopentadiene 949 methylcyclopentadienyl 1413 @@ -318745,6 +321577,7 @@ mezzotinto 69568 mezzotintoes 207 mezzotintos 3897 mezzotints 47976 +mezzuzah 252 mf 131242 p mfd 54510 mfds 13167 @@ -318842,11 +321675,14 @@ micellular 476 mich 197746 miched 216 michelada 181 +michelia 487 +michelias 129 michellamine 183 micher 5177 michers 904 michiyuki 614 michman 529 +michtam 280 mici 2627 micin 278 micing 562 @@ -319631,6 +322467,7 @@ microflake 803 microflakes 565 microflare 218 microflares 728 +microflash 587 microflat 85 microflats 157 microfleece 174 @@ -320624,6 +323461,8 @@ microservice 9802 microservices 14764 microseta 109 microsetae 456 +microsheet 198 +microsheets 129 microshells 161 microshock 1448 microshocks 371 @@ -320713,6 +323552,7 @@ microspike 485 microspikes 2026 microspines 649 microspirometer 104 +microsplanchnic 429 microsponge 200 microsponges 178 microsporange 576 @@ -320830,6 +323670,9 @@ microtesla 922 microteslas 332 microtest 2318 microtests 420 +microtext 4814 +microtexts 3524 +microtextual 621 microtextural 1039 microtexture 4368 microtextured 314 @@ -321125,6 +323968,8 @@ middler 758 middlers 487 middles 86302 middlescence 306 +middletone 184 +middletones 183 middleware 63771 middlewares 813 middleweight 33776 @@ -321305,8 +324150,11 @@ midrange 48181 midranges 359 midranking 461 midrapidity 237 +midrash 75288 +midrashim 15785 midrashist 644 midrashists 352 +midrashot 70 midrate 52 midrib 365052 midribbed 1793 @@ -321569,6 +324417,7 @@ miking 20888 miko 4544 mikos 234 mikoshi 3780 +miktam 406 mikva 1655 mikvah 4286 mikvahs 172 @@ -321710,6 +324559,7 @@ militiamen 194520 militias 326226 militiawoman 563 militiawomen 699 +militocracy 525 militsia 812 militsiya 760 milium 24006 @@ -322079,6 +324929,7 @@ milus 919 milwell 263 milzbrand 465 mim 47291 +mimated 217 mimation 1640 mimbar 3833 mimbars 261 @@ -322239,7 +325090,9 @@ mindless 378351 mindlessly 59723 mindlessness 29676 mindlike 1303 +mindlink 498 mindly 397 +mindmeld 289 mindnumbing 3787 mindnumbingly 880 mindpower 715 @@ -322634,6 +325487,7 @@ miniprobes 291 miniproteins 195 minipump 1679 minipumps 1935 +minirecession 227 minirefrigerator 242 minireview 1555 minireviews 747 @@ -322727,6 +325581,7 @@ minitheories 863 minitheory 522 minithoracotomy 736 minitour 267 +minitrack 385 minitractor 164 minitractors 201 minitrampoline 220 @@ -322928,6 +325783,7 @@ miracled 1538 miraclemonger 400 miraclemongers 733 miracles 4914101 +miracular 155 miraculin 1181 miraculism 370 miraculist 252 @@ -322962,6 +325818,7 @@ mireland 352 mirepoix 6565 mires 60296 mirex 6134 +mirey 801 mirid 6640 mirids 3594 mirier 637 @@ -323334,6 +326191,7 @@ mischiefmaker 4182 mischiefmakers 3796 mischiefmaking 5714 mischiefs 627129 +mischieve 4175 mischieved 3627 mischieves 3285 mischieving 714 @@ -323461,6 +326319,7 @@ misconvergence 578 misconversion 91 misconverted 148 misconverting 211 +misconveyance 1546 misconveyed 143 misconveying 169 miscooked 197 @@ -323856,6 +326715,9 @@ mishitting 354 mishmash 43408 mishmashed 181 mishmashes 204 +mishpachah 439 +mishpoche 191 +mishpocheh 129 misidentification 54522 misidentifications 11661 misidentified 44692 @@ -324402,6 +327264,9 @@ misrepresenters 902 misrepresenting 190473 misrepresents 119695 misreputed 170 +misresults 221 +misreturn 172 +misreturning 77 misri 2116 misroute 135 misrouted 2119 @@ -324415,6 +327280,9 @@ misrulers 1039 misrules 1268 misruling 1590 misrulings 93 +misrun 1163 +misrunning 233 +misruns 1417 miss 7633902 missa 82291 missable 4162 @@ -324449,6 +327317,8 @@ misserved 270 misservice 117 misses 1168660 misseses 176 +missess 229 +missesses 247 missest 910 misset 523 misseth 6529 @@ -325077,6 +327947,7 @@ moab 3686 moabi 338 moai 12745 moais 301 +moales 220 moambe 105 moan 1111935 moaned 757686 @@ -325209,8 +328080,6 @@ mockers 57841 mockery 1789893 mockest 6250 mocketh 16515 -mockheroic 8002 -mockheroics 452 mockie 126 mocking 1312730 mockingbird 14433 @@ -325256,6 +328125,7 @@ modarabas 192 modded 6397 modder 3965 modders 1273 +moddies 349 modding 5950 mode 33580864 moded 24106 @@ -325687,6 +328557,7 @@ mole 2893012 molecasts 113 molecatcher 3962 molecatchers 904 +molecatching 486 molecula 2432 moleculae 5993 molecular 11081614 @@ -325930,6 +328801,7 @@ monadicity 308 monadiform 2073 monadism 4955 monadist 715 +monadistic 1819 monadists 395 monadnock 2254 monadnocks 5130 @@ -326089,6 +328961,7 @@ moneymakers 6155 p moneymaking 46669 moneyman 2222 moneymen 5566 +moneymonger 286 moneyness 6973 moneyocracy 1181 moneys 3600439 @@ -326609,6 +329482,7 @@ monoetherate 292 monoethers 1791 monoethnic 2935 monoethyl 13484 +monoethylene 1978 monoethylglycinexylidide 460 monoexponential 4079 monoexponentially 420 @@ -326833,6 +329707,7 @@ monolithism 3086 monolithium 446 monolithologic 161 monoliths 154948 +monolobular 1575 monolocular 1007 monolog 2777 monologic 39180 @@ -327041,6 +329916,7 @@ monophyly 22642 monophyodont 3019 monophyodontism 191 monophyodonts 329 +monophysism 305 monophysite 20454 monophysites 7469 monophysitic 1208 @@ -327049,6 +329925,7 @@ monophysitism 6554 monopile 3019 monopiles 940 monopitch 5899 +monopitched 858 monopitches 209 monoplace 517 monoplacophoran 1024 @@ -327137,6 +330014,7 @@ monopteros 973 monoptic 1001 monoptical 47 monopulse 11313 +monoquaternary 1480 monoracial 2474 monoradicular 226 monorail 101421 @@ -327247,6 +330125,7 @@ monostele 1186 monostelic 4699 monostely 516 monostich 1475 +monostichic 62 monostichous 1330 monostichs 604 monostomatous 112 @@ -327441,7 +330320,6 @@ monozoic 1505 monozygosity 1435 monozygotic 91000 monozygous 6871 -mons 305490 monseigneur 60088 monseigneurs 340 monsieur 731814 @@ -327461,6 +330339,7 @@ monsterdom 153 monstered 2915 monsterhood 242 monstering 1379 +monsterism 171 monsterization 280 monsterized 63 monsterlike 438 @@ -327504,7 +330383,6 @@ montbretia 3584 montbretias 2071 monte 124050 montebrasite 1847 -monteith 2677 monteiths 929 montelukast 8460 montem 30892 @@ -327602,12 +330480,14 @@ moochulka 228 moocow 1894 moocows 93 mood 9895317 +moodboard 933 moodier 4586 moodiest 2237 moodily 170192 moodiness 58060 moodinesses 121 moodir 404 +moodish 369 moodishness 106 moodle 499 moodless 1316 @@ -327700,6 +330580,8 @@ moonlike 12703 moonlit 377031 moonlitten 108 moonly 351 +moonman 437 +moonmen 688 moonpath 588 moonphase 729 moonquake 1219 @@ -327728,6 +330610,8 @@ moonshiners 4593 moonshines 2147 moonshiney 62 moonshining 2501 +moonship 1605 +moonships 485 moonshis 201 moonsif 1147 moonsiff 7337 @@ -327812,6 +330696,9 @@ mooted 615584 mooter 3817 mooters 2508 mootest 122 +moothill 710 +moothills 299 +mootie 167 mooting 50571 mootings 3791 mootness 1860 @@ -328209,6 +331096,9 @@ morphologists 22008 morphologization 2267 morphologized 1362 morphology 2802581 +morphomania 193 +morphomaniac 421 +morphomaniacs 137 morphome 2351 morphomes 1622 morphometric 69669 @@ -328399,7 +331289,6 @@ morular 1252 morulas 728 moruloid 477 moruti 683 -morwenings 139 morwong 880 mos 365024 mos' 124 @@ -328642,6 +331531,8 @@ motivos 4528 motley 837686 motleyness 464 motleys 1174 +motlier 3329 +motliest 897 motmot 2534 motmots 3052 moto 88459 @@ -328783,6 +331674,7 @@ mouches 12009 mouching 1520 mouchoir 8130 mouchoirs 2462 +moudiewarp 169 moudiewart 171 moudiewort 357 moudieworts 218 @@ -329028,6 +331920,7 @@ mouthful 736144 mouthfuls 173181 mouthguard 3355 mouthguards 2001 +mouthie 156 mouthier 122 mouthiest 305 mouthiness 435 @@ -329113,6 +332006,7 @@ moving 33323821 movingly 134260 movingness 601 movings 16597 +movingui 52 movt 9688 movts 2462 mow 407361 @@ -329202,6 +332096,8 @@ mu'mins 117 muah 1089 muang 5684 muangs 179 +muazzin 341 +muazzins 107 mubah 1917 muban 477 mucal 935 @@ -329944,6 +332840,7 @@ multicausality 1778 multicavity 2090 multicell 8207 multicelled 4476 +multicells 397 multicellular 224483 multicellularity 8921 multicellulars 555 @@ -329986,6 +332883,7 @@ multiclause 273 multiclient 2321 multiclonal 878 multiclone 363 +multiclones 105 multicloning 228 multicluster 411 multicoat 1207 @@ -330008,6 +332906,7 @@ multicolumn 2705 multicolumnar 446 multicommodity 3953 multicommunal 583 +multicompany 1065 multicompartment 4545 multicompartmental 1780 multicompetence 1873 @@ -330223,7 +333122,9 @@ multifilaments 1087 multifile 1175 multifilm 329 multifilter 228 +multifinality 1800 multifinger 1104 +multifirm 931 multiflagellate 976 multiflagellated 214 multiflash 1290 @@ -330234,6 +333135,7 @@ multiflora 48115 multifloral 1401 multifloras 1051 multiflorous 1069 +multiflow 1795 multiflowered 834 multiflue 499 multiflued 199 @@ -330375,6 +333277,7 @@ multikilowatt 449 multikinase 768 multilabel 374 multilaboratory 433 +multilacunar 462 multilamellar 8648 multilamellate 326 multilamellated 164 @@ -330667,7 +333570,9 @@ multiperiodic 513 multiperson 3973 multipersonal 1507 multipersonality 137 +multiperspectivalism 258 multiperspective 2443 +multiperspectivism 531 multiperspectivity 635 multipetaled 85 multipetalled 339 @@ -331109,6 +334014,7 @@ multitrip 825 multitrophic 2706 multitrunked 52 multitube 2965 +multitubercular 761 multituberculate 2993 multituberculates 2897 multitubular 52043 @@ -331476,6 +334382,7 @@ muraqaba 496 muraqabah 49 muratina 175 muray 72 +murdabad 182 murdah 195 murder 17107085 murder'd 96312 @@ -331765,12 +334672,14 @@ museth 4577 musette 19147 musettes 3960 museum 7708340 +museumed 297 museumgoer 349 museumgoers 891 museumgoing 293 museumification 1869 museumified 479 museumify 134 +museuming 158 museumization 943 museumize 195 museumized 624 @@ -331876,6 +334785,7 @@ musjid 2469 musjids 893 musk 673979 muskadel 584 +muskadine 1619 muskball 263 musked 2422 muskeg 16879 @@ -331931,6 +334841,8 @@ musos 3316 musquash 15839 musquashes 459 musqueteers 28537 +musquetoes 1183 +musquetos 257 musquets 32878 musquito 16588 musquitoes 39318 @@ -332120,6 +335032,8 @@ muthis 194 muti 25806 mutic 3839 muticous 5235 +mutie 5860 +muties 4023 mutilate 157535 mutilated 1864657 mutilates 28381 @@ -332217,6 +335131,7 @@ mutupo 1342 mutuum 24255 muumuu 3438 muumuus 895 +muvule 532 muvver 6154 muvvers 261 muwahhid 479 @@ -332266,7 +335181,9 @@ mvule 2312 mwa 5140 mwah 3013 mwalimu 1734 +mwami 4431 mwenge 526 +mxd 805 mxn 4043 my 750190738 mya 33797 @@ -332560,6 +335477,8 @@ mylohyoideus 2165 mylonite 20714 mylonites 19013 mylonitic 15297 +mylonitization 3701 +mylonitized 3001 mymarid 592 mymarids 175 myna 7167 @@ -333177,6 +336096,7 @@ mzee 2460 mzungu 5888 mzungus 606 n' 16837 +n's 3889 n't 383925 nB 24478 nDNA 5683 @@ -333284,9 +336204,11 @@ nafenopin 885 naff 32508 naffer 464 naffest 487 +naffing 486 naffly 174 naffness 1262 nafoxidine 1235 +nafs 32348 naftidrofuryl 2370 naftifine 1071 nag 344055 @@ -333344,6 +336266,7 @@ naib 21056 naibors 128 naibours 497 naibs 3133 +naice 2194 naidid 450 naidids 447 naig 8697 @@ -333351,6 +336274,7 @@ naigs 2415 naik 9154 naiks 2382 nail 3295715 +nailability 219 nailable 1240 nailbed 4789 nailbeds 1569 @@ -333437,6 +336361,8 @@ nakhodas 1045 naking 9359 nakir 578 nakirs 169 +nakoda 1164 +nakodas 409 nakodo 575 nakong 734 nakongs 121 @@ -333475,6 +336401,7 @@ namaz 10912 namazi 221 namba 1420 nambas 612 +namby 48611 name 175134560 nameability 971 nameboard 7267 @@ -333555,6 +336482,7 @@ nanism 4170 nanisms 443 nanite 1801 nanites 5426 +nanja 1781 nank 810 nankeen 69271 nankeens 17026 @@ -334419,9 +337347,12 @@ nasendoscopic 223 nasendoscopy 3144 nases 689 nash 13028 +nashed 592 nasheed 374 nasheeds 597 +nashes 201 nashi 5837 +nashing 734 nasho 76 nasi 108215 nasial 330 @@ -335047,6 +337978,8 @@ neckgear 322 neckhold 174 necking 98583 neckings 2655 +neckkerchief 1182 +neckkerchiefs 199 necklace 1365693 necklaced 4089 necklacelike 340 @@ -335624,6 +338557,7 @@ nemoral 1316 nemorous 179 nems 1582 nen 92169 +nenbutsu 3128 nene 9809 nenes 1031 nenia 1839 @@ -335685,6 +338619,8 @@ neocolonialisms 96 neocolonialist 11606 neocolonialists 2019 neocolonies 657 +neocolonisation 184 +neocolonization 452 neocolonized 403 neocolonizing 190 neocolony 820 @@ -335846,6 +338782,7 @@ neomercantilism 2177 neomercantilist 3741 neomercantilistic 191 neomercantilists 377 +neomineralization 151 neomodern 521 neomodernism 582 neomodernist 691 @@ -336210,6 +339147,7 @@ neptunate 208 neptunates 175 neptunian 3142 neptunic 519 +neptunism 715 neptunite 697 neptunium 38568 ner 514482 @@ -336340,6 +339278,8 @@ nesters 24188 nesteth 94 nestful 5386 nestfuls 295 +nesthole 678 +nestholes 696 nestin 6121 nesting 1233999 nestings 3556 @@ -337614,6 +340554,7 @@ niacinamide 5029 niacytin 502 nialamide 5836 nialamides 127 +nianfo 300 niaouli 2776 nib 171594 nibba 509 @@ -337790,6 +340731,7 @@ nidder 288 niddering 1711 nidderings 151 niddick 157 +niddui 632 nide 8232 nidering 1114 niderling 51 @@ -337926,6 +340868,8 @@ nigglings 279 niggly 5462 nigguh 805 p nigguhs 225 p +niggun 513 +niggunim 284 nigh 3667831 nighantu 260 nighed 1183 @@ -338091,6 +341035,7 @@ nigs 7213 nigua 1528 niguas 1024 nigun 661 +nigunim 660 nihari 292 nihil 667134 nihilate 2065 @@ -338944,6 +341889,7 @@ nohow 32535 nohowish 140 nohows 907 noice 6760 +noid 7902 noight 3706 noights 278 noil 36375 @@ -339204,6 +342150,7 @@ nonacetylated 995 nonachievement 1469 nonachiever 53 nonachievers 355 +nonachromatic 723 nonacid 2862 nonacidic 2099 nonacidified 338 @@ -339375,6 +342322,7 @@ nonairline 175 nonairport 46 nonairtight 101 nonaketide 95 +nonal 1018 nonalarmist 91 nonalbicans 220 nonalbum 60 @@ -339971,6 +342919,7 @@ noncarnivores 131 noncarnivorous 1089 noncarrier 886 noncarriers 2696 +noncarrying 985 noncartilaginous 333 noncartographic 151 noncase 417 @@ -340517,6 +343466,7 @@ nonconstraint 83 nonconstricted 108 nonconstricting 91 nonconstructed 120 +nonconstructible 208 nonconstruction 871 nonconstructive 2814 nonconsultant 311 @@ -340869,6 +343819,7 @@ nondelinquent 4096 nondelinquents 4572 nondeliquescent 689 nondelirious 123 +nondeliverable 453 nondelivered 202 nondeliveries 127 nondelivery 18961 @@ -341109,6 +344060,7 @@ nondispersion 197 nondispersive 5314 nondisplaceable 325 nondisplaced 2438 +nondisplacement 383 nondisplayed 468 nondisposable 1145 nondisposal 45 @@ -341838,6 +344790,7 @@ nonfragmentary 103 nonfragmented 397 nonfranchise 147 nonfranchised 504 +nonfraternal 107 nonfraternity 200 nonfraternization 530 nonfraudulent 651 @@ -342603,6 +345556,7 @@ nonjudgmentalism 273 nonjudgmentally 2019 nonjudicial 8049 nonjunctional 617 +nonjurancy 195 nonjurant 967 nonjuridical 564 nonjuring 48896 @@ -342806,6 +345760,7 @@ nonmacho 126 nonmacrophage 48 nonmagic 198 nonmagical 1464 +nonmagmatic 141 nonmagnet 203 nonmagnetic 50374 nonmagnetizable 189 @@ -343141,6 +346096,7 @@ nonmythic 173 nonmythical 424 nonmythological 643 nonna 9652 +nonname 60 nonnarcissistic 241 nonnarcotic 1991 nonnarcotics 125 @@ -343635,6 +346591,7 @@ nonphenomenological 535 nonphilological 136 nonphilosopher 1077 nonphilosophers 3354 +nonphilosophic 490 nonphilosophical 6325 nonphilosophically 148 nonphilosophy 1935 @@ -344134,6 +347091,7 @@ nonreactors 953 nonreader 1151 nonreaders 3251 nonreading 2013 +nonreaginic 137 nonreal 3716 nonrealism 1883 nonrealist 3342 @@ -344321,6 +347279,7 @@ nonrental 273 nonrepair 7647 nonrepairable 1130 nonrepaired 69 +nonrepatriable 152 nonrepayable 1513 nonrepayment 824 nonrepeat 349 @@ -344710,6 +347669,7 @@ nonsetting 627 nonsettleable 289 nonsettled 1087 nonsettlement 842 +nonsettler 946 nonsettling 887 nonsevere 1169 nonsex 1816 @@ -344766,6 +347726,8 @@ nonsignification 136 nonsignifying 1177 nonsigning 629 nonsilent 234 +nonsilicate 604 +nonsilicates 145 nonsiliceous 771 nonsilicon 295 nonsilicone 174 @@ -345336,6 +348298,7 @@ nontitle 211 nontitled 538 nontitular 304 nontobacco 508 +nontoken 46 nontolerance 203 nontolerant 2100 nontoleration 176 @@ -345690,6 +348653,7 @@ nonwage 8695 nonwaged 321 nonwaivable 463 nonwalking 158 +nonwandering 717 nonwar 1399 nonwarlike 342 nonwarrior 110 @@ -345765,6 +348729,8 @@ nonylene 475 nonylic 2459 nonylphenol 10856 nonylphenols 855 +nonymity 201 +nonymous 3454 nonzero 197245 nonzeros 2932 nonzonal 403 @@ -345841,6 +348807,7 @@ nopaleries 765 nopalery 93 nopales 1182 nopaline 9853 +nopalitos 353 nopals 3615 nope 38637 noped 1582 @@ -345932,6 +348899,7 @@ norisoprenoids 860 norite 40383 norites 12641 noritic 4377 +norito 3299 nork 7610 norketamine 872 norks 3477 @@ -346409,6 +349377,8 @@ nothings 213235 nothingth 65 nothingy 731 nothink 51786 +nothomorph 135 +nothomorphs 115 nothosaur 288 nothosaurs 1438 nothospecies 194 @@ -346493,7 +349463,6 @@ notwithstanding 16535068 notwork 1557 notworks 96 nou 201846 -noueltees 151 noug 937 nougat 32420 nougatine 1598 @@ -346619,6 +349588,10 @@ noviciate 83359 noviciates 6216 novillada 539 novilladas 500 +novillero 1046 +novilleros 622 +novillo 570 +novillos 1404 novis 38856 novitiate 145053 novitiates 13009 @@ -346681,6 +349654,7 @@ noyans 781 noyau 15466 noyeau 6404 noyed 4296 +noyers 469 noying 1530 noyl 166 noyls 149 @@ -346703,14 +349677,18 @@ nr 1149682 nrDNA 860 nrg 1604 nritta 586 +nrml 59 nrn 7963 nroff 1833 +ns 1942634 +nsambya 91 nshima 811 nsibidi 494 nsima 2151 nsutite 488 ntama 269 nth 1322439 +nthn 55 nths 19373 nu 565727 nuance 357175 @@ -346940,6 +349918,8 @@ nugatory 404935 nugg 59 nuggar 3175 nuggars 1981 +nugger 2157 +nuggers 1209 nugget 148956 nuggets 201492 nuggetty 839 @@ -347146,7 +350126,6 @@ nunchakus 564 nuncheon 6113 nuncheons 667 nunchi 601 -nunchion 825 nunchions 303 nunchuck 152 nunchucks 1075 @@ -347168,6 +350147,8 @@ nuncupatory 1956 nundinal 1941 nundines 1131 nunhood 867 +nunja 66 +nunjah 1481 nunlike 4755 nunly 262 nunnation 1739 @@ -347182,6 +350163,7 @@ nunu 3467 nunus 187 nunya 374 nup 18953 +nupercaine 3162 nuptial 723427 nuptialities 179 nuptiality 28861 @@ -347699,6 +350681,8 @@ obelizes 919 obelizing 595 obelus 12122 obento 269 +oberek 485 +obereks 126 obes 6010 obese 767513 obesely 716 @@ -347853,7 +350837,10 @@ oblations 367119 oblative 1421 oblatory 1750 oblatum 12920 +obleege 5075 obleeged 14131 +obleeges 131 +obleeging 1331 oblig'd 182566 obligable 355 obligant 30003 @@ -347918,6 +350905,7 @@ obliterans 47421 obliterate 639730 obliterated 1820518 obliterates 118926 +obliterateth 128 obliterating 250961 obliteratingly 233 obliteration 494037 @@ -348075,6 +351063,7 @@ observations 33741084 observative 2124 observatorial 279 observatories 425834 +observatorium 355 observatory 1103761 observaunces 2167 observe 22453999 @@ -348190,6 +351179,7 @@ obstructs 288751 obstruency 157 obstruent 25030 obstruents 26769 +obstruse 2267 obtainability 937 obtainable 4275470 obtainal 514 @@ -348313,7 +351303,6 @@ occasioners 1505 occasioneth 4674 occasioning 394637 occasions 22090530 -occasive 149 occhio 13512 occident 24474 occidental 137793 @@ -348434,6 +351423,7 @@ occurrences 2965843 occurrent 70297 occurrently 5493 occurrents 32813 +occurres 1607 occurring 10677811 occurrings 156 occurs 33287453 @@ -348865,6 +351855,7 @@ octylic 3182 octyloxy 863 octyne 1594 ocular 1525986 +ocularcentric 3439 ocularcentrism 3737 ocularia 1119 ocularist 550 @@ -349047,6 +352038,7 @@ odored 663 odoriferous 237524 odoriferously 1046 odoriferousness 507 +odorimeter 470 odorimetry 170 odorise 309 odorised 1209 @@ -349096,6 +352088,7 @@ oeconomi 1008 oeconomies 851 oeconomus 8260 oecophorid 229 +oecumene 3399 oecumenic 1878 oecumenical 86519 oecumenicalism 247 @@ -349805,6 +352798,7 @@ olefinic 104794 olefins 316042 oleh 4879 oleic 400158 +oleiculture 221 oleiferous 2776 olein 52859 oleine 30292 @@ -350106,8 +353100,6 @@ olistoliths 2444 olistostrome 2854 olistostromes 2960 olistostromic 247 -olitories 151 -olitory 940 oliva 10101 olivaceous 79892 olivacine 235 @@ -350116,7 +353108,6 @@ olivary 65070 olivaster 1122 olive 5617857 olived 661 -olivegreen 21007 olivegrowing 502 olivelike 131 olivenite 2643 @@ -350226,6 +353217,8 @@ ombudsperson 6427 ombudspersons 2431 ombudswoman 479 ombus 506 +omdeh 2141 +omdehs 671 ome 455830 omee 3131 omees 601 @@ -350354,6 +353347,7 @@ omnipotences 454 omnipotencies 97 omnipotency 31950 omnipotent 896262 +omnipotential 353 omnipotentiality 185 omnipotently 9712 omnipotents 635 @@ -350600,6 +353594,7 @@ onery 1484 ones 39385298 onescore 41 oneself 4311684 +oneselves 329 oneship 510 oneshot 4278 oneshots 99 @@ -350904,6 +353899,7 @@ oohs 11799 ooid 5178 ooidal 2557 ooids 12157 +ooja 58 oojah 402 ook 198082 ooked 23201 @@ -350911,6 +353907,7 @@ ookinete 6386 ookinetes 4191 ooking 21759 ooks 46976 +ool 156513 oolachan 712 oolachans 175 oolak 240 @@ -351228,6 +354225,7 @@ opercules 1097 operculiform 1605 operculigerous 2761 operculum 371688 +operculums 308 opere 169959 operetta 216087 operettas 81122 @@ -351403,7 +354401,6 @@ opisometers 155 opisthaptor 2002 opisthion 3530 opisthobranch 6577 -opisthobranchiate 1047 opisthobranchs 7263 opisthocline 1045 opisthocoelian 1330 @@ -351668,6 +354665,7 @@ optionals 2662 optionary 124 optioned 12811 optionee 1671 +optioneering 664 optionees 193 optioning 1124 optionless 406 @@ -351920,6 +354918,7 @@ orchardman 279 orchardmen 301 orchards 1490362 orchats 529 +orchel 552 orchella 3551 orchesis 672 orchestic 1871 @@ -352416,6 +355415,7 @@ orgues 5258 orguinette 383 orgulous 4799 orgy 349829 +orh 4759 orhni 325 oribatid 7434 oribatids 1716 @@ -353217,6 +356217,7 @@ osetra 532 osh 8764 osha 1100 oshana 240 +oshanas 326 oshibori 317 osier 153954 osiered 1534 @@ -353410,6 +356411,10 @@ osteichthyans 2471 ostein 1268 osteitic 920 osteitis 98022 +ostend 2123 +ostended 1773 +ostending 526 +ostends 232 ostensibility 998 ostensible 859847 ostensibly 1710816 @@ -353430,6 +356435,7 @@ ostentations 8093 ostentatious 707103 ostentatiously 416541 ostentatiousness 4832 +ostentative 228 ostentator 1139 ostents 3038 osteo 127829 @@ -353922,9 +356928,12 @@ oughtness 6050 oughts 38254 oughtst 2098 oughtta 3972 +ougiya 491 +ougiyas 232 ouguiya 3357 ouguiyas 2133 oui 158494 +ouid 2040 ouija 12652 ouistiti 929 ouistitis 265 @@ -354296,10 +357305,12 @@ outer 20623248 outercoat 642 outercourse 431 outering 1146 +outerly 1561 outermost 690129 outerness 553 outerplanar 676 outers 47560 +outershell 394 outerwear 97480 outerweb 1208 outerwebs 6420 @@ -355069,6 +358080,7 @@ outspend 4371 outspending 2437 outspends 804 outspent 7257 +outspies 105 outspin 223 outspit 147 outspoke 2150 @@ -355173,6 +358185,7 @@ outswum 57 outswung 193 outta 111166 outtake 6603 +outtaken 438 outtakes 11919 outtaking 63 outtalk 1491 @@ -355317,6 +358330,7 @@ outyields 2320 ouvarovite 123 ouvert 23024 ouverts 6266 +ouvertures 4293 ouvrier 32244 ouvrierism 189 ouvrierist 300 @@ -355580,6 +358594,7 @@ overbeat 1379 overbeaten 274 overbeating 685 overbed 3096 +overbelief 1386 overbend 1375 overbending 1399 overbends 130 @@ -355773,6 +358788,7 @@ overcard 129 overcare 945 overcareful 2575 overcarefully 281 +overcarefulness 620 overcareless 63 overcaring 230 overcarriage 1322 @@ -355804,6 +358820,7 @@ overcentralize 120 overcentralized 3398 overcentralizing 109 overcerebral 149 +overcertification 184 overcertifying 67 overchallenged 162 overchallenging 55 @@ -356243,6 +359260,7 @@ overdramatized 2407 overdramatizes 375 overdramatizing 1336 overdrank 435 +overdraped 217 overdraught 1693 overdraughts 392 overdraw 36268 @@ -356654,6 +359672,8 @@ overglooming 52 overgloomy 154 overglorification 97 overglorified 118 +overgloss 161 +overglossed 170 overglow 147 overglowing 51 overgo 5141 @@ -356866,6 +359886,7 @@ overinflation 5449 overinfluence 291 overinfluenced 1842 overinfluential 95 +overinformative 132 overinformed 490 overinfusion 424 overingenious 1258 @@ -356963,6 +359984,9 @@ overlabour 822 overlaboured 5075 overlabouring 576 overlabours 113 +overlace 126 +overlaced 494 +overlacing 233 overlactation 259 overlade 1171 overladed 324 @@ -357061,6 +360085,7 @@ overlip 444 overliquidity 268 overlit 4101 overliteral 1309 +overliterally 217 overliterary 375 overlive 7765 overlived 7096 @@ -357254,7 +360279,9 @@ overnite 75 overnourished 1700 overnourishing 54 overnourishment 396 +overnumber 312 overnumbered 258 +overnumbering 176 overnumerous 731 overnursed 101 overnursing 250 @@ -357563,6 +360590,9 @@ overprotects 439 overprotracted 44 overproud 2156 overprove 208 +overproved 521 +overproves 46 +overproving 60 overprovision 8292 overprovisioned 273 overprovisioning 726 @@ -357654,6 +360684,7 @@ overrecruit 49 overrecruited 87 overrecruiting 109 overrecruitment 269 +overred 282 overreduced 414 overreduction 1014 overrefine 109 @@ -357755,6 +360786,8 @@ overromantic 601 overromanticize 153 overromanticized 314 overromanticizing 114 +overroof 102 +overroofed 123 overrotated 47 overrotation 211 overrough 60 @@ -357801,6 +360834,7 @@ oversanding 56 oversands 445 oversang 177 oversanguine 6241 +oversat 1302 oversated 510 oversatisfied 565 oversatisfy 54 @@ -357825,6 +360859,7 @@ overschedule 389 overscheduled 1507 overscheduling 587 overschooled 314 +overschooling 218 overscore 954 overscored 4930 overscores 61 @@ -358621,6 +361656,7 @@ overweighs 3801 overweight 638955 overweighted 69463 overweighting 10807 +overweightness 302 overweights 4917 overwell 2490 overwelling 125 @@ -358695,6 +361731,7 @@ overzealous 69943 overzealously 2616 overzealousness 3803 ovest 1323 +ovibos 1214 ovicaprid 4244 ovicaprids 4839 ovicaprine 1025 @@ -358749,6 +361786,7 @@ oviraptorosaurs 686 oviraptors 175 ovisac 33315 ovisacs 20739 +oviscapt 377 ovism 654 ovist 1244 ovists 1699 @@ -358998,6 +362036,7 @@ oxbows 3492 oxcarbazepine 15283 oxcart 7872 oxcarts 6231 +oxdrawn 1229 oxdriver 195 oxdrivers 117 oxea 11676 @@ -359194,6 +362233,7 @@ oxosteroids 10029 oxothiazolidine 302 oxotremorine 5711 oxovanadium 4864 +oxozone 617 oxpecker 1484 oxpeckers 2450 oxprenolol 13097 @@ -359404,6 +362444,7 @@ oy 306696 oyabun 5681 oyakata 2217 oyamel 414 +oyan 290 oyer 354443 oyez 7459 oyinbo 651 @@ -359431,6 +362472,8 @@ oysterlings 229 oysterman 2870 oystermen 3850 oysters 1451533 +oystershell 5019 +oystershells 6456 oysterwoman 453 oysterwomen 573 oystery 640 @@ -359443,6 +362486,7 @@ ozenbrigs 157 ozier 9842 oziers 5526 ozmazome 869 +ozobrome 2246 ozocerite 2994 ozoena 3677 ozogamicin 1537 @@ -359479,6 +362523,7 @@ ozoniser 24663 ozonisers 8567 ozonises 406 ozonising 8697 +ozonium 403 ozonization 9305 ozonize 715 ozonized 24443 @@ -359532,6 +362577,7 @@ pabouches 201 pabula 6589 pabulum 140655 pabulums 117 +pac 33862 paca 12319 pacara 138 pacarana 245 @@ -359671,7 +362717,9 @@ packboards 235 packcloth 610 packed 7870019 packer 164314 +packeries 166 packers 233038 +packery 244 packet 3979807 packeted 12395 packetful 258 @@ -359733,6 +362781,7 @@ pacos 5849 pacotille 1041 pacotilles 238 pacquets 9810 +pacs 2575 pact 1459970 pactamycin 1333 pacted 7628 @@ -359810,6 +362859,7 @@ paderero 322 padesoy 111 padeye 954 padeyes 778 +padfoot 789 padge 1466 padges 233 padi 109846 @@ -359958,6 +363008,7 @@ pagans 706946 pagari 261 pagaris 128 pagasts 249 +pagat 429 pagati 1142 pagdi 216 page 54262117 @@ -360158,9 +363209,12 @@ pairbonding 1303 pairbreaking 213 paired 1628807 pairedness 191 +pairer 784 +pairers 856 paires 8124 pairing 854519 pairings 149285 +pairle 1259 pairs 10399567 pairwise 180656 pairwisely 121 @@ -360934,6 +363988,7 @@ pallier 572 pallies 297 palliness 497 palling 37745 +pallingly 139 palliobranchiate 220 pallisades 11452 pallisadoed 2911 @@ -361615,6 +364670,7 @@ panmyelophthisis 320 panmyelosis 960 pannage 91122 pannages 872 +pannary 57 panne 41179 panned 99935 pannekoek 385 @@ -361852,6 +364908,8 @@ pantonal 584 pantonality 604 pantons 445 pantophagous 177 +pantophle 162 +pantophles 358 pantophobia 483 pantopods 166 pantoporate 237 @@ -361865,6 +364923,10 @@ pantothenic 62143 pantothenol 213 pantothere 125 pantotheres 634 +pantouffle 127 +pantouffles 525 +pantoufle 2335 +pantoufles 4751 pantoum 1652 pantoums 465 pantries 47893 @@ -362121,6 +365183,7 @@ pappies 272 pappiform 257 pappiness 188 papping 645 +papple 534 papponymy 384 pappoose 1630 pappooses 906 @@ -362160,16 +365223,15 @@ papulovesicular 2551 papyraceous 8242 papyral 302 papyri 454034 -papyrian 187 +papyric 164 papyriform 1297 -papyrine 305 papyrograph 769 papyrographic 306 -papyrography 490 papyrological 13908 papyrologist 4112 papyrologists 5549 papyrology 10629 +papyrotype 279 papyrus 924761 papyruses 1308 paquebot 1474 @@ -362313,6 +365375,8 @@ paracone 9819 paracones 187 paraconformities 152 paraconformity 441 +paraconglomerate 202 +paraconglomerates 181 paraconid 6001 paraconine 184 paraconsistency 1456 @@ -362356,6 +365420,7 @@ paraders 3618 parades 511037 paradiastole 1984 paradiastolic 523 +paradiazine 98 paradichlorobenzene 4009 paradiddle 1381 paradiddles 719 @@ -362560,6 +365625,7 @@ parahormone 299 parahormones 131 parahuman 337 parahydrogen 7639 +parai 2975 paraimmunoblasts 436 parainesis 613 parainfectious 874 @@ -362727,6 +365793,7 @@ paramagnetism 56396 paramagnets 2469 paramagnon 1004 paramagnons 727 +paramahamsa 293 paramalignant 382 paramastoid 3461 paramastoids 199 @@ -362739,6 +365806,7 @@ paramedially 260 paramedian 35398 paramedic 103497 paramedical 56178 +paramedically 121 paramedicals 1878 paramedicine 532 paramedics 144195 @@ -362809,6 +365877,7 @@ paramilitarists 219 paramilitarization 595 paramilitarized 117 paramilitary 415245 +paraminophenol 1011 paramita 6365 paramitas 2766 paramnesia 7643 @@ -362866,6 +365935,7 @@ paranatellons 460 paranatural 322 paranda 1842 parandas 92 +parandja 298 paranemic 436 paraneoplasia 305 paraneoplastic 43843 @@ -363316,6 +366386,7 @@ paratrigeminal 682 paratroop 33920 paratrooper 41407 paratroopers 126071 +paratrooping 745 paratroops 68189 paratropical 595 paratubal 1362 @@ -363407,7 +366478,6 @@ parcens 1895 parch 53269 parched 915401 parchedness 935 -parcheesi 525 parcher 811 parcherries 203 parcherry 333 @@ -363418,6 +366488,7 @@ parching 119484 parchingly 657 parchings 419 parchment 2116043 +parchmented 1165 parchmentized 839 parchmentizing 526 parchmentlike 2828 @@ -363509,6 +366580,7 @@ parentals 2012 parentcraft 8794 parentectomy 370 parented 17864 +parentelic 1842 parenter 307 parenteral 395334 parenterally 63130 @@ -363657,6 +366729,7 @@ parishioners 2000722 parisite 2500 parison 136973 parisons 16290 +parisosis 612 parisyllabic 1298 paritaprevir 429 parities 127940 @@ -363776,6 +366849,7 @@ parnassian 840 parnassians 248 paroccipital 25259 paroches 12722 +parochet 239 parochial 3260196 parochialise 337 parochialised 527 @@ -363905,6 +366979,7 @@ parquets 3615 parquette 1899 parquetted 1878 parquetting 417 +parquisites 985 parr 137343 parrakeet 7464 parrakeets 10867 @@ -363971,6 +367046,7 @@ parser 88180 parsers 17924 parses 30195 parsettensite 229 +parshioth 249 parsimonies 824 parsimonious 326959 parsimoniously 25682 @@ -364079,6 +367155,7 @@ partible 46342 partibus 185150 partic'lar 9521 participable 2372 +participal 2564 participance 386 participancy 857 participant 2588012 @@ -364120,7 +367197,6 @@ particularist 83923 particularistic 124538 particularistically 911 particularists 12875 -particularities 311395 particularization 32122 particularizations 3355 particularize 163691 @@ -364194,6 +367270,7 @@ partlessness 742 partlet 9057 partlets 3505 partly 37185453 +partn 2513 partner 13371014 partnered 149318 partnering 192292 @@ -364221,6 +367298,7 @@ partridgelike 132 partridges 650444 parts 112313426 partscore 690 +partula 274 parturience 373 parturiency 789 parturient 85543 @@ -364274,6 +367352,8 @@ parvenues 3094 parvenuism 413 parvenus 46374 parvicellular 1678 +parvin 315 +parvins 233 parvis 76444 parviscient 94 parvise 16322 @@ -364291,9 +367371,11 @@ pasalubong 200 pasan 5431 pasanda 835 pasang 1512 +pasanggrahan 151 pasans 867 pascal 26361 pascals 10678 +pasch 8154 paschal 178202 pascoite 120 pasdaran 791 @@ -364318,6 +367400,7 @@ pashed 3552 pashes 1456 pashing 1272 pashiuba 78 +pashm 3237 pashmina 13798 pashminas 1850 pashta 709 @@ -364397,6 +367480,7 @@ passement 1982 passementerie 21842 passementeries 912 passements 1119 +passemezzo 144 passenger 9573778 passengered 250 passengering 527 @@ -364541,6 +367625,8 @@ pastellist 4797 pastellists 2032 pastelly 400 pastels 138058 +pastepot 1128 +pastepots 333 paster 6809 pasters 3822 pastes 383614 @@ -364617,6 +367703,7 @@ pastoralisms 371 pastoralist 73099 pastoralists 252817 pastorality 585 +pastoralization 1461 pastoralize 430 pastoralized 995 pastoralizes 42 @@ -364696,6 +367783,7 @@ pataphysics 3336 patas 18012 patatin 3759 patavinity 645 +patawa 176 patball 578 patch 5231807 patchable 668 @@ -364762,6 +367850,7 @@ patent 14182053 patentability 69506 patentable 110448 patentably 337 +patentcy 307 patented 1853361 patentee 970262 patentees 363268 @@ -364855,6 +367944,7 @@ pathoanatomic 657 pathoanatomical 1719 pathoanatomy 1085 pathobiochemical 326 +pathobiochemistry 305 pathobiologic 529 pathobiological 1973 pathobiology 9248 @@ -364978,6 +368068,7 @@ patiently 2758067 patientness 231 patients 49252766 patiki 253 +patimokkha 854 patina 246196 patinae 932 patinaed 759 @@ -365035,6 +368126,7 @@ patriarchates 26760 patriarchdom 170 patriarchess 227 patriarchial 8527 +patriarchialism 330 patriarchic 1890 patriarchical 5238 patriarchically 413 @@ -365103,6 +368195,7 @@ patriotesses 983 patriotic 3669148 patriotical 841 patriotically 87754 +patriotics 489 patriotism 3612431 patriotisms 10010 patriotized 44 @@ -365230,6 +368323,7 @@ patternmaker 23351 patternmakers 26993 patternmaking 25339 patterns 19780857 +patterny 160 patters 23108 pattes 8966 pattest 709 @@ -365363,6 +368457,7 @@ paved 2800253 pavee 1213 pavees 221 pavement 4273310 +pavemental 141 pavemented 1783 pavementing 1091 pavementless 260 @@ -365466,6 +368561,8 @@ pawners 3037 pawnes 3461 pawnest 46 pawneth 88 +pawnie 160 +pawnies 309 pawning 96898 pawnings 863 pawnless 145 @@ -365589,6 +368686,7 @@ payslip 7532 payslips 7771 paystreak 678 paystreaks 323 +paytan 340 paythrough 54 paytine 551 paywall 2308 @@ -365827,6 +368925,7 @@ peatless 165 peatlike 231 peatman 211 peats 224460 +peatsmoke 892 peatstack 1581 peatstacks 483 peatswamp 2302 @@ -365859,6 +368958,7 @@ peccan 1034 peccancies 363 peccancy 1574 peccans 2398 +peccant 79191 peccaries 24056 peccary 32397 peccavi 18573 @@ -365944,6 +369044,7 @@ pectizes 361 pectizing 507 pectocellulosic 263 pectolite 7543 +pectolitic 137 pectolyase 265 pectolytic 11608 pectora 31446 @@ -366417,6 +369518,7 @@ peincting 138 peine 137572 peined 1135 peining 247 +peins 1819 peirastic 2273 peirastically 141 peisant 51 @@ -366471,7 +369573,6 @@ pelerine 16971 pelerines 4532 peletons 169 pelf 105313 -pelfish 145 pelfs 129 pelham 3026 pelhams 197 @@ -366498,7 +369599,6 @@ pellagroid 537 pellagrous 9195 pellar 849 pellars 120 -pelled 110008 pellegrina 1816 pellet 649520 pelletable 767 @@ -366522,13 +369622,13 @@ pelletizing 21641 pelletlike 156 pelletron 313 pellets 1074399 +pelletty 305 pellety 2691 pellicle 207043 pellicles 27610 pellicular 15198 pellicule 3537 pellicules 1062 -pelling 19662 pellistor 1537 pellistors 599 pellitories 205 @@ -366969,6 +370069,7 @@ penpusher 1086 penpushers 1289 penroseite 76 pens 2112333 +pensels 1003 pensile 26458 pensileness 342 pensills 434 @@ -368662,7 +371763,7 @@ periplogenin 458 periploi 1250 periplous 2024 periplus 7820 -peripneumonic 3502 +peripneustic 1502 peripodia 749 peripodial 2128 peripodium 708 @@ -368780,6 +371881,9 @@ peristriate 1579 peristylar 2789 peristyle 172885 peristyles 16114 +peristylia 1219 +peristylium 7102 +peristylum 702 perisurgical 251 perisutural 129 perisylvian 9025 @@ -369087,6 +372191,7 @@ permuting 15000 permutite 7788 permutites 2003 pern 18752 +pernambuco 1924 pernancy 5162 perne 2301 pernicious 2776849 @@ -369346,6 +372451,8 @@ perseverator 403 perseverators 876 persevered 895174 perseverent 1775 +perseverer 743 +perseverers 204 perseveres 93255 persevering 1150174 perseveringly 187217 @@ -369467,8 +372574,10 @@ personology 2911 personpower 650 persons 100571083 personship 259 +persp 1958 perspection 887 perspectival 116303 +perspectivalism 7083 perspectivation 443 perspective 17705155 perspectiveless 2369 @@ -369688,6 +372797,7 @@ perveances 192 perved 585 pervention 129 perverse 1839878 +perversed 310 perversely 309682 perverseness 230622 perversenesses 1184 @@ -369742,6 +372852,7 @@ pes 267407 pesade 596 pesades 247 pesage 7239 +pesak 249 pesane 312 pesante 6218 pesants 2634 @@ -370087,6 +373198,7 @@ petted 246219 pettedness 239 petter 16441 petters 883 +pettiaugers 157 pettichaps 1085 petticoat 674826 petticoated 15734 @@ -370269,6 +373381,7 @@ phages 174173 phagic 482 phagocytable 192 phagocytal 389 +phagocytary 207 phagocyte 50200 phagocyted 2635 phagocytes 188608 @@ -371119,6 +374232,7 @@ phfft 150 phht 286 phi 161942 phial 425402 +phiala 2652 phialai 6897 phiale 42853 phiales 182 @@ -372068,6 +375182,7 @@ phot 66075 photelectric 293 photic 53421 photically 1272 +photie 742 photinia 774 photinias 383 photino 3875 @@ -372156,6 +375271,7 @@ photobook 4745 photobooks 3016 photocall 4797 photocalls 1256 +photocapacitance 2165 photocarcinogenesis 1754 photocarcinogenic 369 photocarcinogenicity 205 @@ -372580,6 +375696,7 @@ photokilling 74 photokinesis 2029 photokinetic 1344 photokinetics 203 +photolab 1309 photolabel 576 photolabeled 527 photolabeling 888 @@ -372588,6 +375705,7 @@ photolabelling 1006 photolabels 236 photolabile 5241 photolability 799 +photolabs 433 photolesions 607 photolike 94 photolith 634 @@ -372745,6 +375863,7 @@ photophil 326 photophile 459 photophilic 770 photophilous 772 +photophobe 162 photophobia 103295 photophobic 5989 photophobotaxis 496 @@ -373161,7 +376280,6 @@ phrenetics 334 phrenic 166013 phrenicocolic 908 phrenics 4380 -phrenitic 2969 phrenitis 21548 phrenograph 145 phrenologer 142 @@ -373293,6 +376411,7 @@ phylacogen 1269 phylacogens 513 phylacteric 444 phylacterical 172 +phylacteried 195 phylacteries 61509 phylactery 18042 phylactic 2201 @@ -373833,6 +376952,7 @@ piaffer 915 piaffes 174 piaffing 341 piai 2075 +piaie 180 piaies 189 piaiman 880 pial 37085 @@ -373996,6 +377116,8 @@ pickethouse 113 picketing 290539 picketings 937 pickets 383475 +pickfork 158 +pickforks 115 pickguard 1542 pickier 1530 pickies 478 @@ -374047,6 +377169,7 @@ pickwickian 577 picky 59953 picloram 10427 picloxydine 305 +picni 358 picnic 1210867 picnicked 20527 picnicker 2573 @@ -374208,6 +377331,7 @@ picturality 163 picture 45713735 pictureable 224 pictured 1839623 +picturedom 115 picturedrome 521 picturedromes 360 picturegoer 736 @@ -374430,6 +377554,7 @@ pigbel 537 pigboat 154 pigeage 1482 pigeon 1911773 +pigeondom 108 pigeoned 2529 pigeoneers 215 pigeoners 133 @@ -374552,6 +377677,7 @@ pigswill 3783 pigtail 133591 pigtailed 14989 pigtails 94852 +pigtoe 161 pigwash 789 pigweed 6068 pigweeds 371 @@ -374598,10 +377724,13 @@ pilaff 11545 pilaffs 1214 pilafs 2031 pilage 951 +pilao 1481 +pilaos 291 pilar 7568 pilary 1009 pilaster 178377 pilastered 17861 +pilasterlike 339 pilasters 741484 pilastres 2500 pilastric 1943 @@ -374697,7 +377826,10 @@ piling 1072983 pilings 33545 pilins 1640 pilis 50043 +pilk 2087 pill 1564867 +pillaf 599 +pillaff 458 pillage 775299 pillageable 171 pillaged 554694 @@ -374724,6 +377856,8 @@ pillarlike 1475 pillars 4996941 pillau 7167 pillaus 2271 +pillaw 3581 +pillaws 1481 pillbox 54261 pillboxes 38753 pilled 19496 @@ -375491,7 +378625,6 @@ pirated 252066 piratelike 59 pirater 280 pirates 2348588 -pirateships 89 piratess 153 piratey 270 piratic 8288 @@ -375693,6 +378826,7 @@ pistolgram 191 pistolgrams 191 pistolgraph 339 pistolier 291 +pistoliers 2048 pistoling 939 pistolled 7599 pistollike 125 @@ -375769,6 +378903,7 @@ pitchstones 10021 pitchwoman 98 pitchy 240311 pitcoal 6715 +piteira 150 piteously 302793 piteousness 7159 pitfall 211290 @@ -375984,6 +379119,8 @@ pizzly 58 pizzo 1665 pk 90764 pkg 12392 +pkge 481 +pkges 623 pkgs 8129 pks 2633 pkt 21724 @@ -376157,10 +379294,8 @@ plagiogranites 2466 plagionite 1756 plagiopatagium 391 plagiosere 199 -plagiostomatous 143 plagiostome 634 plagiostomes 1192 -plagiostomous 1315 plagiotropic 4876 plagiotropically 123 plagiotropism 819 @@ -376201,6 +379336,7 @@ plainclothes 48443 plainclothesman 2684 plainclothesmen 4100 plainer 604822 +plainers 2106 plainest 528658 plainfin 369 plainful 391 @@ -377012,7 +380148,7 @@ playground 1286040 playgrounds 335120 playgroup 89907 playgroups 77290 -playhouses 164604 +playhouse 467638 playin' 45 playing 21462733 playingly 265 @@ -377077,7 +380213,6 @@ playspace 6086 playspaces 2047 playsuit 3191 playsuits 1737 -playte 887 playtes 526 playtest 698 playtesters 279 @@ -377690,6 +380825,7 @@ ploughing 1869126 ploughings 54495 ploughland 67316 ploughlands 51650 +ploughless 377 ploughlike 47 ploughman 448796 ploughmanship 387 @@ -377980,6 +381116,7 @@ pluricellular 2620 pluricentric 2529 pluricontinental 195 pluricultural 2966 +pluriculturalism 645 pluridimensional 827 pluridimensionality 193 pluridisciplinarity 537 @@ -378002,6 +381139,7 @@ plurilocal 220 plurilocular 14211 plurimodal 172 plurinational 8387 +plurinationalism 650 plurinationality 743 plurinominal 438 plurinucleate 433 @@ -378949,6 +382087,8 @@ polishing 1740529 polishings 19543 polishment 261 polishments 537 +polisman 2685 +polismen 495 polissoir 683 polissoirs 474 polistine 1311 @@ -379214,6 +382354,7 @@ poltroonery 20860 poltroonish 379 poltroons 25322 polts 1645 +polushka 166 polverine 504 poly 1252616 polyacene 1901 @@ -379768,6 +382909,7 @@ polygonality 269 polygonally 4152 polygonar 45 polygoneutic 138 +polygonia 315 polygonic 1072 polygonised 917 polygonization 15672 @@ -379796,6 +382938,7 @@ polygraphist 425 polygraphists 164 polygraphs 5857 polygraphy 5789 +polygroove 1094 polygrooved 486 polygynandrous 1200 polygynandry 1560 @@ -379867,6 +383010,7 @@ polyhydroxyethylmethacrylate 229 polyhydroxylated 2578 polyhydroxyphenol 126 polyhydroxyphenols 523 +polyhydroxyvalerate 202 polyideic 145 polyimide 53019 polyimides 25256 @@ -380328,6 +383472,7 @@ polypyrimidines 175 polypyrrole 19512 polypyrroles 874 polypyrrolidone 373 +polyquaternary 186 polyquaternium 223 polyquinanes 96 polyquinones 325 @@ -380777,7 +383922,6 @@ pompously 153074 pompousness 15647 pomps 158879 poms 38707 -pomwater 120 pon 275167 ponalrestat 352 ponasterone 1933 @@ -381005,7 +384149,6 @@ poojas 778 pooka 3870 pookah 151 pookas 693 -pookoo 1164 pool 9551178 poolability 657 poolable 892 @@ -381024,6 +384167,9 @@ poolsides 426 poolwater 753 poon 11000 poonac 4757 +pooner 664 +pooners 125 +poonjah 909 poons 2058 poontang 1118 p poonts 195 @@ -381152,6 +384298,7 @@ poppadums 3025 poppas 357 popped 1056555 popper 17116 +poppered 211 poppers 22653 poppet 137027 poppets 15425 @@ -381179,11 +384326,13 @@ poppyheads 6821 poppylike 165 poppyseed 6853 poppyseeds 1334 +poppyshow 54 poppywort 265 poppyworts 197 pops 293385 popsicle 8016 popsicles 4746 +popsie 1938 popsies 1981 popskull 203 popsocks 214 @@ -381250,6 +384399,7 @@ popups 1689 poractant 269 porage 1864 poral 37636 +poramboke 135 porate 28131 poration 118392 porations 19553 @@ -381282,6 +384432,7 @@ porchlike 359 porchway 6329 porchways 426 porcine 251637 +porcinely 103 porcini 28190 porcinis 567 porcino 801 @@ -381531,6 +384682,8 @@ portainer 2300 portainers 626 portal 2378553 portaled 297 +portaledge 767 +portaledges 305 portalled 1725 portaloo 1456 portaloos 1550 @@ -381644,6 +384797,8 @@ portmanteaus 69536 portmanteaux 21922 portmantles 1289 portmantuas 301 +portmaster 960 +portmasters 231 portmen 6846 porto 39120 portobello 5947 @@ -381706,6 +384861,7 @@ posable 7026 posaconazole 5824 posada 46747 posadas 8996 +posadero 1007 posadnik 2038 posadniks 1087 posca 3244 @@ -382012,6 +385168,7 @@ postcastration 461 postcataclysmic 87 postcataract 298 postcatastrophic 227 +postcatheterization 296 postcava 1117 postcaval 11258 postcensal 1547 @@ -382131,6 +385288,7 @@ postcrime 179 postcrisis 5523 postcritical 4911 postcruciate 322 +postcrystallization 222 postcubital 518 postcursor 1519 postcustodial 214 @@ -382175,6 +385333,7 @@ postdilution 381 postdiluvial 850 postdiluvian 17447 postdiluvians 1683 +postdinner 487 postdiphtheritic 1093 postdisaster 4300 postdiscal 26055 @@ -382212,8 +385371,10 @@ postedit 81 postedited 168 postediting 1179 posteditor 233 +postee 619 posteen 1040 posteens 873 +postees 230 postejaculatory 695 postelection 9538 postelectoral 1137 @@ -382300,6 +385461,7 @@ posteroventrally 4055 posters 1688118 posteruption 262 posteruptive 1001 +postery 296 postest 997 postestimation 129 posteth 1600 @@ -382462,6 +385624,7 @@ posthumousness 413 posthurricane 273 posthybridization 287 posthydration 163 +posthyperventilation 147 posthypnotic 11059 posthypnotically 277 posthypoglycemic 111 @@ -382508,8 +385671,10 @@ postin 4922 postincubation 800 postindependence 28670 postindian 245 +postindictment 81 postinduction 768 postindustrial 83438 +postindustrialisation 296 postindustrialization 1244 postinfarct 1113 postinfarction 8033 @@ -382666,6 +385831,7 @@ postmillennialism 2250 postmillennialist 542 postmillennialists 624 postmillennium 343 +postmineralization 206 postminimal 512 postminimalism 912 postminimalist 1016 @@ -382829,6 +385995,8 @@ postposing 3651 postposition 38404 postpositional 11798 postpositionally 212 +postpositioned 419 +postpositioning 204 postpositions 39261 postpositive 12296 postpositively 472 @@ -382878,6 +386046,7 @@ postpublication 1286 postpuerperal 388 postpulse 95 postpump 183 +postpuncture 111 postpunk 2792 postpurchase 2654 postpyloric 789 @@ -383550,7 +386719,6 @@ poursued 535 poursuivant 5953 poursuivants 2276 pourtraicts 1698 -pourtray 85699 pourtrayed 166344 pourtraying 27163 pourtrays 25795 @@ -383577,7 +386745,6 @@ poutingly 3652 poutings 2957 pouts 37470 pouty 21128 -pov 34879 poverties 6889 poverty 16823249 poviat 370 @@ -383622,6 +386789,7 @@ powellite 1739 powen 4377 powens 515 power 239795943 +powerball 513 powerband 500 powerboat 16277 powerboaters 185 @@ -383667,6 +386835,7 @@ powerups 128 powerwalk 62 powerwalked 105 powerwalking 148 +powerwash 54 powi 2228 powiat 1794 powiats 566 @@ -383718,6 +386887,7 @@ pozzolan 11408 pozzolana 44063 pozzolanas 11761 pozzolanic 36487 +pozzolanicity 871 pozzolans 7469 pozzuolana 6714 pozzuolanas 477 @@ -383783,6 +386953,7 @@ practised 10673528 practisedly 157 practiser 37666 practisers 39102 +practises 506004 practisest 1084 practiseth 10368 practising 3688992 @@ -383817,6 +386988,8 @@ praefericula 156 praefericulum 1960 praefloration 458 praehallux 313 +praelector 6153 +praelectors 696 praemaxilla 2666 praemaxillae 2062 praemorse 1591 @@ -383928,6 +387101,8 @@ praisings 2099 praize 951 prajna 9872 prajnaparamita 1131 +prakarana 1462 +prakaranas 338 pralatrexate 116 pralaya 5340 pralayas 563 @@ -384116,8 +387291,6 @@ praysing 8150 prazepam 1273 praziquantel 19852 prazosin 31208 -prdna 4326 -prdnas 308 pre 31638324 preNewtonian 322 preabdomen 763 @@ -384370,6 +387543,7 @@ prebankruptcy 320 prebaptismal 978 prebasal 1136 prebasic 1810 +prebath 183 prebattle 901 prebedtime 201 prebellum 43 @@ -384659,6 +387833,8 @@ precipitins 31366 precipitous 1184786 precipitously 145464 precipitousness 3301 +precipitron 150 +precipitrons 89 precise 14534063 precisely 20332914 preciseness 62152 @@ -384847,10 +388023,12 @@ preconcentrating 1197 preconcentration 31627 preconcentrations 263 preconcentrator 597 +preconcept 683 preconception 116773 preconceptional 3099 preconceptionally 387 preconceptions 409740 +preconcepts 836 preconceptual 13263 preconceptually 1237 preconcert 5974 @@ -385056,6 +388234,7 @@ predated 131280 predates 146723 predating 62363 predations 17360 +predatism 331 predative 419 predator 772289 predatorial 1822 @@ -385171,6 +388350,7 @@ predeterminations 2907 predeterminative 498 predetermine 57574 predetermined 1397189 +predeterminedly 367 predeterminedness 592 predeterminer 1667 predeterminers 772 @@ -385395,6 +388575,7 @@ preemie 2646 preemies 1763 preeminence 289028 preeminences 6031 +preeminency 1634 preeminent 243864 preeminently 169322 preemphasis 2819 @@ -385761,6 +388942,7 @@ pregustation 233 prehab 420 prehabilitation 722 prehallux 1704 +prehand 59 prehardened 953 prehardening 746 preharvest 10617 @@ -385777,7 +388959,6 @@ preheaters 26705 preheating 207701 preheats 6067 prehellenic 1254 -preheminence 16929 prehended 29020 prehending 10830 prehends 8154 @@ -386584,6 +389765,7 @@ prepaying 11975 prepayment 279853 prepayments 46721 prepays 2315 +prepd 6875 prepectoral 7230 prepelvic 640 prepend 2321 @@ -386632,7 +389814,6 @@ preplate 1752 preplated 730 preplating 1132 preplay 1736 -preplied 92 prepolarization 497 prepolitical 7557 prepolitically 93 @@ -386646,6 +389827,7 @@ prepolymerised 527 prepolymerization 681 prepolymerized 955 prepolymers 10539 +preponder 3652 preponderances 1550 preponderancy 13749 preponderant 243680 @@ -386666,9 +389848,12 @@ prepopulate 255 prepopulated 665 prepopulation 107 prepore 653 +preport 209 +preported 122 preportion 6981 preportioned 471 preportions 1482 +preports 153 prepose 4347 preposed 34168 preposes 1647 @@ -387198,6 +390383,7 @@ preshow 1756 preshrink 166 preshrinking 292 preshrunk 1324 +preshus 1755 preside 1622803 presided 4319396 presidencies 197082 @@ -387263,6 +390449,7 @@ presorting 1280 presorts 168 presos 2138 presowing 2110 +prespace 192 prespawning 2086 prespecification 2352 prespecified 37256 @@ -387308,7 +390495,7 @@ pressings 157698 pressiometer 154 pression 264332 pressions 59185 -pressirostral 60 +pressless 213 pressman 54645 pressmanship 241 pressmark 17246 @@ -387438,6 +390625,7 @@ prestudy 1897 prestyloid 353 presubicular 308 presubiculum 2541 +presubject 569 presubmission 493 presuicidal 214 presuit 519 @@ -387759,6 +390947,7 @@ prevail 6853476 prevailed 9582280 prevailer 787 prevailers 578 +prevailes 3247 prevailest 1772 prevaileth 21011 prevailing 8007870 @@ -388045,6 +391234,7 @@ priesting 2501 priestish 285 priestism 2774 priestless 4024 +priestlets 223 priestlier 51 priestliest 178 priestlike 7855 @@ -388493,6 +391683,7 @@ prizegiving 12952 prizegivings 1453 prizeless 762 prizelist 654 +prizelists 182 prizeman 39752 prizemen 14342 prizen 50 @@ -388609,6 +391800,7 @@ probe 3332586 probeable 263 probed 469141 probehead 527 +probeheads 207 probenazole 433 probenecid 38360 prober 5547 @@ -388715,8 +391907,11 @@ procaterol 683 procathedral 779 procathepsin 1554 procced 6503 +proceded 31873 procedendo 23402 +procedes 8182 procedeth 7898 +procedings 20016 procedural 2311888 proceduralise 416 proceduralism 12447 @@ -388834,6 +392029,7 @@ proclames 429 proclaming 2016 proclinate 5393 proclination 6693 +procline 1569 proclisis 2779 proclitic 13624 proclitically 417 @@ -388954,6 +392150,7 @@ proctours 1726 proctuchous 495 procumbency 386 procumbent 87260 +procurability 596 procurable 422106 procuracies 1190 procuracy 17078 @@ -389040,6 +392237,7 @@ prodissoconch 2367 prodissoconchs 207 prodnose 331 prodnoses 135 +prodom 601 prodomain 1510 prodomains 297 prodorsal 960 @@ -389232,6 +392430,7 @@ proffers 141579 profibrinolytic 744 profibrogenic 985 profibrotic 2868 +profic 815 profichi 370 proficience 9417 proficiences 174 @@ -389240,6 +392439,7 @@ proficiency 1888681 proficient 792589 proficiently 15606 proficients 72605 +profics 135 proficuous 249 profilable 266 profilaggrin 1434 @@ -389924,6 +393124,7 @@ pronaoi 253 pronaos 51013 pronasale 220 pronase 25779 +pronatal 741 pronatalism 5599 pronatalist 12457 pronatalists 661 @@ -390074,6 +393275,7 @@ propaedeutically 111 propaedeutics 1601 propaedia 75 propafenone 11015 +propagability 157 propagable 2896 propagand 2793 propaganda 5705447 @@ -390491,6 +393693,7 @@ propraetorship 1258 propranolol 197794 propreties 581 propretor 883 +propretors 289 proprial 808 proprietarial 400 proprietarian 1425 @@ -391218,6 +394421,7 @@ protists 41595 protium 13258 proto 834770 protoactinium 8216 +protoalkaloids 206 protoanemonin 1600 protobacco 49 protoberberine 1490 @@ -391474,6 +394678,7 @@ protoporphyria 8389 protoporphyrin 45295 protoporphyrinogen 2904 protoporphyrins 1368 +protopresbyter 271 protoproletariat 161 protoptile 2237 protoptiles 1815 @@ -391612,6 +394817,7 @@ protruberances 4477 protrudable 303 protrude 354306 protruded 631775 +protrudent 515 protruder 233 protrudes 221242 protrudeth 71 @@ -391670,6 +394876,7 @@ provang 288 provascular 1057 provasopressin 82 prove 43283430 +proveability 107 proveable 56129 proveably 2693 provection 2371 @@ -391732,6 +394939,9 @@ providence 2795200 providences 119218 provident 692378 providential 731615 +providentialism 9570 +providentialist 7098 +providentialists 378 providentially 281062 providently 31348 provider 1958078 @@ -392038,6 +395248,7 @@ prytanis 6289 prytany 15985 prythee 28960 ps 580191 +psak 280 psalm 1178088 psalmbook 1164 psalmbooks 495 @@ -392367,6 +395578,7 @@ pseudofractures 2165 pseudofunction 264 pseudofunctions 300 pseudofusion 785 +pseudogamic 179 pseudogamous 1213 pseudogamy 1624 pseudogap 4683 @@ -392430,6 +395642,7 @@ pseudohomosexual 209 pseudohomosexuality 187 pseudohuman 176 pseudohyperaldosteronism 404 +pseudohypericin 957 pseudohyperkalaemia 807 pseudohyperkalemia 302 pseudohypertelorism 151 @@ -392499,6 +395712,7 @@ pseudomartyrs 194 pseudomasculine 74 pseudomasculinity 103 pseudomass 365 +pseudomasses 165 pseudomathematical 354 pseudomathematics 123 pseudomauveine 134 @@ -392695,6 +395909,7 @@ pseudopupil 1367 pseudopupils 317 pseudopyloric 326 pseudoquantitative 99 +pseudoquaternary 201 pseudorabies 8155 pseudoracemate 123 pseudoracemates 154 @@ -392724,6 +395939,7 @@ pseudoreference 154 pseudoreligion 760 pseudoreligions 215 pseudoreligious 2441 +pseudoreminiscences 210 pseudoreplicate 110 pseudoreplicated 196 pseudoreplicates 548 @@ -392801,6 +396017,8 @@ pseudospins 261 pseudospiritual 289 pseudospores 1070 pseudostate 793 +pseudostatement 350 +pseudostatements 636 pseudostates 604 pseudostem 5803 pseudostems 1645 @@ -392847,6 +396065,7 @@ pseudothecium 390 pseudothrombocytopenia 903 pseudothrombophlebitis 136 pseudotime 429 +pseudotolerance 188 pseudotraditional 141 pseudotropine 1679 pseudotuberculosis 35443 @@ -392895,6 +396114,7 @@ pseuds 2583 pseudy 260 psha 7817 pshah 939 +pshat 435 pshaw 30236 pshawed 3263 pshawing 1485 @@ -392953,7 +396173,6 @@ psoriasin 395 psoriasis 462631 psoriatic 78796 psoriatics 2315 -psoric 6570 psorophthalmia 623 psorophthalmy 313 psoroptic 4255 @@ -393867,6 +397086,7 @@ pulasan 357 pulaski 197 pulaskite 1946 pulaskites 678 +pulau 2039 pulcherrimin 338 pulchritude 12776 pulchritudes 118 @@ -393882,6 +397102,7 @@ pules 4930 pulgada 767 pulghere 133 puli 6221 +pulicidal 179 pulicide 359 pulicose 103 puling 66123 @@ -394358,6 +397579,7 @@ punitively 14600 punitiveness 25543 punitory 5608 punity 6971 +punja 701 punjees 119 punji 2198 punjum 241 @@ -394529,6 +397751,8 @@ puquios 467 pur 1420471 puraque 330 purblind 117920 +purblinded 663 +purblinding 44 purblindly 574 purblindness 3952 purchasability 345 @@ -394905,6 +398129,7 @@ pushily 385 pushiness 5386 pushing 5637634 pushingly 183 +pushingness 177 pushings 4755 pushki 79 pushout 3904 @@ -394969,6 +398194,7 @@ pustulelike 43 pustulent 730 pustules 401091 pustuliform 339 +pustulose 2899 pustulosis 10084 pustulous 4442 pusy 404 @@ -395024,6 +398250,7 @@ putrefied 49354 putrefies 18017 putrefy 74257 putrefying 125996 +putresce 277 putrescence 42155 putrescences 590 putrescency 9342 @@ -395032,6 +398259,7 @@ putrescent 98568 putrescible 46485 putrescin 1823 putrescine 36391 +putrescing 197 putrid 784929 putridities 702 putridity 41106 @@ -395335,6 +398563,8 @@ pyral 521 pyralid 4385 pyralids 825 pyralis 3293 +pyralspite 989 +pyralspites 189 pyram 1589 pyramid 2335541 pyramidal 1133490 @@ -395920,6 +399150,7 @@ qibla 25231 qiblah 7378 qiblas 463 qibli 272 +qiddush 404 qigong 19833 qila 731 qilin 1982 @@ -395955,11 +399186,16 @@ qoppa 352 qorban 852 qorma 67 qr 296634 +qrly 171 qrs 269593 +qrtly 93 qt 90849 qties 48 +qtly 589 qto 8596 qtr 83254 +qtrly 1079 +qtrs 4660 qts 13599 qty 5568 qu 524251 @@ -396000,6 +399236,7 @@ quadcopter 1797 quadcopters 507 quadcore 91 quadded 774 +quadder 571 quadding 1296 quaddition 1797 quader 1317 @@ -396101,8 +399338,10 @@ quadricycles 2063 quadridentate 8686 quadridentated 152 quadridimensional 113 +quadriennia 174 quadriennial 2726 quadriennially 237 +quadriennium 5909 quadrifarious 1869 quadrifariously 435 quadrifid 11953 @@ -396304,7 +399543,6 @@ quaffeth 193 quaffing 65145 quaffings 459 quaffs 17831 -quagga 45027 quaggas 11625 quagginess 43 quaggy 6733 @@ -396605,8 +399843,6 @@ quarterlands 2665 quarterless 235 quarterlies 33737 quarterlife 66 -quarterlight 962 -quarterlights 1302 quarterly 4161911 quarterman 991 quartermaster 341741 @@ -396748,6 +399984,7 @@ quasijudicial 14626 quasilattice 1385 quasilattices 250 quasilegal 2707 +quasilegislative 1411 quasilikelihood 1018 quasilinear 21402 quasilinearisation 329 @@ -396822,6 +400059,7 @@ quasispecies 7270 quasispherical 920 quasispin 388 quasisquare 179 +quasistability 153 quasistable 1485 quasistate 820 quasistates 313 @@ -397162,6 +400400,7 @@ questioningly 126911 questionings 172442 questionless 41279 questionlessly 93 +questionmaster 1146 questionnaire 2771197 questionnaired 241 questionnaires 1263411 @@ -397431,6 +400670,7 @@ quincelike 41 quincentenary 12425 quincentennial 2831 quinces 89855 +quincha 863 quincite 139 quinclorac 411 quincubital 264 @@ -397550,6 +400790,7 @@ quinonimines 262 quinonoid 76227 quinonoids 444 quinonoxime 233 +quinophan 134 quinoprotein 1335 quinoproteins 577 quinotoxine 932 @@ -397632,6 +400873,8 @@ quintale 561 quintals 279546 quintan 1081 quintans 304 +quintant 927 +quintants 279 quintar 130 quintars 127 quintas 15620 @@ -397855,6 +401098,7 @@ quodque 19292 quods 1396 quog 184 quohogs 109 +quoifed 112 quoifs 1697 quoil 1299 quoils 127 @@ -398031,6 +401275,8 @@ rabdomancy 339 rabe 4099 rabeprazole 2194 rabes 448 +rabfak 748 +rabfaks 249 rabi 80162 rabiate 109 rabiator 192 @@ -398259,7 +401505,6 @@ raddled 28918 raddles 1464 raddling 1790 raddlings 117 -raddock 447 radeau 1376 radeaus 573 radeaux 715 @@ -398979,6 +402224,7 @@ raiders 562869 raiding 700191 raidings 1762 raids 2332085 +raigned 18664 raignes 10283 raigns 2101 raik 3449 @@ -399238,6 +402484,7 @@ rakia 4047 rakija 3485 rakijas 391 raking 550648 +rakingly 115 rakings 10813 rakis 742 rakish 120424 @@ -399364,6 +402611,7 @@ rammings 1276 rammish 2345 rammy 2379 ramollissement 17157 +ramontchi 193 ramoon 198 ramoplanin 325 ramose 24061 @@ -399861,6 +403109,7 @@ rarish 2305 rarissima 7974 rarities 412534 rarity 1738733 +rark 2205 rarted 416 ras 243938 rasa 169864 @@ -400440,13 +403689,13 @@ razzling 153 razzmatazz 14953 rbd 1831 rcpt 1763 +rcvr 52 rd 1115053 rdf 6038 rdfs 2415 rdna 319 rds 121020 re 65380497 -rea 769292 reaal 129 reabandoned 90 reablement 6053 @@ -400847,6 +404096,7 @@ reallege 408 realleged 463 realleges 2151 realler 1741 +reallest 1048 realliance 239 realll 52 reallocate 54086 @@ -401110,7 +404360,6 @@ rearview 132541 rearward 161048 rearwardly 8983 rearwards 34048 -reas 92278 reascend 28227 reascendancy 790 reascended 19368 @@ -401348,6 +404597,7 @@ reballot 327 reballoting 92 rebamipide 362 reban 322 +rebana 1694 reband 310 rebandage 765 rebandaged 2407 @@ -401702,6 +404952,7 @@ reburn 2766 reburned 2069 reburning 8867 reburnish 390 +reburnished 1142 reburnishing 377 reburns 137 reburnt 2864 @@ -401941,6 +405192,7 @@ recatheterization 474 recatheterized 181 recathexis 428 recatholicization 678 +recation 805 recaught 4579 recaulk 433 recaulked 1968 @@ -401957,7 +405209,9 @@ reccies 91 reccing 64 reccs 50 reccy 991 +receaved 205622 receaves 3381 +receaving 16221 recede 958344 receded 883394 receder 261 @@ -402035,6 +405289,7 @@ recentrifuge 802 recentrifuged 4478 recentrifuging 619 recentring 5284 +recents 7172 recept 49452 receptacle 1579439 receptacles 769407 @@ -402780,6 +406035,7 @@ reconds 277 reconduct 10440 reconducted 23654 reconducting 2741 +reconduction 1229 reconductor 43 reconductoring 161 reconducts 1480 @@ -403046,6 +406302,7 @@ recordest 445 recordeth 11885 recordholder 784 recordholders 173 +recordholding 122 recording 13068748 recordings 2595957 recordist 24524 @@ -403440,7 +406697,6 @@ redactors 31326 redam 207 redan 10682 redans 9475 -redargutory 120 redarned 117 redate 1940 redated 8492 @@ -403626,6 +406882,8 @@ redemptions 73823 redemptive 329583 redemptively 3743 redemptiveness 301 +redemptor 9277 +redemptors 217 redemptory 2294 redemptress 993 redemptrix 1339 @@ -405305,10 +408563,12 @@ regalls 1285 regally 50622 regalness 289 regals 7482 +regalvanize 159 +regalvanized 377 +regalvanizing 165 regard 88364308 regardable 3128 regardant 44345 -regarded 46400109 regarder 29798 regarders 12152 regardes 4162 @@ -405402,6 +408662,7 @@ regetting 295 reggae 217409 reggaeton 4246 reggeon 736 +reggiano 2210 reggie 3089 regicidal 10208 regicide 222491 @@ -405968,7 +409229,6 @@ rehypnotized 154 rehypothecate 282 rehypothecated 673 rehypothecation 1993 -rei 541981 reichsmark 8438 reichsmarks 34115 reidentifiability 201 @@ -406657,6 +409917,7 @@ rekindling 67821 rekindlings 177 rekit 92 rekitted 169 +reknew 125 reknit 4974 reknits 133 reknitted 566 @@ -406664,6 +409925,8 @@ reknitting 1907 reknot 217 reknotted 962 reknotting 576 +reknow 494 +reknowing 148 rekt 1332 rel 450301 relabel 8074 @@ -406826,6 +410089,7 @@ relayered 101 relayering 328 relayers 1249 relaying 268565 +relayings 368 relays 958198 relead 309 releaded 3026 @@ -408098,6 +411362,7 @@ rents 10063443 renucleate 172 renucleated 284 renucleation 1017 +renued 8642 renule 311 renules 632 renumber 9763 @@ -408119,6 +411384,7 @@ renunciations 66122 renunciative 1002 renunciatory 7885 renutrition 336 +renverse 4970 renversed 361 renversement 5129 renversements 320 @@ -408462,6 +411728,7 @@ repeater 242675 repeatered 2889 repeaterless 709 repeaters 141606 +repeates 1247 repeatest 1425 repeateth 8577 repeating 4405457 @@ -408536,6 +411803,7 @@ repercussing 755 repercussion 94126 repercussions 1119609 repercussively 113 +reperesentatives 113 reperforated 272 reperforating 410 reperforation 174 @@ -408657,6 +411925,7 @@ repiques 409 repitch 701 repitched 1249 repitching 1431 +repititions 886 repla 3420 replace 9563097 replaceability 8237 @@ -409369,6 +412638,7 @@ repudiation 945195 repudiationist 47 repudiationists 181 repudiations 19079 +repudiative 661 repudiator 3428 repudiators 4262 repudiatory 39128 @@ -409679,6 +412949,7 @@ rereported 680 rereports 176 rerequest 169 reres 2567 +reresearch 289 reresection 212 reresolve 150 reresolved 478 @@ -410200,6 +413471,9 @@ residues 2893915 residuous 1421 residuum 515295 residuums 6173 +resieve 166 +resieved 349 +resieving 149 resift 808 resifted 1233 resifting 920 @@ -410303,6 +413577,8 @@ resinosis 830 resinous 833083 resinously 3969 resins 2010943 +resintered 507 +resintering 681 resiny 2350 resip 106 resipiscence 1775 @@ -410964,6 +414240,7 @@ restratification 2786 restratifications 105 restratified 515 restratify 410 +restratifying 128 restreaked 291 restreaking 142 restreamed 97 @@ -411164,6 +414441,8 @@ resurge 4272 resurged 4823 resurgence 630295 resurgences 7280 +resurgencies 117 +resurgency 423 resurgent 149307 resurgents 337 resurges 2612 @@ -411189,6 +414468,8 @@ resurrective 1183 resurrector 746 resurrectors 209 resurrects 24195 +resurrender 1340 +resurrendered 169 resurvey 30722 resurveyed 13503 resurveying 2766 @@ -411230,6 +414511,10 @@ resworn 12102 resyllabification 3323 resyllabified 604 resyllabify 234 +resymbolization 593 +resymbolize 197 +resymbolized 193 +resymbolizing 102 resync 491 resynchronisation 3821 resynchronise 734 @@ -411252,6 +414537,7 @@ resynthesized 9940 resynthesizes 312 resynthesizing 1065 ret 323913 +ret'd 6098 retable 39475 retabled 1724 retables 10925 @@ -411296,7 +414582,6 @@ retaining 5614891 retainings 302 retainment 3865 retainments 203 -retains 4233378 retakaful 495 retake 250433 retaken 357273 @@ -411387,6 +414672,8 @@ retaxed 1354 retaxing 284 retch 59571 retched 54900 +retcher 127 +retchers 201 retches 9123 retching 180475 retchings 10001 @@ -411484,6 +414771,8 @@ rethreaded 1644 rethreading 1789 rethreads 263 rethrombosis 1615 +rethrone 119 +rethroned 162 rethrow 873 rethrowing 284 rethrown 584 @@ -411867,6 +415156,7 @@ retreaded 10223 retreading 24823 retreads 10519 retreat 10125928 +retreatal 106 retreatant 2825 retreatants 4342 retreated 2392085 @@ -411988,6 +415278,7 @@ retrochiasmatic 1050 retrochoir 14426 retrochoirs 173 retroclination 3093 +retrocline 495 retroclival 59 retrocochlear 3526 retrocognition 2956 @@ -412443,6 +415734,7 @@ revealest 3876 revealeth 27865 revealing 4326638 revealingly 55883 +revealingness 171 revealings 11401 revealment 7834 revealments 2379 @@ -412696,6 +415988,7 @@ revindicating 1158 revindication 7071 revindications 887 reviparin 746 +revis'd 4867 revisability 6638 revisable 23254 revisal 108895 @@ -412801,6 +416094,7 @@ revoices 247 revoicing 3766 revoicings 265 revokable 4469 +revoke 1228040 revokement 1806 revoker 867 revokers 104 @@ -413084,6 +416378,7 @@ rezonings 748 rezzed 523 rezzing 91 rgds 156 +rgr 3620 rhGH 5957 rhabarbarin 62 rhabd 148 @@ -413497,7 +416792,6 @@ rhodamin 1340 rhodaminated 215 rhodamine 61868 rhodamines 5122 -rhodammonium 111 rhodanase 641 rhodanese 7188 rhodanide 2243 @@ -413990,6 +417284,7 @@ ricrac 438 rictal 12904 rictus 45161 rictuses 222 +ridability 115 ridable 1835 riddance 130902 riddances 370 @@ -414099,6 +417394,7 @@ riempies 196 riems 2267 riesling 5741 rieslings 707 +rietbok 861 rieve 2144 rieved 2134 riever 4422 @@ -414526,6 +417822,7 @@ rinning 5486 rinpoche 1687 rinpoches 438 rins 24694 +rinsability 694 rinsable 913 rinsate 297 rinse 529276 @@ -414533,6 +417830,7 @@ rinsed 581938 rinser 2651 rinsers 1329 rinses 61914 +rinsibility 301 rinsing 348749 rinsings 23756 rio 87860 @@ -414933,6 +418231,7 @@ rmv 3528 rnd 32325 rng 7195 rngs 778 +rnwy 80 roach 347595 roached 9623 roaches 51655 @@ -415061,6 +418360,7 @@ roastery 996 roastie 169 roasties 1529 roasting 1190653 +roastingly 281 roastings 6746 roasts 86701 roasty 1990 @@ -415722,6 +419022,9 @@ roody 836 roof 19206873 roofbeam 1148 roofbeams 2336 +roofbolt 149 +roofbolting 508 +roofbolts 205 roofbox 245 roofed 1072428 roofer 15748 @@ -415886,6 +419189,7 @@ rootworms 1543 rooty 16099 rootzone 4789 rootzones 1360 +rooved 1232 rooves 6206 ropable 290 ropalic 177 @@ -415952,7 +419256,6 @@ rorters 48 rorting 390 rorts 990 rorty 3254 -rosa 116514 rosacea 76705 rosaceous 13517 rosado 3809 @@ -416050,6 +419353,7 @@ roshi 5120 roshis 402 rosid 509 rosids 782 +rosie 19811 rosied 781 rosier 45201 rosiers 1050 @@ -416080,7 +419384,7 @@ ross 75826 rossed 2928 rosses 2208 rossing 2556 -rost 63777 +rosted 32164 rostel 1019 rostella 1078 rostellar 3990 @@ -416091,6 +419395,7 @@ rostered 24844 rostering 16135 rosters 43802 rosticceria 1017 +rosting 3534 rostra 68508 rostrad 877 rostral 250625 @@ -416188,6 +419493,7 @@ roted 5910 rotella 1124 rotelle 979 rotely 554 +roteness 44 rotenoid 1341 rotenoids 3585 rotenolone 271 @@ -416213,6 +419519,7 @@ rotisseried 52 rotisseries 1482 rotl 3601 rotls 4142 +rotn 2008 roto 20454 rotodome 1513 rotodynamic 6925 @@ -416488,6 +419795,7 @@ rousest 355 rouseth 3349 rousette 527 rousettes 142 +rousie 83 rousing 778504 rousingly 3971 rousings 569 @@ -416562,6 +419870,7 @@ roux 42175 rouzed 20906 rouzes 3330 rouzing 4778 +rov 83426 roval 40813 rovals 191 rove 479787 @@ -416661,6 +419970,7 @@ royalness 618 royals 148004 royalties 1326671 royalty 2886195 +royd 6834 roysh 7179 roystered 929 roysterings 705 @@ -416921,8 +420231,6 @@ ruddled 5020 ruddleman 85 ruddles 251 ruddling 355 -ruddock 5926 -ruddocks 1367 rudds 381 ruddy 1059549 ruddying 777 @@ -417112,6 +420420,8 @@ ruled 9168773 ruleful 49 ruleless 1805 rulelessness 457 +rulemaker 1151 +rulemakers 2077 rulemaking 48019 rulemakings 1027 ruler 6183329 @@ -417240,6 +420550,7 @@ rumplessness 849 rumpling 15969 rumplings 251 rumply 487 +rumpo 2325 rumpot 191 rumps 51959 rumpty 817 @@ -417608,6 +420919,7 @@ ruxolitinib 734 rvalue 4082 rvalues 1861 rvv 1342 +rx 96495 rxn 1816 rya 8294 ryal 15081 @@ -418066,6 +421378,7 @@ sadded 1949 sadden 97450 sadden'd 13765 saddened 503489 +saddener 92 saddenest 131 saddeneth 391 saddening 125652 @@ -418186,6 +421499,7 @@ safeguards 2318867 safehouse 7501 safehouses 2042 safeish 301 +safek 229 safekeep 396 safekeeper 384 safekeepers 191 @@ -418260,6 +421574,7 @@ sagari 406 sagas 301792 sagathies 349 sagathy 268 +sagbend 242 sagbut 586 sagbuts 496 sagdid 161 @@ -418340,7 +421655,6 @@ sahiba 1836 sahibdom 176 sahibs 42078 sahih 5058 -sahlite 4346 sahookars 247 sahoor 122 sahoukars 806 @@ -418349,6 +421663,7 @@ sahui 84 sahukar 1272 sahukars 1149 sahur 341 +sahwa 1876 sai 231532 saibara 951 saibling 291 @@ -418605,7 +421920,6 @@ salets 941 saleworthy 43 saleyard 5871 saleyards 1829 -saliant 11733 salicaceous 176 salices 3519 salicet 311 @@ -418683,7 +421997,6 @@ salinon 979 saliretin 1915 salisburia 846 salisburias 147 -salite 3700 salitral 392 salitrose 409 saliva 1363751 @@ -418863,7 +422176,6 @@ saltations 4671 saltative 391 saltato 808 saltator 8559 -saltatorial 6247 saltatorian 241 saltatorious 189 saltators 223 @@ -419040,6 +422352,7 @@ samadh 560 samadhi 43305 samadhis 800 samaj 5651 +samaja 568 saman 14326 samana 5613 samanas 1275 @@ -419449,6 +422762,7 @@ sangaree 8576 sangarees 185 sangars 21168 sangas 2361 +sangdragon 96 sangeet 960 sangen 1723 sanger 2051 @@ -419758,6 +423072,7 @@ sapphism 1743 sapphist 766 sapphists 634 sapphyrin 632 +sappie 575 sappily 365 sappiness 2027 sapping 195964 @@ -419849,6 +423164,8 @@ sarapatel 132 sarape 3342 sarapes 3837 saraphan 157 +saratoga 833 +saratogas 105 sarbacane 544 sarbacanes 395 sarcasm 1121678 @@ -419889,6 +423206,7 @@ sarcoglycanopathy 285 sarcoglycans 1056 sarcoid 54376 sarcoidal 2060 +sarcoidlike 167 sarcoidosis 215400 sarcoids 4835 sarcolactate 1095 @@ -419996,6 +423314,7 @@ sari 169223 saried 539 sarigue 409 sarigues 218 +sarim 1511 sarin 37476 sarinda 658 saris 79989 @@ -420714,8 +424033,10 @@ sayables 2441 sayang 1461 sayas 2293 sayee 726 +sayeing 6478 sayer 31102 sayers 23824 +sayes 138676 sayest 339465 sayeth 160009 sayette 220 @@ -421232,6 +424553,7 @@ scari 2266 scarid 309 scarids 668 scarier 29639 +scaries 174 scariest 29439 scarification 74231 scarifications 24692 @@ -421273,6 +424595,7 @@ scarper 13836 scarpered 18598 scarpering 2429 scarpers 1255 +scarpes 194 scarph 8355 scarphed 4970 scarphing 1850 @@ -421508,6 +424831,7 @@ schappes 459 schapping 293 schapska 248 schav 178 +schechina 157 schechinah 252 schechita 170 sched 143833 @@ -421629,6 +424953,7 @@ schismatized 181 schismatizing 262 schismless 151 schismogenesis 3573 +schismogenetic 781 schismogenic 730 schisms 249378 schist 687069 @@ -422787,6 +426112,9 @@ scraggiest 1241 scraggily 719 scragginess 1416 scragging 5934 +scraggle 805 +scraggled 319 +scraggling 260 scraggly 30190 scraggy 100202 scrags 3713 @@ -422827,6 +426155,7 @@ scrapbooker 199 scrapbookers 227 scrapbooking 3913 scrapbooks 53257 +scrapbox 138 scrape 1158232 scraped 1357119 scraper 509994 @@ -423190,7 +426519,9 @@ scrive 8819 scrived 770 scriveners 45517 scrivenership 220 +scrivenery 3327 scrivening 2219 +scrivenry 169 scrives 105 scriving 533 scroat 269 @@ -423246,8 +426577,10 @@ scroops 237 scrophulae 120 scrophulariaceous 588 scrophulas 140 +scrophulous 31332 scrota 2755 scrotal 147784 +scrotally 51 scrote 2941 scrotes 1665 scrotiform 309 @@ -424572,6 +427905,7 @@ seekest 74885 seeketh 217943 seekh 787 seeking 18442811 +seekingly 434 seekings 6944 seekini 50 seeks 8900860 @@ -424598,6 +427932,7 @@ seemliness 32479 seemly 356392 seems 126727428 seen 179294416 +seenness 95 seens 15005 seent 3157 seep 227145 @@ -425035,6 +428370,7 @@ selfhood 332839 selfhoods 2436 selfie 31274 selfies 24825 +selfindulgence 44031 selfing 56916 selfings 1755 selfinteraction 714 @@ -425268,6 +428604,8 @@ semiapologetic 277 semiaquatic 8149 semiarboreal 432 semiarc 2079 +semiarch 708 +semiarches 463 semiarchitectural 145 semiarcs 573 semiarid 59942 @@ -425335,6 +428673,8 @@ semicasual 143 semicatatonic 132 semicelebrity 105 semicelestial 41 +semicell 10556 +semicells 15187 semicellulose 45 semicentenary 182 semicentennial 1142 @@ -425532,6 +428872,7 @@ semiductile 480 semidull 71 semiduplex 811 semidurable 716 +semidurables 247 semidwarf 8519 semidwarfism 195 semidwarfs 684 @@ -425631,6 +428972,7 @@ semigrand 370 semigranular 524 semigraphic 1003 semigraphical 962 +semigregarious 70 semigroup 61772 semigroups 38253 semihard 4596 @@ -425657,6 +428999,7 @@ semiindurated 272 semiinfinite 8521 semijocular 284 semijudicial 2118 +semikhah 705 semikilled 2824 semilanceolate 548 semilatent 203 @@ -425744,6 +429087,7 @@ semimodern 691 semimodular 631 semimodules 284 semimoist 531 +semimolten 1194 semimonastic 1503 semimonocoque 1606 semimonopolies 213 @@ -425815,6 +429159,7 @@ seminvariant 5038 seminvariants 7315 semiobscure 212 semiobscurity 1367 +semiobsolete 487 semioccasional 48 semiocclusive 403 semiochemical 2661 @@ -426339,8 +429684,6 @@ sennits 322 sennoside 2327 sennosides 3042 senocular 105 -senores 7009 -senors 2955 senpai 1071 sens 297390 sensate 40247 @@ -426369,6 +429712,9 @@ sensationalizes 1089 sensationalizing 5667 sensationally 55542 sensationary 108 +sensationism 3021 +sensationist 3318 +sensationists 762 sensationless 1181 sensations 4452219 sensative 2317 @@ -426383,6 +429729,8 @@ senseless 1634235 senselessly 42691 senselessness 50816 sensemaking 65535 +senser 4176 +sensers 2873 senses 11032221 sensest 155 senseth 271 @@ -426412,6 +429760,7 @@ sensillar 1969 sensillum 14513 sensimilla 472 sensimillia 49 +sensimotor 237 sensing 1743069 sensings 3843 sensism 3116 @@ -426929,6 +430278,7 @@ serenely 358307 sereneness 2842 serener 43418 serenes 2073 +sereness 601 serenest 26903 serening 489 serenities 3755 @@ -426965,6 +430315,7 @@ sergestid 624 sergestids 425 serging 661 serglycin 266 +sergreant 336 serial 2806598 serialisable 350 serialisation 35271 @@ -427296,6 +430647,7 @@ serrefile 459 serrefiles 655 serrefine 171 serrefines 261 +serret 985 serricorn 165 serried 195809 serries 541 @@ -427325,6 +430677,7 @@ serumal 1450 serumless 356 serums 78159 serv 134070 +servable 6640 serval 14628 servaline 460 servals 1669 @@ -427458,7 +430811,6 @@ seselis 327 sesh 2714 seshes 164 sesiid 106 -sesquialter 2654 sesquialtera 6270 sesquialteral 1588 sesquialteras 172 @@ -427616,8 +430968,10 @@ setteth 155125 settin' 551 setting 32595860 settings 5383896 +settlability 229 settlable 445 settle 12223482 +settleability 6862 settleable 16061 settled 29726798 settledly 357 @@ -427699,6 +431053,7 @@ severed 2245164 severely 9442341 severeness 2139 severer 530395 +severers 169 severest 1117343 severeth 3611 severies 2860 @@ -427961,6 +431316,7 @@ sg 200158 sgACC 650 sgRNA 2153 sgRNAs 1059 +sgabello 293 sgraffiato 5210 sgraffiti 1433 sgraffito 26696 @@ -428157,9 +431513,16 @@ shahnai 470 shahs 13238 shahtoosh 1512 shahy 67 +shahzada 740 +shahzadah 274 +shahzadas 202 +shahzadeh 533 shaik 3738 +shaikdoms 97 shaikh 69617 shaikha 722 +shaikhdom 4881 +shaikhdoms 7284 shaikhs 41164 shaiks 789 shairn 288 @@ -428344,6 +431707,7 @@ shamings 567 shamisen 10252 shamisens 243 shamla 293 +shamma 3907 shammas 2123 shammash 813 shammatha 261 @@ -428391,6 +431755,7 @@ shandrydans 1139 shandy 24620 shandygaff 2160 shanghai 18866 +shanghai'd 184 shanghaied 11816 shanghaiers 115 shanghaiing 1150 @@ -428406,6 +431771,7 @@ shankers 1220 shanking 15605 shankless 345 shanks 266278 +shanna 5751 shannies 531 shanny 2769 shant 15366 @@ -428429,6 +431795,8 @@ shaobing 102 shapable 1012 shape 38369282 shapeable 2387 +shapechange 318 +shapechanged 144 shapechanger 1831 shapechangers 603 shapechanging 1256 @@ -428520,6 +431888,8 @@ shareouts 214 shareowner 1699 shareowners 5539 shareowning 949 +sharepusher 485 +sharepushers 695 sharer 199319 sharers 216426 shares 31387223 @@ -428680,7 +432050,6 @@ shawms 23197 shawnee 70 shaws 27428 shawty 230 -shax 61 shay 42379 shaya 764 shayak 302 @@ -428743,6 +432112,8 @@ shearn 59 shearography 2554 shearpoles 117 shears 653392 +shearsman 495 +shearsmen 139 shearsmith 291 shearsmiths 188 shearwall 598 @@ -428883,6 +432254,7 @@ sheepstealers 1854 sheepstealing 6221 sheepswool 839 sheeptrack 1303 +sheeptracks 894 sheepwalk 13094 sheepwalks 14799 sheepwash 2736 @@ -429191,6 +432563,7 @@ shibari 80 shibboleth 99408 shibboleths 89992 shibe 421 +shibire 971 shibori 2397 shibuichi 9332 shicer 659 @@ -429238,6 +432611,7 @@ shiest 1502 shife 262 shift 15950058 shifta 8977 +shiftability 2318 shiftable 5550 shiftas 1987 shifted 5457232 @@ -429421,6 +432795,7 @@ shinning 15448 shinny 6172 shinnying 1026 shinobi 4924 +shinobu 268 shinogi 1105 shinplaster 385 shinplasters 1374 @@ -429605,7 +432980,6 @@ shistose 1685 shists 1631 shit 2371368 p shitake 2015 -shitass 451 p shitbag 3209 p shitbags 1000 p shitball 135 p @@ -430063,6 +433437,7 @@ shopworker 2636 shopworkers 16636 shopworn 8710 shorage 277 +shorba 560 shore 20459080 shorebird 9809 shorebirds 29297 @@ -430085,6 +433460,7 @@ shorelines 79396 shorer 783 shorers 529 shores 6933616 +shoresh 232 shoreside 17931 shoreward 60107 shorewards 27612 @@ -430732,6 +434108,7 @@ shufty 984 shugga 53 shuggle 69 shugoshin 367 +shuk 2288 shuka 2381 shukas 729 shul 56639 @@ -430853,6 +434230,7 @@ shysters 6636 si 5415081 siRNA 42022 siRNAs 18566 +sia 229705 siafu 1464 siah 8412 sial 21929 @@ -432509,6 +435887,7 @@ sinterability 4407 sinterable 1931 sintered 506268 sintering 635242 +sinterings 1315 sinters 36116 sintery 378 sintir 72 @@ -432572,6 +435951,7 @@ siphonia 1398 siphonic 10095 siphoniferous 1044 siphoning 53025 +siphonings 302 siphonium 617 siphonless 87 siphonlike 47 @@ -432929,6 +436309,7 @@ sizers 10501 sizes 9657113 sizewise 282 sizey 666 +sizhu 707 siziness 628 sizing 616577 sizings 7038 @@ -433036,6 +436417,7 @@ skedule 938 skeed 65 skeeds 151 skeel 4195 +skeeling 392 skeels 815 skeely 3808 skeer 2728 @@ -433496,6 +436878,7 @@ skivvied 375 skivvies 8482 skivvy 20070 skivvying 2440 +skiway 275 skiwear 2164 sklodowskite 256 skoal 972 @@ -433531,9 +436914,18 @@ skout 975 skouts 530 skpo 2736 skran 271 +skreak 224 +skreaked 111 +skreaking 181 +skreek 1100 +skreeked 337 +skreeking 843 +skreeks 364 skreened 5883 skreening 2071 skreens 8953 +skreich 388 +skriegh 327 skriek 441 skrieks 215 skrik 4659 @@ -434015,6 +437407,7 @@ slavemakers 565 slavemaking 1101 slavemaster 4477 slavemasters 3788 +slavemistress 116 slavemonger 117 slavemongers 335 slaveocracy 1366 @@ -435001,6 +438394,7 @@ smaltine 2175 smaltite 5698 smalto 3408 smalts 7952 +smaltz 441 smaragdine 1213 smaragdite 4381 smark 527 @@ -435286,6 +438680,8 @@ smokepots 102 smokeproof 348 smoker 534220 smokeries 671 +smokeroom 8638 +smokerooms 903 smokers 961098 smokery 1686 smokes 400880 @@ -436139,6 +439535,7 @@ snowlands 319 snowless 8146 snowlight 1437 snowlike 2713 +snowlit 271 snowmachine 526 snowmachines 243 snowmaking 4446 @@ -436187,8 +439584,6 @@ snowslip 244 snowslips 177 snowsport 65 snowsports 991 -snowsquall 183 -snowsqualls 308 snowstorm 251448 snowstorms 76740 snowsuit 6972 @@ -436416,6 +439811,7 @@ socca 2865 soccage 37653 soccer 787774 soccers 147 +socdolager 155 sociabilities 5175 sociability 421216 sociable 668680 @@ -436745,6 +440141,7 @@ soffrito 282 soffritto 1662 sofic 117 sofies 354 +sofiite 219 sofosbuvir 2427 sofrito 1892 soft 28669483 @@ -436830,6 +440227,7 @@ softwood 276458 softwoods 113292 softy 18624 sofy 3754 +sofys 43 sog 16346 soger 8781 sogering 595 @@ -437528,6 +440926,7 @@ somethinged 967 somethingness 3239 somethings 65074 somethingth 737 +somethink 23630 sometime 2810033 someting 12927 someway 36210 @@ -437550,12 +440949,14 @@ somitic 10868 somitogenesis 2827 somitomere 523 somitomeres 1988 +somm 6698 somma 13514 sommat 8651 sommelier 26375 sommeliers 7893 sommersets 111 sommit 802 +somms 568 somnambulance 1001 somnambulancy 173 somnambulant 6594 @@ -437725,6 +441126,7 @@ sonifies 306 sonify 680 sonifying 491 soninlaw 178 +soniscope 393 sonless 9465 sonlessness 392 sonlike 591 @@ -437749,6 +441151,10 @@ sonnetlike 60 sonnetry 338 sonnets 1237014 sonnetted 289 +sonnetteer 7254 +sonnetteered 107 +sonnetteering 2943 +sonnetteers 6570 sonnetting 1407 sonnies 3854 sonning 70 @@ -438254,7 +441660,6 @@ soucoupe 904 soucoupes 433 soucouyant 837 soucouyants 167 -souerayne 9802 sough 76099 soughed 9573 soughing 36973 @@ -438323,6 +441728,7 @@ sounder 734339 sounders 58387 soundest 368829 soundeth 30430 +soundex 769 soundful 595 soundie 319 soundies 901 @@ -438594,6 +442000,7 @@ sowed 621729 sowedst 2776 sowei 416 sowens 9149 +sower 216982 sowers 46610 sowest 28343 soweth 98399 @@ -438649,6 +442056,7 @@ space 72241443 spaceband 1572 spacebands 1976 spacebased 3519 +spaceboat 963 spaceborne 13780 spacecraft 781386 spacecrafts 5951 @@ -438673,6 +442081,7 @@ spaceliner 700 spaceliners 227 spacelines 203 spaceman 23315 +spacemanship 433 spacemen 17318 spaceplane 12451 spaceplanes 3781 @@ -438708,7 +442117,6 @@ spaceworthy 1053 spacey 10541 spacial 52578 spaciality 561 -spacially 4917 spacier 401 spaciness 883 spacing 2377245 @@ -439090,8 +442498,6 @@ spathic 37149 spathiform 930 spathiphyllum 268 spathiphyllums 114 -spathose 16774 -spathous 394 spaths 655 spathulate 67801 spathulenol 319 @@ -439197,6 +442603,7 @@ speakeasies 13242 speakeasy 20815 speakeasys 156 speaked 1030 +speakeing 2627 speaker 9866741 speakerine 276 speakerines 145 @@ -439207,6 +442614,7 @@ speakerphones 556 speakers 6779564 speakership 17507 speakerships 295 +speakes 47884 speakest 141227 speaketh 557699 speakie 181 @@ -439220,6 +442628,7 @@ speako 503 speakout 1195 speakouts 235 speaks 16075596 +speal 6192 spean 1910 speaned 668 speaning 839 @@ -439779,6 +443188,7 @@ spendthrifty 152 spendy 536 spense 3015 spenses 719 +spensive 648 spent 38402558 spentest 327 speoi 438 @@ -440394,6 +443804,8 @@ spincasting 183 spincoated 274 spincoating 413 spindalis 579 +spindel 894 +spindizzy 532 spindle 3592959 spindled 13893 spindleful 272 @@ -440875,6 +444287,8 @@ spivvery 1060 spivvish 364 spivvy 1464 spk 1585 +spkr 3922 +spkrs 992 splain 1718 splained 578 splaining 608 @@ -440948,6 +444362,7 @@ spleen 2773969 spleened 298 spleenful 7011 spleenfully 160 +spleenic 472 spleening 76 spleenish 884 spleenless 1372 @@ -441165,6 +444580,7 @@ spoke 33102263 spoked 46733 spokeless 1249 spoken 25198674 +spokenness 5557 spokes 562757 spokescharacters 217 spokescouncil 674 @@ -441558,6 +444974,7 @@ sportlings 415 sportly 290 sports 8080827 sportsboat 525 +sportsboats 574 sportsbook 332 sportscape 1094 sportscapes 464 @@ -441696,6 +445113,7 @@ sprangletop 137 sprant 43 sprat 97195 sprats 123189 +spratting 704 sprattle 1322 sprauchle 139 sprauncy 263 @@ -441978,17 +445396,8 @@ spues 2713 spuggie 56 spuggies 354 spuggy 176 -spuilyie 1171 -spuilzied 1098 -spuilzieing 82 -spuilzies 1051 spuing 1427 -spulyeing 119 -spulyied 205 -spulzie 4661 -spulzied 812 -spulzieing 68 -spulzies 469 +spule 1305 spumante 6026 spumantes 468 spumavirus 292 @@ -442461,6 +445870,7 @@ squinched 4244 squinches 16323 squinching 919 squink 92 +squinney 127 squinnied 873 squinnies 249 squinny 2564 @@ -442686,6 +446096,7 @@ stablish 67387 stablished 71548 stablishes 2111 stablishing 9674 +stablishments 3582 stably 99307 stabproof 564 stabs 280180 @@ -443290,7 +446701,6 @@ stapping 364 staps 1419 star 15292674 starbase 1871 -starbases 198 starbeam 1156 starbeams 2153 starbirth 903 @@ -443346,6 +446756,7 @@ starets 10951 staretz 2455 starey 1667 starfall 670 +starfarers 468 starfaring 1497 starfield 4083 starfields 1305 @@ -443357,6 +446768,7 @@ starfished 607 starfishes 25664 starfishing 148 starfishlike 49 +starfleet 171 starflower 2186 starflowers 1134 starforming 862 @@ -443505,6 +446917,7 @@ starvingly 723 starvings 1601 starward 2865 starwards 725 +starways 285 starweed 168 starwheel 2900 starwheels 552 @@ -443692,6 +447105,7 @@ statting 2445 statto 292 statty 1125 statua 26899 +statuae 3489 statuaries 32499 statuary 635266 statuas 9355 @@ -443716,6 +447130,7 @@ statuses 174452 statusless 529 statuslessness 188 statutable 112431 +statutableness 141 statutably 10967 statute 15412276 statutes 6320923 @@ -444448,6 +447863,7 @@ stereoconvergent 209 stereodefined 583 stereodiagram 193 stereodiagrams 78 +stereodirecting 297 stereodivergent 51 stereodynamic 331 stereodynamics 775 @@ -444738,6 +448154,9 @@ stertor 27649 stertorous 82110 stertorously 12736 stertorousness 271 +sterved 2179 +sterves 541 +sterving 1209 steryl 5259 stet 32168 steth 2257 @@ -445043,6 +448462,7 @@ stillers 639 stillest 36159 stilleth 9245 stillhead 3497 +stillheads 389 stillhouse 2674 stillhouses 224 stilliard 623 @@ -445357,6 +448777,7 @@ stockading 5099 stockage 4130 stockages 138 stockbook 1381 +stockbooks 643 stockboy 719 stockboys 315 stockbreeder 5219 @@ -445899,8 +449320,6 @@ stormable 669 stormbird 341 stormbirds 303 stormbound 3876 -stormcloud 6226 -stormclouds 9178 stormcock 2143 stormcocks 203 stormed 1129698 @@ -446125,6 +449544,7 @@ straightish 11009 straightlaced 5158 straightline 26617 straightly 75404 +straightneck 141 straightness 184846 straightnesses 387 straights 101008 @@ -446170,6 +449590,7 @@ straitnesses 767 straits 1259554 straitwaistcoat 4089 straitwaistcoats 844 +strake 130677 strakes 105968 strale 1832 strales 51 @@ -446196,7 +449617,6 @@ strandloper 228 strandlopers 280 strands 2658906 strang 48643 -strange 32685118 strangelet 1977 strangelets 1621 strangeling 280 @@ -446362,6 +449782,7 @@ stratum 2363832 stratums 1986 stratus 127908 straughted 599 +straungers 43470 stravaging 677 stravaig 1269 stravaiged 195 @@ -446923,6 +450344,7 @@ striploin 350 stripogram 291 strippable 8618 stripped 3947930 +strippedness 305 stripper 187114 strippergram 583 strippergrams 106 @@ -447577,6 +450999,7 @@ styed 2374 styelid 92 styen 576 styes 43181 +styfsiekte 240 styful 115 stygian 9303 stygobiont 351 @@ -447695,6 +451118,7 @@ stymieing 3128 stymies 6726 stymy 491 stymying 1098 +stynten 940 stypes 209 styphnate 6634 styphnates 588 @@ -447834,6 +451258,8 @@ subalternating 205 subalternation 4886 subalternhood 96 subalternism 379 +subalternities 123 +subalternity 11294 subalterns 281342 subalternship 235 subalveolar 211 @@ -448159,6 +451585,8 @@ subclusters 4427 subcoalition 695 subcoalitions 825 subcoastal 1311 +subcoat 461 +subcoating 303 subcode 7716 subcodes 5150 subcoeruleus 1336 @@ -448649,6 +452077,7 @@ subescheator 1816 subescheators 407 subesophageal 3331 subestuary 271 +subether 134 subetheric 187 subethnic 1602 subethnicity 144 @@ -449345,6 +452774,7 @@ submeridional 1564 submerse 1655 submersed 27637 submerses 143 +submersibility 318 submersible 247071 submersibles 59290 submersing 1022 @@ -449390,6 +452820,8 @@ submillisecond 988 submind 1364 subminds 874 subminiature 13728 +subminiatures 440 +subminiaturization 175 subminima 343 subminimal 4989 subminimum 1365 @@ -449742,6 +453174,7 @@ subplanes 1636 subplanetary 117 subplans 2706 subplantar 347 +subplantigrade 349 subplanulate 267 subplasma 61 subplasmalemmal 1371 @@ -449842,6 +453275,7 @@ subprovince 5992 subprovinces 3630 subprovincial 1855 subpruinose 445 +subpubescent 2867 subpubic 9107 subpulmonary 7727 subpulmonic 1208 @@ -450080,6 +453514,7 @@ subsentences 1313 subsentential 4860 subsept 207 subsepta 72 +subseptate 970 subsepts 289 subsequence 42605 subsequences 13637 @@ -450270,6 +453705,7 @@ subspheroid 112 subspheroidal 1686 subspheroids 820 subspinal 909 +subspiniform 735 subspinous 2219 subspiracular 9224 subspiral 5633 @@ -450588,6 +454024,8 @@ subtidally 1977 subtier 220 subtilase 184 subtileness 287 +subtiler 3375 +subtilest 7168 subtilin 5177 subtilisation 508 subtilisations 113 @@ -450607,6 +454045,7 @@ subtilized 11118 subtilizer 162 subtilizes 1607 subtilizing 4337 +subtill 36487 subtilopeptidase 412 subtilties 61188 subtilty 189004 @@ -450953,7 +454392,6 @@ successors 6847092 successorship 5243 successory 547 successours 69231 -succiferous 82 succimer 992 succinamate 339 succinamic 2038 @@ -451334,6 +454772,7 @@ sugarpie 132 sugarplum 4748 sugarplums 10313 sugars 1706709 +sugarstick 1246 sugary 247144 sugata 1380 sugescent 305 @@ -452218,6 +455657,7 @@ sunfast 164 sunfilled 1407 sunfish 35764 sunfishes 2835 +sunfishing 122 sunfleck 1122 sunflecks 2706 sunflower 537196 @@ -452329,6 +455769,7 @@ sunshine 5709551 sunshined 121 sunshines 3329 sunshiney 725 +sunshininess 91 sunshiny 104274 sunshot 1459 sunspace 9854 @@ -452726,6 +456167,7 @@ superdominance 1002 superdominant 1162 superdreadnought 686 superdreadnoughts 729 +superdry 152 superduper 805 superdupervenience 259 superdynamic 155 @@ -452947,6 +456389,7 @@ supergluing 455 supergoal 265 supergood 366 supergovernment 558 +supergrade 736 supergrain 141 supergranular 678 supergranulation 2078 @@ -453470,6 +456913,7 @@ superprocess 595 superprocesses 601 superproducer 151 superproducers 139 +superproductive 261 superprofessional 145 superprofit 938 superprofitable 87 @@ -453800,6 +457244,7 @@ supertrue 724 supertruth 764 supertuberation 580 supertunic 3983 +supertunica 2138 supertunics 679 supertwist 1134 supertwisted 803 @@ -454130,6 +457575,7 @@ supraclypeal 4925 supracoeliac 624 supracolic 1078 supracollicular 187 +supracolloidal 334 supracommissural 414 supraconducting 5049 supracondylar 29303 @@ -454436,6 +457882,7 @@ surculi 2250 surculose 260 surculus 3282 surd 63619 +surdo 3743 surds 29712 sure 74046082 surefire 22348 @@ -454468,6 +457915,7 @@ surfacers 3485 surfaces 14143540 surfaceward 394 surfacewards 389 +surfacial 1209 surfacic 504 surfacing 557084 surfacings 66538 @@ -454822,6 +458270,7 @@ susceptometry 221 susceptor 11142 susceptors 2668 suscepts 369 +suscitability 282 sush 5655 sushi 149461 sushis 167 @@ -455266,7 +458715,6 @@ swashplates 569 swashway 983 swashways 397 swashy 580 -swastica 1261 swasticas 110 swastika 159471 swastikaed 166 @@ -455441,6 +458889,7 @@ sweetishness 506 sweetleaf 124 sweetless 255 sweetlier 1537 +sweetliest 645 sweetling 3818 sweetlings 271 sweetlips 1612 @@ -455691,6 +459140,8 @@ swipples 109 swires 308 swirl 511436 swirled 377331 +swirler 8168 +swirlers 2738 swirlie 231 swirlies 113 swirling 764680 @@ -456250,6 +459701,8 @@ symphony 1304019 symphronistic 171 symphylan 372 symphylans 390 +symphylid 471 +symphylids 2109 symphyseal 9265 symphyseotomy 2654 symphyses 6740 @@ -456724,10 +460177,13 @@ synizesis 11255 synizetic 489 synkaryon 3431 synkaryons 336 +synkinematic 5291 synkineses 438 synkinesia 692 synkinesis 4690 synkinetic 2196 +synmagmatic 211 +synmetamorphic 1360 synnema 772 synnemata 2326 synnes 63807 @@ -456834,6 +460290,7 @@ synpharyngitic 110 synphase 272 synphilin 257 synpolydactyly 560 +synrift 4527 syns 39309 synsacral 1113 synsacrum 2657 @@ -456982,6 +460439,7 @@ synuclein 33202 synucleinopathies 2688 synucleinopathy 1640 synucleins 553 +synvolcanic 431 synzymes 185 syph 4241 sypher 571 @@ -457016,6 +460474,7 @@ syphon 394962 syphonage 8579 syphoned 29956 syphoning 16101 +syphonings 139 syphons 87632 syrah 2379 syrang 875 @@ -457863,6 +461322,7 @@ tailrace 23924 tailraces 974 tails 2665750 tailshaft 16189 +tailshafts 2510 tailsitter 174 tailskid 3375 tailskids 203 @@ -458152,6 +461612,7 @@ talliate 222 talliated 537 talliating 190 talliator 187 +tallica 981 tallie 1692 tallied 134954 tallier 1083 @@ -458192,6 +461653,7 @@ tallywhacker 265 tallywoman 185 talma 1140 talmas 217 +talmid 2561 talocalcaneal 5596 talocalcaneonavicular 2068 talocrural 2969 @@ -458520,6 +461982,7 @@ tankas 7407 tankbuster 247 tankbusters 171 tankbusting 121 +tankdozer 111 tanked 28336 tanker 1615590 tankered 1348 @@ -458766,6 +462229,7 @@ taphocoenosis 186 taphofacies 767 taphole 15452 tapholes 3744 +taphon 386 taphonomic 36091 taphonomical 1093 taphonomically 687 @@ -459949,6 +463413,8 @@ technicalness 104 technicals 9478 technician 820050 technicians 1690089 +technicism 6586 +technicisms 173 technicist 19589 technicists 1475 technicities 359 @@ -460100,6 +463566,8 @@ tectonites 8608 tectonization 347 tectonized 3713 tectonomagmatic 2289 +tectonometamorphic 2460 +tectonometamorphism 147 tectonophysical 279 tectonophysics 996 tectonostratigraphic 5648 @@ -460130,6 +463598,7 @@ tedding 13863 teddings 149 teddys 168 tedge 1639 +tedia 544 tedious 4207994 tediously 113899 tediousness 186279 @@ -460695,7 +464164,9 @@ telepsychic 92 telepsychology 396 teleputer 194 telera 303 +teleradio 972 teleradiogram 355 +teleradiograms 282 teleradiography 604 teleradiology 3003 teleradiotherapy 165 @@ -461016,6 +464487,7 @@ temocillin 1161 temoporfin 265 temozolomide 13190 temp 3013390 +tempe 29756 temped 3053 tempeh 17983 temper 11350655 @@ -461055,6 +464527,7 @@ temperless 246 temperments 101 tempers 910943 tempersome 329 +tempes 2987 tempest 2234519 tempestarii 357 tempested 3120 @@ -461211,6 +464684,7 @@ tenailles 3890 tenaillon 1032 tenaillons 1184 tenails 476 +tenaim 223 tenancies 724495 tenancy 3704862 tenant 17143677 @@ -461246,6 +464720,7 @@ tendentious 164948 tendentiously 17061 tendentiousness 12042 tender 17937973 +tenderability 133 tenderable 3650 tendered 2097610 tenderee 193 @@ -461293,6 +464768,8 @@ tenders 2829981 tenderstem 2817 tendest 1784 tendeth 66244 +tendido 1202 +tendidos 583 tendinal 1711 tendineous 171 tending 4801335 @@ -461349,6 +464826,7 @@ tenectomy 1059 tenement 2809760 tenemental 7780 tenementary 223 +tenemented 3706 tenementer 157 tenementers 167 tenements 3357866 @@ -461411,6 +464889,7 @@ tenorial 988 tenorist 6996 tenorists 1139 tenorite 3394 +tenorless 106 tenoroon 741 tenoroons 129 tenorrhaphy 499 @@ -461540,6 +465019,7 @@ tenthmetre 369 tenthmetres 1153 tenthousandfold 185 tenthousandth 5652 +tenthousandths 2117 tenthredinid 234 tenths 1611549 tentiform 308 @@ -461666,6 +465146,7 @@ tequila 108838 tequilas 5298 tequilla 317 ter 2584639 +terabecquerel 211 terabinth 89 terabit 1504 terabits 949 @@ -461692,7 +465173,6 @@ teras 5390 terascale 219 terasi 1069 terata 3837 -terated 5798 teratism 402 teratoblastoma 220 teratocarcinoma 15545 @@ -462028,6 +465508,7 @@ terrazzo 50161 terrazzos 168 terreen 151 terrella 7394 +terrellae 206 terrellas 231 terrene 60138 terrenes 1187 @@ -462966,7 +466447,6 @@ tets 3713 tetter 55493 tettered 788 tettering 135 -tetterous 283 tetters 22226 tetterwort 154 tettery 578 @@ -463309,7 +466789,6 @@ thatness 4040 thats 105188 thatta 563 thaub 757 -thaught 3074 thaughts 391 thaumasite 4204 thaumatin 6308 @@ -463430,6 +466909,7 @@ thecas 1575 thecaspores 200 thecasporous 235 thecate 3426 +thecated 315 thecia 536 thecium 842 thecodont 4057 @@ -463647,6 +467127,7 @@ theopaschitism 390 theopathetic 1368 theopathic 1299 theopathy 3151 +theophagic 114 theophagy 845 theophanic 14779 theophanies 21780 @@ -463824,6 +467305,7 @@ thereunto 1457984 thereupon 5282290 therewith 3348930 therewithal 106282 +therewithall 36459 therewithin 3111 therewithout 206 theriac 9841 @@ -464890,7 +468372,9 @@ thirdspace 3366 thirdy 426 thirlage 32937 thirlages 416 +thirling 3612 thirlings 907 +thirls 1016 thirst 4109929 thirsted 159186 thirster 2104 @@ -465282,6 +468766,7 @@ threats 5944846 threds 5867 three 321369958 threedimensional 238660 +threedy 84 threefold 1268306 threefolding 715 threefoldly 163 @@ -465725,6 +469210,8 @@ thuglike 81 thugocracy 173 thugs 323848 thuja 11079 +thujaplicin 850 +thujaplicins 497 thujas 1734 thujene 2240 thujenes 195 @@ -465737,6 +469224,7 @@ thula 6217 thulas 347 thulate 73 thulia 2187 +thulite 1792 thulium 25435 thulr 141 thuluth 3265 @@ -465767,6 +469255,7 @@ thumbnut 213 thumbnuts 45 thumbpad 226 thumbpads 213 +thumbpick 128 thumbpiece 9582 thumbpieces 962 thumbpot 178 @@ -466073,7 +469562,6 @@ thysanopteran 268 thysanuran 513 thysanurans 251 thysanuriform 81 -thysanurous 135 thyself 3087614 thyselves 625 thysen 3620 @@ -466189,6 +469677,8 @@ tickseed 360 ticktack 1463 ticktacktoe 479 ticktock 3258 +ticktocked 213 +ticktocking 446 ticktocks 190 ticky 6584 ticlike 170 @@ -466387,6 +469877,7 @@ tightlacing 2142 tightlier 64 tightlipped 9404 tightly 4776564 +tightner 174 tightness 575152 tightnesses 410 tightrope 148855 @@ -466505,6 +469996,8 @@ tillowed 141 tillows 237 tills 219056 tilly 10687 +tilma 1455 +tilmas 181 tilmatli 681 tilmicosin 863 tilorone 2420 @@ -467537,8 +471030,10 @@ toepieces 209 toeplate 179 toeprint 250 toeprints 276 +toer 3205 toerag 4235 toerags 1265 +toers 342 toes 3585550 toesa 71 toeses 621 @@ -467967,6 +471462,9 @@ tomtomming 274 tomtoms 14928 ton 17362847 tona 16092 +tonable 442 +tonada 898 +tonadas 486 tonal 760750 tonalamatl 1945 tonalism 796 @@ -467978,6 +471476,7 @@ tonalitic 9104 tonalities 41529 tonality 266828 tonally 44251 +tonalpohualli 906 tonals 593 toname 983 tonames 89 @@ -468037,6 +471536,8 @@ tonguelessness 191 tonguelet 724 tonguelets 188 tonguelike 2503 +tonguer 426 +tonguers 363 tongues 3915715 tonguester 423 tonguesters 1057 @@ -468228,6 +471729,9 @@ toolrooms 4067 tools 16060763 toolset 16497 toolsets 3459 +toolsetter 1626 +toolsetters 1908 +toolsetting 1565 toolshed 15747 toolsheds 1432 toolsmith 731 @@ -468671,6 +472175,7 @@ torero 16985 toreros 10614 tores 31465 torest 4196 +torets 218 toreutic 5717 toreutics 914 torfer 202 @@ -468965,6 +472470,7 @@ tostados 382 tosticated 1155 tostone 141 tostones 935 +tosts 4313 tosufloxacin 275 tosy 476 tosyl 18101 @@ -469190,6 +472696,7 @@ touristic 73742 touristically 1861 touristification 1154 touristified 489 +touristing 382 touristry 488 tourists 3514929 touristy 54480 @@ -469243,7 +472750,6 @@ touter 5350 touters 11735 touting 109229 touts 121896 -touze 1521 touzed 343 touzing 177 touzle 1883 @@ -469334,6 +472840,7 @@ townhouse 102709 townhouses 37174 townie 12200 townies 13518 +townified 847 towniness 440 townishness 183 townland 140428 @@ -469806,6 +473313,7 @@ trademarkable 75 trademarked 23982 trademarking 1758 trademarks 631672 +tradent 2976 tradeoff 118838 tradeoffs 102084 trader 3185779 @@ -470136,6 +473644,8 @@ tramphood 171 tramping 330917 trampings 2053 trampish 889 +tramplate 524 +tramplates 1586 trample 628753 trampled 1224808 trampler 5259 @@ -470187,6 +473697,7 @@ trancing 5888 trancy 246 trandolapril 2873 tranduced 95 +tranducing 52 tranexamic 19904 tranfection 127 trangenic 236 @@ -470816,6 +474327,7 @@ transhumanism 11280 transhumanist 8758 transhumanistic 162 transhumanists 5638 +transhumanity 384 transhumanize 82 transhumanized 316 transhumans 950 @@ -470918,6 +474430,7 @@ transitways 219 transjejunal 96 transjugular 10603 transjunctional 503 +transjurisdictional 677 transketolase 13070 transketolases 185 transketolation 167 @@ -471087,6 +474600,7 @@ transmissivities 4002 transmissivity 43155 transmissometer 3960 transmissometers 1450 +transmissometry 144 transmissory 191 transmit 3857932 transmitivity 135 @@ -471107,6 +474621,7 @@ transmitting 2402224 transmittivity 1210 transmodal 1963 transmodern 1575 +transmodernity 1117 transmodulation 491 transmogrification 16226 transmogrifications 2813 @@ -471152,6 +474667,7 @@ transmyocardial 2371 transnasal 6290 transnasally 945 transnatal 267 +transnation 1604 transnational 2261116 transnationalism 92957 transnationalisms 871 @@ -471159,6 +474675,7 @@ transnationalities 245 transnationality 15822 transnationally 36877 transnationals 50163 +transnations 355 transneptunian 163 transness 710 transneural 274 @@ -471520,6 +475037,7 @@ transvesical 4660 transvest 173 transvested 280 transvestic 2350 +transvesticism 568 transvesting 88 transvestism 50541 transvestisms 123 @@ -471869,6 +475387,7 @@ treatises 2366815 treatizes 174 treatment 78959259 treatments 4842156 +treato 370 treats 4349249 treaty 18436666 treatyless 113 @@ -471982,6 +475501,8 @@ trekboers 4606 trekked 102206 trekker 9626 trekkers 51351 +trekkie 336 +trekkies 434 trekking 227713 trekkings 185 treks 95638 @@ -472543,6 +476064,7 @@ tribulated 2061 tribulating 176 tribulation 650301 tribulations 386166 +tribulin 346 tribunal 7742531 tribunals 2775302 tribunate 85174 @@ -472898,6 +476420,7 @@ tricornered 1010 tricornes 1284 tricorns 1146 tricorporate 361 +tricorporated 72 tricortical 527 tricosane 949 tricosanoic 473 @@ -472940,6 +476463,7 @@ tricycling 5351 tricyclist 2593 tricyclists 1982 tricyclo 6429 +tricycloquinazoline 1126 tridacna 2978 tridacnid 471 tridacnids 368 @@ -472956,6 +476480,7 @@ tridecanone 908 tridecapeptide 1333 tridecyl 2124 tridecylic 448 +tridee 126 tridem 289 tridemorph 7471 trident 251843 @@ -473189,6 +476714,7 @@ triglycine 5184 triglycoside 188 triglyme 694 triglyph 28026 +triglyphed 723 triglyphic 189 triglyphs 57832 trigness 200 @@ -473511,6 +477037,7 @@ trimotor 2932 trimotors 1306 trimoxazole 48087 trimphone 265 +trimpot 288 trims 105709 trimuon 171 trimyristate 73 @@ -473609,6 +477136,7 @@ triolein 22373 trioles 222 triolet 10686 triolets 6266 +triology 3357 triols 6383 trion 2814 trional 14059 @@ -473956,7 +477484,6 @@ trispectrum 688 trispermous 330 trisphosphate 25562 trisphosphates 336 -trisplanchnic 524 trisporous 206 trissyllable 1326 trissyllables 308 @@ -473967,6 +477494,7 @@ tristates 105 triste 120634 tristearate 2743 tristearin 13471 +tristeful 181 tristeness 191 tristes 24486 tristesse 20069 @@ -474190,6 +477718,7 @@ triynes 509 trizonal 916 trizygotic 342 trnas 126 +tro 104334 troat 4110 troated 2138 troating 527 @@ -474375,6 +477904,7 @@ troo 37338 troodontid 270 troodontids 756 troon 1750 p +trooned 229 troons 1157 troop 3228114 trooped 157540 @@ -474708,6 +478238,7 @@ trucco 379 truce 2530679 trucebreaker 187 trucebreakers 1670 +trucel 179 truceless 5468 truces 93737 truchman 1704 @@ -474820,6 +478351,8 @@ trumperiness 239 trumpery 261090 trumpet 3075544 trumpeted 165554 +trumpeteer 201 +trumpeteers 265 trumpeter 343332 trumpeters 229094 trumpetfish 904 @@ -474892,6 +478425,7 @@ trunnion 116062 trunnioned 1616 trunnionless 364 trunnions 154249 +trup 3003 truscottite 993 truss 854557 trussed 242688 @@ -475122,6 +478656,7 @@ tschermakite 2190 tschermigite 160 tse 183327 tsebe 88 +tsedakah 574 tselina 481 tses 1799 tsesarevich 62 @@ -475144,6 +478679,7 @@ tsk 24592 tsked 12569 tsking 5111 tsks 1424 +tsoo 5173 tsores 334 tsotsi 3794 tsotsis 5076 @@ -476146,6 +479682,7 @@ turquoise 616187 turquoised 55 turquoises 59117 turquoisey 52 +turquoisine 193 turra 445 turrah 89 turras 85 @@ -476188,6 +479725,7 @@ turtlers 1189 turtles 561728 turtling 4763 turts 593 +turul 606 turuma 322 turuq 4288 turves 98478 @@ -476688,7 +480226,6 @@ twitching 600375 twitchingly 485 twitchings 106186 twitchy 57087 -twite 9102 twites 2965 twits 20679 twitted 87631 @@ -476724,6 +480261,7 @@ twoccing 70 twocked 109 twockers 128 twocking 452 +twoddle 244 twodimensional 163612 twoer 383 twoers 165 @@ -476759,6 +480297,7 @@ twoty 62 twp 14394 twt 8632 twts 248 +twttr 68 twunt 124 p twyer 12201 twyere 425 @@ -476954,11 +480493,13 @@ typewriting 205557 typewritten 308055 typewrote 285 typey 393 +typhic 684 typhinia 257 typhlitic 442 typhlitis 15392 typhlocolitis 470 typhlograph 101 +typhlosolar 1505 typhlosole 12371 typhlosoles 1199 typhogenic 116 @@ -476976,6 +480517,7 @@ typhous 15338 typhus 1078471 typhuses 198 typic 11371 +typica 47867 typical 21308396 typicalities 1148 typicality 51861 @@ -476983,6 +480525,7 @@ typically 9666334 typicalness 2380 typicals 2526 typicity 4711 +typicon 881 typification 31390 typifications 22629 typified 716412 @@ -477123,7 +480666,6 @@ tyrosol 3200 tyrosyl 23449 tyrosyls 333 tyrothricin 6357 -tyrotoxicon 3509 tyrotoxin 125 tyrphostin 983 tyrphostins 472 @@ -477264,6 +480806,7 @@ ufologists 3342 ufology 4004 ufonauts 485 ufos 944 +ufra 818 ugal 5881 ugali 5783 ugals 203 @@ -477290,6 +480833,7 @@ uglinesses 6825 uglis 288 ugly 5179833 uglyish 174 +ugrandite 760 ugsome 3278 uh 525246 uhh 4356 @@ -477580,10 +481124,12 @@ ultrametric 4592 ultrametricity 418 ultrametrics 275 ultramicro 5100 +ultramicroanalysis 871 ultramicrobacteria 371 ultramicrobalance 202 ultramicrochemical 423 ultramicrochemistry 62 +ultramicrodetermination 151 ultramicroelectrode 589 ultramicroelectrodes 834 ultramicrofiche 202 @@ -477597,6 +481143,7 @@ ultramicroscopic 25806 ultramicroscopical 1677 ultramicroscopically 1694 ultramicroscopy 1902 +ultramicrosize 199 ultramicrostructure 45 ultramicrotome 8141 ultramicrotomed 509 @@ -477649,6 +481196,7 @@ ultraplankton 1360 ultraplinian 358 ultrapoor 311 ultraportable 301 +ultraposh 42 ultrapotassic 4033 ultrapotent 410 ultrapower 577 @@ -477657,6 +481205,7 @@ ultrapowers 379 ultrapractical 171 ultraprecise 599 ultraprecision 1679 +ultrapremium 256 ultraprimitive 112 ultraprocessed 86 ultraproduct 606 @@ -477783,6 +481332,7 @@ ultraviolets 710 ultravirus 490 ultraviruses 190 ultravisible 911 +ultrawave 341 ultraweak 1366 ultrawealthy 433 ultrawide 1376 @@ -477904,12 +481454,16 @@ umbriferous 184 umbril 1585 umbrils 108 umbrine 90 +umbrose 104 +umbrosity 121 umbrous 1013 umdah 368 ume 69630 umeboshi 2312 umes 19446 umeshu 305 +umfaan 676 +umfaans 383 umfundisi 1607 umgang 362 umiak 7929 @@ -478113,6 +481667,7 @@ unactionable 625 unactioned 220 unactivated 16429 unactive 32901 +unactivity 1090 unactorish 123 unactual 1429 unactualizable 227 @@ -478126,6 +481681,7 @@ unadapted 40358 unadaptedness 283 unadapting 42 unadaptive 3674 +unadaptiveness 142 unadded 609 unaddicted 1623 unaddressable 363 @@ -478585,6 +482141,7 @@ unask 463 unaskable 1909 unasked 176947 unasking 1043 +unaspected 525 unaspersed 109 unasphalted 327 unaspirate 248 @@ -478705,6 +482262,7 @@ unattributably 977 unattributed 40564 unattuned 2973 unau 2997 +unaudible 171 unauditable 327 unaudited 39161 unaugmentable 227 @@ -478961,6 +482519,7 @@ unbelieving 490157 unbelievingly 17369 unbelievingness 45 unbelittled 98 +unbelled 157 unbellicose 406 unbelligerent 486 unbelonging 4283 @@ -479423,6 +482982,7 @@ unburthening 4401 unburthens 906 unbury 3949 unburying 1633 +unbushed 1225 unbusied 1291 unbusinesslike 59999 unbuskined 110 @@ -479498,6 +483058,7 @@ uncanniest 1888 uncannily 131038 uncanniness 23972 uncanny 920336 +uncannyness 172 uncanonic 263 uncanonical 58466 uncanonically 7048 @@ -479607,6 +483168,7 @@ uncaught 13334 uncaulked 1126 uncause 163 uncaused 69002 +uncausedness 224 uncauterized 160 uncautioned 347 uncautious 3184 @@ -479873,6 +483435,7 @@ uncitizenlike 125 uncitizenly 123 uncivil 234562 uncivilisable 513 +uncivilisation 1468 uncivilised 240894 uncivility 1350 uncivilizable 717 @@ -479922,6 +483485,7 @@ unclean 1605694 uncleanable 1226 uncleaned 36566 uncleaner 409 +uncleaness 918 uncleanest 1197 uncleanlier 42 uncleanliest 210 @@ -480181,6 +483745,7 @@ uncommodious 609 uncommon 7027103 uncommonable 493 uncommoner 86 +uncommoness 114 uncommonest 215 uncommonly 1216837 uncommonness 9362 @@ -480209,6 +483774,7 @@ uncomparable 1866 uncompared 1613 uncompartmentalised 137 uncompartmentalized 65 +uncompartmented 714 uncompassable 171 uncompassed 765 uncompassionate 6754 @@ -480238,6 +483804,7 @@ uncomplemented 1356 uncompletable 1091 uncompleted 207229 uncompletedness 108 +uncompleteness 173 uncomplex 4048 uncomplexed 16338 uncompliable 84 @@ -480314,6 +483881,7 @@ unconcerted 5398 unconciliated 687 unconciliating 5905 unconciliatory 14147 +unconciousness 1404 unconcluded 7158 unconcluding 1099 unconcludingness 141 @@ -480661,6 +484229,7 @@ uncorrectable 6680 uncorrected 342231 uncorrectible 236 uncorrectly 427 +uncorrectness 608 uncorrelatable 175 uncorrelated 181134 uncorrelatedness 1110 @@ -480738,6 +484307,7 @@ uncovenanted 81999 uncover 904139 uncoverable 611 uncovered 2572371 +uncoveredness 1528 uncoverer 373 uncoverers 178 uncoverest 143 @@ -480869,7 +484439,6 @@ unction 596493 unctional 4622 unctionless 557 unctions 45085 -unctiousness 340 unctoria 113 unctorium 592 uncts 577 @@ -480892,6 +484461,7 @@ uncultivable 22831 uncultivatable 1857 uncultivate 726 uncultivated 943900 +uncultivatedness 128 uncultivation 1425 unculturable 4362 uncultural 814 @@ -481187,6 +484757,7 @@ undeleting 217 undeliberate 2944 undeliberated 1296 undeliberately 876 +undeliberateness 217 undeliberating 661 undeliberative 476 undelicate 500 @@ -481225,6 +484796,7 @@ undemolishable 209 undemolished 5282 undemonic 247 undemonized 44 +undemonstrability 289 undemonstrable 15785 undemonstrably 267 undemonstratable 87 @@ -481789,7 +485361,9 @@ underfootman 292 underfootmen 157 underforest 72 underframe 80937 +underframed 48 underframes 27844 +underframing 4891 underfrequency 1026 underfrocks 139 underfull 738 @@ -481930,6 +485504,7 @@ underinsurance 3293 underinsure 372 underinsured 6528 underinsuring 83 +underinterpretation 275 underinvest 6147 underinvested 2709 underinvestigated 1707 @@ -481938,6 +485513,7 @@ underinvestment 39764 underinvestments 237 underinvests 527 underinvolved 329 +underivability 802 underivable 4351 underivatised 1131 underivative 2868 @@ -482145,6 +485721,8 @@ underorder 58 underorders 127 underorganized 685 underoxidized 66 +underoxygenated 51 +underoxygenation 56 underpacking 316 underpad 524 underpadding 213 @@ -482152,6 +485730,7 @@ underpads 1179 underpaid 244905 underpainting 17142 underpaintings 832 +underpant 618 underpanted 50 underpants 163518 underparameterized 110 @@ -482373,6 +485952,7 @@ undersample 557 undersampled 3361 undersamples 174 undersampling 5116 +undersanded 203 undersang 106 undersatisfied 201 undersaturated 30135 @@ -482687,6 +486267,7 @@ undertrick 558 undertricks 395 undertrodden 203 undertrousers 268 +undertubulation 243 undertunic 3059 undertunics 289 underturnkey 214 @@ -482717,6 +486298,7 @@ undervaluers 502 undervalues 37328 undervaluing 124457 undervaluings 279 +underventilate 128 underventilated 2643 underventilation 2260 undervest 6191 @@ -482809,6 +486391,8 @@ undeserted 805 undeserved 591683 undeservedly 149886 undeservedness 981 +undeserver 2497 +undeservers 2181 undeserving 377911 undeservingly 2110 undeservingness 849 @@ -482843,6 +486427,7 @@ undestined 384 undestroyable 1032 undestroyed 36520 undestroying 79 +undestructible 621 undestructive 639 undetachable 2400 undetachably 151 @@ -482863,6 +486448,7 @@ undeterminateness 307 undetermination 669 undetermine 348 undetermined 725068 +undeterminedness 403 undetermining 359 undeterministic 371 undeterrable 1417 @@ -482921,6 +486507,7 @@ undifferentiable 2354 undifferential 307 undifferentially 160 undifferentiated 634096 +undifferentiatedness 1338 undifferentiating 2229 undifferentiation 9008 undifficult 64 @@ -482941,6 +486528,7 @@ undignifiedly 521 undignifies 46 undignify 331 undignifying 477 +undignity 45 undiked 268 undilapidated 631 undilatable 3798 @@ -483425,6 +487013,7 @@ uneasiness 2348947 uneasinesses 18947 uneasing 130 uneasy 3908141 +uneasyness 3297 uneat 615 uneatable 55261 uneatableness 284 @@ -483455,6 +487044,7 @@ unedit 65 uneditable 898 unedited 95252 unediting 431 +uneducability 160 uneducable 5322 uneducatable 333 uneducate 612 @@ -483693,6 +487283,7 @@ unenthusiastic 105453 unenthusiastically 20932 unenticed 630 unenticing 3033 +unenticingly 222 unentire 42 unentitled 7772 unentombed 447 @@ -483727,7 +487318,10 @@ unequable 3571 unequal 5426669 unequaled 21249 unequality 2535 +unequalization 129 +unequalize 134 unequalized 1245 +unequalizing 1633 unequalled 903366 unequally 647532 unequalness 1608 @@ -483824,11 +487418,13 @@ unevaluable 875 unevaluated 7477 unevangelic 735 unevangelical 7764 +unevangelised 4026 unevangelized 8115 unevaporated 6761 unevasive 1307 uneven 2727110 unevened 166 +uneveness 5413 unevenly 459803 unevenness 255226 unevennesses 13638 @@ -483977,6 +487573,7 @@ unexplaining 276 unexplanatory 2009 unexplicated 6336 unexplicit 1436 +unexplicitly 283 unexploded 94301 unexploding 143 unexploitable 2014 @@ -484070,6 +487667,7 @@ unfairnesses 8200 unfairylike 322 unfaith 17191 unfaithful 706304 +unfaithfullness 262 unfaithfully 24087 unfaithfulness 201373 unfaithfulnesses 745 @@ -484272,6 +487870,7 @@ unfile 382 unfiled 5122 unfiles 43 unfilial 36762 +unfiliality 233 unfilially 821 unfilialness 60 unfiling 428 @@ -484361,6 +487960,7 @@ unflanked 1735 unflappability 5379 unflappable 42620 unflappably 1161 +unflapped 1829 unflapping 176 unflared 418 unflashed 2130 @@ -484634,6 +488234,7 @@ unfrequent 318180 unfrequented 236701 unfrequentedness 106 unfrequently 1721763 +unfrescoed 95 unfresh 1702 unfreshened 317 unfretful 335 @@ -484695,6 +488296,7 @@ unfulfil 128 unfulfill 54 unfulfillable 9067 unfulfilled 560208 +unfulfilledness 50 unfulfilling 18591 unfulfillment 2450 unfulfilment 9162 @@ -484764,6 +488366,7 @@ ungainlier 143 ungainliest 379 ungainliness 14511 ungainly 384100 +ungainness 47 ungainsaid 142 ungainsayable 1895 ungainsayably 134 @@ -485067,7 +488670,6 @@ unguent 89779 unguentaria 4249 unguentarium 3524 unguentary 498 -unguentous 121 unguents 94430 unguerdoned 219 ungues 35211 @@ -485163,6 +488765,7 @@ unhandsomeness 1200 unhandsomest 118 unhandy 27791 unhang 1918 +unhangable 106 unhanged 11670 unhanging 1031 unhangs 89 @@ -485176,6 +488779,7 @@ unhappily 1843303 unhappiness 1081682 unhappinesses 5148 unhappy 9820836 +unhappyness 396 unharassed 9577 unharbored 117 unharbour 1160 @@ -485241,6 +488845,7 @@ unhealthiest 10916 unhealthily 31307 unhealthiness 131837 unhealthy 2236149 +unhealthyness 177 unheaped 420 unhear 1104 unhearable 1193 @@ -485336,6 +488941,7 @@ unhired 6036 unhistoric 17533 unhistorical 167959 unhistorically 8171 +unhistoricity 542 unhistoried 741 unhistory 279 unhistrionic 953 @@ -485372,10 +488978,13 @@ unholstered 4815 unholstering 575 unholsters 253 unholy 727492 +unhome 654 +unhomed 1069 unhomelike 3353 unhomelikeness 145 unhomeliness 2726 unhomely 15283 +unhoming 221 unhomogeneity 588 unhomogeneous 4514 unhomogeneousness 87 @@ -485606,6 +489215,7 @@ unidentifiably 694 unidentified 876677 unidentifying 56 unideological 2689 +unidexterity 174 unidimensional 64620 unidimensionality 8271 unidimensionally 1473 @@ -485707,6 +489317,7 @@ unijunctions 145 unike 570 unikonts 329 unilabiate 720 +unilacunar 1275 unilamellar 10612 unilamellate 255 unilaminar 5823 @@ -485850,6 +489461,7 @@ unimpressable 193 unimpressed 264550 unimpressibility 455 unimpressible 9763 +unimpressibleness 117 unimpressibly 143 unimpressionability 246 unimpressionable 14628 @@ -486079,6 +489691,7 @@ uninsurance 528 uninsured 199186 unintegral 159 unintegrated 35627 +unintegration 5135 unintellectual 49471 unintellectualism 163 unintellectuality 585 @@ -486121,6 +489734,7 @@ unintermingled 102 unintermitted 23886 unintermittedly 1078 unintermittent 11899 +unintermittently 4113 unintermitting 22225 unintermittingly 6656 unintermixed 159 @@ -486137,6 +489751,7 @@ uninterruptable 3342 uninterrupted 2029352 uninterruptedly 392339 uninterruptedness 2647 +uninterruptibility 99 uninterruptible 11735 uninterrupting 69 uninterruption 664 @@ -486241,6 +489856,7 @@ uniparental 16754 uniparentally 1011 uniparous 4233 unipartite 4092 +unipectinate 569 uniped 1232 unipedal 317 unipeds 504 @@ -486422,6 +490038,7 @@ univariance 512 univariant 21870 univariate 147539 univariately 475 +univarsity 545 univentricular 6297 univerbal 296 univerbated 301 @@ -486455,6 +490072,7 @@ universalizing 83411 universally 7397449 universalness 627 universals 596812 +universatility 386 universe 11305306 universes 276002 universitarian 326 @@ -486492,6 +490110,7 @@ unjaundiced 2670 unjazzy 113 unjealous 1965 unjealously 227 +unjelled 99 unjeopardised 103 unjeopardized 62 unjesting 103 @@ -486554,7 +490173,6 @@ unjustifying 79 unjustly 1917116 unjustness 7155 unjuvenile 117 -unkard 260 unke 1095 unked 2908 unkeeled 1823 @@ -486600,6 +490218,7 @@ unking 5399 unkinged 3157 unkinging 324 unkinglike 1139 +unkingliness 218 unkingly 16817 unkings 298 unkink 923 @@ -486709,6 +490328,7 @@ unlaved 61 unlavish 189 unlawed 6535 unlawful 3767230 +unlawfullness 249 unlawfully 995199 unlawfulness 103778 unlawing 455 @@ -486914,6 +490534,7 @@ unlivened 100 unliveried 903 unlives 207 unliving 8143 +unlivingness 134 unload 593838 unloaded 971352 unloaden 1705 @@ -487327,6 +490948,7 @@ unmeted 455 unmetered 16723 unmethodical 29894 unmethodically 3367 +unmethodized 822 unmethodological 129 unmethylated 18560 unmetrical 23015 @@ -487442,6 +491064,7 @@ unmodernity 172 unmodernize 154 unmodernized 5651 unmodest 469 +unmodifiability 206 unmodifiable 7306 unmodifiableness 107 unmodified 288357 @@ -487682,6 +491305,7 @@ unneurotic 843 unneutered 1281 unneutral 20140 unneutralised 5682 +unneutrality 748 unneutralized 6185 unneutrally 117 unnewsworthy 516 @@ -487863,6 +491487,7 @@ unorder 667 unorderable 383 unordered 65623 unordering 58 +unorderliness 48 unorderly 4737 unorders 43 unordinarily 119 @@ -488048,6 +491673,7 @@ unpartaken 958 unpartaking 622 unparted 3086 unpartial 5943 +unpartiality 85 unpartially 1980 unparticipated 6391 unparticipating 1863 @@ -488184,8 +491810,10 @@ unperfected 9882 unperfectness 1937 unperforate 120 unperforated 24446 +unperform 47 unperformable 4078 unperformed 72926 +unperforming 3363 unperfumed 5261 unperfused 2325 unperilled 140 @@ -488408,6 +492036,7 @@ unpleasing 382211 unpleasingly 6954 unpleasingness 401 unpleasurable 18019 +unpleasurableness 54 unpleasurably 678 unpleasure 48228 unpleat 152 @@ -488417,6 +492046,7 @@ unplebeian 104 unpledged 20598 unplenished 161 unplentiful 391 +unpliability 220 unpliable 5085 unpliableness 583 unpliancy 381 @@ -488518,6 +492148,7 @@ unpopulous 2349 unpornographic 169 unporous 481 unport 402 +unportability 93 unportable 1750 unported 681 unportentous 493 @@ -488535,6 +492166,7 @@ unpossessive 2063 unpossibilities 116 unpossibility 636 unpossible 18382 +unpost 61 unposted 7186 unpostmodern 227 unpostponable 787 @@ -488553,10 +492185,13 @@ unpowdered 17776 unpower 774 unpowered 16734 unpowerful 704 +unpracticability 425 unpracticable 9745 +unpracticableness 183 unpractical 216319 unpracticality 1734 unpractically 2869 +unpracticalness 1155 unpracticed 9079 unpractised 187613 unpragmatic 1424 @@ -488585,6 +492220,7 @@ unprecious 557 unprecipitate 171 unprecipitated 6777 unprecise 6296 +unpreciseness 132 unprecocious 331 unpredated 127 unpredatory 185 @@ -488781,6 +492417,7 @@ unprojectable 137 unprojected 2724 unprojecting 384 unprolific 11490 +unprolificness 74 unprolonged 382 unpromiscuous 157 unpromise 270 @@ -488888,6 +492525,7 @@ unprovoked 393225 unprovokedly 2479 unprovokes 1325 unprovoking 1019 +unprovokingly 99 unprudish 369 unpruned 52774 unprurient 177 @@ -489089,6 +492727,7 @@ unrated 19714 unratifiable 511 unratified 27173 unrating 1277 +unrational 1187 unrationalised 1486 unrationalizable 287 unrationalized 3821 @@ -489124,6 +492763,7 @@ unreached 24625 unreaching 151 unreacted 86945 unreactive 71473 +unreactiveness 42 unreactivity 2689 unread 220366 unreadability 7244 @@ -489137,6 +492777,7 @@ unreading 1747 unreads 47 unready 108344 unreal 1449269 +unrealisability 409 unrealisable 42284 unrealise 554 unrealised 159198 @@ -489213,12 +492854,14 @@ unreclaimable 3277 unreclaimably 97 unreclaimed 55833 unreclaiming 608 +unrecognisability 864 unrecognisable 173053 unrecognisably 6835 unrecognise 59 unrecognised 350228 unrecognising 2874 unrecognition 1188 +unrecognizability 2236 unrecognizable 185206 unrecognizably 8295 unrecognize 142 @@ -489654,6 +493297,7 @@ unrespited 798 unresplendent 123 unresponded 1606 unresponding 2812 +unresponsibility 95 unresponsible 3171 unresponsive 361185 unresponsively 1433 @@ -489695,7 +493339,7 @@ unretainable 287 unretained 3634 unretaliated 446 unretaliating 183 -unretarded 6518 +unretarded 6518 p unretentive 3363 unreticent 1173 unreticulated 213 @@ -489938,6 +493582,7 @@ unruliest 892 unrulily 219 unruliness 51177 unruly 1042749 +unrulyness 42 unruminated 197 unrummaged 331 unrumoured 100 @@ -490037,6 +493682,7 @@ unsanitary 88564 unsanitated 165 unsanitised 491 unsanitized 950 +unsanity 229 unsaponifiable 94515 unsaponifiables 3000 unsaponified 9860 @@ -490203,6 +493849,7 @@ unscrunch 136 unscrunched 250 unscrupled 183 unscrupling 151 +unscrupulosity 1863 unscrupulous 1470776 unscrupulously 96969 unscrupulousness 67353 @@ -490289,10 +493936,12 @@ unseemliness 25935 unseemlinesses 329 unseemly 787081 unseen 3119235 +unseenness 164 unseens 6112 unsegmented 54148 unsegregated 6914 unseizable 8222 +unseizableness 58 unseize 135 unseized 3357 unseldom 8503 @@ -490313,6 +493962,7 @@ unselfish 688740 unselfishly 70728 unselfishness 234784 unselfishnesses 145 +unselfpitying 399 unsell 867 unsellable 5603 unselling 459 @@ -490667,11 +494317,13 @@ unskewed 1083 unskewered 54 unskiable 157 unskilful 381434 +unskilfullness 223 unskilfully 101124 unskilfulness 74011 unskill 2446 unskilled 2049925 unskillful 10392 +unskillfullness 139 unskillfully 2831 unskillfulness 1399 unskimmed 6752 @@ -490815,6 +494467,7 @@ unsodden 1118 unsoftened 22271 unsoftening 383 unsoftly 164 +unsoil 60 unsoilable 327 unsoiled 33702 unsoiling 43 @@ -490826,6 +494479,7 @@ unsoldered 6517 unsoldering 2277 unsolders 1141 unsoldierlike 8342 +unsoldierliness 168 unsoldierly 12037 unsoled 436 unsolemn 3355 @@ -490997,12 +494651,14 @@ unsplittable 1480 unspoil 780 unspoilable 2121 unspoiled 210734 +unspoiledness 96 unspoiling 175 unspoilt 269709 unspoiltness 99 unspoke 3013 unspoken 759299 unspokenly 957 +unspokenness 358 unsponged 51 unsponsored 8339 unspontaneity 57 @@ -491103,6 +494759,7 @@ unstammering 109 unstamp 188 unstampable 103 unstamped 205037 +unstan 1806 unstanchable 487 unstanched 2823 unstand 453 @@ -491181,6 +494838,7 @@ unstick 15092 unsticking 4807 unsticks 1066 unsticky 495 +unstiff 281 unstiffen 1365 unstiffened 18756 unstiffening 583 @@ -491476,6 +495134,7 @@ unsuperannuated 335 unsupercharged 14832 unsuperficial 119 unsuperfluous 2150 +unsuperfluousness 200 unsuperintended 671 unsuperior 102 unsupernatural 653 @@ -491524,6 +495183,7 @@ unsurmised 1587 unsurmountable 49790 unsurmountably 174 unsurmounted 3026 +unsurpassability 916 unsurpassable 106364 unsurpassably 5891 unsurpassed 664499 @@ -491699,6 +495359,7 @@ untamable 31126 untamableness 449 untamably 368 untame 1635 +untameability 225 untameable 63458 untameableness 704 untameably 867 @@ -491729,6 +495390,7 @@ untar 1497 untared 437 untargetable 87 untargeted 9135 +untargetted 172 untarmacked 315 untarnishable 5934 untarnished 112435 @@ -491766,9 +495428,11 @@ unteaches 525 unteaching 1849 unteamed 83 untearable 6285 +untearful 337 unteased 429 unteasing 52 untechnical 34296 +untechnicality 132 untechnically 2445 untedious 97 untelegenic 249 @@ -491863,6 +495527,7 @@ untheatrical 8873 untheatricality 213 untheatrically 335 unthematic 2872 +unthematically 611 unthematizable 284 unthematized 2068 unthemed 221 @@ -491943,6 +495608,7 @@ untidiness 97647 untidinesses 917 untidy 706926 untidying 715 +untidyness 1900 untie 249440 untieable 167 untied 386593 @@ -492010,6 +495676,7 @@ untoiled 657 untoiling 1513 untoilsome 85 untold 724107 +untoleranced 252 untolerated 780 untolled 1943 untomb 427 @@ -492223,6 +495890,7 @@ untrust 4486 untrustable 449 untrusted 10468 untrustful 1311 +untrustfulness 148 untrustiness 356 untrusting 10145 untrustingly 182 @@ -492731,6 +496399,7 @@ unwieldiest 385 unwieldily 1889 unwieldiness 27952 unwielding 242 +unwieldliness 357 unwieldly 37512 unwifed 191 unwifelike 204 @@ -492803,6 +496472,7 @@ unwithstandable 99 unwithstood 2885 unwitnessable 702 unwitnessed 21611 +unwitnessing 228 unwitted 1260 unwittily 688 unwitting 258786 @@ -492843,9 +496513,11 @@ unworking 4333 unworkmanlike 9716 unworkmanly 156 unworks 521 +unworldiness 398 unworldliest 45 unworldliness 42433 unworldly 156424 +unworldy 497 unwormed 316 unworn 88125 unworried 26888 @@ -492865,6 +496537,7 @@ unworthiness 369034 unworthinesses 850 unworthwhile 673 unworthy 5276961 +unworthyness 558 unwotting 312 unwound 192214 unwoundable 131 @@ -493159,6 +496832,8 @@ upheavalists 497 upheavals 524760 upheave 12929 upheaved 102233 +upheavement 1419 +upheavements 293 upheaver 246 upheavers 99 upheaves 5383 @@ -493175,6 +496850,8 @@ upholdeth 23033 upholding 951047 upholdings 352 upholds 339617 +upholdster 330 +upholdsters 143 uphole 3067 upholster 10778 upholstered 344055 @@ -493329,6 +497006,9 @@ upregulation 71200 upregulations 102 upregulator 100 upregulatory 156 +uprend 259 +uprending 167 +uprent 282 upride 42 upridging 50 upright 7085621 @@ -493430,6 +497110,7 @@ upshore 2273 upshot 630198 upshots 6571 upshoved 148 +upsidaisy 48 upside 1660332 upsides 15489 upsilon 11725 @@ -493440,6 +497121,7 @@ upsizing 2390 upskill 3941 upskilled 1109 upskilling 14804 +upskips 207 upskirt 340 upskirting 299 upslanted 331 @@ -493519,6 +497201,7 @@ upsuck 327 upsun 51 upsurge 487565 upsurged 249 +upsurgence 1281 upsurges 15234 upsurging 4726 upsurgings 435 @@ -494152,7 +497835,6 @@ urotoxicity 237 urotropin 14130 urotropine 13720 uroxanate 193 -uroxanic 1099 urp 4083 urrhodin 629 urries 591 @@ -494508,12 +498190,10 @@ utters 683926 utu 16767 utukku 836 utz 2132 -uu 126980 uudecode 220 uuencode 433 uuencoded 187 uuid 3011 -uus 9728 uv 133606 uva 37602 uvae 6375 @@ -494575,6 +498255,7 @@ vP 29782 vPs 881 vRNA 2668 vRNAs 277 +vaad 464 vaagmaer 95 vaalite 347 vaastu 201 @@ -494672,6 +498353,8 @@ vacillatory 1925 vacked 48 vacking 191 vacoufs 435 +vacreation 307 +vacreator 354 vacs 4830 vacua 106870 vacuate 494 @@ -495598,6 +499281,8 @@ variously 2935460 variousness 11414 varis 2545 variscite 3906 +varispeed 1729 +varispeeded 215 varistor 8361 varistors 7202 varitype 290 @@ -495811,6 +499496,7 @@ vassal 1241256 vassalage 233078 vassalages 1567 vassaldom 3504 +vassaled 146 vassaless 118 vassalhood 200 vassalic 3609 @@ -495938,6 +499624,7 @@ vayvodes 399 vazir 10762 vazirs 1391 vb 383787 +vbg 95 vbs 10800 vcrna 460 vdo 1587 @@ -496287,7 +499974,6 @@ venalization 189 venalized 427 venally 1592 venanzite 133 -venary 1073 venatic 2469 venatica 1581 venatical 172 @@ -496326,6 +500012,8 @@ vendor 3134717 vendored 55 vendoring 77 vendors 1673423 +vendorship 166 +vendours 67 vendress 163 vends 15976 vendue 12277 @@ -496830,6 +500518,8 @@ verificationist 19794 verificationists 2271 verifications 70960 verificative 279 +verificator 304 +verificators 241 verificatory 2655 verified 3197486 verifier 42141 @@ -496845,6 +500535,7 @@ verisimilarly 141 verisimilitude 297230 verisimilitudes 2847 verisimilitudinous 1563 +verisimilous 141 verism 2778 verismo 24676 verist 776 @@ -497130,6 +500821,7 @@ vertical 18798596 verticalisation 1645 verticalise 171 verticalised 640 +verticalising 97 verticalism 2032 verticalities 543 verticality 75005 @@ -497558,6 +501250,8 @@ vibrissa 10799 vibrissae 31211 vibrissal 4748 vibroacoustic 3170 +vibroblade 456 +vibroblades 135 vibrocompaction 1660 vibroflot 1129 vibroflotation 2641 @@ -497780,7 +501474,6 @@ video 6909748 videoangiography 461 videoblog 157 videoblogs 153 -videocall 61 videocam 1113 videocams 457 videocassette 80882 @@ -497788,7 +501481,6 @@ videocassettes 42659 videocast 281 videocasting 198 videocasts 485 -videochat 387 videoclips 1954 videocon 55 videocracy 350 @@ -497928,6 +501620,8 @@ viewlessly 942 viewly 672 viewphone 1112 viewphones 155 +viewplate 876 +viewplates 192 viewpoint 2761132 viewpoints 837080 viewport 47022 @@ -498402,6 +502096,7 @@ violins 750713 violist 26001 violists 6060 violle 518 +violles 378 viologen 18051 viologens 2322 violoncelli 3472 @@ -498434,6 +502129,7 @@ viperous 24704 viperously 279 vipers 236495 vipery 138 +vipper 386 vira 15998 viraemia 31632 viraemias 786 @@ -498484,6 +502180,7 @@ virgaters 7340 virgates 179742 virger 1513 virgers 1045 +virges 799 virgil 7985 virgils 273 virgin 3879088 @@ -498790,6 +502487,9 @@ visionless 6693 visionlike 184 visions 4232421 visiospatial 209 +visiphone 1507 +visiplate 1107 +visiscreen 509 visit 44223245 visitability 1233 visitable 11676 @@ -498806,7 +502506,6 @@ visited 22498036 visitedst 441 visitee 784 visitees 388 -visiter 117026 visiters 143393 visites 7798 visitest 27948 @@ -499400,6 +503099,8 @@ vojvodes 109 vol 51545826 vola 32856 volador 1033 +voladora 464 +voladoras 315 volae 1354 volaemia 272 volaemic 553 @@ -499946,11 +503647,11 @@ vrows 995 vrykolakas 1069 vs 2491568 vsby 139 +vsed 200165 vt 376225 vta 3135 vtable 943 vti 14215 -vts 4470 vude 248 vug 4287 vuggy 4335 @@ -500092,6 +503793,8 @@ vum 6972 vums 122 vuvuzela 1997 vuvuzelas 1206 +vw 37324 +vws 859 vyakarana 1275 vyed 1191 vyes 590 @@ -500275,6 +503978,7 @@ waggonette 34971 waggonettes 7363 waggoning 1346 waggonload 2868 +waggonloads 3379 waggonry 165 waggons 1772357 waggy 1688 @@ -500339,6 +504043,7 @@ waiflike 3826 waifs 145010 waifts 202 waify 72 +waights 3884 wail 962760 wailed 445484 wailer 3401 @@ -500575,6 +504280,8 @@ wallaba 4866 wallabas 137 wallabies 36649 wallaby 53700 +wallah 46075 +wallahi 464 wallahs 29973 wallaroo 2450 wallaroos 973 @@ -500685,6 +504392,7 @@ wame 15312 wames 1819 wamp 1060 wampee 348 +wampi 132 wampishes 145 wampishing 173 wamps 464 @@ -500827,7 +504535,6 @@ wanty 1420 wany 2489 wanze 146 wanzing 176 -wap 24159 wapato 431 wapenshaw 256 wapenshawings 113 @@ -500935,7 +504642,6 @@ wardsmen 7219 wardswoman 1391 wardswomen 989 ware 4176939 -wared 9696 warehou 1217 warehouse 3161166 warehoused 205423 @@ -500996,7 +504702,6 @@ warily 579947 warine 761 warines 640 wariness 225007 -waring 22622 waringin 1588 warism 396 warked 1284 @@ -501020,6 +504725,7 @@ warmable 100 warmaker 818 warmakers 2396 warman 958 +warmaster 1351 warmblood 1917 warmblooded 21035 warmbloodedness 345 @@ -501110,6 +504816,7 @@ warrantable 113718 warrantableness 1828 warrantably 24828 warranted 2544844 +warrantedly 3861 warrantedness 1031 warrantee 3001 warrantees 1263 @@ -501498,9 +505205,13 @@ waterbomber 140 waterbombing 54 waterbombs 142 waterborne 129171 +waterbouget 141 +waterbougets 911 waterbreak 1274 waterbreaks 845 waterbuck 34131 +waterbucket 662 +waterbuckets 809 waterbucks 2181 waterchamber 919 waterchambers 443 @@ -501792,6 +505503,7 @@ wavelet 171029 wavelets 149366 wavelike 29398 wavellite 7861 +wavellitic 128 wavemaker 5256 wavemakers 1267 wavemeter 31220 @@ -502092,6 +505804,7 @@ weaponshaws 223 weaponshow 52 weaponshowing 115 weaponshows 104 +weaponsmaster 171 weaponsmith 652 weaponsmiths 392 weaps 73 @@ -502229,6 +505942,7 @@ weazel 11694 weazels 2841 weazen 8175 weazened 5392 +weazles 947 web 6840942 webbased 10679 webbed 224888 @@ -502262,6 +505976,7 @@ webhead 69 webheads 139 webhook 563 webhooks 480 +webhost 225 webinar 5414 webinars 8741 webisode 602 @@ -502341,6 +506056,7 @@ wedger 367 wedgers 273 wedges 921378 wedgetail 300 +wedgewire 443 wedgewise 918 wedgie 2428 wedgies 1765 @@ -502679,6 +506395,7 @@ wellposedness 522 wellpowered 57 wellrested 453 wells 4855669 +wellscreen 239 wellside 642 wellsites 310 wellspring 60123 @@ -503010,6 +506727,7 @@ whaps 747 whar 55866 wharangi 74 whare 57760 +wharekai 116 wharenui 1255 whares 3747 wharf 1792385 @@ -503226,7 +506944,9 @@ wheelslip 3844 wheelsman 648 wheelsmen 62 wheelspin 8890 +wheelspinning 311 wheelspins 55 +wheelspun 83 wheelstones 182 wheelswarf 425 wheeltapper 184 @@ -503284,6 +507004,7 @@ whelps 116813 when 817478157 when'd 453 when'll 695 +when're 586 whenabout 54 whenabouts 291 whenas 91906 @@ -503465,6 +507186,7 @@ whimpling 579 whims 577258 whimsey 11988 whimseys 3521 +whimsic 201 whimsical 959831 whimsicalities 17491 whimsicality 45985 @@ -503616,6 +507338,8 @@ whirlpooled 464 whirlpooling 563 whirlpools 131605 whirls 239427 +whirlstorm 365 +whirlstorms 141 whirlwig 444 whirlwigs 305 whirlwind 867339 @@ -504288,6 +508012,7 @@ wifeliness 1781 wifeling 139 wifelkin 504 wifely 139779 +wifery 9279 wifes 31759 wifeship 552 wifeswapping 684 @@ -504802,6 +508527,7 @@ winelike 559 winemaker 73451 winemakers 69478 winemaking 122797 +winemaster 211 winemerchant 10106 winemerchants 3287 winepot 592 @@ -505229,6 +508955,7 @@ witch 2859587 witcha 356 witchcraft 1869668 witchcrafts 25441 +witchcrafty 50 witchdom 168 witched 18013 witcher 5579 @@ -505869,6 +509596,7 @@ woodinesses 99 wooding 23247 woodkern 274 woodland 3173544 +woodlanded 238 woodlander 4460 woodlanders 6511 woodlands 1115390 @@ -506618,6 +510346,8 @@ wouldnae 12035 woulds 4585 wouldst 967783 wouldya 473 +wouled 135 +wouls 1406 wound 16378667 woundable 504 woundcare 658 @@ -506730,6 +510460,7 @@ wrathy 3355 wraxling 126 wreak 348076 wreaked 165336 +wreaker 791 wreakers 270 wreakes 1511 wreakest 216 @@ -506739,7 +510470,6 @@ wreaks 34910 wreath 1753561 wreathe 69898 wreathed 501249 -wreathen 10092 wreather 723 wreathes 44168 wreathing 81917 @@ -507331,6 +511061,7 @@ xenolite 236 xenolith 24008 xenolithic 11112 xenoliths 113656 +xenological 625 xenologist 846 xenologists 409 xenology 839 @@ -507716,6 +511447,7 @@ yagna 1653 yagnas 457 yagona 653 yagouaroundi 347 +yagua 464 yaguarondi 209 yaguarundi 330 yagura 609 @@ -507785,11 +511517,13 @@ yamboo 169 yamboos 253 yamen 34457 yamens 3967 +yammed 130 yammer 5535 yammered 5052 yammering 16129 yammerings 271 yammers 773 +yamming 130 yamogenin 378 yamp 128 yampa 265 @@ -507873,6 +511607,8 @@ yardarms 11650 yardbird 450 yardbirds 165 yarded 12807 +yarden 563 +yardens 111 yarder 3936 yarders 1232 yardful 616 @@ -508161,6 +511897,7 @@ yeggman 260 yeggmen 228 yeggs 896 yeh 111377 +yehu 406 yekke 147 yekkes 96 yeld 37897 @@ -508210,6 +511947,7 @@ yellowishness 968 yellowleg 99 yellowlegs 1850 yellowly 2442 +yellowness 75269 yellowred 1661 yellowroot 94 yellows 366996 @@ -508227,6 +511965,7 @@ yellowwoods 510 yellowwort 156 yellowy 33150 yells 539642 +yelly 462 yelm 919 yelming 213 yelms 593 @@ -508250,6 +511989,7 @@ yender 1152 yenite 767 yenned 150 yenning 71 +yenny 183 yens 13953 yenta 1027 yentas 309 @@ -508370,6 +512110,8 @@ yey 5066 yeyo 832 yh 18439 yi 406492 +yibbum 590 +yibum 302 yichud 337 yichus 373 yid 9719 @@ -508763,7 +512505,6 @@ yrn 2446 yron 109668 yrs 1434724 ys 905679 -yt 1185634 ytd 1407 ytf 1287 ythe 13113 @@ -508941,6 +512682,7 @@ zain 3614 zains 298 zaire 5779 zaires 6793 +zaisan 345 zaitech 1091 zajal 6145 zak 4713 @@ -509087,6 +512829,7 @@ zazen 16509 zazz 411 zazzy 123 ze 473691 +zea 36644 zeacarotene 731 zeagonite 373 zeal 10319220 @@ -509106,6 +512849,7 @@ zealousy 454 zeals 4875 zean 580 zearalenone 16966 +zeas 872 zeatin 11854 zeaxanthin 23239 zeaxanthine 248 @@ -509466,6 +513210,7 @@ zincworker 365 zincworkers 156 zincy 1623 zindabad 718 +zindan 175 zindik 137 zindiq 1193 zindiqs 301 diff --git a/data/dicts/v0~draft1/words_en-US.fldic b/data/dicts/v0~draft1/words_en-US.fldic index 346c447..346b49d 100644 --- a/data/dicts/v0~draft1/words_en-US.fldic +++ b/data/dicts/v0~draft1/words_en-US.fldic @@ -334,15 +334,18 @@ ADUs 8620 ADV 706006 ADVs 5107 ADW 64578 +ADX 70859 ADs 111125 AEA 739981 AEAP 5909 AEB 107976 AEC 8322884 +AECOPD 7620 AED 570850 AEDST 191 AEDT 2361 AEDs 187039 +AEEU 3335 AEF 432895 AEFI 2712 AEM 173909 @@ -408,8 +411,11 @@ AFSCME 829901 AFSM 10916 AFSMs 1148 AFSP 9049 +AFSS 50300 AFT 947642 +AFTN 15907 AFTRA 255557 +AFTS 8021 AFU 53030 AFUD 4793 AFUE 26862 @@ -494,7 +500,6 @@ AIRMET 15543 AIRMETs 5948 AIS 994160 AISD 26210 -AISI 849520 AISP 6934 AISs 15801 AIT 424643 @@ -522,6 +527,7 @@ ALARP 16109 ALBM 7532 ALBMs 711 ALC 574700 +ALCL 43213 ALCM 159357 ALCMs 64860 ALCO 148135 @@ -573,6 +579,7 @@ AMGN 4063 AMGOT 13461 AMHS 24757 AMI 1191911 +AMIR 44604 AMIs 29398 AML 1234710 AMLCD 30965 @@ -589,6 +596,7 @@ AMPA 287345 AMPAS 52177 AMPK 97509 AMPS 289238 +AMPTP 20251 AMR 596851 AMRAAM 99529 AMRAAMs 5058 @@ -603,7 +611,6 @@ AMUs 5367 AMV 142627 AMVETS 259286 AMVs 2318 -AN 48618847 ANA 2303505 ANAs 30156 ANCC 37449 @@ -690,6 +697,7 @@ APICs 3700 APIPA 20586 APIX 3211 APIs 666088 +APK 47084 APL 1156745 APLS 20452 APLers 164 @@ -742,7 +750,6 @@ ARCA 69562 ARCH 1067361 ARCIC 18484 ARD 1184676 -ARDS 711675 AREs 19727 ARF 898359 ARFCN 988 @@ -756,9 +763,11 @@ ARIN 27434 ARLD 2502 ARM 2019976 ARMA 465210 +ARMD 38827 ARMY 6736131 ARMs 370759 ARNG 390595 +ARNI 6588 ARNK 437 ARNP 21521 ARO 1019026 @@ -813,6 +822,7 @@ ASCOB 1724 ASCs 100738 ASD 1825306 ASDF 16488 +ASDH 3043 ASDIC 11445 ASDS 26967 ASDs 112838 @@ -938,6 +948,7 @@ AUC 778581 AUCs 29284 AUM 356724 AUMF 46618 +AUN 13290 AUP 50486 AUPE 954 AUPs 9059 @@ -964,7 +975,6 @@ AVIF 541 AVL 180273 AVLB 14536 AVLBs 2069 -AVM 374129 AVMs 167032 AVN 136828 AVNRT 51693 @@ -1017,9 +1027,12 @@ AZN 12937 AZO 89603 AZT 590521 Aa 1910665 +Aabenraa 8211 Aabrey 167 Aach 25001 Aachen 1016459 +Aachener 22880 +Aacheners 490 Aadi 9731 Aafia 4199 Aagaard 80942 @@ -1281,6 +1294,7 @@ Abernathy 962329 Abernethian 1939 Abernethy 810129 Aberporth 3520 +Abersychan 1971 Abertam 296 Abertawe 1550 Aberthaw 56023 @@ -1386,6 +1400,7 @@ Abouds 105 Aboukir 128536 Abovian 7953 Abovyan 4095 +Aboyne 23367 Abp 120772 Abplanalp 44286 Abplanalps 99 @@ -1417,6 +1432,7 @@ Abramovs 559 Abramowitz 378173 Abramowitzes 418 Abrams 4354023 +Abramses 2147 Abramsky 44376 Abramson 1114942 Abramsons 1669 @@ -1480,6 +1496,7 @@ Abuladze 12376 Abulfeda 61253 Abun 24945 Abuna 38473 +Abunas 488 Abundantia 4347 Abundius 2473 Abundiz 1578 @@ -1535,6 +1552,7 @@ Accardi 63652 Accardis 285 Accetta 17144 Accettola 494 +Accettura 2940 Accident 12531002 Accomac 259245 Accomack 244357 @@ -1623,6 +1641,7 @@ Achi 88363 Achih 370 Achillean 11533 Achilles 4768559 +Achimota 39370 Achin 53798 Achinese 24768 Achir 1903 @@ -1633,6 +1652,7 @@ Achmimic 1765 Achnacloich 287 Achnasheen 1369 Achnashellach 462 +Achnera 117 Acholi 100460 Acholiland 3856 Acholis 2303 @@ -1715,6 +1735,7 @@ Acroceraunian 8608 Acropolis 1210593 Acropolitan 439 Actaeon 153117 +Actaeons 1106 Acteon 47240 Acteons 1014 ActionScript 332118 @@ -1750,6 +1771,8 @@ Adaline 255047 Adalyn 5226 Adalynn 568 Adam 32772396 +Adamandia 187 +Adamantia 7908 Adamantidis 1051 Adamatzky 2022 Adamawa 71338 @@ -1811,6 +1834,7 @@ Adders 47221 Adderson 10781 Adderstone 3243 Addey 11961 +Addi 175030 Addick 2985 Addicks 189833 Addicott 74628 @@ -1821,6 +1845,7 @@ Addington 780983 Addingtonian 269 Addingtonians 553 Addingtons 2252 +Addis 1847940 Addiscombe 30727 Addison 9453867 Addisonian 95160 @@ -1857,6 +1882,7 @@ Adelina 218345 Adeline 1245970 Adeliza 26438 Adell 129556 +Adelma 11388 Adelman 830017 Adelmann 51293 Adelmanns 355 @@ -1892,6 +1918,9 @@ Adiabenian 1170 Adiabenians 1995 Adiaphorist 936 Adiaphorites 157 +Adib 55592 +Adibasi 1156 +Adibasis 921 Adicia 3979 Adidas 207711 Adidases 898 @@ -1908,6 +1937,7 @@ Adirondack 2411954 Adirondacker 2245 Adirondackers 5595 Adirondacks 1388371 +Adit 85738 Adithya 1489 Aditi 79665 Aditya 76509 @@ -1946,6 +1976,7 @@ Adm'x 91292 Administrator 54580821 Administrators 6319413 Admiral 30387214 +Admiralties 48154 Admiralty 6430495 Admire 173852 Admonitionists 157 @@ -2041,6 +2072,7 @@ Aeaea 12015 Aeaean 2437 Aedo 8048 Aedui 43190 +Aegaean 11767 Aegaeon 4288 Aegean 1829487 Aegeans 7947 @@ -2117,6 +2149,8 @@ Afar 401631 Afaria 1217 Afars 60255 Afeefa 327 +Afemai 185 +Afenmai 1392 Aferdita 674 Afers 1711 Affeldt 37919 @@ -2193,6 +2227,7 @@ Africological 1047 Africologist 264 Africologists 502 Africology 4893 +Africs 5699 Afridi 49025 Afridis 27960 Afrihili 1032 @@ -2262,6 +2297,7 @@ Afsharids 521 Afshars 3166 Afton 569253 Afula 22380 +Afyon 21731 Afyonkarahisar 3106 Ag 12618214 AgNW 576 @@ -2314,6 +2350,8 @@ Ager 307710 Agers 128711 Agesilaus 308801 Aggadic 24793 +Aggadist 738 +Aggadists 704 Aggadot 6658 Aggadoth 1564 Aggarwal 246344 @@ -2352,6 +2390,9 @@ Agler 44672 Aglianico 10960 Aglionby 35085 Aglionbys 161 +Aglipayan 10225 +Aglipayanism 1339 +Aglipayans 4465 Aglukark 900 Aglukkaq 241 Agne 37230 @@ -2360,6 +2401,7 @@ Agner 30498 Agners 227 Agnes 9258955 Agnesian 1979 +Agnesse 328 Agnew 2367223 Agnewian 166 Agnews 94922 @@ -2396,6 +2438,7 @@ Agrios 12830 Agrippa 1415631 Agrippina 428266 Agrippinian 1450 +Agron 1016783 Agta 45879 Agtas 747 Aguado 87076 @@ -2483,6 +2526,7 @@ Ahlstroms 385 Ahluwalia 95382 Ahluwalias 303 Ahmad 2579266 +Ahmadabad 44403 Ahmadi 156541 Ahmadinejad 202875 Ahmadis 38829 @@ -2527,6 +2571,7 @@ Ahwaz 72880 Ai 2934457 AiG 5283 Aias 94255 +Aibonito 45922 Aichele 30185 Aichholz 3364 Aichi 326200 @@ -2559,6 +2604,7 @@ Aikin 344048 Aikins 85418 Aikman 323266 Aikmans 609 +Ailan 7036 Aileen 751066 Ailes 281784 Ailie 77687 @@ -2619,6 +2665,7 @@ Aisne 441931 Aispuro 2005 Aissor 340 Aissors 1223 +Aitch 18287 Aitchison 388805 Aitken 1200928 Aitkenhead 17200 @@ -2633,6 +2680,7 @@ Aitutaki 50697 Aitutakian 595 Aitutakians 671 Aivilik 7801 +Aiwo 1875 Aiyana 14651 Aizawl 4266 Aizu 48779 @@ -2674,6 +2722,7 @@ Akaroa 16009 Akasagarbha 1695 Akash 30937 Akaska 9770 +Akathistoi 367 Akathistos 8277 Akau 12413 Akawaio 11061 @@ -2728,6 +2777,7 @@ Akhwan 2098 Akiba 369001 Akihabara 13930 Akiko 216553 +Akil 88379 Akin 1023525 Akina 37361 Akins 392602 @@ -2777,6 +2827,7 @@ Akulas 1772 Akure 14056 Akureyri 39407 Akutagawa 82246 +Akwesasne 85104 Akyab 48526 Al 42919458 Ala 4238193 @@ -2799,6 +2850,7 @@ Alagwa 1518 Alai 116645 Alaia 12211 Alaimo 57824 +Alain 2344332 Alaina 61648 Alais 82313 Alakananda 2629 @@ -2825,6 +2877,7 @@ Alana 339413 Alanah 3154 Alander 16819 Alanders 6007 +Alandra 15036 Alani 86930 Alania 13453 Alanic 5039 @@ -2936,6 +2989,7 @@ Albertus 532326 Albertville 142109 Alberty 132388 Albertys 213 +Albery 59574 Albeth 413 Albi 173829 Albia 214096 @@ -2954,6 +3008,7 @@ Albiter 443 Albo 135622 Albon 74567 Albor 8110 +Alboreto 3295 Albornoz 99610 Alborough 6633 Albors 3734 @@ -3107,6 +3162,7 @@ Aldricks 2243 Aldridge 1054623 Aldridges 3264 Aldrin 387641 +Aldringham 2827 Aldrington 1551 Aldrins 395 Aldus 474345 @@ -3125,6 +3181,7 @@ Aleena 14321 Alegranza 1489 Alegre 639097 Alegres 7512 +Alegria 154152 Aleh 5556 Aleisha 6576 Aleister 104311 @@ -3167,10 +3224,12 @@ Aleshire 88622 Aleshires 238 Alesi 36485 Alesis 48692 +Alessandra 232594 Alessandria 123337 Alessandro 1475616 Alessandros 1779 Alessi 188449 +Alessia 26582 Alessis 1142 Aletha 80317 Aletsch 22057 @@ -3248,6 +3307,7 @@ Alfreton 13149 Alfrey 82579 Alfreys 115 Alfven 424015 +Alfvenic 20129 Alfy 23513 Algarin 20900 Algarkirk 1235 @@ -3364,10 +3424,12 @@ Alkman 18544 Allaah 8417 Allah 4807252 Allahabad 581136 +Allahs 2707 Allain 161304 Allains 862 Allaire 254602 Allaires 1224 +Allais 84942 Allam 59730 Allamakee 142772 Allaman 25719 @@ -3525,6 +3587,7 @@ Allyson 242655 Allyssa 7241 Alma 5963444 Almach 3090 +Almagest 148532 Almagro 313312 Almaguer 45556 Almain 23897 @@ -3622,6 +3685,7 @@ Alphaeus 82099 Alphamstone 476 Alphard 15198 Alpharetta 147362 +Alphas 94974 Alphecca 3804 Alpherat 787 Alpheratz 9934 @@ -3665,6 +3729,7 @@ Alsop 866206 Alspaugh 57732 Alspaughs 227 Alston 1532253 +Alstonefield 603 Alsup 106147 Alsups 589 Alsvid 567 @@ -3689,6 +3754,7 @@ Altdorf 80343 Altea 18885 Altemose 24666 Altemus 105059 +Altenbeken 936 Altenberg 104428 Altenbergs 599 Altenburg 231647 @@ -3712,6 +3778,7 @@ Althorpe 33147 Althouse 157195 Althouses 279 Althusserian 44829 +Althusserianism 2939 Althusserians 3624 Altice 10605 Altidor 1211 @@ -3720,6 +3787,7 @@ Altieri 176864 Altieris 272 Altiers 211 Altimari 15189 +Altina 9338 Altiplano 142135 Altizer 112395 Altizers 399 @@ -3879,6 +3947,7 @@ Amalthea 60929 Amalthean 647 Amaltheia 6506 Amamiya 8047 +Aman 367967 Amanab 2442 Amanar 4792 Amanda 6273925 @@ -3931,6 +4000,7 @@ Amavasya 1996 Amawaka 589 Amaya 188212 Amayah 2278 +Amaziah 263043 Amazigh 35852 Amazighs 1237 Amazon 6187431 @@ -4003,6 +4073,7 @@ Amcit 657 Amcits 935 Amdahl 235950 Amdahls 735 +Amdavad 629 Amdo 50704 Amduat 7629 Ameche 98449 @@ -4051,6 +4122,7 @@ Americanistic 2725 Americanistics 1257 Americanists 295678 Americanitis 5776 +Americanity 2731 Americanizable 134 Americanization 1938303 Americanizations 1557 @@ -4125,6 +4197,7 @@ Amery 365435 Ames 13048780 Amesbury 701466 Amescua 13463 +Ameses 10323 Amesquita 2323 Amess 8462 Amesses 459 @@ -4406,6 +4479,7 @@ Anatolia 1278805 Anatolian 555022 Anatolians 16883 Anatolias 121 +Anatolic 4325 Anatolius 51072 Anatoliy 165414 Anatoly 456184 @@ -4426,6 +4500,7 @@ Ancells 311 Ancenis 10324 Anchediva 179 Ancheta 26603 +Anching 2797 Anchises 244204 Anchondo 9333 Anchor 4371255 @@ -4755,6 +4830,7 @@ Angoras 56852 Angostura 315536 Angotti 26339 Angoumois 75331 +Angram 1876 Angrez 2629 Angrezabad 133 Angria 29247 @@ -4785,6 +4861,7 @@ Anhui 425451 Anhur 14621 Anhwei 213842 Ani 560684 +Anian 58870 Aniceto 41268 Anicetos 100 Anicetus 46607 @@ -4949,6 +5026,7 @@ Ansels 1782 Anshan 118995 Anshar 15801 Anshur 177 +Ansichow 519 Anslee 997 Ansley 435843 Ansleys 857 @@ -5030,6 +5108,7 @@ Antiguans 14808 Antikamnia 57250 Antikythera 24769 Antilegomena 8750 +Antilhue 557 Antilia 18506 Antilibanus 10873 Antill 72994 @@ -5223,6 +5302,7 @@ Apas 13326 Apatow 15842 Apaturia 7977 Apayao 21814 +Apaza 4647 Apedale 1399 Apeldoorn 52795 Apeliotes 1811 @@ -5246,6 +5326,7 @@ Api 126950 Apia 429867 Apicella 36602 Apician 4872 +Apley 126576 Aplin 99575 Aplins 117 Apma 1596 @@ -5378,6 +5459,7 @@ Aqaba 370935 Aqal 508 Aqdas 14317 Aqedah 11692 +Aqil 19908 Aqsu 3928 Aquaforte 761 Aquarian 195505 @@ -5487,6 +5569,8 @@ Arakelyan 19566 Araki 260492 Araks 19999 Aral 501779 +Araldite 77614 +Araldites 328 Aralkum 166 Aram 901120 Aramaean 103487 @@ -5693,6 +5777,7 @@ Ardath 59543 Ardee 23885 Ardeer 6060 Ardelean 6945 +Ardeley 1887 Ardelia 57003 Arden 2331891 Ardene 5321 @@ -5700,6 +5785,7 @@ Ardennes 654389 Ardern 26664 Ardersier 2224 Ardgay 1399 +Ardglass 7597 Ardhamagadhi 2124 Ardian 6605 Ardians 196 @@ -5877,6 +5963,7 @@ Arie 359226 Ariel 2592818 Ariella 52867 Arielle 110923 +Ariels 11411 Aries 1406942 Arieses 114 Arietian 515 @@ -5929,6 +6016,7 @@ Aristoteleans 1993 Aristoteles 152300 Aristotelian 2818549 Aristotelianism 242751 +Aristotelianly 148 Aristotelians 150110 Aristotelic 10757 Aristotelism 1979 @@ -5975,6 +6063,7 @@ Arkhimedes 1078 Arkholme 397 Arkie 19442 Arkies 13912 +Arkinstall 5516 Arkite 11652 Arkites 6393 Arklatex 1584 @@ -6001,6 +6090,8 @@ Arlene 1596246 Arleng 242 Arles 486281 Arlesey 2328 +Arlesian 5815 +Arlesians 971 Arleta 39166 Arley 114159 Arlidge 23996 @@ -6216,6 +6307,9 @@ Arps 221999 Arquette 76962 Arquettes 367 Arraf 3425 +Arragon 237984 +Arragonian 4479 +Arragonians 921 Arram 12822 Arrambide 6575 Arran 377881 @@ -6312,7 +6406,9 @@ Artemisa 27066 Artemisian 3982 Artemision 30144 Artemisium 64126 +Artemivsk 499 Artemiy 505 +Artemovsk 5669 Arter 165919 Arterberry 17565 Arterburn 38104 @@ -6338,6 +6434,7 @@ Artigas 179152 Artigat 2471 Artin 163071 Artina 4226 +Artingstall 12110 Artinian 60118 Artinskian 29603 Artio 4115 @@ -6617,7 +6714,6 @@ Ashlyn 55623 Ashlynn 15751 Ashman 292056 Ashmans 763 -Ashmere 2661 Ashmole 150516 Ashmolean 211114 Ashmore 533457 @@ -6631,6 +6727,7 @@ Ashopton 310 Ashover 5631 Ashow 1278 Ashperton 300 +Ashprington 1205 Ashqelon 9104 Ashrafi 19944 Ashrafis 3205 @@ -6768,6 +6865,7 @@ Aspermont 27559 Aspers 19412 Aspie 4999 Aspies 4085 +Aspilcueta 824 Aspinall 689169 Aspinalls 1125 Aspinwall 741343 @@ -7008,6 +7106,7 @@ Athirne 869 Athletic 6292848 Athletics 2670492 Athlone 354390 +Athlumney 1303 Athol 741756 Athole 55403 Atholl 119109 @@ -7311,6 +7410,7 @@ Aurelia 759039 Aurelian 433547 Aurelians 3750 Aurelius 1522294 +Auric 99411 Aurica 3479 Auriemma 19539 Auriga 85297 @@ -7322,9 +7422,11 @@ Aurillac 51722 Aurland 12481 Aurobindo 250924 Aurora 7576927 +Auroran 5293 Aurthur 21805 Aurum 99921 Aus 1140061 +Ausbau 22398 Ausbrooks 4174 Ausbruch 13769 Ausbruchs 496 @@ -7352,6 +7454,8 @@ Austen 3077753 Austenesque 695 Austenian 4543 Austeniana 257 +Austenians 167 +Austenish 882 Austenite 139531 Austenites 1225 Auster 260490 @@ -7594,7 +7698,6 @@ Avraam 8977 Avraham 411063 Avril 348636 Avrils 300 -Avus 9741 Aw 1806904 Awa 209852 Awaba 667 @@ -7726,11 +7829,13 @@ Aymond 20815 Ayn 406992 Aynesworth 32769 Aynho 3872 +Aynilian 283 Aynu 766 Ayodhya 132623 Ayodhyan 112 Ayon 21832 Ayons 1148 +Ayoreo 18243 Ayotte 62403 Ayottes 613 Ayoub 127780 @@ -7752,6 +7857,7 @@ Ayto 11501 Ayton 63292 Aytons 231 Aytos 852 +Aytoun 83377 Ayu 28203 Ayub 408583 Ayuko 1830 @@ -7884,6 +7990,7 @@ BAML 4228 BAN 698051 BANANA 170238 BANANAs 4616 +BAOR 13035 BAP 305400 BAPs 8495 BAR 3885697 @@ -7904,6 +8011,7 @@ BATFE 4078 BATNA 49123 BATNAs 6037 BATNEEC 3177 +BATUS 11222 BAe 83797 BAs 118444 BB 4238064 @@ -7919,8 +8027,6 @@ BBDs 2059 BBE 45630 BBEG 232 BBFC 13007 -BBG 212875 -BBGs 868 BBI 87549 BBIs 690 BBL 219519 @@ -7950,7 +8056,6 @@ BCAAs 28284 BCAR 34293 BCARs 151 BCBS 89597 -BCC 585113 BCCA 13108 BCCI 505772 BCCs 62472 @@ -7965,7 +8070,6 @@ BCM 221872 BCMS 7968 BCMs 2354 BCN 77968 -BCNU 241687 BCOF 6365 BCP 513424 BCPC 13263 @@ -7980,6 +8084,7 @@ BCTF 6034 BCTs 30415 BCVA 15070 BCs 70899 +BCx 1146 BD 2624127 BDA 161786 BDAC 33765 @@ -8001,7 +8106,8 @@ BDW 30672 BDs 21869 BE 30120956 BEA 1977508 -BEC 245495 +BEAM 1810093 +BEAST 149594 BECO 23391 BEDMAS 241 BEE 878014 @@ -8038,11 +8144,13 @@ BFPO 1618 BFQ 6673 BFTT 1482 BFs 45694 +BG 1784167 BGAN 6043 BGH 84680 BGP 402321 BGSU 21511 BGT 39716 +BH 1277007 BHB 35783 BHBs 647 BHCA 78330 @@ -8065,6 +8173,7 @@ BIEs 3605 BIF 363940 BIFA 2890 BIFF 49998 +BIFs 16820 BIG 4319550 BIGs 4339 BIL 158808 @@ -8078,10 +8187,12 @@ BIOT 33533 BIP 192859 BIPM 53436 BIPV 12971 +BIPs 13006 BIR 111945 BIRG 4627 BIRGing 3293 BIRT 25352 +BIS 1310583 BISDN 43518 BITD 833 BITNET 158945 @@ -8098,6 +8209,7 @@ BKE 6024 BKN 14059 BL 2864159 BLA 262380 +BLAS 96297 BLAST 823968 BLASTed 445 BLASTing 423 @@ -8113,6 +8225,7 @@ BLINKs 991 BLIS 16946 BLK 87704 BLL 226061 +BLLs 32591 BLM 7230779 BLMers 311 BLOD 968 @@ -8151,8 +8264,8 @@ BMT 532168 BMTH 260 BMTs 6633 BMV 71393 -BMW 1531290 -BMWs 86161 +BMW 1531290 p +BMWs 86161 p BMX 80829 BMXer 514 BMXers 1214 @@ -8163,6 +8276,7 @@ BN 2108249 BNC 253110 BNCs 4783 BND 135099 +BNDD 132934 BNF 229985 BNFs 2348 BNI 79262 @@ -8178,6 +8292,7 @@ BNS 154102 BNSF 189554 BOAC 228929 BOAT 1246736 +BOATs 20635 BOB 1889031 BOBs 2492 BOC 976090 @@ -8223,7 +8338,9 @@ BPAI 22103 BPBs 1022 BPC 218522 BPD 821670 +BPE 58143 BPEL 58615 +BPEs 1257 BPI 439446 BPL 275162 BPM 364138 @@ -8233,8 +8350,9 @@ BPOE 40565 BPON 5268 BPOs 4655 BPP 269267 -BPPV 48945 BPR 464135 +BPV 101016 +BPVs 2083 BPaaS 1268 BPh 12687 BPhil 4846 @@ -8260,6 +8378,7 @@ BRIC 86333 BRICS 81683 BRICs 24860 BRK 60755 +BRM 178551 BRMC 4589 BRN 49640 BRNs 1391 @@ -8302,6 +8421,7 @@ BSPs 17214 BSSID 8596 BSSO 4960 BST 385016 +BSTs 12438 BSed 329 p BSer 892 BSers 468 @@ -8316,6 +8436,7 @@ BTAS 3203 BTBA 791 BTBI 547 BTC 221284 +BTD 37381 BTDT 780 BTE 87735 BTEC 13605 @@ -8365,6 +8486,7 @@ BWBs 3442 BWC 165695 BWCs 1888 BWER 4285 +BWI 252746 BWM 21963 BWMs 212 BWR 1022462 @@ -8532,6 +8654,7 @@ Bacas 16548 Bacavi 7220 Baccam 2045 Baccari 9513 +Baccarin 987 Baccaris 389 Bacchanal 59025 Bacchanalia 41584 @@ -8580,6 +8703,8 @@ Backlund 131945 Backlunds 376 Backman 379655 Backmans 770 +Backrooms 1855 +Backstein 4861 Backstop 21886 Backstrom 113875 Backus 1432018 @@ -8609,6 +8734,7 @@ Badakhshan 82107 Badal 44894 Badalamenti 37541 Badalona 12504 +Badami 34112 Badarpur 3041 Badawi 105524 Badawis 147 @@ -8666,6 +8792,7 @@ Badshahs 147 Badua 5877 Baduhenna 565 Baduk 851 +Badulla 8585 Badura 43257 Bady 19869 Bae 210365 @@ -8699,6 +8826,7 @@ Bafut 15136 Bagan 48495 Baganda 171047 Bagandji 545 +Baganuur 1296 Bagby 550457 Bagbys 1775 Bagdad 1312853 @@ -8721,6 +8849,7 @@ Baggott 60087 Baggotts 517 Baggs 205019 Bagguley 9729 +Baghal 1082 Baghchi 823 Baghdad 4291661 Baghdadi 98316 @@ -8766,6 +8895,7 @@ Bagshaw 144629 Bagshawe 48006 Bagshaws 1079 Bagshot 67912 +Bagster 78818 Bagthorpe 8068 Baguio 328813 Baguley 32556 @@ -8776,6 +8906,7 @@ Bah 704309 Bahadur 372162 Bahadurs 996 Baham 25339 +Bahama 1122998 Bahaman 48508 Bahamans 4359 Bahamas 3885735 @@ -8816,6 +8947,7 @@ Bahr 917922 Bahrain 1911987 Bahraini 118052 Bahrainis 26783 +Bahrainization 845 Bahrami 23243 Bahrein 211079 Bahri 102250 @@ -8846,6 +8978,7 @@ Baikalian 11914 Baikonur 52859 Baiks 309 Bail 2086477 +Bailao 751 Baildon 34454 Bailee 146402 Bailer 128072 @@ -8910,6 +9043,7 @@ Bajans 9894 Bajau 27133 Bajaus 5416 Bajocian 59715 +Bajrangbali 245 Bajwa 24545 Bak 374227 Baka 89998 @@ -9047,6 +9181,7 @@ Baldo 88185 Baldock 160184 Baldocks 425 Baldonado 16804 +Baldonnel 3737 Baldos 8627 Baldovi 1281 Baldovinos 2755 @@ -9083,6 +9218,7 @@ Baleys 673 Balfour 3081246 Balfourian 2603 Balfours 10722 +Balfron 3893 Balgobin 3667 Balgonie 4623 Balgowan 5020 @@ -9094,6 +9230,7 @@ Balian 88751 Balians 1189 Baliceaux 879 Balicki 13926 +Balikian 2504 Balinese 655243 Balinesian 521 Balingian 847 @@ -9101,6 +9238,8 @@ Balingit 2514 Balint 235749 Balints 1171 Balistreri 34250 +Balitskiy 1174 +Balitsky 3158 Baliuag 24831 Baljit 8129 Balk 271280 @@ -9187,6 +9326,7 @@ Ballinalee 981 Ballinamore 4476 Ballinascarthy 393 Ballinascarty 113 +Ballinasloe 22085 Ballindine 4971 Balling 207668 Ballinger 1687862 @@ -9212,6 +9352,7 @@ Ballston 489699 Ballville 8226 Ballweg 38719 Ballwin 59909 +Ballybay 4890 Ballybofey 1895 Ballybrophy 1408 Ballybunion 12460 @@ -9269,6 +9410,7 @@ Balsams 71756 Balser 97571 Balsers 563 Balsham 8617 +Balsillie 15800 Balsley 116283 Balster 39569 Balsters 2187 @@ -9298,6 +9440,7 @@ Baltimoron 231 Baltimorons 249 Baltis 16735 Baltistan 42172 +Baltistani 592 Baltodano 17076 Baltonsborough 1193 Balts 67919 @@ -9351,10 +9494,14 @@ Bamfurlong 474 Bamo 8687 Bamonti 632 Bampton 209227 +Bamptons 637 Bamsey 9500 Bamum 68881 Bamyan 9247 Ban 3594200 +Banaba 24768 +Banaban 7595 +Banabans 10431 Banach 1212344 Banagher 13946 Banales 7484 @@ -9402,16 +9549,19 @@ Banderma 487 Banderovites 175 Bandersnatch 13029 Bandi 63174 +Bandikui 435 Bandini 219612 Bandis 4835 Bandjalang 4965 Bandon 228561 +Bandra 18282 Bandung 521211 Bandusia 8452 Bandusian 3568 Bandy 409163 Bandys 1786 Bane 1160763 +Baneelon 1149 Banerjee 559484 Banerjees 509 Banes 180778 @@ -9567,6 +9717,7 @@ Bao 982243 Baode 2579 Baoding 38665 Baofeng 3519 +Baohe 2719 Baoji 17561 Baokang 1433 Baos 13878 @@ -9578,6 +9729,7 @@ Baphomet 27414 Baphometic 2991 Bapticostal 255 Baptist 25461218 +Baptista 372642 Baptiste 1940745 Baptistes 12659 Baptists 4720991 @@ -9629,7 +9781,9 @@ Barassie 667 Barataria 281547 Baratol 2809 Baratta 70181 +Barawa 7377 Barawana 197 +Barawe 737 Baray 11214 Barays 181 Barb 3839011 @@ -9670,6 +9824,7 @@ Barberet 7152 Barberio 10113 Barbero 89116 Barberos 698 +Barberton 430801 Barbian 13190 Barbican 137669 Barbie 1181356 @@ -9683,6 +9838,7 @@ Barbizonians 491 Barbo 44094 Barbon 43312 Barbos 3725 +Barbosa 461262 Barbourville 154915 Barboza 126729 Barbozas 157 @@ -9701,6 +9857,7 @@ Barbuto 16026 Barca 336282 Barcaldine 8857 Barcalo 15989 +Barcas 13475 Barcelo 134855 Barcelona 5349282 Barcelonan 3327 @@ -9785,6 +9942,9 @@ Barents 480857 Bares 76251 Barese 5191 Barff 31785 +Barffed 987 +Barffing 495 +Barffs 115 Barfield 443636 Barfields 2705 Barfoot 50501 @@ -9902,6 +10062,8 @@ Barnett 5997434 Barnette 309285 Barnettes 805 Barneveld 148674 +Barnevelder 1867 +Barnevelders 1734 Barney 5873804 Barnfield 58031 Barnfields 315 @@ -9923,6 +10085,7 @@ Barno 17026 Barnoldswick 3919 Barnos 2245 Barnsbury 9890 +Barnsdale 22135 Barnshaw 4044 Barnsley 214578 Barnsleys 1315 @@ -10031,6 +10194,7 @@ Barringers 2444 Barrington 2601276 Barringtons 10743 Barrio 630290 +Barrionuevo 28988 Barrios 657936 Barris 146974 Barrises 153 @@ -10099,6 +10263,7 @@ Barthels 14879 Barthes 1148200 Barthesian 14297 Barthian 61100 +Barthianism 12577 Barthold 145034 Bartholds 453 Bartholin 237031 @@ -10189,6 +10354,7 @@ Basaa 2734 Basaldua 3681 Basallote 297 Basalt 903332 +Basant 25982 Basarwa 19905 Basas 2260 Basbanes 6529 @@ -10297,6 +10463,7 @@ Basran 9349 Basrans 3303 Basras 98 Bass 9269884 +Bassa 248934 Bassador 372 Bassaleg 1293 Bassalia 145 @@ -10339,6 +10506,7 @@ Bastille 1017186 Bastin 215333 Bastins 3647 Basto 32391 +Bastogne 225938 Baston 76281 Bastone 19502 Bastones 531 @@ -10372,6 +10540,7 @@ Batangas 219428 Batas 6915 Batavi 24755 Batavia 2773520 +Batavian 195556 Batavians 48308 Batavias 669 Batcape 42 @@ -10421,6 +10590,7 @@ Bathurst 856914 Batie 40429 Baties 579 Batish 5154 +Batista 1078907 Batiste 120628 Batistes 9183 Batken 7846 @@ -10491,6 +10661,7 @@ Batty 316933 Battye 31077 Battys 852 Batu 254239 +Batudaka 227 Batum 146049 Batuman 4445 Batumi 64276 @@ -10517,6 +10688,7 @@ Baudette 82057 Baudoin 85162 Baudoins 905 Baudrillardian 8737 +Baudrit 1803 Bauer 5944298 Bauerian 388 Bauerle 67095 @@ -10609,6 +10781,7 @@ Baxterians 1501 Baxterization 823 Bay 88198719 Bayamo 72622 +Bayana 5103 Bayannur 1400 Bayard 4094889 Bayardo 31781 @@ -10633,6 +10806,7 @@ Bayfords 153 Bayhem 151 Bayingolin 417 Bayinguoleng 167 +Bayizian 151 Bayle 669059 Baylean 798 Baylee 18677 @@ -10665,6 +10839,7 @@ Bayons 2344 Bayreuth 763235 Bays 1316640 Bayses 497 +Bayside 615040 Baysinger 41257 Baystater 111 Bayswater 154661 @@ -10733,6 +10908,7 @@ Bealers 1477 Beall 1598666 Bealls 14271 Bealtaine 4875 +Bealville 3839 Beam 6038043 Beaman 501396 Beamer 354932 @@ -10769,6 +10945,7 @@ Beardsleyesque 1482 Beardsleys 5647 Beardsworth 18862 Beardwood 15868 +Beardy 8346 Beare 192316 Bearer 762806 Bearers 277046 @@ -10785,6 +10962,7 @@ Bearspaw 1891 Bearss 129662 Bearsted 10138 Bearville 1680 +Bearwood 5366 Beary 80304 Beas 84736 Beasain 1030 @@ -10934,6 +11112,7 @@ Beckerts 424 Beckett 2886373 Beckettian 27871 Beckettians 167 +Beckfoot 2973 Beckford 421810 Beckfordian 422 Beckfords 2373 @@ -10983,6 +11162,7 @@ Bectons 281 Bedale 16411 Bedard 184148 Bedards 474 +Bedas 3775 Bedawin 41914 Bedawins 3557 Bedbrook 13763 @@ -11068,6 +11248,7 @@ Beeches 80431 Beechey 223955 Beeching 72849 Beechings 435 +Beechingstoke 217 Beechler 18859 Beechtree 10661 Beechtrees 377 @@ -11086,6 +11267,8 @@ Beedles 5144 Beefeater 59477 Beefeaters 20226 Beefheartian 221 +Beefmaster 19541 +Beefmasters 9346 Beeford 2015 Beegle 92643 Beegles 705 @@ -11293,6 +11476,7 @@ Bekan 1720 Bekasi 9044 Bekele 23129 Bekenstein 18324 +Beker 120821 Bekesbourne 2528 Beki 11313 Bekian 199 @@ -11390,6 +11574,7 @@ Belin 290704 Belinda 1453615 Belins 1374 Belisama 2791 +Belisarian 233 Belisarios 9119 Belisarius 425196 Belisle 122084 @@ -11446,6 +11631,7 @@ Bellegarde 193813 Bellegardes 14630 Bellem 8062 Bellemare 26231 +Bellenger 43400 Belleoram 895 Beller 307132 Bellerophon 365652 @@ -11505,6 +11691,7 @@ Bellots 473 Bellotte 4804 Bellotti 171628 Bellovaci 16259 +Bellovian 2463 Bellovin 16474 Bellow 806356 Bellows 1915597 @@ -11569,6 +11756,7 @@ Belteshazzar 39744 Beltian 27913 Belting 1063133 Beltings 9960 +Beltir 473 Belton 998492 Beltons 2625 Beltrami 363126 @@ -11581,6 +11769,7 @@ Belturbet 9431 Beltway 410752 Beltwood 3526 Beltz 189938 +Beluchistan 21275 Belue 18697 Belues 137 Beluga 152035 @@ -11691,6 +11880,8 @@ Benesches 201 Benesh 43401 Benett 38664 Benetts 588 +Beneventan 35326 +Beneventans 2515 Benevento 241365 Benfer 39274 Benfield 213515 @@ -11763,6 +11954,7 @@ Benllech 356 Benn 912865 Benne 168588 Bennefield 19199 +Bennelong 11688 Benner 750173 Benners 55546 Bennes 9253 @@ -11929,6 +12121,7 @@ Berdine 34354 Berdines 159 Berdyansk 7254 Berdychiv 2405 +Bereal 1678 Berean 138521 Bereans 31744 Berehove 571 @@ -11992,7 +12185,9 @@ Bergh 609579 Berghoff 50340 Berghoffs 552 Berghs 6833 +Bergi 2895 Bergin 597156 +Berginc 646 Bergins 3497 Bergland 388789 Berglands 372 @@ -12127,6 +12322,7 @@ Bernat 120258 Bernath 56577 Bernats 317 Bernays 383951 +Bernd 486521 Berndt 477631 Berndts 2703 Berndtson 20956 @@ -12174,6 +12370,7 @@ Beroeans 1333 Beros 5014 Berossian 179 Berovo 1151 +Berowra 2091 Berquist 116744 Berquists 141 Berra 359699 @@ -12232,6 +12429,8 @@ Berthelot 450943 Berthelots 926 Berthiaume 48189 Berthiaumes 261 +Berthier 363116 +Berthierville 5040 Berthold 1004094 Bertholf 92658 Bertholfs 219 @@ -12257,6 +12456,7 @@ Bertuccis 563 Berube 151030 Berubes 177 Berumen 12369 +Beruwala 1149 Bervine 127 Berwick 1798458 Berwickshire 75672 @@ -12324,6 +12524,7 @@ Beswick 122680 Beswicks 457 Bet 1933870 Beta 10389218 +Betafo 6175 Betamax 128295 Betamaxed 64 Betamaxes 1049 @@ -12390,6 +12591,8 @@ Betsileos 1492 Betsimisaraka 19165 Betsy 4365439 Bett 205879 +Bettacchi 1082 +Bettachini 450 Bettany 34761 Bettcher 28109 Bette 1131408 @@ -12479,6 +12682,7 @@ Bewicks 3806 Bewley 461228 Bewleys 2544 Bex 253019 +Bexfield 3313 Bexhill 36255 Bexley 154296 Bexleyheath 5358 @@ -12545,6 +12749,7 @@ Bhargav 1768 Bhargava 152007 Bhargavas 1026 Bhargavi 2429 +Bharuch 5313 Bhasin 46314 Bhat 211466 Bhatia 266299 @@ -12566,9 +12771,12 @@ Bhava 16142 Bhavani 29587 Bhavsar 12329 Bhaya 7194 +Bheel 5192 +Bheels 9391 Bhil 33569 Bhilai 29209 Bhili 4543 +Bhils 42223 Bhima 96839 Bhimrao 6624 Bhishma 42070 @@ -12600,6 +12808,8 @@ Bhuttos 2809 BiFi 1248 BiH 137517 BiPAP 37373 +BiS 7388 +BiWs 212 Bia 111497 Biafra 404118 Biafran 149112 @@ -12610,6 +12820,7 @@ Bialas 20909 Bialecki 11404 Bialek 41523 Bialeks 229 +Bialik 222566 Biallas 6519 Bialowas 1634 Bialowons 305 @@ -12649,6 +12860,7 @@ Biblic 10114 Biblical 9380873 Biblically 85303 Bibliodrama 1483 +Bibliolatry 9718 Biblis 31980 Bibrka 303 Bibulus 68279 @@ -12664,6 +12876,7 @@ Bick 236490 Bickel 658500 Bickell 56885 Bickels 3584 +Bickenhill 852 Bickerdike 31665 Bickershaw 995 Bickerstaff 220522 @@ -12711,6 +12924,7 @@ Biddlecombe 10601 Biddles 26235 Biddulph 119788 Biddy 551756 +Bide 392197 Bideford 74139 Biden 1087508 Bidens 157393 @@ -12899,6 +13113,7 @@ Biljan 1981 Biljana 18601 Bilje 825 Bill 137278918 +Billacombe 253 Billary 1682 Billboard 973117 Biller 261755 @@ -12978,6 +13193,7 @@ Bimbia 6516 Bimini 246627 Bimmelers 115 Bimmer 7890 +Bimmers 1242 Bims 8961 Bimshire 3732 Bin 2306048 @@ -13018,6 +13234,7 @@ Binkie 51890 Binkley 431808 Binkowski 20918 Binks 237306 +Binky 106887 Binley 16138 Binner 42930 Binney 838534 @@ -13057,6 +13274,7 @@ Biondos 359 Bionian 1597 Biot 503281 Bioteau 267 +Bipasha 1838 Bipont 8909 Bipontine 2179 Bir 434923 @@ -13091,6 +13309,7 @@ Birckbichler 4801 Bird 16371992 Birdbrook 1181 Birden 9206 +Birdham 1720 Birdhill 505 Birdie 730089 Birdlip 5960 @@ -13111,6 +13330,7 @@ Birge 502871 Birges 5393 Birgid 2320 Birgit 214435 +Birgitte 46328 Birhor 9097 Birimian 5993 Birk 240252 @@ -13155,6 +13375,7 @@ Birnbaums 1702 Birney 846027 Birneys 6313 Birnholtz 1173 +Birnirk 30438 Biro 211289 Birobidzhan 43380 Biron 459490 @@ -13173,6 +13394,8 @@ Birtley 13210 Birtwistle 45670 Birx 10538 Bisaltae 2125 +Bisayan 21918 +Bisayans 4111 Bisbee 994712 Bisbeeite 411 Bisbeeites 395 @@ -13196,6 +13419,7 @@ Biser 32527 Bisers 1581 Bises 2408 Bish 351641 +Bisham 14705 Bishamonten 3837 Bishan 10289 Bishara 71612 @@ -13363,6 +13587,7 @@ Blackbrook 5093 Blackburn 3662775 Blackburne 102524 Blackburns 15934 +Blackdog 2653 Blacker 280993 Blackerby 35172 Blackers 1971 @@ -13647,6 +13872,7 @@ Blaxhall 2193 Blaxican 672 Blaxicans 495 Blaxill 4819 +Blaxland 20439 Blay 73069 Blaydon 20656 Blaydons 239 @@ -13703,6 +13929,7 @@ Blenheim 687502 Blenheims 25464 Blenkarn 14927 Blenkinsop 65973 +Blenkinsopp 55845 Blesh 51020 Bless 2298575 Blessed 7179885 @@ -13955,6 +14182,7 @@ Blunks 365 Blunsdon 1662 Blunstone 2954 Blunt 2131124 +Bluntisham 4217 Blunts 38732 Blurton 49990 Blust 41135 @@ -14096,6 +14324,7 @@ Bodder 3564 Boddicker 17921 Boddie 198570 Boddies 787 +Boddin 1896 Boddington 70401 Boddy 184160 Boddys 353 @@ -14601,6 +14830,7 @@ Bonavista 54755 Bonavita 22511 Bonbright 221556 Bonchester 875 +Bonchurch 24197 Bond 27663359 Bondar 67577 Bondarchuk 23247 @@ -14657,6 +14887,7 @@ Bongards 6583 Bonggo 289 Bongiovanni 66202 Bongo 269783 +Bongs 13998 p Bonham 1068695 Bonhams 27644 Bonhill 34899 @@ -14668,6 +14899,7 @@ Bonifacio 252851 Bonifas 24759 Bonifatius 14415 Bonifay 53295 +Bonifaz 29293 Bonilla 759031 Bonin 392303 Bonine 94176 @@ -14848,6 +15080,7 @@ Bordas 78734 Bordeau 40582 Bordeaus 770 Bordeaux 5287313 +Bordeauxs 840 Bordelais 42915 Bordelese 435 Bordelon 102583 @@ -14872,6 +15105,7 @@ Borduria 1279 Bordwellian 180 Boreal 458725 Borean 8837 +Boreanaz 4943 Boreas 287953 Boreham 81373 Borehamwood 19644 @@ -14916,6 +15150,8 @@ Boris 4673376 Borises 1243 Borisoff 13888 Borisov 204235 +Borivali 761 +Borivli 1192 Borivoj 5453 Borivoje 6515 Borjas 131345 @@ -15088,6 +15324,8 @@ Boskets 1689 Boskett 1488 Bosko 38922 Boskoop 30315 +Boskopoid 1294 +Boskopoids 335 Boskos 1797 Boskovich 9257 Bosler 108069 @@ -15207,6 +15445,7 @@ Botswana 2341436 Botswanan 11840 Botswanans 3078 Botswanian 651 +Botswanians 177 Bottari 35092 Bottcher 83392 Bottchers 1080 @@ -15280,6 +15519,7 @@ Boulanger 564955 Boulangism 23228 Boulangist 26263 Boulangists 11195 +Boulaq 9869 Boulay 123909 Boulby 13973 Boulden 70125 @@ -15299,6 +15539,7 @@ Boulets 2884 Boulevard 12313991 Bouley 68263 Boulogne 1234705 +Boulonnais 19598 Boultbee 17149 Boulter 173273 Boulters 1157 @@ -15316,6 +15557,7 @@ Bound 6260498 Bounds 1115552 Bounevialle 337 Bountygate 385 +Bouphonia 3637 Bouquet 880197 Bouquets 105484 Bour 122943 @@ -15402,6 +15644,7 @@ Boutte 50939 Bouttes 1594 Boutwell 687009 Boutwells 1590 +Bouvette 3932 Bouvier 661503 Bouwens 15064 Bouwman 34563 @@ -15486,6 +15729,7 @@ Bowns 26627 Bowral 6457 Bowring 364023 Bowrings 2102 +Bowrington 249 Bowser 687343 Bowsers 2898 Bowsher 375575 @@ -15511,6 +15755,7 @@ Boyack 19846 Boyadjian 4673 Boyajian 52962 Boyajians 289 +Boyar 101167 Boyardee 15276 Boyarka 1308 Boyce 2788013 @@ -15633,6 +15878,7 @@ Bracken 1073195 Brackenbury 92196 Brackenburys 667 Brackenhill 2881 +Brackenridge 555226 Brackens 11125 Brackett 1376955 Bracketts 7080 @@ -15664,10 +15910,12 @@ Bradenham 15781 Bradenton 491099 Brader 60050 Braders 855 +Bradfer 1285 Bradfield 437573 Bradfields 1923 Bradford 11871328 Bradfordian 4943 +Bradfordians 763 Bradfords 40477 Bradham 56195 Bradhams 1491 @@ -15806,6 +16054,7 @@ Brama 47734 Bramall 20114 Braman 307325 Bramans 2272 +Bramantesque 2973 Bramber 27349 Brambila 12521 Bramble 437537 @@ -15889,6 +16138,8 @@ Brandtian 530 Brandts 41736 Brandwein 80087 Brandy 1550197 +Brandywine 1265764 +Brandywines 1791 Branford 793072 Brangelina 4701 Brangus 98495 @@ -16072,6 +16323,7 @@ Braymans 253 Braymer 44324 Brayon 791 Brayshaw 36721 +Brayshay 1260 Brayson 3639 Braystones 387 Brayton 1041029 @@ -16116,6 +16368,7 @@ Breakwell 30974 Bream 201960 Breams 47402 Breanna 106580 +Breant 7140 Brearley 193095 Brearleys 245 Brears 3473 @@ -16150,6 +16403,7 @@ Breconshire 19617 Brecqhou 1334 Breda 458615 Bredbury 3905 +Breddin 12359 Brede 144171 Bredes 4386 Bredeson 23477 @@ -16385,10 +16639,12 @@ Bride 2776457 Bridekirk 4477 Bridenstine 19969 Brides 368758 +Bridesburg 60333 Brideshead 78172 Bridestowe 1148 Bridford 2213 Bridge 36730119 +Bridgeburg 26626 Bridgeford 56709 Bridgefords 167 Bridgeforth 20530 @@ -16415,6 +16671,7 @@ Bridgettines 3766 Bridgetts 1335 Bridgewater 2499381 Bridgewaters 8056 +Bridgit 20395 Bridgland 16927 Bridgman 1144832 Bridgmans 2571 @@ -16425,6 +16682,7 @@ Bridgwaters 628 Bridie 182545 Bridlington 64294 Bridport 140119 +Bridstow 1293 Bridwell 247895 Bridwells 713 Brie 634695 @@ -16522,6 +16780,7 @@ Brinjaree 269 Brinjarees 317 Brinje 1373 Brink 1480740 +Brinkburn 3742 Brinken 3923 Brinker 410211 Brinkerhoff 387566 @@ -16801,6 +17060,7 @@ Broeker 32710 Broekers 385 Brogan 619685 Brogans 5995 +Brogborough 605 Brogden 161647 Brogdens 279 Brogdon 63578 @@ -16858,6 +17118,7 @@ Bronks 4030 Bronner 361508 Bronners 1724 Bronshtein 26282 +Bronski 48887 Bronson 2526075 Bronstein 267813 Bronsteins 3236 @@ -17107,6 +17368,8 @@ Bruley 31761 Brum 124154 Brumaire 271015 Brumaires 221 +Brumairian 246 +Brumairians 577 Brumback 112561 Brumbacks 287 Brumbaugh 476695 @@ -17190,6 +17453,7 @@ Brunn 288525 Brunnen 58376 Brunner 2327406 Brunners 7936 +Brunnian 1199 Brunning 35934 Bruno 5867769 Brunonian 25383 @@ -17339,6 +17603,7 @@ Buchanons 985 Buchans 24067 Bucharest 2498299 Bucharester 127 +Bucharesters 341 Bucharestian 220 Bucharestians 219 Buchas 1186 @@ -17355,6 +17620,7 @@ Buchinger 12919 Buchko 8595 Buchler 158154 Buchlers 656 +Buchlyvie 2450 Buchman 277587 Buchmanism 12821 Buchmanite 4418 @@ -17479,6 +17745,7 @@ Buddhology 7268 Buddie 69280 Buddington 166659 Buddingtons 219 +Buddle 21857 Buddy 3407243 Bude 136666 Budge 801778 @@ -17504,6 +17771,7 @@ Budulak 297 Buduma 6655 Budva 13217 Budweiser 355649 +Budweisers 9729 Budz 6295 Budzinski 18754 Budzinskis 163 @@ -17533,6 +17801,7 @@ Buelna 30952 Buelow 107382 Buelows 801 Buels 2999 +Buemi 2209 Buena 2761030 Buenaventura 482867 Buenaventuras 427 @@ -17649,6 +17918,7 @@ Bukhari 136668 Bukharinite 3934 Bukharinites 6217 Bukhoro 3633 +Bukid 1498 Bukidnon 57172 Bukovina 200220 Bukovinan 670 @@ -17664,6 +17934,7 @@ Bukvitsa 189 Bula 92140 Bulacan 129678 Bulakan 1290 +Bulaq 36619 Bulas 9251 Bulawayo 254137 Bulbrook 15062 @@ -17673,11 +17944,16 @@ Bulgakovian 1131 Bulgar 161249 Bulgaria 9315675 Bulgarian 4917504 +Bulgarianize 330 +Bulgarianized 237 Bulgarianness 518 Bulgarians 1054434 Bulgaric 1258 Bulgarism 629 Bulgarisms 144 +Bulgarize 887 +Bulgarized 866 +Bulgarizing 200 Bulgarophile 790 Bulgarophone 507 Bulgarophones 190 @@ -17778,6 +18054,7 @@ Bun 572252 Buna 417025 Bunaba 1015 Bunaban 905 +Bunas 5102 Bunbury 205180 Bunburying 4911 Bunce 535453 @@ -17893,6 +18170,7 @@ Burbas 190 Burberry 106521 Burbidge 169467 Burbidges 3957 +Burbridge 218041 Burbury 16117 Burby 72321 Burch 2244817 @@ -18001,6 +18279,7 @@ Burgoyne 1864528 Burgoynes 5081 Burgs 7782 Burgueno 2937 +Burgum 49397 Burgundian 631610 Burgundians 356138 Burgundies 57260 @@ -18144,6 +18423,7 @@ Burpees 5098 Burpham 3143 Burpo 16840 Burpos 372 +Burque 9195 Burr 7964770 Burrage 316028 Burravoe 461 @@ -18187,6 +18467,7 @@ Bursons 1039 Burstein 454547 Bursteins 835 Burston 53632 +Burstow 11999 Burt 5867472 Burtch 77671 Burtenshaw 27542 @@ -18239,6 +18520,8 @@ Busbee 147916 Busbees 2293 Busbridge 8641 Busby 940020 +Buscaglia 68372 +Buscaglias 167 Buscema 16348 Buscemi 53428 Busch 2962761 @@ -18376,6 +18659,7 @@ Butte 7803039 Butten 12495 Butter 6411149 Butterell 735 +Butterey 109 Butterfield 2309167 Butterfields 13795 Butterknowle 569 @@ -18478,6 +18762,8 @@ Bygraves 6307 Byington 359341 Byingtons 813 Bykowski 7896 +Byland 42971 +Bylands 3634 Byler 124309 Bylers 1944 Byles 303934 @@ -18566,7 +18852,9 @@ CABs 17601 CAD 5228083 CADAM 46569 CADASIL 25695 +CADD 291170 CADRe 369 +CADs 10106 CAE 887237 CAF 644406 CAFE 707686 @@ -18624,6 +18912,7 @@ CART 468294 CARTs 3816 CARs 173092 CASB 103411 +CASBs 181 CASC 47536 CASCs 575 CASE 16425817 @@ -18652,6 +18941,7 @@ CBBS 7358 CBC 1688786 CBCs 38250 CBD 1836207 +CBDC 13019 CBDV 706 CBDs 40643 CBE 409403 @@ -18673,6 +18963,8 @@ CBTp 2931 CBTs 16682 CBV 75307 CBVIR 835 +CBW 162205 +CBX 39891 CBer 5357 CBers 11285 CBs 98047 @@ -18738,8 +19030,6 @@ CCVO 134 CCVs 6136 CCW 239236 CCWs 6818 -CCed 484 -CCing 433 CCs 96330 CD 30432682 CD-ROM 461 @@ -18794,6 +19084,7 @@ CELTA 3885 CELs 5430 CEM 488375 CEMB 2720 +CEMF 16066 CEMs 23608 CEN 627115 CENTCOM 179795 @@ -18838,8 +19129,6 @@ CFH 65046 CFHs 588 CFI 319511 CFIA 28281 -CFIT 22897 -CFITs 147 CFIs 7522 CFK 29409 CFLs 41111 @@ -18848,7 +19137,6 @@ CFML 21198 CFMs 13206 CFN 65352 CFNM 564 -CFP 545213 CFPB 80965 CFPO 3599 CFR 47045655 @@ -18858,6 +19146,7 @@ CFRs 17354 CFT 324265 CFTR 274474 CFTs 11559 +CFast 341 CGA 496139 CGAs 8692 CGBD 759 @@ -18873,9 +19162,9 @@ CGNs 3436 CGO 35894 CGOs 665 CGPM 43249 -CGS 364104 CGTN 939 CGY 6705 +CH 10343018 CHA 858402 CHAOS 191913 CHAP 2998963 @@ -19070,7 +19359,9 @@ CNIB 9160 CNIC 49685 CNL 110402 CNLs 7426 +CNM 124808 CNMI 275910 +CNMs 41264 CNNers 111 CNO 548440 CNOs 12022 @@ -19088,6 +19379,7 @@ COA 629649 COAG 18388 COALition 1051 COAS 48952 +COAs 52091 COB 388170 COBOL 1580721 COBR 3425 @@ -19115,6 +19407,7 @@ COED 109364 COEs 21143 COFs 5974 COHA 25310 +COIL 636336 COIN 950841 COINTELPRO 111520 COIP 5813 @@ -19125,9 +19418,11 @@ COLREG 4379 COLREGS 77288 COLREGs 1403 COM 5384718 +COMAL 14620 COMINT 41784 COMO 89592 COMPACFLT 604 +COMSATS 3682 COMSEC 121619 COMSUBFOR 135 COMSUBPAC 5476 @@ -19183,12 +19478,15 @@ CPC 2433374 CPCM 8937 CPCMs 185 CPCTC 3501 +CPCU 136999 +CPCUs 4474 CPCs 50053 CPD 817817 CPE 1082445 CPEC 49648 CPEs 69461 CPF 206789 +CPFF 116203 CPFT 6085 CPG 302931 CPI 4814818 @@ -19229,10 +19527,12 @@ CQIs 500 CQMS 3080 CQRS 3501 CR 16995819 +CRA 1828010 CRAF 230049 CRAN 65069 CRAO 10792 CRAP 114523 +CRAs 57753 CRB 244432 CRBA 1908 CRC 3629282 @@ -19264,12 +19564,15 @@ CRPGs 3481 CRPs 17532 CRREL 217164 CRS 2207649 +CRSs 34776 CRT 3017046 CRTC 96761 CRTCs 563 CRTs 274948 CRU 149619 CRUD 50775 +CRUT 60160 +CRUTs 11631 CRUs 9541 CRV 74836 CRVO 21904 @@ -19285,6 +19588,7 @@ CSCE 902468 CSChE 3108 CSCs 66922 CSD 713188 +CSDH 6946 CSDP 45201 CSE 632841 CSEM 24355 @@ -19314,12 +19618,15 @@ CSRs 76737 CSS 2414264 CSSA 103333 CSSAs 332 +CSSes 313 +CSSs 13289 CST 958618 CSU 1091024 CSUN 46484 CSV 203125 CSVs 3820 CSX 636083 +CT 28621022 CTA 1239689 CTAB 111436 CTAL 29511 @@ -19340,6 +19647,7 @@ CTFL 1870 CTFO 1399 CTFU 154 CTG 175500 +CTGs 24416 CTI 417783 CTIS 13846 CTLD 3362 @@ -19411,7 +19719,6 @@ CVZ 7470 CVs 195069 CW 4103870 CWA 1823027 -CWB 109314 CWBs 4586 CWDs 6185 CWO 142176 @@ -19423,7 +19730,6 @@ CWR 107513 CWS 606424 CWT 246019 CWTs 5875 -CWs 25280 CX 1413715 CXC 76614 CXF 4139 @@ -19435,6 +19741,7 @@ CYF 14407 CYO 54470 CYP 262755 CYPs 30883 +CZCS 88910 CZT 47708 CZs 3650 Caaba 49176 @@ -19544,6 +19851,7 @@ Cadenhead 51236 Cadenheads 173 Cadet 2050468 Cadets 1141980 +Cadfarch 129 Cadigan 100092 Cadillac 4027270 Cadillacs 294238 @@ -19699,6 +20007,7 @@ Cainite 11497 Cainites 24243 Cainitic 765 Cainozoic 41886 +Cainscross 417 Cainta 6631 Cairene 48578 Cairenes 14259 @@ -19774,6 +20083,7 @@ Calamy 100506 Calandra 188994 Calandras 336 Calarco 30704 +Calare 660 Calas 129671 Calatayud 39967 Calatravan 519 @@ -19960,6 +20270,7 @@ Callinicum 11331 Callinus 15590 Calliope 342229 Calliopean 9714 +Calliopian 1202 Callipolis 13264 Callippic 3071 Callirrhoe 24796 @@ -20081,6 +20392,7 @@ Cambalu 8938 Cambaluc 16550 Cambas 13116 Cambay 70384 +Camber 227053 Camberley 60253 Camberwell 289184 Cambo 33114 @@ -20179,6 +20491,7 @@ Cammermeyer 27000 Cammie 126754 Cammon 28872 Cammons 707 +Cammorata 464 Cammy 87253 Camoenae 1233 Camolin 2113 @@ -20219,6 +20532,7 @@ Campbellian 7592 Campbellism 19437 Campbellite 55431 Campbellites 51158 +Campbellsburg 27631 Campbellsville 157676 Campbellton 77234 Campbelltown 33783 @@ -20323,6 +20637,8 @@ Canara 43682 Canarian 23778 Canarians 10612 Canaries 518562 +Canarsee 5004 +Canarsees 1301 Canarsie 159114 Canary 1973406 Canastota 186745 @@ -20372,6 +20688,7 @@ Candos 1341 Candraprabha 2654 Candy 4300114 Cane 3195253 +Caneadea 43832 Canedo 39875 Canedos 117 Canelo 52772 @@ -20379,6 +20696,7 @@ Canelos 26733 Canepa 111677 Canepas 420 Canes 285917 +Canet 60745 Canete 38737 Canewdon 2190 Canez 7001 @@ -20404,11 +20722,13 @@ Canizalez 477 Canklow 233 Canmore 66264 Cann 470010 +Canna 141341 Cannaday 35564 Cannadays 265 Cannady 78593 Cannae 182985 Cannan 200471 +Cannanore 18104 Cannans 1067 Cannaregio 22244 Cannata 29876 @@ -20678,6 +20998,7 @@ Capraesque 3980 Capraro 34065 Caprell 1470 Capri 837017 +Caprice 429288 Capricorn 877576 Capricornian 3969 Capricornians 1363 @@ -20701,6 +21022,7 @@ Capstick 43031 Capsticks 185 Capt 3055370 Captain 73391034 +Captains 2143650 Captcha 2983 Captchas 755 Capts 195357 @@ -20709,6 +21031,8 @@ Capuan 19349 Capuano 130597 Capuanos 867 Capuchin 422092 +Capuchiness 149 +Capuchinesses 659 Capuchino 7734 Capuchinos 4697 Capuchins 243823 @@ -20734,10 +21058,12 @@ Caracciolos 413 Caraccis 3975 Caractacus 69509 Caradine 18951 +Caradon 32566 Caradonna 13195 Caraga 9188 Caraho 307 Caramanica 4926 +Caramel 366475 Caramoan 3537 Carancas 303 Carandang 3668 @@ -20752,6 +21078,7 @@ Carattini 1611 Caravaggesque 21331 Caravaggiesque 937 Caravaggio 538842 +Caravaggisti 4514 Caravela 4083 Caravella 12175 Caravellas 8747 @@ -20771,6 +21098,8 @@ Carballo 76177 Carbaugh 89679 Carberry 239387 Carberrys 927 +Carbin 12022 +Carbins 686 Carbo 449591 Carboloy 174316 Carbon 18092310 @@ -21032,6 +21361,7 @@ Carmical 12874 Carmichael 3054234 Carmichaels 51940 Carmicheal 6535 +Carmilla 50138 Carmine 810824 Carmines 76274 Carmody 720113 @@ -21126,6 +21456,7 @@ Carosella 16748 Carotenuto 13780 Carozza 23606 Carp 933853 +Carpathia 151629 Carpathian 570705 Carpathians 478649 Carpathos 5535 @@ -21418,6 +21749,8 @@ Cashman 482446 Cashmans 1046 Cashmere 463644 Cashmeres 10318 +Cashmiri 883 +Cashmiris 95 Cashmoor 123 Cashmore 77160 Cashmores 294 @@ -21794,6 +22127,7 @@ Catt 502808 Cattal 771 Cattanach 42214 Cattaraugus 1061822 +Cattawade 443 Cattell 1300999 Cattellian 1826 Cattells 3344 @@ -21927,6 +22261,7 @@ Cavitts 481 Cavourian 3782 Cavuto 13876 Cawdrey 25159 +Cawkwell 17472 Cawley 401625 Cawnpore 187772 Cawood 131240 @@ -21973,10 +22308,13 @@ Cayson 7465 Caythorpe 1392 Cayton 210637 Caytons 871 +Cayubaba 826 Cayucos 50323 Cayuga 2422044 Cayugas 164774 Cayuse 203356 +Cayuvava 4833 +Cayuwaba 279 Caywood 124513 Caywoods 367 Caz 79022 @@ -21984,6 +22322,7 @@ Cazadero 52719 Cazares 26028 Cazarez 2177 Cazaux 25574 +Cazayoux 8218 Cazcan 3506 Cazeau 45891 Cazeaus 207 @@ -22024,6 +22363,7 @@ Cecchi 89583 Cecchini 58227 Cecchinis 111 Cecchis 469 +Cece 118216 Cecelia 682871 Cecena 2535 Cecere 27888 @@ -22040,6 +22380,7 @@ Cedano 3147 Cedar 13887243 Cedarberg 7468 Cedars 598454 +Cedarstrom 5281 Cedartown 155090 Cedarville 356806 Cedeno 39452 @@ -22078,6 +22419,7 @@ Celebean 931 Celebes 620218 Celebesian 8945 Celebesians 219 +Celebic 909 Celedon 8078 Celena 10954 Celentano 49909 @@ -22098,6 +22440,7 @@ Celik 55199 Celina 445438 Celine 509973 Celis 88465 +Celje 19394 Cella 211312 Cellas 2889 Celle 158671 @@ -22261,8 +22604,10 @@ Cerrobend 7680 Cerron 5785 Cerrone 18364 Cerros 122357 +Certa 41542 Certain 30969751 Certains 16399 +Certaldese 473 Certo 64905 Certos 802 Cerulli 41252 @@ -22329,11 +22674,14 @@ Ch'u 251893 ChB 41516 ChCh 1166 ChD 5572 +ChFC 63192 +ChFCs 2162 ChIP 62708 Cha 1252900 Chabad 141683 Chabadnik 385 Chabadniks 752 +Chaban 56225 Chabert 118390 Chaberts 804 Chabla 325 @@ -22403,6 +22751,7 @@ Chaflin 11967 Chaga 45732 Chagall 503026 Chagallian 1858 +Chagalls 7701 Chagatai 28817 Chagford 15871 Chagga 64621 @@ -22541,6 +22890,7 @@ Champaign 5550931 Champas 1504 Champeau 16695 Champenois 26710 +Champie 4510 Champies 141 Champigny 73788 Champine 14227 @@ -22602,8 +22952,10 @@ Chang'an 100381 Chang'e 6523 Changan 45697 Changbai 11347 +Changchien 1655 Changchun 344399 Changde 7803 +Changfeng 4209 Changge 746 Changhai 7829 Changhsingian 2282 @@ -22613,6 +22965,7 @@ Changji 5867 Changkiakow 462 Changle 11817 Changlo 1506 +Changma 2437 Changning 6625 Changping 12377 Changsha 414862 @@ -22625,6 +22978,7 @@ Changthang 1832 Changtse 1740 Changwon 18342 Changwu 3379 +Changxing 8421 Changxingian 2069 Changyang 3730 Changyuan 2563 @@ -22670,15 +23024,18 @@ Chaoching 1227 Chaochou 3309 Chaochow 7651 Chaochowfu 3878 +Chaohu 3780 Chaoking 141 Chaon 8730 Chaoosh 221 Chaos 2133906 Chaoshan 2102 Chaouch 6088 +Chaouen 3567 Chaouia 10887 Chaource 3679 Chaoush 629 +Chaoxian 7449 Chaoyang 55482 Chaozhou 26015 Chap 13021973 @@ -22746,12 +23103,14 @@ Chardzhev 456 Chardzhou 15647 Charedi 1085 Charedim 1164 +Chareidi 809 Charente 160939 Charest 76719 Charette 171171 Charettes 2121 Charfield 2278 Charger 345598 +Chargers 255642 Chargoggagoggmanchauggagoggchaubunagungamaugg 570 Chargoggagoggmanchauggauggagoggchaubunagungamaugg 113 Chargois 4518 @@ -22819,6 +23178,7 @@ Charminar 2540 Charndon 737 Charney 400974 Charneys 766 +Charnley 146655 Charnock 164711 Charnocks 552 Charnwood 63231 @@ -22859,12 +23219,14 @@ Charybdis 398773 Charyn 37306 Chas 10953304 Chase 20502194 +Chasetown 932 Chasey 16720 Chasid 11996 Chasidic 30193 Chasidim 37175 Chasidism 11244 Chasids 1685 +Chasidus 3474 Chaska 185179 Chaski 3963 Chaslyn 944 @@ -22878,6 +23240,8 @@ Chassidic 56213 Chassidim 42358 Chassidism 18925 Chassids 685 +Chassidus 8051 +Chassidut 1437 Chassin 86417 Chastain 413791 Chastains 3400 @@ -22913,6 +23277,7 @@ Chatteris 37535 Chatterjee 567494 Chatterjees 743 Chatterley 215653 +Chatterly 27037 Chatterton 742462 Chattertonian 1293 Chattertons 4377 @@ -22955,6 +23320,7 @@ Chauffeur 254114 Chauffeurs 1025848 Chauhan 97172 Chauhans 2661 +Chaul 11732 Chaumes 7617 Chaumont 410779 Chauncey 2251492 @@ -23059,6 +23425,7 @@ Checo 8947 Cheddar 1041454 Cheddaring 3096 Cheddington 4178 +Cheddleton 2115 Cheek 1012500 Cheely 15178 Cheema 45158 @@ -23082,6 +23449,7 @@ Cheetos 41298 Cheever 1034305 Cheevers 58210 Chefas 227 +Chefchaouen 3632 Chefoo 235513 Chefornak 3835 Cheget 1445 @@ -23115,6 +23483,7 @@ Chelsfield 3344 Chelsia 1243 Chelski 223 Chelston 4081 +Chelsy 8421 Cheltenham 998796 Cheltonian 3773 Cheltonians 317 @@ -23295,6 +23664,7 @@ Chestnut 6804246 Chestnuts 179781 Chestnutt 47247 Chestnutts 93 +Chesvan 461 Cheswardine 1680 Cheswick 91555 Chet 1464541 @@ -23317,6 +23687,8 @@ Chevenix 25701 Chevere 6255 Cheveres 371 Cheverton 23552 +Cheves 221665 +Cheveses 305 Chevez 8546 Chevies 13763 Cheviot 253334 @@ -23338,6 +23710,7 @@ Chewning 83138 Chewnings 651 Chews 56259 Chexbres 6287 +Chey 82231 Cheyanne 10970 Cheyenne 6249793 Cheyennes 659036 @@ -23447,6 +23820,7 @@ Chicot 439392 Chicxulub 46023 Chidambaram 43902 Chiddingstone 4244 +Chideock 3005 Chidester 152752 Chidesters 289 Chidsey 99128 @@ -23456,11 +23830,13 @@ Chiemgauer 804 Chien 1837591 Chienchen 335 Chienchin 281 +Chieng 72225 Chiens 30524 Chienshih 418 Chieri 15120 Chiers 7617 Chieti 49644 +Chifley 31130 Chigro 90 p Chigroes 198 p Chigwell 33620 @@ -23468,6 +23844,7 @@ Chihalis 3517 Chihiro 33914 Chihuahua 2290938 Chihuahuan 185657 +Chihuahuans 3488 Chihuahuas 44304 Chika 42099 Chikako 19675 @@ -23547,6 +23924,7 @@ Chimariko 23341 Chimarikos 169 Chimas 410 Chimay 46767 +Chimayo 72335 Chimbarongo 753 Chimborazo 182471 Chimei 3937 @@ -23598,6 +23976,7 @@ Chineham 1241 Chinen 35081 Chinens 197 Chinery 28924 +Chinesca 1312 Chinese 124468376 Chineselike 519 Chinesely 65 @@ -23678,6 +24057,7 @@ Chippeways 51147 Chippewyan 12510 Chippewyans 3051 Chippindale 21187 +Chippingdale 335 Chips 1384801 Chipstead 6011 Chiquito 83880 @@ -23720,6 +24100,7 @@ Chislehurst 49734 Chislet 2466 Chislett 29687 Chisleu 7191 +Chislev 11292 Chisley 5633 Chisleys 149 Chism 160404 @@ -23734,11 +24115,14 @@ Chisum 163236 Chisums 1061 Chiswick 355530 Chita 253293 +Chitaldrug 4069 +Chitaldurg 241 Chiti 22603 Chitown 2426 Chitpavan 5132 Chitpavans 1193 Chitpawan 452 +Chitradurg 184 Chitradurga 4403 Chitragupta 2422 Chitral 103041 @@ -23749,6 +24133,7 @@ Chittagonian 1116 Chittenden 1529994 Chittick 101879 Chitticks 205 +Chittledroog 1164 Chittoor 13422 Chittum 26976 Chittums 135 @@ -23809,6 +24194,7 @@ Chois 9191 Choiseul 405496 Chojnacki 38604 Chojnowski 6278 +Chokmah 19521 Chokshi 13964 Chokwe 52958 Cholargos 1286 @@ -23865,6 +24251,9 @@ Chopps 537 Chopra 454510 Chopras 1476 Chopsticks 48492 +Choptank 255790 +Choptanks 2589 +Chopunnish 25740 Chorasmia 7975 Chorasmian 5968 Chorasmians 4615 @@ -23894,6 +24283,9 @@ Choudhury 181176 Choudhurys 247 Choudry 11201 Chouinard 153382 +Choukoutien 29191 +Chourangi 123 +Chouringhee 175 Chouteau 800850 Chovanec 7575 Chowaniec 8853 @@ -23903,9 +24295,12 @@ Chowdhury 251019 Chowdhurys 251 Chowning 95730 Chownings 495 +Chowringee 1230 +Chowringhee 17890 Choy 327843 Choyce 39530 Choyces 173 +Choying 2771 Choys 1569 Chozar 825 Chozars 2853 @@ -23943,6 +24338,7 @@ Christenbury 20449 Christendom 4303624 Christendoms 4753 Christene 15107 +Christens 13291 Christensen 4098441 Christensens 9057 Christenson 532025 @@ -24092,6 +24488,7 @@ Chronos 109813 Chronus 10042 Chrostowski 15268 Chrysalis 189965 +Chrysaor 20134 Chryseis 41066 Chrysippan 595 Chrysler 7004914 @@ -24165,6 +24562,7 @@ Chumley 105136 Chumleys 603 Chumney 12452 Chumphon 9347 +Chumpitaz 725 Chums 108682 Chumulu 238 Chun 1474714 @@ -24195,6 +24593,7 @@ Churcham 1302 Churchdown 1849 Churcher 44508 Churchers 944 +Churchgate 10790 Churchhill 28535 Churchian 318 Churchianity 7028 @@ -24286,6 +24685,7 @@ Cidu 853 Ciechowski 333 Cielo 138542 Cielos 6751 +Cienfuegos 456490 Ciera 27603 Cieri 16927 Cierra 15126 @@ -24443,6 +24843,7 @@ Cisjordan 6754 Cisjordanian 1515 Ciskei 96350 Ciskeian 5445 +Ciskeians 1511 Cisko 2851 Cisleithan 6959 Cisleithania 15240 @@ -24482,10 +24883,12 @@ City 450540372 Ciulla 33665 Ciullo 11555 Civ 14303140 +Civic 7709707 Civil 129456688 Civils 43873 Civitan 85318 Civitans 6953 +Cixi 45105 Cixousian 1540 Cizek 68266 Cizik 18725 @@ -24561,6 +24964,7 @@ Claptons 531 Clapworthy 795 Clara 17311787 Clarabel 12504 +Clarabella 5993 Clarabelle 40094 Clarah 877 Clarbeston 385 @@ -24582,6 +24986,8 @@ Clarent 5797 Clarenville 8717 Clares 116178 Claret 226284 +Claretian 28236 +Claretians 6868 Clarets 13871 Clarey 60243 Clareys 153 @@ -24702,6 +25108,7 @@ Clayman 101872 Claymans 643 Claymate 184 Claymates 389 +Claymation 11553 Claymore 138671 Claypole 134556 Claypool 470227 @@ -24719,6 +25126,7 @@ Claytonville 7806 Claytor 231728 Claytors 581 Claywell 11071 +Clea 165060 Clean 16373319 Cleanthes 167325 Clear 11249055 @@ -24729,6 +25137,7 @@ Clearwater 2479319 Cleary 1642498 Clearys 5212 Cleator 33551 +Cleave 481567 Cleaveland 434779 Cleavenger 19154 Cleaver 1067974 @@ -24837,6 +25246,7 @@ Clex 2159 Clibburn 485 Cliburn 119329 Click 14045920 +Clickner 12027 Clicks 92059 Cliett 21102 Clietts 133 @@ -24849,6 +25259,7 @@ Cliffordian 1169 Cliffs 6969769 Cliffsend 360 Clift 607280 +Clifteen 127 Clifton 6421124 Cliftonian 1201 Cliftonians 493 @@ -24922,12 +25333,14 @@ Cloe 112827 Cloelia 17402 Cloer 23430 Cloes 13536 +Cloghan 1996 Clogher 59565 Clois 11579 Clojure 17861 Clon 13962 Clonakilty 16492 Clonch 3180 +Cloncurry 43562 Clondalkin 8460 Clones 275278 Cloninger 163321 @@ -24963,6 +25376,7 @@ Clothiers 152269 Clothilda 6293 Clotho 75627 Clotilda 92176 +Clouatre 6878 Cloud 8228183 Clough 1669566 Cloughaneely 955 @@ -25034,6 +25448,8 @@ Clydebank 46048 Clydesdale 290741 Clydesdales 61121 Clydeside 28830 +Clydesider 761 +Clydesiders 2599 Clymene 46866 Clymer 711932 Clyne 171215 @@ -25051,11 +25467,14 @@ Cnossos 20710 Cnossus 67284 Cnut 141924 Co 107525331 +CoA 2280325 CoAP 6400 CoAs 30679 +CoC 75797 CoCom 113609 CoCs 4253 CoEs 3836 +CoHort 824 CoP 88657 CoR 103733 CoV 98873 @@ -25128,6 +25547,7 @@ Cobbettian 61 Cobbinshaw 546 Cobble 272477 Cobbler 400838 +Cobblers 95779 Cobbles 52626 Cobbold 103748 Cobbolds 463 @@ -25160,6 +25580,7 @@ Cobo 294011 Cobol 188862 Cobos 86649 Cobourg 121761 +Cobra 864960 Coburg 549483 Coburgs 8224 Coburn 1926096 @@ -25188,6 +25609,7 @@ Cochimi 14742 Cochin 1069620 Cochinchinese 13165 Cochins 123970 +Cochiti 321363 Cochran 5215840 Cochrane 3000314 Cock 1499641 @@ -25242,10 +25664,16 @@ Cockwood 6847 Coco 1042719 Cocoa 2257033 Cocoliche 2931 +Coconucan 454 +Coconuco 4325 +Cocopa 69210 Cocopah 58499 +Cocopahs 8095 +Cocopas 8421 Cocquyt 2229 Cocroft 28556 Cocteauesque 294 +Cocto 422 Cocytean 100 Cocytos 713 Cocytus 61859 @@ -25288,6 +25716,7 @@ Coellos 225 Coen 416862 Coenen 81298 Coenens 147 +Coerver 18408 Coetzee 277369 Coeus 8810 Coevorden 7735 @@ -25398,6 +25827,7 @@ Cokes 277194 Cokley 9933 Col 9220737 Cola 4596617 +Colaba 25914 Colac 7652 Colace 45221 Colangelo 87816 @@ -25421,6 +25851,7 @@ Colbertism 7883 Colbertist 1505 Colbertists 247 Colberts 14675 +Colbie 7117 Colborn 107036 Colborns 661 Colburn 1254128 @@ -25440,6 +25871,7 @@ Colclough 85535 Colcloughs 609 Colcord 271962 Colcords 863 +Colderon 655 Coldewe 809 Coldfoot 22118 Coldham 30124 @@ -25484,6 +25916,7 @@ Coleraine 192935 Coleridge 5831552 Coleridgean 43525 Coleridgian 8058 +Coleroon 6965 Colers 1563 Coles 2550431 Coleshill 31427 @@ -25567,6 +26000,7 @@ Collinsian 311 Collinson 561575 Collinsworth 61261 Collinwood 119216 +Collipulli 1724 Collis 548237 Collishaw 20641 Collison 226453 @@ -25594,6 +26028,7 @@ Colm 281742 Colma 111671 Colman 1927618 Colmar 305395 +Colmenares 41830 Colmenero 12263 Colmeneros 631 Colmworth 808 @@ -25635,6 +26070,7 @@ Coloradans 75753 Colorado 88680591 Coloradoan 20657 Coloradoans 19200 +Coloran 801 Colored 7249315 Colosi 28738 Colosimo 53782 @@ -25675,7 +26111,7 @@ Columbiana 652253 Columbians 76662 Columbine 749331 Columbines 30801 -Columbo 264025 +Columbos 2537 Columbus 42460698 Columbused 168 Columbuses 14154 @@ -25706,6 +26142,7 @@ Comacho 19796 Comachos 235 Coman 255383 Comanche 2278585 +Comanchean 63136 Comanchero 14009 Comancheros 32464 Comanches 829281 @@ -25750,6 +26187,8 @@ Comilla 74580 Comines 97207 Cominetto 277 Cominform 269053 +Cominformist 4258 +Cominformists 4607 Comino 30070 Comintern 1235977 Comisene 652 @@ -25813,6 +26252,7 @@ CompTIA 158682 Comparan 360 Comparans 60 Compean 15776 +Compeau 16175 Compere 129958 Comperes 1944 Compher 14878 @@ -25821,6 +26261,7 @@ Complute 165 Complutensian 49296 Compo 152205 Compos 171031 +Compostela 297860 Comps 96296 Compstall 653 Comptche 10970 @@ -25831,6 +26272,7 @@ Comrie 137659 Comries 223 Comsomol 12379 Comstock 4005293 +Comstockery 14053 Comstockian 3210 Comstockism 1182 Comstocks 29118 @@ -25846,6 +26288,7 @@ Comunales 4201 Comus 537547 Con 23155413 Conacher 39791 +Conahan 86910 Conakry 264840 Conan 1320183 Conant 2249180 @@ -25914,6 +26357,8 @@ Coneys 13056 Confed 192713 Confed'n 191 Confederacy 5711794 +Confederado 854 +Confederados 3073 Confederate 19009149 Confederates 3803779 Confederation 5969809 @@ -25959,6 +26404,8 @@ Congregationalists 809908 Congresbury 3659 Congress 399419476 Congressional 36349527 +Congressite 708 +Congressites 987 Congressman 17441701 Congressmen 4048107 Congreve 795805 @@ -25967,6 +26414,7 @@ Congreves 6554 Congrevian 606 Congrove 7147 Coniacian 88796 +Conibear 27608 Conifer 318395 Conigliaro 27187 Coniglio 45176 @@ -26017,11 +26465,13 @@ Connel 72851 Connell 2448152 Connelley 112352 Connelleys 123 +Connellsville 1030580 Connelly 2153749 Connels 1280 Connely 66190 Connelys 205 Connemara 202558 +Connemaras 4394 Conner 3326402 Connersville 461380 Connery 548873 @@ -26080,6 +26530,7 @@ Consolis 214 Consolo 54281 Consolos 223 Consolver 1849 +Consomol 111 Consort 668615 Constable 4178165 Constablesque 175 @@ -26214,8 +26665,10 @@ Coorg 58434 Coorgs 10678 Coors 816554 Coosa 1060367 +Coota 1377 Cootamundra 6286 Coote 322525 +Cootehill 6432 Cooter 156001 Cooters 3476 Cootes 41562 @@ -26299,6 +26752,8 @@ Coppock 182300 Coppocks 576 Coppola 640280 Coppolas 3046 +Coppolino 28048 +Coppolinos 411 Copps 116165 Coppull 1725 Cops 533027 @@ -26310,6 +26765,7 @@ Coptologist 817 Coptologists 491 Coptology 1334 Copts 344364 +Copythorne 164 Coq 220629 Coquelles 2298 Coquille 366929 @@ -26345,6 +26801,7 @@ Corbit 90382 Corbits 952 Corbitt 206957 Corbitts 1145 +Corble 689 Corbo 76381 Corbos 454 Corbridge 59143 @@ -26402,6 +26859,8 @@ Corell 58304 Corella 51896 Corellas 1303 Corells 173 +Coren 94913 +Corens 1654 Coretta 281979 Corey 2939723 Corfe 60138 @@ -26762,6 +27221,7 @@ Cotham 36101 Cothelstone 1127 Cotheridge 831 Cothern 30236 +Cotherstone 6199 Cothran 179085 Cothrans 591 Cothren 52404 @@ -26856,6 +27316,7 @@ Coughran 32317 Coughtrey 4753 Cougs 529 Couillard 44688 +Coulee 1327537 Coules 11846 Coulibaly 38153 Coulls 1250 @@ -26979,6 +27440,7 @@ Covalts 1017 Covareca 363 Covarrubias 223913 Covarrubiases 241 +Covault 35244 Cove 5946725 Covel 89289 Covell 352128 @@ -27007,6 +27469,7 @@ Covian 5161 Covid 1607 Coviello 66396 Covil 12950 +Covill 30808 Coville 401571 Covilles 727 Covillo 923 @@ -27137,6 +27600,7 @@ Crabtrees 6981 Cracchiolo 21416 Crace 61857 Craces 1634 +Crack 2669527 Cracknell 37360 Crackpot 14322 Craco 8126 @@ -27264,6 +27728,7 @@ Crases 605 Crashaw 281086 Crashaws 585 Crask 14409 +Crassier 3434 Crassus 745775 Crater 1827768 Crathes 5045 @@ -27385,6 +27850,7 @@ Cregos 361 Crehan 50272 Crehans 235 Creighton 2241604 +Creigiau 309 Creil 33719 Cremer 329931 Cremers 50484 @@ -27443,6 +27909,7 @@ Crestline 216060 Creston 610349 Crestview 195920 Creswell 502957 +Creswellian 2121 Creswells 926 Cretacean 1986 Cretaceans 221 @@ -27554,9 +28021,11 @@ Crispin 763191 Crispins 18943 Crispr 837 Crispus 277670 +Crissie 22781 Crissinger 29562 Crissman 103375 Crissmans 301 +Crissy 147988 Crist 807691 Cristales 9961 Cristero 42417 @@ -27792,6 +28261,7 @@ Crout 117502 Crouthamel 32976 Crouts 413 Crow 8488783 +Crowan 5088 Crowborough 26563 Crowcombe 4323 Crowdell 411 @@ -27834,6 +28304,7 @@ Crozier 954832 Cru 194048 Cruce 152203 Cruces 1372491 +Crucorney 526 Cruddas 4375 Crudelli 1804 Crudup 62079 @@ -27872,6 +28343,7 @@ Crumptons 2979 Crumrine 79461 Crumrines 213 Crums 7685 +Crundall 8557 Crunk 28658 Crunks 428 Crupi 19441 @@ -27971,6 +28443,8 @@ Cubey 890 Cubillas 10653 Cubist 406009 Cubists 129566 +Cubit 62188 +Cubits 28015 Cubitt 127871 Cubmaster 8255 Cubmasters 1662 @@ -27985,6 +28459,7 @@ Cucinotta 19492 Cuckfield 14940 Cucklington 790 Cuckmere 5544 +Cuckney 2291 Cuckston 545 Cudahy 941272 Cudahys 4125 @@ -28045,6 +28520,8 @@ Cuicatec 16392 Cuicatecs 1235 Cuin 12653 Cuis 6429 +Cuitlatec 3057 +Cuitlatecs 169 Cukierman 44993 Culberson 520375 Culbert 230186 @@ -28082,6 +28559,7 @@ Cullinan 318589 Cullinane 108375 Cullinanes 615 Cullinans 643 +Cullington 8784 Cullingworth 37553 Cullison 100664 Culliton 50364 @@ -28329,6 +28807,7 @@ Cushendall 7583 Cushing 5184734 Cushingoid 19571 Cushite 93579 +Cushites 57454 Cushitic 94996 Cushla 5812 Cushman 3449915 @@ -28366,8 +28845,11 @@ Cuthill 34204 Cuthills 219 Cuthrell 26394 Cutillo 11320 +Cutino 8484 Cutlack 3708 Cutler 4499160 +Cutlerite 1563 +Cutlerites 2991 Cutlers 52771 Cutlip 79612 Cutlips 2521 @@ -28406,6 +28888,7 @@ Cuylenborg 83 Cuyler 652137 Cuylers 5537 Cuyonon 1719 +Cuyunon 1027 Cuzco 1275405 Cuzcos 2179 Cwik 10977 @@ -28421,6 +28904,8 @@ CxO 1947 Cy 1836830 CyI 645 Cybele 370327 +Cybelean 534 +Cybelian 278 Cyberia 9321 Cyberman 4279 Cybermen 10941 @@ -28575,6 +29060,7 @@ DAI 1112236 DAII 4947 DAISY 272442 DAL 245390 +DALK 3511 DALs 5165 DAM 1543437 DAMA 74561 @@ -28599,12 +29085,14 @@ DASD 194287 DASDs 6537 DASH 505135 DASK 1301 +DASs 4678 DAT 1129432 DATEM 4066 DATY 714 DATs 24479 DAU 107375 DAUs 6561 +DAV 629490 DAc 5808 DArT 3304 DAs 100877 @@ -28613,6 +29101,7 @@ DBA 2369758 DBAL 1222 DBAs 84621 DBC 157597 +DBCP 307055 DBCS 23076 DBCs 4398 DBD 130137 @@ -28691,12 +29180,14 @@ DDDs 4891 DDE 857537 DDG 298846 DDI 207868 +DDJ 136857 DDK 32139 DDKs 737 DDL 332387 DDLs 5424 DDMMYY 1826 DDMMYYYY 280 +DDNP 3885 DDO 77974 DDOS 14504 DDOs 1770 @@ -28708,6 +29199,7 @@ DDT 5927522 DDTs 21105 DDVP 93140 DDoS 109060 +DDoSing 96 DDs 53554 DE 25883509 DEA 3288052 @@ -28715,6 +29207,7 @@ DEAs 9335 DEB 245063 DEBs 7511 DEC 5936439 +DECA 109551 DECC 22466 DECS 52519 DECT 79061 @@ -28747,6 +29240,7 @@ DEVGRU 3864 DEW 381011 DEWR 701 DEX 180555 +DEXA 81905 DFA 376692 DFAB 1157 DFAS 157803 @@ -28755,6 +29249,7 @@ DFAs 16389 DFC 214370 DFCs 19092 DFDAU 1429 +DFDT 4052 DFI 211684 DFK 10006 DFL 315224 @@ -28766,6 +29261,7 @@ DFMR 1062 DFSG 1350 DFW 198874 DFs 33312 +DGA 227333 DGAF 388 p DGML 459 DGPS 149385 @@ -28810,6 +29306,7 @@ DILG 5624 DIMHRS 6337 DIMM 69371 DIMMs 37844 +DIN 698319 DINB 2121 DINK 11560 DINKs 2855 @@ -28846,6 +29343,7 @@ DKA 201431 DKIM 3864 DKM 16199 DKP 69741 +DKr 47787 DL 3662252 DLA 2986418 DLAB 6704 @@ -28854,6 +29352,7 @@ DLBCL 79862 DLBCLs 5594 DLC 3613081 DLE 125911 +DLEK 1767 DLI 129102 DLJ 88771 DLL 508851 @@ -28886,6 +29385,7 @@ DMD 427786 DMDA 4794 DMDC 43435 DMDs 7070 +DMEK 3873 DMF 579431 DMH 233964 DMHs 668 @@ -28947,6 +29447,7 @@ DOF 521671 DOG 1372164 DOHC 38838 DOI 2270461 +DOIL 2161 DOIs 9965 DOJ 1786064 DOJs 559 @@ -28957,7 +29458,9 @@ DOMA 214858 DOMs 10596 DON 2606609 DOOM 97156 +DOP 283990 DOPA 431832 +DOPE 85306 DORA 186230 DOS 8572193 DOSRI 607 @@ -29010,6 +29513,7 @@ DRFs 4239 DRI 957332 DRIP 130765 DRIPs 18402 +DRIs 65585 DRL 308163 DRN 58276 DRNs 1861 @@ -29026,12 +29530,14 @@ DRaaS 629 DRs 71916 DS 5070104 DSA 962215 +DSAEK 4667 DSAI 1483 DSCOVR 1716 DSCs 20435 DSDD 14414 DSDP 642274 DSE 177949 +DSEK 3619 DSI 323252 DSLAM 26341 DSLAMs 8541 @@ -29046,6 +29552,7 @@ DSMSs 896 DSN 527826 DSNs 11153 DSO 248496 +DSOG 663 DSOs 31787 DSP 1424205 DSPs 117938 @@ -29060,7 +29567,10 @@ DSU 273238 DSUs 18652 DSV 62591 DSVs 4623 +DSW 133131 +DSWs 1338 DSX 22098 +DSes 808 DSs 20675 DT 2308255 DT's 118 @@ -29074,6 +29584,7 @@ DTI 320020 DTIC 892784 DTIM 5798 DTL 166943 +DTLS 8961 DTM 199759 DTMC 13370 DTMCs 1837 @@ -29142,12 +29653,15 @@ DWT 432310 DWeb 272 DWs 13637 DX 1370257 +DXA 162716 DXM 21671 +DXed 77 DXer 15361 DXers 21981 DXing 19842 DXpedition 14537 DXpeditions 6162 +DXs 1729 DYC 9489 p DYCs 304 p DYEL 272 @@ -29200,6 +29714,8 @@ Dacunha 4489 Dad 18777402 Dada 952366 Dadaesque 1525 +Dadaism 88351 +Dadaisms 91 Dadaist 94817 Dadaists 102933 Dadamo 798 @@ -29329,6 +29845,7 @@ Dahmers 2165 Dahms 87689 Dahn 95278 Dahns 1480 +Dahod 1849 Dahoman 12225 Dahomans 14318 Dahomean 85061 @@ -29446,6 +29963,7 @@ Dalhousie 807223 Dali 793139 Dalia 182128 Dalian 271108 +Daliao 782 Dalias 13156 Daliesque 5135 Dalimir 133 @@ -29633,6 +30151,7 @@ Dandurand 38474 Dandy 944128 Dandys 3465 Dane 4183812 +Danebrog 8984 Danegeld 36498 Danegelt 8126 Danek 64500 @@ -29791,6 +30310,7 @@ Daouds 453 Daoust 44940 Daousts 133 Daoyin 2553 +Daph 25994 Daphne 2267179 Daphnean 1528 Daphnian 293 @@ -29886,6 +30406,7 @@ Darke 405898 Darker 345005 Darkers 1375 Darkhan 9203 +Darkins 8249 Darko 76913 Darks 30008 Darla 437610 @@ -29899,7 +30420,6 @@ Darley 703957 Darleys 1867 Darling 4808931 Darlington 2434352 -Darlingtons 16630 Darlo 11995 Darmon 33855 Darmons 116 @@ -29960,6 +30480,7 @@ Daruvar 5151 Darvall 19441 Darvalls 199 Darvel 15015 +Darvesh 3419 Darville 31416 Darvilles 255 Darwak 443 @@ -29998,6 +30519,7 @@ Dashain 1463 Dashami 1020 Dasharatha 7286 Dasher 168976 +Dashers 7862 Dashiell 442368 Dashiells 3111 Dashnak 29812 @@ -30062,6 +30584,7 @@ Daunts 2171 Dauntsey 6741 Dauphin 2465365 Dauphinois 10462 +Dauphins 10755 Daur 25194 Daura 32723 Dauria 13525 @@ -30178,6 +30701,7 @@ Dayhoffs 172 Dayi 14418 Daykin 42263 Daykundi 485 +Daylan 4925 Dayle 85524 Daylee 349 Dayley 19579 @@ -30248,6 +30772,7 @@ DeLillos 261 DeLisa 19833 DeLisi 56697 DeLisio 11376 +DeLonge 5251 DeLorean 107608 DeLoreans 1302 DeLorenzo 64281 @@ -30411,11 +30936,13 @@ Decarolis 965 Decastro 7219 Decatur 6734258 Decaturville 35775 +Decca 888142 Deccan 541732 Deccanee 635 Deccani 21061 Deccanis 2253 Deceangli 1365 +Decelles 9844 December 302356361 Decemberish 497 Decemberist 264 @@ -30558,6 +31085,7 @@ Deikes 245 Deimos 123588 Deiniolen 281 Deion 68678 +Deipara 7155 Deirdre 1062100 Deisher 34398 Deism 315023 @@ -30664,6 +31192,7 @@ Delhiite 243 Delhiites 872 Delhite 111 Delhites 210 +Deli 601429 Delia 2661774 Deliah 20012 Delian 168825 @@ -30743,6 +31272,7 @@ Delroy 57672 Dels 148478 Delsarte 158377 Delsartean 8963 +Delsartian 4872 Delsignore 3413 Delson 76537 Delta 23621188 @@ -30821,6 +31351,7 @@ Demmie 9965 Demmies 606 Demmons 5165 Demmy 23654 +Demmys 763 Democrat 16233961 Democratic 51731256 Democrats 22862191 @@ -30856,6 +31387,8 @@ Demsa 1628 Demski 43802 Demuro 2101 Demus 71592 +Demyan 21373 +Demyans 99 Den 3373158 Dena 408749 Dena'ina 37369 @@ -30899,6 +31432,7 @@ Denhartog 2057 Denholm 170527 Denholms 305 Denike 24952 +Denikinites 497 Denington 4735 Denio 484392 Denios 666 @@ -30915,6 +31449,7 @@ Denlinger 92374 Denman 1034807 Denmans 4840 Denmark 20470420 +Denmarkian 511 Denne 70557 Dennehy 105994 Dennehys 468 @@ -31004,6 +31539,7 @@ Dercole 1385 Dereck 22087 Dereham 51537 Derek 4014324 +Derevlianians 654 Derfner 16298 Derg 161114 Derham 141693 @@ -31047,6 +31583,7 @@ Derringer 134605 Derringers 5287 Derrs 1480 Derry 1397768 +Derrynane 9727 Derrys 1103 Ders 12829 Dershem 20060 @@ -31085,6 +31622,7 @@ Descartes 5375836 Descartesian 336 Descartian 4208 Descemet 180290 +Descemets 1053 Deschanel 67758 Deschanels 623 Deschutes 691998 @@ -31137,6 +31675,7 @@ Desta 41301 Destas 421 Destefano 13249 Destin 168238 +Destinee 14032 Destiny 2841348 Desvarieux 2321 Det 1129404 @@ -31154,6 +31693,7 @@ Dethicks 213 Dethloff 23242 Dethloffs 594 Detlefsen 40759 +Detmold 136194 Detraz 8025 Detroit 69192831 Detroiter 83751 @@ -31204,6 +31744,8 @@ Devedjian 1720 Devendra 48749 Devenish 83571 Devenishes 1004 +Devenney 17852 +Devenneys 213 Devenport 32218 Devenports 325 Devens 545007 @@ -31213,16 +31755,21 @@ Deveny 35034 Dever 466592 Devera 14957 Deveras 583 +Deverau 333 Deveraux 81081 Devere 87025 +Devereau 15842 Devereaux 442665 Devereauxs 1063 Deverell 86105 Deveres 870 +Devereux 1015234 Devers 257508 Deveson 5878 Devetski 478 Devi 586882 +Deviant 415737 +Deviants 40603 Devil 9238072 Deville 267374 Devilles 2021 @@ -31254,6 +31801,7 @@ Devors 1031 Devos 67093 Devoy 110250 Devoys 443 +Devreux 6074 Devs 14391 Dew 1401317 Dewa 54889 @@ -31284,6 +31832,7 @@ Dewing 264213 Dewitt 694715 Dewitts 1994 Dews 145047 +Dewsall 213 Dewsbury 118104 Dexheimer 68473 Dexit 588 @@ -31297,6 +31846,8 @@ Deyoe 56935 Deyos 1824 Deyoung 10269 Deyton 18531 +Dez 128689 +Dezaly 137 Dezenski 1953 Dezhou 6015 Dezzy 2445 @@ -31315,6 +31866,7 @@ Dhangadhi 587 Dhanraj 4819 Dhanteras 235 Dhar 149302 +Dharamsala 79857 Dharamshala 3393 Dharawal 1756 Dharma 1525484 @@ -31350,6 +31902,7 @@ DiCaprios 217 DiCarlo 266126 DiCerbo 4955 DiCicco 34879 +DiClemente 148169 DiCocco 3175 DiCola 9221 DiCostanzo 44381 @@ -31423,6 +31976,7 @@ Diamantina 60010 Diamants 11735 Diamniadio 541 Diamond 13653307 +Diamondstone 7571 Diana 9402779 Dianamania 113 Dianas 33734 @@ -31567,6 +32121,7 @@ Dietman 11150 Dietmen 18761 Dietz 1626163 Dietze 65708 +Dietzen 17541 Dietzes 1927 Dietzman 20054 Dieujuste 583 @@ -31576,6 +32131,7 @@ Diffenderfer 33184 Diffenderfers 200 Differdange 7401 Diffley 18649 +Digambara 18492 Diganta 1017 Digbeth 3092 Digbies 1807 @@ -31696,6 +32252,7 @@ Dimmock 150642 Dimmocks 1456 Dimock 409303 Dimocrats 1524 +Dimon 194940 Dimond 449576 Dimonds 1738 Dimopoulos 28531 @@ -31813,10 +32370,12 @@ Dipasquale 5034 Diphda 2013 Diphysites 195 Dipietro 6096 +Dipolog 6480 Dipper 569965 Dippers 77894 Dipple 36787 Diptford 811 +Dipton 775 Dipu 3745 Dirac 1516973 Diracian 207 @@ -31894,6 +32453,7 @@ Disraelitish 289 Diss 1004910 Dissenter 167854 Dissenters 971262 +Disserth 333 Distefano 35333 Distington 2509 District 250591128 @@ -31929,6 +32489,7 @@ Divinagracia 1078 Divine 18893936 Divines 259559 Diviya 197 +Divonne 13584 Divorce 5633396 Divya 31146 Diwali 61716 @@ -31976,6 +32537,7 @@ Djinnestan 127 Djokovic 12198 Djokovich 335 Djolof 2417 +Djon 3626 Djordjevic 49896 Djudezmo 369 Djuka 20897 @@ -32072,6 +32634,8 @@ Doc 18103894 Docetae 9403 Docheny 117 Docherty 128359 +Docimia 181 +Docimium 1178 Docimo 3307 Dociu 634 Dock 5528028 @@ -32097,6 +32661,7 @@ Doctor 33177064 Doctors 5058746 Dodd 7161070 Dodder 119155 +Doddington 44543 Doddridge 541304 Doddridges 1323 Dodds 1193763 @@ -32139,6 +32704,7 @@ Doeblers 784 Doeden 10713 Doedens 4602 Doege 17351 +Doehring 40684 Doel 50143 Doell 80867 Doenges 28134 @@ -32163,6 +32729,7 @@ Dogberryisms 93 Dogdyke 1202 Doge 641652 Dogecoin 1138 +Doges 94057 Dogg 91155 Dogger 145628 Doggerland 2394 @@ -32181,6 +32748,7 @@ Dogsthorpe 639 Dogtown 66902 Doh 118805 Doha 616895 +Dohad 1518 Dohan 51707 Dohans 245 Doheny 487901 @@ -32207,6 +32775,8 @@ Doitsu 5030 Dojin 5868 Doke 87569 Dokes 14965 +Dokimeion 1359 +Dokimion 871 Dokken 39135 Dol 535270 Dolan 2382207 @@ -32261,6 +32831,7 @@ Dollingers 640 Dollison 35485 Dolloff 47697 Dolloffs 387 +Dollywood 22583 Dolma 36046 Dolman 164921 Dolmas 4535 @@ -32367,6 +32938,7 @@ Donahue 2067620 Donahues 8987 Donald 38722234 Donalda 17524 +Donalds 43458 Donaldson 4229269 Donaldsonville 262678 Donalson 45276 @@ -32393,6 +32965,7 @@ Donaueschingen 41372 Donaustadt 581 Donavan 108361 Donavans 583 +Donayre 5402 Donbas 86064 Donbass 77451 Doncaster 341265 @@ -32552,6 +33125,8 @@ Dopson 17391 Dor 801242 Dora 4215818 Dorado 2713374 +Doral 154366 +Dorals 3148 Dorame 4708 Doran 2583433 Dorans 17814 @@ -32810,6 +33385,7 @@ Dovels 315 Dovenby 1953 Dover 9961785 Dovercourt 12732 +Doverdale 1397 Doverspike 25088 Doveton 25573 Dovey 121881 @@ -32864,8 +33440,8 @@ Downey 3366437 Downeys 10206 Downham 56925 Downhill 187934 -Downie 400273 -Downies 4526 +Downie 400273 p +Downies 4526 p Downieville 142999 Downing 4278283 Downingtown 254647 @@ -32885,6 +33461,7 @@ Dowses 2658 Dowsett 97179 Dowsing 58967 Dowson 313244 +Dowsonian 62 Dowthwaite 3575 Dowthwaites 157 Dowty 162587 @@ -32922,6 +33499,7 @@ Draganoff 713 Draganov 12059 Drager 125801 Dragers 821 +Dragicevich 937 Drago 399502 Dragomir 43192 Dragon 4301682 @@ -32935,6 +33513,8 @@ Dragun 12857 Dragutin 30002 Draheim 52881 Drahos 32178 +Drahthaar 1701 +Drahthaars 479 Drain 4281296 Draine 37972 Draines 515 @@ -33025,6 +33605,7 @@ Drenth 27578 Drenthe 61992 Drents 1793 Dresback 7255 +Dresch 54887 Drescher 262091 Dreschers 601 Dresden 4937370 @@ -33118,6 +33699,7 @@ Droke 25573 Drokes 155 Drolet 77953 Drolets 173 +Drolma 10062 Drolsum 2143 Dromiskin 919 Dromod 939 @@ -33129,18 +33711,21 @@ Dronfield 9584 Drongan 545 Drongowski 3451 Dronten 2794 +Droodiana 197 Dror 127267 Drossin 1691 Drost 104598 Droste 189078 Drostes 425 Drosts 223 +Droubi 1775 Drouet 232437 Drouets 915 Drought 1688311 Drouillard 84188 Drouillards 201 Drouin 99366 +Drouins 573 Drown 354288 Drowns 38081 Droxford 4491 @@ -33184,6 +33769,7 @@ Drummonds 36823 Drummondville 34217 Drumms 1319 Drumochter 1207 +Drumpellier 731 Drumpf 453 Drumree 302 Drumry 529 @@ -33344,6 +33930,7 @@ Ducuing 11266 Duda 306073 Dudash 11768 Dudayev 140160 +Dudbridge 11175 Duddeston 1709 Dudding 31077 Duddings 227 @@ -33377,6 +33964,7 @@ Duerr 145832 Duerrs 165 Duers 5333 Duerson 24892 +Duerst 29681 Dues 3334591 Duesenberg 172827 Dueser 8421 @@ -33445,6 +34033,8 @@ Dugla 308 Dugo 15613 Dugos 509 Duguay 54180 +Dugue 18942 +Dugues 415 Duguid 171715 Duguids 561 Duhaime 26155 @@ -33660,6 +34250,7 @@ Dunkleys 423 Dunklin 248524 Dunklins 235 Dunks 25945 +Dunkwa 6781 Dunky 5306 Dunlap 4273409 Dunlavey 31839 @@ -33812,6 +34403,7 @@ Durios 221 Durkee 623376 Durkees 2384 Durkheimian 124475 +Durkheimians 12644 Durkin 747262 Durkins 4539 Durland 122518 @@ -33922,6 +34514,7 @@ Dutkiewicz 18414 Dutko 59724 Dutra 199755 Dutras 362 +Dutriez 236 Dutro 79411 Dutron 3620 Dutros 205 @@ -33942,6 +34535,7 @@ Duvel 71347 Duvernay 35718 Duvernays 235 Duwal 3339 +Duwayne 19608 Duwe 23603 Duwes 1728 Duxbury 817404 @@ -34090,6 +34684,7 @@ EAIs 994 EAL 277093 EAM 323036 EAN 201139 +EAON 612 EAP 856515 EAPC 37405 EAPCs 465 @@ -34125,8 +34720,7 @@ EBOV 10344 EBRD 255487 EBSA 46049 EBU 126670 -EBV 1148076 -EBVs 2840 +EBUS 24246 EBs 49580 EC 14218406 ECAC 125235 @@ -34225,6 +34819,7 @@ EELS 166990 EELV 42751 EELVs 2007 EENT 150321 +EEO 2601104 EEOC 6240620 EEPROM 215803 EEPROMs 31962 @@ -34245,6 +34840,7 @@ EFO 22420 EFPs 18314 EFRP 3349 EFS 283045 +EFSA 52358 EFSF 12398 EFT 892355 EFTO 2146 @@ -34257,6 +34853,7 @@ EGCG 84250 EGD 106381 EGDs 3196 EGFR 598144 +EGFs 4198 EGG 1403942 EGMs 8355 EGOT 3166 @@ -34311,15 +34908,19 @@ EL 6497534 ELA 375319 ELAS 123693 ELAs 15778 +ELBW 29619 ELCIC 1467 ELCS 50105 ELF 847825 ELG 59364 ELGs 5393 +ELI 585512 ELINT 66129 ELISA 1559122 +ELIs 4562 ELL 1165361 ELLs 344512 +ELN 174842 ELOT 3217 ELSD 15006 ELSDs 361 @@ -34366,6 +34967,7 @@ ENGO 10227 ENGOs 19322 ENIAC 211306 ENL 63027 +ENM 32836 ENR 610899 ENSA 16880 ENSO 370994 @@ -34386,6 +34988,7 @@ EOFs 36112 EOG 212324 EOGs 7343 EOI 85345 +EOIL 631 EOIs 3480 EOKA 51891 EOL 168629 @@ -34421,6 +35024,7 @@ EPK 15126 EPKs 1675 EPL 172782 EPMA 79541 +EPMD 9931 EPNS 3895 EPO 607194 EPOCH 132803 @@ -34483,6 +35087,7 @@ ERTMS 3834 ERTs 66522 ERU 53411 ERUs 16211 +ERV 92057 ERVs 7119 ERW 115959 ERWs 3469 @@ -34495,9 +35100,11 @@ ESBK 120 ESBL 40330 ESBLs 11962 ESBs 6315 +ESC 806365 ESCA 241919 ESCB 33727 ESCI 10110 +ESCs 64291 ESD 1018792 ESDI 75324 ESDP 63648 @@ -34596,6 +35203,7 @@ EVAP 31200 EVC 63886 EVD 94687 EVEL 33087 +EVEV 1449 EVF 19437 EVFs 914 EVGA 2492 @@ -34630,6 +35238,7 @@ EZ 889689 Ea 2005997 EaaS 585 Eachus 36674 +Eacott 5382 Eacus 10269 Eaddy 38463 Eade 75592 @@ -34698,6 +35307,7 @@ Earley 414050 Earleys 1248 Earlimart 29165 Earline 60293 +Earls 689046 Earlsdon 1157 Earlsfield 6435 Earlston 20240 @@ -34712,6 +35322,7 @@ Earnhardt 156281 Earnhardts 1324 Earnhart 34236 Earnharts 559 +Earnheart 7496 Earnie 27608 Earnshaw 310505 Earnshaws 6470 @@ -34810,6 +35421,7 @@ Eastfield 39876 Eastgate 140474 Eastham 492795 Easthams 520 +Easthope 33952 Eastie 3667 Easties 817 Eastin 242994 @@ -34925,6 +35537,7 @@ Eboo 5397 Ebor 35229 Ebrahim 97995 Ebrahimi 35131 +Ebrard 55702 Ebright 73808 Ebrights 357 Ebrington 19387 @@ -35245,6 +35858,9 @@ Edwardians 44906 Edwardine 15557 Edwards 28227510 Edwardses 30246 +Edwardsian 16313 +Edwardsianism 1091 +Edwardsians 2463 Edwardson 39428 Edwardsville 807809 Edwin 22507421 @@ -35257,6 +35873,7 @@ Edyvean 6760 Edzell 12948 EeV 5966 Eek 88893 +Eemian 20884 Eevolution 34306 Eevolutions 676 Eeyore 80551 @@ -35595,8 +36212,10 @@ Elamite 167429 Elamites 97251 Elamitic 11757 Elamitish 1278 +Elan 284275 Eland 117985 Elands 15650 +Elans 10286 Elaphebolion 10794 Elar 5291 Elara 20003 @@ -35624,6 +36243,7 @@ Elbing 88085 Elborough 2695 Elbrus 45254 Elburg 7062 +Elburton 1249 Elcesaite 169 Elcesaites 1571 Elchasaite 1067 @@ -35888,6 +36508,7 @@ Ellon 28226 Ellora 68845 Ellroy 47592 Ells 246881 +Ellsberg 442552 Ellson 37213 Ellsworth 4741443 Ellsworths 7355 @@ -35933,6 +36554,7 @@ Elmton 1299 Elmwood 1159689 Elmyra 12604 Elnath 1213 +Elno 7765 Elo 89276 Elohim 645482 Elohimic 374 @@ -35962,6 +36584,7 @@ Elroy 361828 Els 223253 Elsa 1997024 Elsan 4309 +Elsas 67099 Elsass 73729 Elsasser 139876 Elsassers 402 @@ -36002,6 +36625,7 @@ Elta 39920 Eltanin 98316 Elten 14383 Eltham 116312 +Eltina 193 Elting 274006 Eltings 1700 Elton 2048744 @@ -36092,6 +36716,7 @@ Emdens 1062 Emdes 664 Eme 70908 Emegir 265 +Emei 25695 Emel 35852 Emelia 86621 Emelianoff 4372 @@ -36421,6 +37046,7 @@ Ennekings 125 Ennen 20533 Ennew 9621 Ennis 1287297 +Enniscorthy 45093 Enniskillen 98302 Ennistymon 6245 Enns 171166 @@ -36446,6 +37072,7 @@ Enron 2327626 Enronomics 183 Enrons 7264 Enschede 169941 +Ensenada 392216 Ensey 28851 Enshi 5721 Ensign 3227772 @@ -36500,6 +37127,7 @@ Enzo 404851 Enzor 10380 Eo 547116 EoP 3718 +Eoan 15903 Eoarchean 1156 Eocene 4762915 Eoff 58138 @@ -36633,6 +37261,7 @@ Eraskh 179 Erasmian 79745 Erasmians 7279 Erasmus 3874170 +Erasmuses 1519 Erastian 57233 Erastianism 41288 Erastianized 246 @@ -36733,6 +37362,8 @@ Erkers 849 Erkrath 6877 Erlandson 108744 Erlandsons 267 +Erlang 197341 +Erlanger 523702 Erlbaum 2251576 Erle 353441 Erlen 20302 @@ -36904,6 +37535,7 @@ Eshim 200 Eshleman 354910 Eshlemans 711 Eshnunna 29620 +Esho 4206 Esholt 2537 Eshtehardi 556 Eshton 13702 @@ -36955,7 +37587,6 @@ Espaillat 36089 Espana 643808 Espanas 7951 Espanish 1492 -Espanola 548854 Espargos 359 Esparto 76853 Esparza 149505 @@ -36963,6 +37594,7 @@ Esparzas 851 Espejel 5373 Espejo 184023 Espejos 4721 +Espelette 9465 Esper 126012 Espera 14437 Esperance 225800 @@ -37013,6 +37645,7 @@ Esquivel 197857 Esquivels 796 Esquivias 7860 Esrum 3154 +Ess 565985 Essa 99005 Essame 6722 Essaouira 30226 @@ -37031,6 +37664,7 @@ Essenian 12006 Essenianism 347 Essenic 13979 Essenism 23642 +Essenmacher 2185 Essepian 273 Essequibo 222611 Esser 573212 @@ -37269,7 +37903,10 @@ Eudy 36539 Eufaula 466892 Eufracio 1639 Eugene 24473308 +Eugenean 434 Eugenia 1328482 +Eugenian 1876 +Eugenians 1243 Eugenie 853145 Eugenius 389946 Eugubian 1223 @@ -37288,6 +37925,7 @@ Eunice 2465349 Eunices 1361 Eunomia 23548 Eunomian 8656 +Eunomianism 1691 Eunomians 14869 Euparal 7227 Eupatrid 10171 @@ -37320,6 +37958,7 @@ Eurasians 114639 Eurasiatic 27248 Eurasiatics 413 Eurasier 680 +Euratlantic 655 Eure 245721 Euregion 577 Eureka 4926990 @@ -37525,6 +38164,7 @@ Euston 305485 Eutaw 618871 Euterpe 124777 Euterpean 11827 +Euterpeans 775 Euthemia 785 Eutony 2233 Eutopia 12944 @@ -37664,6 +38304,7 @@ Ewer 280073 Ewers 276579 Ewert 191211 Ewerts 3649 +Ewes 420027 Ewhurst 5379 Ewing 6189519 Ewok 13241 @@ -37677,6 +38318,7 @@ Exall 55179 Exam'r 1292 Exaudi 11957 Excalibur 333048 +Excaliburs 2249 Excel 5485651 Excellence 4415110 Excellencies 213315 @@ -37721,6 +38363,7 @@ Extremaduran 7996 Extremadurans 1476 Extropian 1336 Extropians 1894 +Exultet 23229 Exum 136582 Exuma 87753 Exumas 15549 @@ -37734,6 +38377,7 @@ Eye 12664974 Eyebrow 83527 Eyemouth 10592 Eyer 124000 +Eyerman 54542 Eyers 21524 Eyetie 3271 Eyeties 3403 @@ -37784,6 +38428,7 @@ FAC 977929 FACEP 28944 FACP 66550 FACPs 317 +FACS 440820 FACT 3266922 FACs 57105 FAD 669032 @@ -37800,7 +38445,9 @@ FAL 134617 FALS 27797 FALSE 1712733 FALs 3816 +FAM 464089 FAMU 47478 +FAMs 9632 FAN 844901 FANBOYS 5930 FANG 79423 @@ -37847,6 +38494,7 @@ FCB 204917 FCBs 19938 FCC 27615530 FCCA 28538 +FCCLA 4991 FCCs 30663 FCE 112109 FCEV 4489 @@ -37857,6 +38505,8 @@ FCK 12056 FCM 453195 FCMs 101321 FCN 100020 +FCNC 9773 +FCNCs 537 FCOL 1201 FCPA 280446 FCRA 332635 @@ -37908,6 +38558,8 @@ FEIE 1609 FELIX 560176 FEM 1093620 FEMA 3437793 +FEPA 51143 +FEPC 471823 FEPs 19921 FER 344940 FERA 249962 @@ -37949,6 +38601,7 @@ FHA 6989104 FHAB 226 FHD 23037 FHG 19527 +FHI 43948 FHIF 2189 FHIR 2631 FHLBB 506692 @@ -37980,6 +38633,7 @@ FIL 159645 FILF 3510 FILs 6391 FIN 1183021 +FINRA 281563 FINs 7698 FIOA 1518 FIPS 891910 @@ -38010,18 +38664,22 @@ FLD 397227 FLDs 3832 FLE 71442 FLES 101373 +FLET 4179 +FLI 70365 FLICE 8079 FLIFO 457 FLIP 283575 FLIPs 5411 FLIR 235609 FLK 21488 +FLKs 146 FLN 336357 FLOD 832 FLOP 58301 FLOPS 36378 FLOPs 4875 FLOSS 53935 +FLOT 33219 FLOTUS 4429 FLOX 22304 FLPB 437 @@ -38029,6 +38687,7 @@ FLPP 4181 FLR 80652 FLRW 4096 FLRs 2498 +FLSA 1612879 FLUTD 5795 FMA 211971 FMC 2235598 @@ -38040,6 +38699,7 @@ FMIC 8513 FML 67553 p FMLA 1409684 FMN 189499 +FMNP 56132 FMQ 10514 FMS 1578788 FMTV 21276 @@ -38047,10 +38707,13 @@ FMX 17553 FMs 106126 FN 1227423 FNAF 263 +FNC 80795 FNDM 449 FNDs 3997 +FNF 20807 FNG 24920 FNGs 6454 +FNHTR 3319 FNMI 1145 FNN 55296 FNNs 3553 @@ -38173,6 +38836,7 @@ FSBOs 7787 FSCS 29500 FSDU 589 FSF 128029 +FSLIC 1292414 FSM 737080 FSMA 30437 FSMs 59482 @@ -38247,6 +38911,7 @@ FW 1164944 FWA 138670 FWD 279791 FWDs 4978 +FWI 35356 FWP 103544 FWs 7352 FXAA 490 @@ -38256,7 +38921,6 @@ FYF 3289 p FYI 333593 FYLSX 1095 FYM 21561 -FYP 54028 FYPs 2273 FYSA 875 FZD 8306 @@ -38429,6 +39093,7 @@ Fairmans 867 Fairmead 10164 Fairmont 2409168 Fairplay 187943 +Fairport 573015 Fairs 1261070 Fairstein 19951 Fairsteins 93 @@ -38508,6 +39173,7 @@ Falisci 8089 Falivene 2065 Falk 2467809 Falkener 19483 +Falkensee 2590 Falkenstein 144494 Falkensteins 1120 Falkiner 21645 @@ -38579,6 +39245,7 @@ Fanariotes 1401 Fanariots 2236 Fanas 1176 Fancett 3545 +Fanchang 1534 Fancheng 6003 Fancher 448465 Fanchers 2498 @@ -38603,6 +39270,7 @@ Fangman 16006 Fangshan 7830 Fanguy 6191 Fankhauser 83639 +Fanling 6574 Fann 147675 Fannie 3770847 Fannies 11008 @@ -38708,6 +39376,8 @@ Farjeon 118848 Farjeons 527 Farkas 521264 Farkases 541 +Farker 6663 +Farkers 107 Farlam 1869 Farland 109272 Farlands 1245 @@ -38783,6 +39453,7 @@ Farrelly 186962 Farrellys 2389 Farrels 2421 Farren 274295 +Farreng 173 Farrens 18440 Farrer 348739 Farrers 3659 @@ -38860,6 +39531,7 @@ Fath 238012 Fathallah 8698 Father 74313576 Fatheree 13264 +Fathers 8967593 Fathima 3586 Faths 2274 Fatick 5769 @@ -39005,6 +39677,7 @@ Fazakerley 13072 Fazal 42015 Fazenbaker 10107 Fazes 961 +Fazilka 2009 Fazio 684172 Fazios 1199 Fazzino 15941 @@ -39140,6 +39813,7 @@ Fehrs 18223 Fei 674478 Feick 47758 Feicks 429 +Feidong 704 Feig 71317 Feige 103029 Feigenbaum 370897 @@ -39170,6 +39844,7 @@ Feist 364725 Feists 545 Feit 147668 Feits 1076 +Feixi 963 Fejeeans 413 Fekete 132665 Feketes 533 @@ -39222,6 +39897,7 @@ Fellowes 274710 Felloweses 439 Fellows 6250736 Fells 323656 +Felpham 32846 Felske 13561 Felstead 18780 Felsted 27996 @@ -39253,6 +39929,7 @@ Fender 681731 Fenders 158695 Fenderson 54709 Fendley 33434 +Fendrich 43770 Fenech 32726 Fenella 145006 Fenelon 487591 @@ -39458,6 +40135,7 @@ Ferreri 56803 Ferreris 583 Ferrero 341061 Ferreros 1782 +Ferrers 219750 Ferres 28636 Ferretti 189144 Ferrettis 215 @@ -39493,6 +40171,7 @@ Ferryland 20963 Ferrys 10820 Ferryside 1922 Fersfield 2536 +Fersit 119 Fertig 256787 Fertigs 1249 Fertile 704492 @@ -39561,7 +40240,9 @@ Feys 16114 Fez 579519 Fezzan 129642 Ffestiniog 12631 +Ffitch 1373 Fforestfach 773 +Ffrith 463 Fi 4412474 FiOS 14121 FiT 7777 @@ -39624,12 +40305,14 @@ Fiddown 633 Fidel 2415331 Fidelia 187775 Fidelism 2919 +Fidelma 135537 Fides 257594 Fidge 11798 Fidges 214 Fidler 392801 Fidlers 7669 Fido 369948 +Fiebelkorn 7819 Fiebig 43784 Fiedler 1126285 Fiedlers 3426 @@ -39703,6 +40386,8 @@ Fijians 258693 Fike 198488 Fikes 89596 Filadelfia 22648 +Filamerican 931 +Filamericans 249 Filan 10506 Filastin 27675 Filatiev 233 @@ -39792,6 +40477,7 @@ Finas 10853 Finau 19098 Finaus 133 Finazzo 7343 +Finbar 59903 Finbow 8383 Fincastle 199761 Finch 4325690 @@ -39806,7 +40492,9 @@ Finck 340832 Fincks 1380 Findchoem 303 Finder 1300339 +Findern 4175 Finders 291685 +Findhorn 66041 Findian 1333 Findlater 86944 Findlay 1950012 @@ -39921,6 +40609,7 @@ Fintan 65643 Fintech 6524 Finton 33516 Fintona 3660 +Fintown 698 Finucane 189578 Finucanes 634 Fiodar 155 @@ -39957,6 +40646,7 @@ Firebaughs 1176 Firefox 284871 Fireland 5411 Firestein 34045 +Firester 3973 Firestone 2895715 Firestones 19730 Firetop 1781 @@ -40166,6 +40856,7 @@ Flatterys 364 Flaubert 1507749 Flaubertian 23355 Flaugher 19315 +Flaunden 521 Flavelle 29296 Flavia 348022 Flavian 297098 @@ -40307,6 +40998,7 @@ Floberts 321 Floch 44229 Flock 761465 Flocks 376539 +Flockton 13645 Flodge 1075 Floersch 10620 Flohr 118833 @@ -40316,6 +41008,7 @@ Flood 16608337 Floods 1290570 Flook 101977 Flooks 1580 +Flopsy 19397 Flora 7748647 Florabama 537 Floradoras 183 @@ -40324,6 +41017,7 @@ Florance 96236 Florange 4692 Flordon 1115 Florea 60429 +Floreana 25829 Floreas 457 Florek 15580 Florence 26787445 @@ -40348,6 +41042,7 @@ Florida 111339236 Floridan 370322 Floridans 5344 Floridian 261033 +Floridiana 13385 Floridians 192464 Florido 39582 Floridos 526 @@ -40355,6 +41050,7 @@ Florin 299822 Florina 40142 Florinda 133776 Floris 182950 +Florisbad 9511 Florissant 470528 Floriston 26463 Florita 19105 @@ -40383,6 +41079,7 @@ Floyd 10214202 Floydada 54882 Floydian 1101 Floyer 43721 +Fluckiger 28331 Flud 19045 Fludd 111407 Fluddian 212 @@ -40425,6 +41122,8 @@ Flyorov 499 Flys 11866 Flysch 70226 Flythe 15350 +Fmk 33816 +Fmks 3417 Fn 540611 Fo 1377036 FoE 74264 @@ -40565,6 +41264,7 @@ Fontainebleau 951406 Fontan 174079 Fontana 1639702 Fontanas 3857 +Fontanes 44461 Fontanez 11613 Fontanilla 5491 Fontanillas 1315 @@ -40579,6 +41279,8 @@ Fontez 644 Fonts 524809 Fonville 45983 Fonzi 33777 +Fonzio 3096 +Fonzo 17316 Foo 500700 FooFoo 1309 Foochow 446972 @@ -40616,6 +41318,7 @@ Forcier 39824 Ford 53358942 Fordata 2001 Forde 356045 +Fordell 5070 Forden 18236 Fordes 3698 Fordham 3148388 @@ -40784,7 +41487,9 @@ Forties 364418 Fortin 352306 Fortino 42188 Fortinos 427 +Fortins 2811 Fortis 178399 +Fortisan 18183 Fortman 40329 Fortner 243709 Fortney 196036 @@ -41089,6 +41794,8 @@ Frankensteining 356 Frankensteinish 775 Frankensteins 21107 Frankenstorm 545 +Frankenthal 88799 +Frankenthals 401 Frankfield 5131 Frankford 961564 Frankfort 6397831 @@ -41213,6 +41920,7 @@ Frech 71629 Frechette 161926 Frechettes 315 Frechtman 35471 +Freckleton 15784 Frecklington 259 Fred 38399215 Freda 875208 @@ -41353,13 +42061,16 @@ Frenchery 101 Frenches 20777 Frenchest 656 Frenchie 99733 +Frenchier 429 Frenchies 35706 +Frenchiest 1431 Frenchification 6221 Frenchifications 207 Frenchified 64522 Frenchifies 379 Frenchify 5006 Frenchifying 3410 +Frenchily 828 Frenchiness 2169 Frenching 12380 Frenchise 152 @@ -41496,11 +42207,13 @@ Friedmanns 1192 Friedrich 7909562 Friedrichshafen 125323 Friedrichshain 16071 +Friedrichsruh 19918 Friedrichstal 1006 Friedt 11551 Friel 330904 Friels 6985 Friend 10632016 +Friendlies 14269 Friends 21281693 Friendsgiving 436 Friendship 5504460 @@ -41578,6 +42291,8 @@ Fritcher 11084 Fritches 295 Fritchman 34768 Frith 750387 +Frito 280381 +Fritos 48606 Fritsche 121999 Fritsches 1137 Frittenden 3282 @@ -41626,6 +42341,7 @@ Frog 2042425 Froggatt 70964 Frogge 24025 Frogges 804 +Froghall 1307 Frogland 1854 Frogmore 75531 Frogs 927149 @@ -41795,6 +42511,7 @@ Fujiwaras 8706 Fujiyama 127643 Fukang 4507 Fukien 484911 +Fukienese 21357 Fukuchi 38790 Fukuda 493048 Fukui 309841 @@ -41823,6 +42540,7 @@ Fulda 438545 Fulfer 5549 Fulford 263874 Fulfords 981 +Fulfulde 23729 Fulgencio 146068 Fulgham 54365 Fulghams 325 @@ -41831,6 +42549,7 @@ Fulghums 564 Fulginiti 22634 Fulgora 8300 Fulham 340815 +Fuli 16780 Fuling 10968 Fulk 307439 Fulkerson 393619 @@ -41952,6 +42671,7 @@ Furman 1764360 Furnari 14422 Furnas 395431 Furnases 281 +Furneaux 114218 Furner 42797 Furness 969937 Furney 70259 @@ -42095,7 +42815,6 @@ GABs 882 GADT 925 GAFB 3810 GAFIA 421 -GAG 272664 GAGE 935649 GAH 44921 GAHT 713 @@ -42110,6 +42829,7 @@ GAP 1293537 GAR 1306214 GARCH 157274 GARs 2000 +GAS 12364472 GATE 1280024 GATS 300710 GATT 5661278 @@ -42135,6 +42855,7 @@ GBT 43284 GBU 59143 GBV 32695 GBs 37978 +GCAS 8296 GCB 56645 GCC 767306 GCCF 6094 @@ -42220,6 +42941,7 @@ GGO 38850 GGOs 3651 GGS 64053 GGT 185272 +GGs 5047 GHB 227912 GHIC 534 GHIH 3495 @@ -42229,8 +42951,11 @@ GHRH 153100 GHS 123151 GHSs 2159 GI 6771528 +GIC 240443 +GICs 172564 GID 136512 GIDEON 952034 +GIDP 1592 GIDs 8515 GIF 577608 GIFT 1803868 @@ -42240,16 +42965,15 @@ GIGO 31680 GIIPS 1820 GILF 1128 p GILFs 214 p +GIM 83389 GIMPS 3242 GIMPs 272 GINO 33711 GIP 145883 -GIS 4420388 GISAXS 3269 GISS 63213 GIST 170291 GISTs 48571 -GISs 45649 GIUK 6729 GIs 629400 GJ 1112036 @@ -42274,6 +42998,7 @@ GLO 290111 GLONASS 71939 GLOs 1207 GLP 288621 +GLR 137068 GLS 232998 GLSs 782 GLTC 1991 @@ -42307,6 +43032,7 @@ GMTA 2605 GMV 24436 GMVLS 130 GMVs 3210 +GMW 24473 GMail 2086 GMed 1047 GMing 93 @@ -42316,7 +43042,10 @@ GNAA 1097 GNC 102405 GND 140794 GNI 418189 +GNMA 823093 GNOME 165919 +GNR 60702 +GNRs 13633 GNS 99157 GNSS 107965 GNU 361245 @@ -42329,10 +43058,11 @@ GOA 216556 GOAT 240782 GOATs 3698 GOD 4567717 -GOE 273363 GOEs 5258 +GOFAI 4922 GOFs 3258 GOH 64114 +GOL 103851 GOMA 7197 GOMER 17559 GOMERs 253 @@ -42369,6 +43099,8 @@ GPEW 51 GPF 55206 GPFs 5289 GPGPU 6439 +GPH 95546 +GPHs 346 GPIB 148056 GPIO 52914 GPIOs 1949 @@ -42392,6 +43124,7 @@ GPU 630994 GPUS 1603 GPUSA 1077 GPUs 61196 +GPase 507 GQ 428944 GQP 2085 GRAE 19638 @@ -42412,6 +43145,7 @@ GRPs 38581 GRR 75499 GRRs 3161 GRS 458334 +GRT 281648 GRU 180358 GRX 8493 GSA 8179786 @@ -42475,6 +43209,7 @@ GTR 379772 GTS 202205 GTT 86524 GTTs 3540 +GTW 56863 GTWR 430 GTi 5868 GTis 332 @@ -42556,6 +43291,7 @@ Gaboury 30729 Gabr 25781 Gabriel 12298107 Gabriela 406952 +Gabriele 518785 Gabrielino 53241 Gabrielinos 5961 Gabrielite 301 @@ -42607,6 +43343,7 @@ Gaddy 166232 Gaddys 1435 Gade 277616 Gadea 21249 +Gaden 34609 Gadhaffi 559 Gadhafi 43763 Gadhang 97 @@ -42661,6 +43398,7 @@ Gaffneys 1745 Gafford 89732 Gaffords 556 Gaffs 9759 +Gafsa 71769 Gagarin 266894 Gagauz 56840 Gagauzes 987 @@ -42698,6 +43436,7 @@ Gahrs 303 Gaia 755320 Gaian 31713 Gaianism 583 +Gaianists 139 Gaians 3365 Gaier 33156 Gaika 16340 @@ -42751,6 +43490,7 @@ Gala 592021 Galabank 359 Galactic 866121 Galahad 585684 +Galahads 10108 Galalith 10281 Galan 175124 Galang 25649 @@ -42986,6 +43726,7 @@ Galtonian 12613 Galtonism 249 Galusha 229052 Galushas 327 +Galuten 2383 Galuza 613 Galvalume 18877 Galvan 207520 @@ -43194,6 +43935,8 @@ Ganzhou 10649 Gao 1196137 Gaocheng 2507 Gaocun 413 +Gaodeng 3728 +Gaoli 3698 Gaoling 1357 Gaon 315509 Gaona 38151 @@ -43255,6 +43998,7 @@ Garcon 33267 Garcons 15709 Gard 1580798 Garda 312640 +Gardai 13137 Gardas 2878 Gardea 15032 Gardeas 249 @@ -43428,6 +44172,7 @@ Garsia 15333 Garsias 1909 Garside 188845 Garsides 1377 +Garsington 40490 Garske 25894 Garson 424400 Garsons 1310 @@ -43505,6 +44250,7 @@ Gascony 319825 Gascoyne 156289 Gash 199703 Gashes 6450 +Gashgai 745 Gashi 8217 Gasior 15852 Gasiorowski 23750 @@ -43601,6 +44347,8 @@ Gatorades 1593 Gatorboard 486 Gatorfoam 1944 Gatrell 49746 +Gatsby 703221 +Gatsbyan 131 Gatson 21608 Gatsons 259 Gatt 82284 @@ -43700,6 +44448,7 @@ Gav 86532 Gavaldon 5263 Gavar 4831 Gavarnie 20759 +Gavenny 735 Gaver 119201 Gavers 3981 Gavidia 7660 @@ -43772,12 +44521,15 @@ Gazza 42690 Gazzaniga 169451 Gb 368945 Gbadolite 10840 +Gbagyi 3505 +Gbari 6455 Gbe 41464 Gbin 596 Gbit 182759 Gbps 221185 Gbs 4840 Gcaleka 8318 +Gchat 1631 Gdynia 148735 Ge 4065786 Ge'ez 33846 @@ -43929,6 +44681,8 @@ Gelasian 45491 Gelasius 127598 Gelasma 325 Gelbstoff 7263 +Gelbvieh 13419 +Gelbviehs 120 Geldart 53352 Gelderland 115312 Geldermalsen 4346 @@ -43951,6 +44705,7 @@ Gelling 57982 Gellis 62737 Gellman 197130 Gellmans 671 +Gellnerian 798 Gello 4153 Gelman 503808 Gelmans 1415 @@ -43999,6 +44754,7 @@ Gendrons 583 Gene 12329129 Genelle 20661 General 590203473 +Generals 3314968 Generica 2492 Genesee 4208733 Geneseo 769452 @@ -44348,6 +45104,7 @@ Gertners 283 Gertrude 7671675 Gertsch 75364 Gertz 432157 +Gerussi 1928 Gervacio 8629 Gervais 556220 Gervas 30603 @@ -44454,6 +45211,7 @@ Gharib 61224 Gharibashvili 171 Gharibian 1181 Gharyan 2713 +Ghashghai 1463 Ghassan 88035 Ghassanian 509 Ghassanians 367 @@ -44493,6 +45251,7 @@ Ghera 10623 Ghere 12832 Gherkin 18327 Gherla 3353 +Ghey 2220 Ghia 85326 Ghibelline 175011 Ghibellines 169930 @@ -44530,6 +45289,8 @@ Ghukasyan 945 Ghum 2832 Ghuman 10015 Ghurid 10103 +Ghurkha 1365 +Ghurkhas 1595 Ghuz 2059 Ghuzz 10833 Gi'iz 892 @@ -44930,6 +45691,7 @@ Ginther 118410 Ginthers 293 Ginty 49941 Ginyard 7017 +Ginza 169565 Gio 262191 Gion 80521 Gionet 5040 @@ -44942,6 +45704,7 @@ Giovannetti 34044 Giovanni 6028620 Giovanniello 4769 Giovannini 90629 +Giovenale 11109 Giovinazzi 1739 Gipe 46762 Gipes 327 @@ -44992,6 +45755,7 @@ Girondists 198676 Girouard 106164 Girouards 177 Giroud 71976 +Giroulx 531 Giroux 1442195 Girten 10821 Girtford 225 @@ -45026,6 +45790,7 @@ Gitksans 543 Gitlin 311044 Gitlins 577 Gitmo 53379 +Gitte 13470 Gittens 54839 Gitter 50782 Gitters 1351 @@ -45064,6 +45829,7 @@ Gizzis 173 Gjakova 4555 Gjemre 1021 Gjerde 46359 +Gjergji 2115 Gjilan 2147 Gl 1843969 Glab 16254 @@ -45130,6 +45896,7 @@ Glandon 22548 Glandons 151 Glandyfi 175 Glanister 583 +Glanmire 4379 Glanton 55590 Glantz 240845 Glantzes 71 @@ -45190,6 +45957,7 @@ Glauconian 192 Glaucus 297774 Glaude 26679 Glaudes 495 +Glauser 50794 Glavan 5379 Glavin 86801 Glavins 228 @@ -45225,7 +45993,9 @@ Gleim 108559 Gleims 597 Gleipnir 3577 Glen 11355623 +Glenageary 2571 Glenarm 102978 +Glenavy 4666 Glenbarry 1348 Glenbeigh 6805 Glenboig 3937 @@ -45287,6 +46057,7 @@ Glissonian 1992 Glitnir 4237 Glittertind 1489 Gliwice 38112 +Gloag 42636 Globe 10478756 Globish 2240 Glocester 158653 @@ -45295,6 +46066,7 @@ Glockner 69458 Glocks 16135 Glodowski 3600 Gloeckner 35452 +Gloggnitz 4907 Glogowski 9771 Glomarization 2717 Glomb 15870 @@ -45327,6 +46099,7 @@ Gloucester 6995552 Gloucesters 9791 Gloucestershire 662986 Glouchevitch 950 +Glounthaune 197 Glover 4266643 Glovers 54603 Glovertown 1360 @@ -45390,9 +46163,12 @@ Gnosticisms 960 Gnostics 566536 Gnuse 8861 Go 39089967 +GoE 2651 +GoEs 2347 GoH 8720 GoHs 247 GoI 14272 +GoL 7643 GoS 23429 GoT 12789 Goa 856272 @@ -45468,6 +46244,7 @@ Godforsaken 42424 Godfrey 4998615 Godful 1943 Godhead 1598755 +Godhra 14326 Godin 282215 Godina 14161 Godinas 1215 @@ -45492,7 +46269,6 @@ Godoberi 1124 Godolphin 427844 Godoy 414886 Godoys 544 -Gods 6112417 Godsakes 3411 Godself 38483 Godsell 20220 @@ -45623,6 +46399,7 @@ Gokey 38617 Gokeys 672 Gokhale 164692 Gokhales 183 +Gokulashtami 137 Gokuraku 3617 Gola 105759 Golab 28447 @@ -45668,6 +46445,7 @@ Goldfarb 688355 Goldfarbs 3535 Goldfield 814336 Goldfish 291322 +Goldi 19689 Goldie 1010058 Goldilocks 252357 Goldin 636881 @@ -45710,6 +46488,7 @@ Goldthorp 13557 Goldthorpe 136196 Goldthorpes 190 Goldthwaite 306249 +Goldthwaites 1949 Goldwasser 140545 Goldwassers 271 Goldwater 3120719 @@ -45728,6 +46507,7 @@ Golembiewski 83967 Golembiowski 1127 Golenbock 27099 Golestan 19766 +Golesworthy 977 Goleta 435526 Goley 16935 Golgi 2205089 @@ -45772,6 +46552,7 @@ Golog 5066 Golok 13783 Golomb 166620 Golombs 292 +Golowan 247 Golphin 9138 Golphins 135 Golson 126157 @@ -46028,6 +46809,7 @@ Goossens 150003 Goosson 4723 Goostrey 4914 Gootee 16227 +Gootnick 9196 Gopal 309885 Gopala 31055 Gopalakrishnan 54653 @@ -46109,7 +46891,9 @@ Gorgie 4130 Gorgio 12316 Gorgios 4816 Gorgonean 602 +Gorgoneion 8843 Gorgonesque 198 +Gorgonzola 137633 Gorham 2437654 Gorhams 8901 Gori 173994 @@ -46146,6 +46930,7 @@ Gormleys 855 Gormogon 623 Gormogons 1673 Gorney 69868 +Gorniak 9516 Gornick 100595 Gorny 42071 Gorobets 5297 @@ -46365,7 +47150,9 @@ Governator 3117 Governor 104212428 Governors 14187274 Govers 30461 +Govian 263 Govier 55397 +Govilon 392 Govind 114544 Govinda 134512 Govinden 1003 @@ -46608,6 +47395,7 @@ Granelli 18341 Graner 57767 Graneros 76706 Graners 263 +Granet 106078 Graney 111651 Graneys 297 Grange 6767848 @@ -46721,6 +47509,7 @@ Graves 9435652 Gravesend 649488 Gravesham 1087 Gravesian 2218 +Graveson 18355 Gravett 29077 Gravettian 32290 Gravina 162343 @@ -46744,6 +47533,7 @@ Grayers 221 Grayfriar 473 Grayfriars 3594 Grayling 362987 +Grayndler 351 Grayrigg 1397 Grays 1461216 Graysen 2359 @@ -46809,6 +47599,7 @@ Greekest 242 Greekified 385 Greeking 2411 Greekish 17350 +Greekishness 97 Greekized 189 Greekland 617 Greekless 6427 @@ -46902,6 +47693,8 @@ Greenmans 1659 Greeno 112401 Greenock 303432 Greenodd 395 +Greenop 4101 +Greenops 2516 Greenore 5697 Greenos 183 Greenough 935835 @@ -47150,6 +47943,7 @@ Grillo 236683 Grillos 5942 Grim 1223149 Grimaldi 507122 +Grimaldian 1183 Grimaldis 13178 Grimaldo 19421 Grimaldos 709 @@ -47167,6 +47961,7 @@ Grimmes 1502 Grimmett 95186 Grimmetts 231 Grimmian 380 +Grimmie 1999 Grimmond 9329 Grimoldby 1269 Grims 11920 @@ -47276,8 +48071,10 @@ Grocock 5774 Groddeckian 263 Grodno 171838 Groen 235152 +Groene 41646 Groenendael 13714 Groenendaels 255 +Groenes 113 Groeneveld 62427 Groens 650 Groenweghe 643 @@ -47425,6 +48222,7 @@ Grundens 831 Grunder 40493 Grunders 363 Grundman 42280 +Grundtvigian 10173 Grundy 1853548 Grundyism 4188 Grundyist 274 @@ -47471,6 +48269,8 @@ Grzywacz 18577 Gsell 65327 Gsells 162 Gt 1594950 +Gtalk 292 +Gtr 21802 Gu 1147154 Guadagno 27744 Guadalajara 1274533 @@ -47522,7 +48322,9 @@ Guangzhou 916868 Guanhua 9683 Guans 6195 Guanshan 747 +Guansi 362 Guantanamo 1198237 +Guanxi 45860 Guanyin 64398 Guaqui 22482 Guard 41903342 @@ -47575,6 +48377,7 @@ Gublers 239 Gucci 342400 Guccione 74611 Gucciones 291 +Guccis 6903 Gucheng 8905 Guck 21341 Gucks 320 @@ -47755,6 +48558,7 @@ Guineans 108261 Guinevere 531613 Guinevieve 173 Guineys 2311 +Guingamp 10558 Guinn 385847 Guinness 965601 Guinnesses 6097 @@ -47767,6 +48571,8 @@ Guinto 10377 Guinyard 5487 Guion 354639 Guiping 2937 +Guipuzcoan 4138 +Guipuzcoans 978 Guirl 7632 Guisborough 13059 Guiscard 152677 @@ -47851,6 +48657,7 @@ Gulvin 6090 Gum 2145706 Guma 96270 Gumatj 3154 +Gumaz 169 Gumbert 34476 Gumberts 4048 Gumbinnen 22060 @@ -47862,12 +48669,14 @@ Gumm 89007 Gump 418609 Gumps 21646 Gums 419747 +Gumuz 10522 Gun 6077477 Gunai 525 Gunawan 17477 Gunbalang 297 Gunby 92820 Gunbys 211 +Gunchester 125 Gundelfingen 3452 Gunderman 62890 Gundersen 205093 @@ -47914,6 +48723,7 @@ Gunton 208981 Guntons 537 Guntur 46571 Gunvalson 3587 +Gunville 5615 Gunwinggu 10145 Gunwinyguan 464 Gunzib 365 @@ -47937,6 +48747,7 @@ Guralnik 50682 Guras 2070 Gurdaspur 13586 Gurdjieffian 4843 +Gurewitch 3141 Gurgan 18240 Gurgaon 34040 Gurgula 149 @@ -48004,6 +48815,7 @@ Gustavus 2027716 Gustin 252110 Gustine 121024 Gustins 1125 +Guston 153788 Gusu 2248 Gut 1183759 Gutekunst 48598 @@ -48039,6 +48851,8 @@ Gutridges 131 Guts 167662 Gutshall 22289 Gutshalls 303 +Gutsul 945 +Gutsuls 173 Gutter 366072 Gutteridge 112194 Gutters 218922 @@ -48075,7 +48889,9 @@ Guytons 679 Guyu 905 Guyuan 5291 Guyuk 12027 +Guyula 263 Guz 50146 +Guza 24302 Guzek 8081 Guzik 61738 Guziks 521 @@ -48131,6 +48947,7 @@ Gwladys 21335 Gwosdz 2630 Gwozdz 7708 Gwydion 93230 +Gwyer 48479 Gwyn 584048 Gwynedd 264045 Gwyneth 205623 @@ -48165,6 +48982,7 @@ Gzhel 2275 Gzhelian 2978 H's 2321 H'wood 5255 +HA 5594131 HAARP 27265 HAART 258954 HAB 217665 @@ -48222,6 +49040,7 @@ HBD 65522 HBFC 3190 HBFCs 2143 HBIC 2191 p +HBIGDA 3607 HBO 1651922 HBOS 9542 HBP 90965 @@ -48241,6 +49060,7 @@ HCFs 4412 HCGs 3651 HCI 1395299 HCIs 7056 +HCL 448308 HCLK 767 HCM 334962 HCMs 5010 @@ -48303,6 +49123,7 @@ HEPAs 869 HEPES 252640 HERV 21075 HERVs 3751 +HES 259413 HESH 5657 HET 155719 HETs 7402 @@ -48316,6 +49137,7 @@ HFC 314462 HFCs 56728 HFEA 19504 HFFA 1188 +HFM 85625 HFN 34315 HFO 54706 HFOs 6093 @@ -48330,12 +49152,14 @@ HGB 41081 HGC 28258 HGDP 13254 HGH 202949 +HGNC 2016 HGPRT 104968 HGSS 795 HGV 26829 HGVs 4690 HGW 17252 HH 2148330 +HHE 150152 HHV 264127 HI 12322373 HIA 124638 @@ -48345,6 +49169,7 @@ HIDs 4530 HIES 29736 HIFU 41171 HIGMS 129 +HIH 34900 HIJMS 1777 HIL 80010 HIP 945423 @@ -48366,6 +49191,7 @@ HLBs 1415 HLLV 23285 HLLVs 1283 HLS 180702 +HLX 4088 HM 2215222 HMA 323921 HMAC 62096 @@ -48456,6 +49282,7 @@ HPPE 39351 HPR 217847 HPT 180547 HPTs 9953 +HPU 51023 HPV 1603032 HPVs 38534 HPs 25885 @@ -48474,6 +49301,7 @@ HREE 121630 HREEs 2451 HRH 126107 HRIA 1305 +HRIP 1797 HRM 539675 HRMS 71494 HRP 1374461 @@ -48502,6 +49330,7 @@ HSE 227470 HSF 111732 HSFs 5644 HSH 39190 +HSIL 46631 HSK 20153 HSL 170355 HSM 307340 @@ -48522,6 +49351,8 @@ HT 3959211 HTF 87154 HTFU 247 HTH 143778 +HTLV 960858 +HTLVs 3754 HTM 120888 HTMS 2311 HTOL 5013 @@ -48537,6 +49368,7 @@ HTTPd 2963 HTs 19875 HU 1145031 HUAC 351547 +HUGO 413041 HUM 280887 HUMINT 148267 HUMs 613 @@ -48651,6 +49483,7 @@ Hachey 21987 Hachigian 6397 Hachiman 66422 Hacikyan 1437 +Hack 1058772 Hackbarth 55781 Hackbridge 3020 Hackel 115304 @@ -48743,6 +49576,7 @@ Hadramauti 454 Hadramautian 224 Hadramawt 29099 Hadramitic 512 +Hadrat 5470 Hadrian 1664327 Hadsell 73306 Hadsells 189 @@ -48811,6 +49645,7 @@ Hagemeyers 676 Hagen 2796885 Hagenbach 99507 Hagenbuch 35128 +Hagenow 30511 Hager 1217881 Hagerman 507466 Hagermans 1903 @@ -48888,6 +49723,7 @@ Hahns 38031 Hahnville 26511 Hai'an 689 Haian 2616 +Haiblum 2076 Haid 99494 Haida 559454 Haidan 6445 @@ -48963,6 +49799,7 @@ Hairs 325434 Hairsine 2894 Hairston 295993 Hairstons 3193 +Haishenwai 154 Haishenwei 364 Haisla 13446 Haislip 83944 @@ -49050,6 +49887,7 @@ Halbfinger 6708 Halbrook 57928 Halbrooks 8243 Halbur 11764 +Halchidhoma 10857 Halcomb 77571 Halcombs 257 Haldane 1208776 @@ -49098,6 +49936,7 @@ Halilovic 5452 Halim 181519 Halimede 719 Halki 14230 +Halkin 98720 Halko 11825 Halkomelem 19446 Halkos 1417 @@ -49130,6 +49969,7 @@ Halley 1994710 Halleyan 1724 Halleys 5432 Hallford 27861 +Hallgarth 6404 Hallgren 82814 Hallgrens 209 Halliburton 927657 @@ -49148,6 +49988,7 @@ Hallinan 200432 Hallinans 1025 Halling 50434 Hallings 13497 +Hallington 2197 Hallins 844 Hallisey 25972 Hallissey 6854 @@ -49236,6 +50077,7 @@ Halvorson 362868 Halvorsons 551 Halwill 804 Halych 5525 +Halyikwamai 3326 Halyna 7492 Ham 5136647 Hama 269249 @@ -49260,6 +50102,7 @@ Hamann 442519 Hamanns 2811 Hamans 6987 Hamar 131508 +Hamars 774 Hamas 1151566 Hamasaki 31883 Hamasien 5127 @@ -49376,6 +50219,7 @@ Hammersmith 519087 Hammerstrom 75580 Hammerton 69701 Hammertons 463 +Hammerwich 487 Hammes 116584 Hammett 1048705 Hammill 273760 @@ -49409,8 +50253,10 @@ Hampdens 25084 Hampe 109195 Hampes 732 Hampole 36329 +Hamprace 1421 Hamps 61130 Hampshire 33049031 +Hampshires 169879 Hampshirite 2022 Hampshirites 4885 Hampson 525159 @@ -49426,6 +50272,7 @@ Hamres 173 Hamric 26074 Hamrick 294121 Hams 542814 +Hamson 40628 Hamstra 26006 Hamstreet 2774 Hamsun 202680 @@ -49558,6 +50405,7 @@ Hankos 263 Hankou 49868 Hankow 958632 Hanks 2040646 +Hankul 2778 Hanley 2131953 Hanleys 4486 Hanlin 130582 @@ -49598,6 +50446,7 @@ Hannings 6055 Hannington 64646 Hanningtons 415 Hannis 86562 +Hannity 68672 Hannock 14200 Hannocks 273 Hannold 33864 @@ -49645,6 +50494,7 @@ Hanseong 858 Hanses 11618 Hansford 312040 Hansfords 637 +Hanshan 16434 Hanshaw 94200 Hanshaws 181 Hanshew 18218 @@ -49672,6 +50522,7 @@ Hanukka 7826 Hanukkah 420161 Hanukkahs 579 Hanuman 231905 +Hanunoo 20086 Hanvey 35314 Hanwell 57811 Hanwood 2462 @@ -49705,6 +50556,7 @@ Hapsford 104 Hapton 3954 Hapuku 1862 Haq 374106 +Haqq 49250 Haqs 1591 Haque 135509 Haques 175 @@ -49753,6 +50605,7 @@ Harbors 3290923 Harbottle 95187 Harbottles 537 Harbour 2464220 +Harbourne 10876 Harbours 172119 Harbourside 8094 Harbridge 61196 @@ -49764,9 +50617,12 @@ Harburn 6582 Harbury 40959 Harby 88342 Harbys 273 +Harcombe 13603 Harcourt 6599614 Harcourtian 136 Harcrow 6844 +Harcum 62854 +Harcums 555 Hard 13814545 Hardacre 74216 Hardacres 1410 @@ -49790,6 +50646,8 @@ Harders 23583 Harderwijk 13077 Hardesty 595776 Hardestys 1555 +Hardgrave 46718 +Hardgraves 2739 Hardgrove 98233 Hardgroves 327 Hardham 17126 @@ -49859,6 +50717,7 @@ Harger 214637 Hargers 1425 Hargett 159447 Hargetts 685 +Harghita 7814 Hargie 8770 Hargitay 18125 Hargrave 692839 @@ -50278,6 +51137,7 @@ Hasaka 2182 Hasan 1410732 Hasbrouck 589769 Hasbroucks 2380 +Hasbury 731 Hascall 157342 Hascalls 649 Hasday 11481 @@ -50581,6 +51441,8 @@ Havant 22622 Havard 212728 Havards 698 Havarti 17912 +Havasupai 214723 +Havasupais 18838 Havdala 4230 Havdalah 41036 Havdoloh 642 @@ -50628,6 +51490,7 @@ Hawai'ian 32489 Hawai'ians 9599 Hawaii 38781972 Hawaiian 13870279 +Hawaiiana 30400 Hawaiianize 101 Hawaiianized 1727 Hawaiianizing 196 @@ -50681,6 +51544,7 @@ Hawksworths 321 Hawkubite 166 Hawkubites 403 Hawkwell 1510 +Hawkwing 15807 Hawkyard 11137 Hawkyns 16420 Hawley 4279555 @@ -50792,6 +51656,7 @@ Hayton 108804 Hayward 4640913 Haywards 90924 Haywood 2251739 +Haywoods 6078 Hayworth 385954 Hayworths 1043 HazMat 44883 @@ -50894,6 +51759,7 @@ Hearns 71232 Hearon 66612 Hearons 1251 Hearst 3926738 +Hearstian 4888 Heart 25941389 Heartbleed 3100 Hearts 2206334 @@ -50938,6 +51804,7 @@ Heavin 8980 Heavins 604 Heaviside 292888 Heavner 47085 +Heawood 29332 Hebb 455156 Hebbard 68092 Hebbards 258 @@ -50963,6 +51830,7 @@ Heberleins 221 Heberling 75437 Heberlings 229 Hebert 1424826 +Heberts 5071 Hebes 14739 p Hebi 5610 Hebner 42989 @@ -51087,6 +51955,8 @@ Hedstroms 929 Hedtke 15564 Hedwig 398609 Hee 810706 +Heebie 11772 p +Heebies 291 p Heeg 23582 Heegaard 40166 Heekin 65046 @@ -51112,6 +51982,7 @@ Heffalump 9444 Heffalumps 2655 Heffelfinger 108783 Heffelfingers 461 +Heffer 98492 Heffern 22609 Heffernan 581240 Heffernans 1964 @@ -51143,6 +52014,10 @@ Hegelese 816 Hegelian 1317620 Hegelianism 193177 Hegelianisms 704 +Hegelianization 721 +Hegelianize 363 +Hegelianized 2756 +Hegelianizing 1233 Hegelianly 138 Hegelians 157394 Hegelism 6221 @@ -51216,6 +52091,8 @@ Heikkila 74270 Heil 728490 Heilig 169893 Heiligenberg 25357 +Heiliger 44787 +Heiligers 2583 Heiligs 403 Heilman 585165 Heilmans 1239 @@ -51235,6 +52112,7 @@ Heimdall 49222 Heimer 131623 Heimerl 29288 Heimers 4379 +Heimie 3270 Heimlich 223306 Heimliched 320 Heimliching 46 @@ -51326,6 +52204,7 @@ Heitzes 299 Heitzman 72469 Heitzmann 51010 Heitzmans 131 +Heixiazi 1234 Heizer 404441 Hejaz 217964 Hejazi 18789 @@ -51377,6 +52256,7 @@ Helgoland 131827 Helheim 9057 Helicon 346625 Heliconian 16992 +Helies 4603 Heligoland 182267 Heligolander 651 Heligolanders 1759 @@ -51544,6 +52424,7 @@ Helveys 249 Helvidian 1655 Helvidians 439 Helvie 17161 +Helwan 67010 Helwig 207640 Helwigs 413 Helzer 71586 @@ -51645,6 +52526,7 @@ Hendra 51703 Hendren 160888 Hendrens 462 Hendrey 23193 +Hendrich 33754 Hendrick 1538938 Hendricks 3246345 Hendricksen 58821 @@ -51810,8 +52692,10 @@ Hepp 130663 Heppelwhite 26501 Heppenstall 102461 Heppenstalls 193 +Hepplewhite 226596 Heppner 248297 Hepps 28369 +Hepscott 339 Heptanese 708 Heptanesia 255 Heptateuch 11496 @@ -51887,6 +52771,7 @@ Herculaneans 769 Herculaneum 498826 Herculean 504544 Hercules 6019891 +Herculeses 4057 Herculian 3839 Herculid 150 Herculids 537 @@ -51919,6 +52804,7 @@ Hereroland 5936 Hereros 45167 Hereth 23128 Hereward 273972 +Herford 319124 Hergert 47738 Hergesheimer 135572 Hergesheimers 861 @@ -52050,6 +52936,7 @@ Herschberger 22957 Herschbergers 221 Herschel 2161790 Herschelian 8385 +Herschels 24767 Herse 47400 Hersee 39919 Herself 506830 @@ -52103,6 +52990,7 @@ Herward 3832 Herwarth 27677 Herwig 169693 Herwigs 456 +Herx 4412 Herzberg 676992 Herzbergs 1440 Herzegovina 1814499 @@ -52288,6 +53176,8 @@ Heyes 86529 Heyford 27919 Heying 19113 Heyl 323059 +Heyliger 55762 +Heyligers 3421 Heyls 660 Heyman 623492 Heymann 411402 @@ -52373,6 +53263,7 @@ Hibshman 50189 Hice 61643 Hices 1276 Hichens 114201 +Hiciano 133 Hick 488681 Hickam 277197 Hickams 417 @@ -52476,6 +53367,7 @@ Higgsinos 1741 Higgsless 707 Higgson 739 High 148267567 +HighLife 386 Higham 474449 Highams 2979 Highbridge 66979 @@ -52497,6 +53389,7 @@ Highlandmen 9948 Highlands 5072378 Highley 99538 Highleys 126 +Highlife 18323 Highmore 214627 Highnam 12912 Highnesses 179732 @@ -52537,7 +53430,6 @@ Hilands 14279 Hilaria 72535 Hilario 120013 Hilarios 364 -Hilary 2314798 Hilbert 2486156 Hilbertian 13009 Hilborn 135758 @@ -52725,6 +53617,7 @@ Hind 2000721 Hindawi 43859 Hinde 480128 Hindee 6906 +Hindemithian 3184 Hindenburg 1061893 Hinderer 50044 Hinderers 1979 @@ -52911,6 +53804,8 @@ Hirohisa 12487 Hiroko 128705 Hiromitsu 25299 Hirono 72506 +Hirose 217549 +Hiroses 119 Hiroshi 917164 Hiroshima 2708064 Hiroshiman 186 @@ -53082,7 +53977,10 @@ Hizbullah 129046 Hizer 17985 Hjelm 58412 Hjelms 1024 +Hjelmslevian 2409 Hjerkinn 1849 +Hjort 162207 +Hjorts 1259 Hladik 41920 Hladki 983 Hlai 2852 @@ -53299,6 +54197,7 @@ Hoeppner 63838 Hoerner 135286 Hoerners 389 Hoerr 90998 +Hoeryong 3171 Hoes 377944 Hoeven 179267 Hoey 594643 @@ -53321,6 +54220,7 @@ Hoffer 599132 Hoffers 2143 Hoffert 76045 Hofferts 151 +Hoffler 16948 Hoffman 13730565 Hoffmann 3401315 Hoffmannian 674 @@ -53336,6 +54236,7 @@ Hoffpauir 43863 Hofland 44305 Hoflands 145 Hofman 317097 +Hofmann 1690536 Hofmans 6047 Hofmeister 285952 Hofmeisters 2314 @@ -53390,12 +54291,14 @@ Hogwarts 82801 Hoh 244154 Hohberg 9411 Hohe 93216 +Hohenberger 14496 Hohensee 18747 Hohenstaufen 217569 Hohenstein 71080 Hohensteins 1529 Hohenwald 47161 Hohenzollern 546553 +Hohenzollernism 2591 Hohenzollerns 180708 Hohhot 51436 Hohl 123101 @@ -53632,10 +54535,13 @@ Hollywoodian 5342 Hollywoodians 2089 Hollywooding 306 Hollywoodish 4352 +Hollywoodite 591 +Hollywoodites 2243 Hollywoodization 2983 Hollywoodize 274 Hollywoodized 3349 Hollywoodizing 328 +Hollywoodland 9831 Hollywoods 6806 Hollywoody 492 Holm 1703703 @@ -53647,7 +54553,9 @@ Holmer 135215 Holmers 4538 Holmes 22797488 Holmesian 34177 +Holmesiana 2703 Holmesians 1497 +Holmesy 969 Holmethorpe 974 Holmewood 1523 Holmfield 6127 @@ -53715,6 +54623,7 @@ Holtmans 151 Holton 1348615 Holtons 3749 Holtrop 34055 +Holtry 5329 Holts 79118 Holtsclaw 16662 Holtville 118437 @@ -53756,6 +54665,7 @@ Holzapfels 1235 Holzer 482384 Holzers 1223 Holzhauer 39802 +Holzhauser 13850 Holzinger 126025 Holzman 359672 Holzmans 1273 @@ -53890,6 +54800,7 @@ Honington 8938 Honiton 73384 Honley 8371 Honn 44361 +Honnavar 466 Honnold 120794 Honns 3090 Honolulu 13368418 @@ -53912,8 +54823,6 @@ Hontz 20878 Hoo 787076 Hoobler 81430 Hooblers 1013 -Hood 11773376 -Hoods 410174 Hooge 53365 Hoogeveen 22718 Hooghley 1363 @@ -53928,6 +54837,7 @@ Hookham 68064 Hookins 2612 Hooks 1225283 Hookses 955 +Hookway 33000 Hoole 167951 Hooles 991 Hooley 238061 @@ -53937,6 +54847,8 @@ Hoon 214232 Hoons 1957 Hoop 711214 Hooper 4311680 +Hooperating 4764 +Hooperatings 7201 Hoopes 469419 Hoopeses 199 Hoopingarner 22909 @@ -53948,6 +54860,8 @@ Hoosers 261 Hooses 861 Hoosier 1428387 Hoosierdom 9180 +Hoosierism 461 +Hoosierisms 453 Hoosierized 230 Hoosiers 318369 Hooson 13493 @@ -54046,6 +54960,7 @@ Horatios 3442 Horbury 36650 Horch 50440 Horchs 253 +Horcrux 3798 Hord 340962 Horden 39960 Horder 90922 @@ -54149,6 +55064,7 @@ Horsburgh 68761 Horsburghs 97 Horscroft 2267 Horse 14315971 +Horsebridge 1493 Horsefield 30732 Horsefields 210 Horsehay 1825 @@ -54322,6 +55238,7 @@ Hougland 41714 Houjie 721 Houlahan 33910 Houlder 32060 +Houldridge 467 Houldsworth 26027 Houle 225428 Houles 3402 @@ -54421,6 +55338,7 @@ Howdershelt 650 Howdon 5090 Howdyshell 6466 Howe 13830639 +Howeitat 8765 Howel 175665 Howell 10312713 Howellian 448 @@ -54498,6 +55416,7 @@ HqBn 567 Hrabalian 110 Hrach 7983 Hrachya 533 +Hrangkhawl 269 Hrazdan 4870 Hrdlicka 206130 Hrdlickas 237 @@ -54542,6 +55461,7 @@ Hsiehs 875 Hsikang 1787 Hsinchiang 1981 Hsinchu 171318 +Hsinfeng 723 Hsinhsing 681 Hsinhua 38814 Hsining 9884 @@ -54555,6 +55475,7 @@ Hsishuangpanna 267 Hsiung 293273 Hsiyu 747 Hsu 1859741 +Hsuanch'eng 127 Hsuanwu 469 Hsueh 356933 Hsuehchia 207 @@ -54583,6 +55504,7 @@ Huaman 20967 Huamani 2022 Huambo 39199 Huancavelica 74257 +Huancayo 150607 Huang 4836398 Huangchi 663 Huangchuan 704 @@ -54615,6 +55537,7 @@ Huastecs 9043 Huave 23074 Huawei 59369 Huaxi 9000 +Huayan 25626 Huayin 3226 Huaying 2643 Huayuan 4811 @@ -54670,6 +55593,7 @@ Hud 360131 Huda 104200 Hudak 113450 Hudd 56092 +Huddart 41413 Huddersfield 269735 Huddinge 40460 Huddle 219186 @@ -54791,9 +55715,11 @@ Hugley 5784 Hugli 47030 Hugo 8595865 Hugoesque 3028 +Hugolatry 308 Hugolian 3405 Hugonian 764 Hugoniot 239279 +Hugoniots 18121 Hugos 25592 Hugoton 248541 Huguan 471 @@ -54816,6 +55742,7 @@ Huie 201925 Huies 1124 Huiji 2533 Huilong 1179 +Huining 3708 Huinong 553 Huisentruit 953 Huish 83829 @@ -54837,10 +55764,12 @@ Huizinga 344760 Huizingas 277 Huk 126828 Hukbalahap 38115 +Hukbalahaps 8447 Hukill 61778 Hukills 289 Hukin 3753 Hukins 6941 +Hukou 13183 Huks 92835 Hulagu 58131 Hulaguid 172 @@ -54905,6 +55834,7 @@ Humalog 33904 Human 87595269 Humans 2759657 Humber 526442 +Humbermouth 1593 Humberside 58502 Humberston 14415 Humberstone 47470 @@ -54948,6 +55878,7 @@ Humphris 38003 Humphry 678798 Humphrys 51240 Humptulips 33043 +Humpy 42274 Hums 69285 Humulin 67512 Humvee 177988 @@ -54964,6 +55895,7 @@ Huncoat 681 Hundal 11977 Hundalee 565 Hundersfield 291 +Hunderton 996 Hundested 2508 Hundley 416759 Hundleys 1121 @@ -55108,6 +56040,7 @@ Hupps 2471 Huq 74184 Hur 769195 Hural 64359 +Hurcomb 6036 Hurd 3033840 Hurdle 209900 Hurdles 128903 @@ -55224,6 +56157,7 @@ Hutchenses 163 Hutcheon 167161 Hutcherson 116914 Hutcheson 1086623 +Hutchesonian 2617 Hutchin 65516 Hutchings 805025 Hutchins 2849554 @@ -55263,7 +56197,10 @@ Hutzel 57477 Hutzels 107 Hutzler 161750 Hutzlers 1081 +Hutzul 1725 +Hutzuls 1209 Huval 11952 +Huwaitat 1085 Huwe 14174 Huwes 1136 Huws 14827 @@ -55453,7 +56390,7 @@ IADS 26302 IADs 8952 IAEA 3332175 IAF 914596 -IAL 241393 +IALC 7463 IAM 973740 IAMAT 18686 IAMAW 18257 @@ -55485,6 +56422,7 @@ IAU 348348 IAW 150931 IAWN 1106 IAWTC 814 +IAZ 4059 IAs 60460 IB 4787266 IBA 583736 @@ -55506,6 +56444,7 @@ IBMs 36678 IBNR 52658 IBO 55318 IBRD 1432613 +IBRS 4949 IBSA 15145 IBU 58396 IBUs 8364 @@ -55516,6 +56455,7 @@ ICAC 86160 ICAEW 10989 ICANN 259885 ICAO 2190534 +ICAS 113060 ICB 174923 ICBN 15398 ICBO 79494 @@ -55542,7 +56482,6 @@ ICH 489712 ICHs 5747 ICI 1085702 ICK 107870 -ICL 382940 ICLE 82252 ICM 499240 ICME 36588 @@ -55566,6 +56505,7 @@ ICQs 477 ICR 594694 ICRA 81026 ICRC 663031 +ICRF 186319 ICRISAT 87252 ICS 1372612 ICSI 152382 @@ -55576,7 +56516,9 @@ ICTs 318356 ICU 1914704 ICUs 122678 ICV 104285 +ICW 125545 ICWUC 433 +ICWs 2522 ICYMI 331 ICZ 15198 ICZN 33316 @@ -55613,6 +56555,7 @@ IDPs 204878 IDR 141815 IDRC 103715 IDRK 224 +IDRs 14897 IDST 4330 IDT 350087 IDTs 22248 @@ -55662,6 +56605,7 @@ IFSMA 597 IFTTT 3549 IFU 34491 IG 2181853 +IGAS 7135 IGBT 185110 IGBTs 55376 IGCSE 8069 @@ -55680,9 +56624,11 @@ IGS 165218 IGT 318208 IGY 735682 IGZO 4414 +IHAT 7463 IHC 353262 IHCs 20362 IHEU 3686 +IHH 27196 IHOP 61790 IHP 133981 IHPs 4043 @@ -55696,6 +56642,8 @@ IHVS 323 IHVs 1301 IHWH 683 IIA 963909 +IIB 573077 +IIBs 2955 IIFE 16599 IIFEs 313 IIFS 6619 @@ -55706,6 +56654,7 @@ IIITs 420 IIIrd 32803 IINM 307 IIOP 35829 +IIR 353515 IIRC 6956 IIS 1322356 IIST 23909 @@ -55729,9 +56678,11 @@ ILECs 159351 ILGWU 395258 ILM 236081 ILO 2853315 +ILP 304379 ILPC 6760 ILR 291030 ILS 1187797 +ILSI 33965 ILTF 5767 ILUC 3869 ILs 93454 @@ -55826,6 +56777,7 @@ IOIs 6151 IOK 12689 IOLTA 127138 IOM 1118231 +IOOF 40187 IOOH 1645 IOP 734608 IOPC 9352 @@ -55837,6 +56789,7 @@ IOTAs 149 IOU 257875 IOUs 173802 IP 12829429 +IPA 1030536 IPAH 18733 IPAM 27979 IPAs 111185 @@ -55847,6 +56800,7 @@ IPCF 1953 IPF 273344 IPFS 4881 IPFs 19605 +IPI 355246 IPL 336780 IPLC 4490 IPLCs 347 @@ -55868,7 +56822,10 @@ IPSID 6899 IPSO 21538 IPTC 16722 IPTG 92510 +IPTS 72577 IPTV 85313 +IPW 25182 +IPWs 329 IPX 360722 IPY 29875 IPs 360332 @@ -55876,7 +56833,6 @@ IQ 6075769 IQP 7463 IQed 57 IQs 470850 -IR 12287346 IRA 6698971 IRAS 347244 IRAs 1228165 @@ -55913,7 +56869,6 @@ IRT 688869 IRU 432399 IRUs 13398 IRV 89073 -IRs 99870 ISA 2418504 ISAF 147035 ISAM 129579 @@ -55988,6 +56943,7 @@ ISWAP 949 ISX 77675 IT 43133901 ITA 1600126 +ITAD 3524 ITAR 574356 ITB 101567 ITBS 56433 @@ -56249,6 +57205,7 @@ Idomeni 728 Idoni 1238 Idowu 31753 Idren 23539 +Idridgehay 158 Idriess 4818 Idrija 6354 Idrijca 317 @@ -56375,6 +57332,7 @@ Ilagans 343 Ilam 31637 Ilan 348896 Ilardi 14765 +Ilava 2013 Ilbert 49244 Ilbery 10803 Ilchester 83554 @@ -56428,6 +57386,7 @@ Illarionova 1336 Illawarra 35225 Ille 197104 Illecillewaet 10476 +Illia 48103 Illidge 10512 Illig 69049 Illigs 167 @@ -56592,6 +57551,7 @@ Inch 3068347 Inchbald 123115 Incheon 36349 Inchicore 5807 +Inchture 1286 Inclan 80427 Inclans 143 Incoll 2757 @@ -56603,11 +57563,13 @@ Ind 7802072 IndE 2201 Inda 99917 Indas 1701 +Indefatigable 135697 Indelicato 25075 Independence 21032947 Independency 143277 Independentism 2077 Index 56155886 +Indi 354582 India 101348166 Indiaman 133170 Indiamen 75991 @@ -56644,10 +57606,12 @@ Indic 620183 Indid 9352 Indie 471322 Indies 17861304 +Indiewood 2597 Indigenous 3085363 Indio 532869 Indira 573098 Indish 760 +Indo 5647040 Indoaryan 287 Indochina 3644957 Indochinese 838881 @@ -56672,6 +57636,7 @@ Indophilia 293 Indophobia 537 Indophobic 44 Indore 104355 +Indos 35954 Indosphere 253 Indra 885512 Indramayu 3627 @@ -56693,7 +57658,9 @@ Infinger 5581 Inflation 5404548 Infobahn 9158 Inga 520558 +Ingaevones 3148 Ingaevonic 267 +Ingalik 34783 Ingall 51195 Ingalls 2208179 Ingalsbe 32934 @@ -56902,6 +57869,7 @@ Inti 174556 Intriago 8697 Introibo 8308 Intwood 962 +Inughuit 3578 Inuinnaqtun 645 Inuit 1064496 Inuits 44367 @@ -56909,6 +57877,7 @@ Inuk 21332 Inukai 59945 Inuks 147 Inuktitut 42453 +Inuktun 1073 Inundation 124655 Inupiak 1128 Inupiaq 56265 @@ -56933,12 +57902,12 @@ Invernesses 391 Invernessshire 7397 Invershin 1059 Inversnaid 15373 +Inveruglas 1035 Inverurie 14116 Invidia 16512 Inwa 5811 Inworth 750 Inyokern 63745 -Inzone 241 Inzunza 7018 Io 8752414 IoC 20596 @@ -56996,6 +57965,7 @@ Ippolitos 597 Ipsariots 919 Ipsen 100365 Ipsens 141 +Ipstones 919 Ipswich 2129327 Iqaluit 20318 Iqan 2846 @@ -57057,6 +58027,7 @@ Irawaddi 1047 Irawaddy 10361 Irawadi 20327 Irawady 1704 +Iraya 4143 Irazabal 3395 Irbil 28925 Irby 437000 @@ -57104,6 +58075,8 @@ Irishism 10852 Irishisms 2450 Irishization 133 Irishize 121 +Irishized 276 +Irishizing 103 Irishlike 241 Irishly 1049 Irishman 2630886 @@ -57146,6 +58119,7 @@ Irshava 577 Irt 46920 Irthlingborough 3218 Irtysh 99116 +Irudayaraj 3979 Irukandji 3583 Irula 6601 Irulas 4735 @@ -57185,6 +58159,7 @@ Isabel 6985431 Isabela 284048 Isabell 142779 Isabella 6199657 +Isabellas 17477 Isabelle 2063085 Isabelline 7756 Isackson 10796 @@ -57193,6 +58168,7 @@ Isadore 627083 Isager 9154 Isaiah 9238319 Isaian 21578 +Isaianic 45688 Isaias 194649 Isakov 54329 Isaksen 55542 @@ -57259,6 +58235,7 @@ Isherwoods 1184 Ishibashi 148999 Ishida 354828 Ishidas 442 +Ishigaki 59879 Ishigawa 1037 Ishihara 297235 Ishii 609450 @@ -57273,6 +58250,8 @@ Ishiwara 34035 Ishiyama 57276 Ishizaki 55536 Ishizawa 20220 +Ishkashimi 343 +Ishkashmi 738 Ishmael 1896171 Ishmaelian 1678 Ishmaelians 316 @@ -57291,6 +58270,8 @@ Isidora 61160 Isidore 1273241 Isidores 2836 Isidorian 25358 +Isinai 1540 +Isinay 1778 Isinya 201 Isip 5125 Isis 2342100 @@ -57364,6 +58345,8 @@ Islams 33861 Island 135869968 Islandeady 264 Islanders 1814420 +Islands 50865810 +Islandside 379 Islas 262991 Islay 143433 Isle 8421683 @@ -57398,6 +58381,8 @@ Ismailiyah 903 Ismay 238284 Ismays 706 Ismene 139144 +Isnag 1007 +Isneg 20888 Isner 39064 Isners 502 Isobel 768542 @@ -57558,6 +58543,7 @@ Ithakans 1183 Itie 13406 Ities 8666 Itihasa 5343 +Itneg 3791 Ito 1991623 Itoism 283 Itoist 115 @@ -57576,6 +58562,7 @@ Iturbide 381864 Iturbides 1987 Iturea 13544 Iturean 1592 +Itureans 4878 Iturralde 24863 Iturup 23516 Itylos 1571 @@ -57746,6 +58733,7 @@ JBC 192595 JBHS 618 JBIG 15568 JBOD 8198 +JBS 85175 JBW 22506 JC 3549679 JCA 95558 @@ -57761,6 +58749,7 @@ JCP 328951 JCPOA 12617 JCR 71475 JCRs 429 +JCS 1454022 JCSS 15455 JCVI 3098 JDAM 40357 @@ -57772,6 +58761,7 @@ JDKs 1887 JDL 78400 JDLR 505 JDM 60797 +JDN 18798 JDP 56307 JDT 10867 JDWP 892 @@ -57817,6 +58807,7 @@ JJ 6913813 JJJ 61107 JK 1107457 JKD 5851 +JKR 17742 JLB 27850 JLPT 1047 JLS 48796 @@ -57838,9 +58829,10 @@ JNLP 9065 JNOV 91099 JNOVs 451 JNS 16202 -JOI 69735 +JOI 69735 p JOMO 4385 JOOC 338 +JP 4544558 JPA 123503 JPAS 3703 JPBM 1958 @@ -57909,6 +58901,7 @@ JVM 227100 JVMDI 424 JVMTI 435 JVMs 18011 +JWICS 5174 JWSDP 3630 JWST 30736 JWT 126673 @@ -57972,7 +58965,9 @@ Jacksboro 129668 Jackson 80902134 Jacksonesque 309 Jacksonian 1038355 +Jacksonianism 20644 Jacksonians 157772 +Jacksonism 17077 Jacksonite 2331 Jacksonites 5778 Jacksonmania 139 @@ -58113,6 +59108,7 @@ Jaghatay 272 Jagiellonian 86300 Jagielski 17481 Jagmeet 711 +Jago 397723 Jagoda 29194 Jagodzinski 17582 Jagose 11802 @@ -58246,17 +59242,20 @@ Jamir 7027 Jamison 1847070 Jamjoom 4389 Jammu 393237 +Jamnapari 791 Jamnia 65812 Jamnian 1823 Jamrach 7773 Jamrachs 103 Jamul 46816 +Jamunapari 1547 Jan 42117920 Jana 790191 Janae 26788 Janak 49541 Janaka 42002 Janaki 45282 +Janambre 933 Janamejaya 11222 Janani 8390 Janazah 1015 @@ -58472,6 +59471,7 @@ Jarejah 221 Jarema 96468 Jarett 29657 Jariwala 2543 +Jarlsberg 28445 Jarman 745446 Jarmans 4065 Jarmina 189 @@ -58479,6 +59479,7 @@ Jarmo 66137 Jarmon 42976 Jarmons 145 Jarnac 56477 +Jarnacs 143 Jarnagin 84435 Jarnagins 137 Jarnigan 19608 @@ -58494,6 +59495,7 @@ Jarrard 68507 Jarrards 267 Jarratt 156300 Jarreau 36337 +Jarred 98884 Jarrell 653000 Jarrells 5192 Jarrett 1214135 @@ -58609,6 +59611,7 @@ Jaxx 11839 Jay 18495022 Jaya 395526 Jayantha 8451 +Jayapal 2043 Jayaraman 66222 Jayasri 2750 Jayce 57128 @@ -58637,6 +59640,7 @@ Jayna 16901 Jayne 1238431 Jaynes 381698 Jaynesian 346 +Jayo 5083 Jayroe 7677 Jays 379591 Jayse 758 @@ -58688,6 +59692,7 @@ Jebusitic 355 Jeconiah 44935 Jed 1609899 Jedburgh 108258 +Jedda 73450 Jeddah 347900 Jeddart 5492 Jedediah 533308 @@ -58761,6 +59766,7 @@ Jekyllian 245 Jelen 58878 Jelena 60298 Jelens 157 +Jelf 33967 Jelgava 21733 Jelinek 287135 Jelineks 978 @@ -58871,6 +59877,7 @@ Jeremias 355482 Jeremy 6065991 Jeremys 3121 Jerez 212563 +Jerezano 1271 Jerger 104953 Jergers 251 Jeri 267633 @@ -58911,6 +59918,7 @@ Jerseyman 42162 Jerseymen 47288 Jerseys 871133 Jerseyville 158897 +Jerseywoman 174 Jersian 412 Jersians 953 Jerusalem 33398347 @@ -58919,6 +59927,7 @@ Jerusalemites 36728 Jerusalems 22117 Jerusha 294665 Jervis 1354933 +Jeryl 24103 Jeschke 45656 Jesenice 8422 Jeshua 145090 @@ -58983,6 +59992,7 @@ Jesusology 1178 Jesusy 772 Jet 7715738 Jeter 555175 +Jethart 1618 Jethou 6937 Jethro 735052 Jethronian 230 @@ -59000,6 +60010,7 @@ Jeumont 14110 Jeune 502980 Jeunes 106595 Jeung 18818 +Jevington 2286 Jevonian 4771 Jevons 527649 Jevonsian 660 @@ -59059,6 +60070,7 @@ Jezek 36206 Jezerite 828 Jezerites 1451 Jezero 6111 +Jezes 128 p Jezierski 15744 Jeziorski 6410 Jezkazgan 475 @@ -59066,8 +60078,10 @@ Jezreel 311929 Jezreelite 23915 Jezreelites 1345 Jezza 3901 +Jezzies 101 Jezzy 4404 Jha 193767 +Jhang 14357 Jhangar 1992 Jharkhand 44877 Jharkhandi 840 @@ -59077,6 +60091,7 @@ Jhaveri 23615 Jhelum 85475 Jhilam 1929 Jhongli 2571 +Jhukar 5339 Ji 1667204 Ji'an 8104 Jia 522388 @@ -59132,6 +60147,7 @@ Jicaquean 500 Jicaques 2899 Jicarilla 347054 Jidda 264778 +Jiddah 71046 Jiefang 26892 Jiexiu 1237 Jieyang 2804 @@ -59167,6 +60183,7 @@ Jimmerson 30373 Jimmersons 183 Jimmi 29636 Jimmie 1872460 +Jimmies 16051 Jimmy 14316447 Jimmys 6407 Jims 65100 @@ -59192,6 +60209,7 @@ Jingdezhen 30521 Jinghong 14497 Jinghpaw 9292 Jinghpo 295 +Jinghu 2234 Jingjiang 7694 Jingle 309533 Jinglish 560 @@ -59363,8 +60381,10 @@ Johannite 5242 Johannites 3456 Johannsen 377460 Johannsens 552 +Johansen 987122 Johanson 449797 Johansons 2245 +Johanssen 36022 Johansson 897855 John 595719541 Johnathan 191183 @@ -59379,6 +60399,7 @@ Johnna 32923 Johnnie 1871311 Johnno 16090 Johns 22464404 +Johnshaven 988 Johnsmas 277 Johnson 133097863 Johnsonese 10934 @@ -59474,6 +60495,7 @@ Joni 528233 Jonker 116562 Jonkers 25810 Jonna 41577 +Jonny 267487 Jonovich 1207 Jonquil 71356 Jons 127327 @@ -59483,6 +60505,7 @@ Jonsonesque 49 Jonsonian 55320 Jonty 25279 Jools 47539 +Joondalup 4487 Joos 196002 Joosten 58403 Joostens 3541 @@ -59578,6 +60601,7 @@ Josy 25636 Jotnian 6327 Jotto 3381 Jotun 23603 +Jotunheim 37050 Jotunn 2602 Jotunns 105 Jotuns 9309 @@ -59745,6 +60769,7 @@ Jue 105382 Juelz 1739 Juenger 31605 Jues 4207 +Juewa 893 Juffrou 874 Jugashvili 961 Juggalo 2739 @@ -59787,6 +60812,7 @@ Julianus 114381 Juliard 7848 Julias 61542 Julie 9169216 +Julien 1878307 Julies 9395 Juliet 4091350 Juliett 12666 @@ -59878,6 +60904,7 @@ Jura 806337 Jurado 100100 Jurados 1471 Jurane 1238 +Juras 34044 Jurassian 2502 Jurassic 3920945 Jurchen 75772 @@ -59949,17 +60976,18 @@ Juvigny 17727 Juxtlahuaca 10704 Juzwiak 3235 Jyeshta 465 +Jyles 1251 Jyotis 3251 Jyotsna 18471 Jystrup 562 Jyutping 142 +K'gari 116 K'iche' 869 KA 1807919 KAB 54718 KABs 665 KAH 50545 KAIST 37051 -KAM 138657 KAMs 1116 KAON 70150 KAP 116422 @@ -60005,6 +61033,7 @@ KGBs 923 KGV 3864 KGs 3072 KHL 8345 +KHV 7600 KIAS 58375 KIAs 12489 KIBS 11212 @@ -60024,6 +61053,7 @@ KLOC 26244 KLOCs 359 KLV 256299 KMA 94210 +KMAG 30434 KMO 23735 KMS 212925 KMT 948255 @@ -60041,6 +61071,8 @@ KOMs 273 KOR 300872 KORT 10145 KOS 62318 +KOed 1260 +KOing 382 KOs 19042 KPA 137639 KPCs 1865 @@ -60051,6 +61083,7 @@ KPP 46269 KPPs 4587 KPg 750 KPs 13748 +KRAs 7187 KREC 1754 KREEP 127408 KRI 32545 @@ -60058,6 +61091,8 @@ KRIs 9990 KRK 12986 KSAs 69776 KSCs 1906 +KSF 21801 +KSFs 4085 KSH 24134 KSLOC 4210 KSLV 1850 @@ -60077,6 +61112,7 @@ KUT 32481 KV 809241 KVM 69684 KVMs 745 +KVO 13730 KWIC 136190 KWICs 299 KX 190372 @@ -60097,10 +61133,12 @@ Kabakjian 3999 Kabalah 19885 Kabalarian 728 Kabalarians 282 +Kabalebo 2474 Kaballah 9138 Kabard 1950 Kabarda 12503 Kabardas 511 +Kabardia 2627 Kabardian 23092 Kabardians 6933 Kabardin 9827 @@ -60115,6 +61153,7 @@ Kabballah 1205 Kabeer 35831 Kabel 60546 Kabels 380 +Kabinda 12261 Kabir 328599 Kabirpanthi 637 Kabirpanthis 1676 @@ -60136,6 +61175,7 @@ Kabyles 81627 Kabylia 57115 Kabylian 3077 Kabylians 524 +Kacchi 1530 Kacee 4263 Kacer 8095 Kacey 47774 @@ -60298,6 +61338,7 @@ Kaimata 152 Kain 495781 Kaindu 338 Kaine 132061 +Kainei 1318 Kaines 9195 Kaingang 23784 Kaingangs 347 @@ -60338,9 +61379,9 @@ Kajkavian 8929 Kakadu 51325 Kakahi 476 Kakamas 3874 -KakaoTalk 569 Kakar 65851 Kakars 1287 +Kakatiya 6143 Kakchiquel 2286 Kakeya 9088 Kakheti 8828 @@ -60380,6 +61421,7 @@ Kalanga 26848 Kalani 50011 Kalanis 200 Kalao 1927 +Kalapooia 327 Kalapooian 3956 Kalapooians 181 Kalapuya 28268 @@ -60405,6 +61447,7 @@ Kaldani 847 Kaldenkirchen 3336 Kaldera 1851 Kalderash 7770 +Kalderon 10585 Kaldor 301122 Kaldors 317 Kale 706414 @@ -60471,6 +61514,8 @@ Kalkfontein 2487 Kalks 561 Kall 48071 Kalla 45502 +Kallam 21615 +Kallams 97 Kallan 10247 Kallans 1940 Kallar 14775 @@ -60526,6 +61571,7 @@ Kalyke 791 Kalymnos 20721 Kalynets 2524 Kalynivka 205 +Kalypso 29506 Kalyuzhny 3391 Kalyuzhnyi 5129 Kalyuzhnyy 2535 @@ -60550,6 +61596,7 @@ Kamas 68436 Kamasin 370 Kamasins 195 Kamassian 842 +Kamassin 777 Kamat 56864 Kamath 77363 Kamats 658 @@ -60594,6 +61641,7 @@ Kaminski 409503 Kaminskis 2797 Kaminsky 366374 Kaminskys 1221 +Kamisato 1268 Kamler 18243 Kamloops 204033 Kamman 55115 @@ -60602,6 +61650,7 @@ Kammerer 271388 Kammerers 569 Kammermeyer 14327 Kammers 2075 +Kammes 1256 Kamo 135646 Kampa 31622 Kampala 620088 @@ -60614,6 +61663,7 @@ Kampes 716 Kamphaus 41901 Kampmann 58539 Kampmanns 202 +Kampo 42190 Kampuchea 1209875 Kampuchean 460006 Kampucheans 30528 @@ -60638,6 +61688,7 @@ Kanagawa 675984 Kanagy 28304 Kanagys 201 Kanak 76852 +Kanaka 205565 Kanakanavu 261 Kanako 19057 Kanaks 18092 @@ -60653,6 +61704,7 @@ Kanauji 3850 Kanauri 3634 Kanawari 850 Kanawha 3153989 +Kanayan 1233 Kanazawa 336982 Kanban 124086 Kanchanaburi 26782 @@ -60733,12 +61785,15 @@ Kanno 89125 Kannon 151556 Kannos 151 Kanns 3892 +Kannur 4283 Kano 826097 Kanode 9246 Kanoj 969 Kanos 4593 Kanouse 98580 +Kanpo 4765 Kanpur 172036 +Kanr 3823 Kanred 66444 Kanroji 1251 Kansa 132610 @@ -60793,6 +61848,7 @@ Kaolack 23616 Kaori 30471 Kaoru 183293 Kaosiung 1419 +Kaoteng 443 Kaoyu 1472 Kapadia 63531 Kapalua 56314 @@ -60801,6 +61857,7 @@ Kapampangans 581 Kapan 9416 Kapela 5118 Kapian 3455 +Kapicic 161 Kapilavastu 32226 Kapingamarangi 43470 Kapinos 12461 @@ -60860,9 +61917,11 @@ Karakashian 9307 Karakax 239 Karakelong 762 Karakhanid 4079 +Karakol 10026 Karakoram 114016 Karakorum 86255 Karakul 96690 +Karakulov 1323 Karam 163901 Karamanian 4831 Karamanians 781 @@ -60877,6 +61936,7 @@ Karams 418 Karanga 31400 Karangetang 519 Karanja 35291 +Karankawa 51255 Karao 2707 Karapetian 8622 Karapetyan 19790 @@ -60984,6 +62044,7 @@ Karluks 3332 Karly 59604 Karlyn 46364 Karm 23506 +Karma 900147 Karman 615376 Karmans 903 Karmathian 1023 @@ -61070,6 +62131,7 @@ Kasanje 7669 Kasari 23127 Kasbarian 2053 Kasch 96277 +Kaschak 22117 Kaschuba 2507 Kase 191883 Kasel 23424 @@ -61089,6 +62151,7 @@ Kashaya 31974 Kashchei 5028 Kashchey 3771 Kashey 2713 +Kashgai 3445 Kashgar 195839 Kashgari 5063 Kashgaris 824 @@ -61214,7 +62277,10 @@ Katharevousa 5821 Katharine 3675391 Katherine 9963986 Katheryn 109326 +Kathgodam 1519 Kathi 197385 +Kathiawari 1593 +Kathiawaris 317 Kathie 365793 Kathina 2762 Kathleen 7690248 @@ -61330,6 +62396,7 @@ Kaveney 11753 Kavenna 2969 Kaveri 36067 Kavieng 37455 +Kavirondo 62996 Kaw 516269 Kawa 86048 Kawachi 113490 @@ -61338,6 +62405,7 @@ Kawaguchi 201771 Kawaguchis 545 Kawahara 105917 Kawaida 23461 +Kawaiisu 41066 Kawak 3646 Kawamoto 120353 Kawamura 288145 @@ -61391,6 +62459,7 @@ Kayseri 59883 Kayson 7582 Kaytetye 1751 Kayunga 1144 +Kayuvava 530 Kazafi 343 Kazak 131237 Kazakh 864812 @@ -61435,6 +62504,8 @@ Kazumi 48462 Kazuo 409809 Kazuomi 2041 Kazuyoshi 36875 +Kb 510465 +Kbs 6261 Ke 1181751 KeV 198321 Kea 429949 @@ -61493,6 +62564,9 @@ Kebili 3059 Keble 433588 Kebnekaise 6461 Kechi 11740 +Kechua 12921 +Kechuan 1386 +Kechumaran 224 Keck 1064405 Keckler 23672 Kecks 9265 @@ -61531,6 +62605,8 @@ Keelings 2172 Keels 80136 Keelung 109108 Keely 375442 +Keemun 5606 +Keemuns 541 Keen 2167813 Keena 53832 Keenan 1881570 @@ -61577,6 +62653,7 @@ Kefallonia 1423 Kefalonia 5949 Keffer 128039 Keffers 974 +Keflavik 74404 Keftiu 14593 Kegel 181431 Kegels 21643 @@ -61586,6 +62663,7 @@ Kegler 44646 Keglers 1922 Kegley 146411 Kegleys 453 +Kegon 38489 Kegworth 5695 Kehl 211059 Kehler 77730 @@ -61646,6 +62724,7 @@ Keizer 115571 Keizers 1579 Kejia 8165 Keka 2879 +Kekchi 56550 Kekule 117757 Kekulean 511 Kel 508887 @@ -61696,6 +62775,7 @@ Kelleytown 579 Kelli 259516 Kellianne 921 Kellie 229939 +Kellies 1771 Kelligrews 563 Kelliher 128749 Kellihers 213 @@ -62003,6 +63083,8 @@ Keralite 4265 Keralites 4417 Keram 66769 Keranen 13589 +Kerang 6028 +Keratol 16455 Keraunia 265 Kerber 251069 Kerberos 305911 @@ -62048,6 +63130,7 @@ Kerlin 186026 Kerlins 2132 Kerls 2596 Kerman 377527 +Kermanji 1399 Kermans 2052 Kermanshah 87551 Kermit 1048926 @@ -62190,6 +63273,7 @@ Ketterling 8582 Ketterman 25990 Ketters 875 Kettle 1409627 +Kettlebrook 869 Kettler 118417 Kettlers 680 Kettles 255769 @@ -62308,6 +63392,7 @@ Khanbaligh 1516 Khanbalik 4596 Khanbalikh 62 Khanbaliq 5228 +Khandallah 1109 Khandelwal 31151 Khandelwals 625 Khanderi 543 @@ -62321,6 +63406,8 @@ Khanna 249983 Khannas 830 Khanty 59731 Khanukah 497 +Khanzadian 2087 +Kharaghoda 540 Kharatian 361 Kharatyan 1097 Kharberd 682 @@ -62344,6 +63431,7 @@ Khartoumers 1089 Khas 47280 Khasa 8640 Khasas 2487 +Khashgai 93 Khashoggi 66496 Khashoggis 321 Khashuqji 453 @@ -62747,6 +63835,7 @@ Kilkee 16022 Kilkenny 592726 Kilker 18828 Kill 4059473 +Killadelphia 176 Killaloe 50181 Killam 227637 Killamarsh 874 @@ -62812,11 +63901,13 @@ Kilmer 641596 Kilmerian 88 Kilmers 3153 Kilmersdon 1384 +Kilner 96569 Kilnhurst 1163 Kilnsea 1776 Kilpatrick 1984167 Kilpatricks 5652 Kilpeck 5922 +Kilpedder 183 Kilpin 8272 Kilrea 6132 Kilroy 308720 @@ -62898,6 +63989,7 @@ Kimmeridgian 79085 Kimmes 8589 Kimmet 5951 Kimmey 60917 +Kimmie 51333 Kimmirut 768 Kimmitt 44172 Kimmy 70051 @@ -62999,6 +64091,8 @@ Kingma 44166 Kingman 1410893 Kingmen 3461 Kingmoor 471 +Kingo 29870 +Kingos 393 Kingrey 12361 Kings 17091719 Kingsberry 24725 @@ -63037,11 +64131,13 @@ Kingswear 4249 Kingswinford 7095 Kingswood 202711 Kingswoods 232 +Kingthorpe 518 Kington 68960 Kingtons 133 Kingu 20091 Kingussie 10976 Kingvale 1968 +Kingwana 4963 Kingwood 317496 Kingyang 183 Kinh 54563 @@ -63049,6 +64145,7 @@ Kinikinao 495 Kinion 11439 Kinipetu 1607 Kinist 66 +Kinistino 2379 Kinjo 22275 Kinkade 135563 Kinkades 631 @@ -63226,6 +64323,7 @@ Kirin 337940 Kiriri 2994 Kirishima 35998 Kiritimati 9351 +Kiriwina 27836 Kiriwinan 276 Kiriwinans 171 Kirk 8893323 @@ -63285,6 +64383,7 @@ Kirlian 61291 Kirlin 95564 Kirlins 367 Kirman 129553 +Kirmanshah 9398 Kirmington 1266 Kirmse 22620 Kirn 105151 @@ -63401,6 +64500,7 @@ Kitalpha 233 Kitamura 234189 Kitamuras 463 Kitan 18270 +Kitanemuk 10947 Kitans 4924 Kitara 21988 Kitasoo 1046 @@ -63423,6 +64523,7 @@ Kithcart 13517 Kithira 3665 Kitinen 187 Kitja 1315 +Kitkehahki 2963 Kitlope 3653 Kits 1036781 Kitsberg 587 @@ -63538,6 +64639,8 @@ Klanism 3888 Klanjec 571 Klankraft 2505 Klann 32603 +Klanner 6377 +Klanners 4555 Klannish 1671 Klansman 119072 Klansmen 283357 @@ -63558,6 +64661,7 @@ Klass 264059 Klasses 741 Klatskin 34444 Klatt 177793 +Klatte 29522 Klatts 471 Klauer 50926 Klaukkala 241 @@ -63647,6 +64751,8 @@ Klevens 18773 Kleves 274 Klexter 1413 Klexters 105 +Klickitat 338834 +Klickitats 8250 Kliemann 9959 Klien 43852 Kliens 389 @@ -63655,6 +64761,8 @@ Kliers 689 Kliethermes 3939 Kliewer 68882 Kliewers 241 +Klikitat 24746 +Klikitats 4165 Klim 64243 Klimas 45600 Klimek 55316 @@ -63777,6 +64885,8 @@ Kluxers 25021 Kly 19023 Klymchuk 671 Klytia 3161 +Kmer 3081 +Kmers 509 Kmetz 26177 Kmhmu 3139 Kmiec 37909 @@ -63862,6 +64972,7 @@ Kniffins 473 Knigge 49312 Knigges 209 Knight 17805241 +Knightdale 14493 Knighten 26892 Knightens 285 Knightian 12309 @@ -63960,6 +65071,7 @@ Knowlton 2031600 Knowltons 5304 Knowsley 45185 Knowsthorpe 149 +Knowstone 425 Knox 13968137 Knoxian 2451 Knoxville 8384790 @@ -63986,6 +65098,7 @@ Knysna 32194 Ko 2083632 KoRT 659 Koalas 22265 +Koalib 2152 Koasati 42810 Koasatis 873 Kobane 3066 @@ -64072,6 +65185,7 @@ Koenig 1726068 Koenigs 77982 Koenigsberg 171747 Koepangers 273 +Koepka 723 Koepke 108004 Koepkes 279 Koepp 62897 @@ -64103,6 +65217,7 @@ Koffs 1125 Kofman 105811 Kofoed 54624 Kofoeds 492 +Koforidua 11423 Kofu 34204 Koga 191622 Kogan 600839 @@ -64174,6 +65289,7 @@ Kojima 312678 Kojimas 336 Kok 467234 Kokama 1252 +Kokand 53369 Kokang 11567 Kokatha 217 Kokay 1969 @@ -64239,6 +65355,7 @@ Kollar 132746 Kollars 2891 Koller 417712 Kollers 1554 +Kollidam 303 Kollie 10997 Kolling 20423 Kollings 410 @@ -64256,7 +65373,9 @@ Kolodey 489 Kolodii 1062 Kolodij 541 Kolodiy 1260 +Kolodzei 1231 Kolodzej 189 +Kolodzey 2303 Kolodziej 50031 Kolomna 38056 Kolomyia 2012 @@ -64288,10 +65407,12 @@ Komarno 16747 Komars 1442 Komatsu 306633 Komatsus 195 +Komering 2878 Komi 214546 Komintang 111 Komis 14255 Komisaruk 18430 +Kommandatura 50750 Komnenian 4770 Komnenoi 3840 Komnenos 27679 @@ -64365,6 +65486,7 @@ Konotop 12205 Konoval 1390 Konowal 1255 Konrath 17974 +Konsomol 830 Konstadinos 2567 Konstantina 8374 Konstantinovka 6115 @@ -64390,6 +65512,7 @@ Koolhaasian 139 Kools 29962 Koonce 166904 Koonces 169 +Koondrook 268 Kooner 5903 Kooners 280 Koons 430446 @@ -64486,6 +65609,8 @@ Koreish 62916 Koreishite 5209 Koreishites 28908 Korematsu 161293 +Koren 327528 +Korens 3405 Koresh 201110 Koreshan 47431 Koreshanity 18966 @@ -64508,10 +65633,13 @@ Koriaks 10878 Korinek 24854 Korinthian 6216 Korinthians 2857 +Korintje 918 Korla 11568 Korman 266978 Kormans 1211 Kornacki 11350 +Kornblum 122619 +Kornblums 460 Kornbluth 68166 Kornegay 172120 Kornegays 3647 @@ -64634,6 +65762,7 @@ Koster 670300 Kosters 68572 Kostiantyn 1493 Kostic 42147 +Kostich 10355 Kostick 17014 Kostiuk 18727 Kostka 88254 @@ -64753,6 +65882,7 @@ Kowalsky 63307 Kowalskys 171 Kowitz 17487 Kowloon 502493 +Kowloonside 203 Kowohl 195 Kowoll 107 Kowtun 283 @@ -64991,6 +66121,8 @@ Kreutzer 326341 Kreutzers 2283 Kreutzmann 18980 Kreuzberg 53243 +Krevin 1154 +Krevinian 106 Krewson 46026 Krey 151549 Kreye 15192 @@ -65014,6 +66146,7 @@ Krier 135824 Kriers 639 Kriesel 23913 Kriesels 198 +Kriete 26121 Krigbaum 25883 Kriger 46235 Krigers 211 @@ -65041,6 +66174,7 @@ Krishnamurtis 218 Krishnan 352666 Krishnans 1397 Krishnas 46197 +Krishnashtami 149 Krishnaswamy 56025 Krissie 12050 Krissy 52918 @@ -65139,6 +66273,8 @@ Kroner 270971 Kroners 4439 Kronhausen 14682 Kroni 2496 +Kronie 237 +Kronies 211 Kronk 86257 Kronks 1075 Kronoberg 9261 @@ -65222,10 +66358,12 @@ Krzywda 2999 Krzywicki 25974 Krzyzaniak 12177 Krzyzanowski 49541 +Ksenia 26549 Kshatriya 90231 Kshatriyas 65353 Kshetri 2859 Ksiazek 18477 +Ksp 59870 Kt 695272 Ktulu 412 Ktunaxa 2081 @@ -65236,6 +66374,7 @@ Kuan 792722 Kuandian 709 Kuang 559589 Kuangs 514 +Kuanhsi 365 Kuans 2940 Kuanshan 622 Kuantan 34181 @@ -65277,6 +66416,7 @@ Kuchars 535 Kucharski 52264 Kuche 15743 Kuchean 5542 +Kucheans 313 Kucher 51621 Kuchera 15163 Kuchers 169 @@ -65419,6 +66559,7 @@ Kulow 10326 Kulp 450462 Kulpa 19598 Kulpas 165 +Kulperger 1521 Kulps 1328 Kultur 576041 Kulturwort 99 @@ -65508,6 +66649,7 @@ Kunqu 8480 Kuns 49812 Kunselman 16243 Kunshan 20430 +Kunsman 30240 Kunstler 240698 Kunstlers 3685 Kunti 55302 @@ -65526,6 +66668,7 @@ Kuomintang 1594707 Kuopio 96025 Kuortane 1501 Kuos 1641 +Kuoyu 1047 Kuper 245660 Kuperberg 19496 Kuperman 62046 @@ -65541,6 +66684,7 @@ Kuraish 8616 Kuraishite 149 Kuranda 24642 Kuras 18268 +Kuray 1767 Kurd 221216 Kurdification 387 Kurdish 1941904 @@ -65590,6 +66734,7 @@ Kurt 5977587 Kurtenbach 21433 Kurth 406048 Kurths 7916 +Kurtis 99664 Kurtz 2288429 Kurtzes 2931 Kurtzman 208209 @@ -65632,6 +66777,8 @@ Kutch 112980 Kutcher 85413 Kutchers 397 Kutchi 5753 +Kutchin 72518 +Kutchins 29209 Kutenai 88426 Kutina 13499 Kutjevo 503 @@ -65656,6 +66803,7 @@ Kuybyshev 58142 Kuye 2893 Kuykendall 638931 Kuykendalls 2197 +Kuyonon 569 Kuytun 781 Kuyuan 1565 Kuzari 41650 @@ -65672,6 +66820,7 @@ Kuznetsoff 1877 Kuznetsov 570061 Kuznetsovs 895 Kuznia 4725 +Kuzniar 11433 Kuznicki 11423 Kuzzilbash 3263 Kuzzilbashes 905 @@ -65691,6 +66840,7 @@ Kwakiutl 370475 Kwakiutls 5783 Kwaks 501 Kwakwaka'wakw 21078 +Kwalhioqua 3068 Kwame 488976 Kwan 686250 Kwang 465501 @@ -65744,6 +66894,7 @@ Kyiv 195285 Kyivan 12843 Kyivans 840 Kyivites 805 +Kyivskyi 118 Kyjiv 892 Kyker 22113 Kykers 165 @@ -65773,6 +66924,7 @@ Kyne 126112 Kynes 23044 Kynthos 2430 Kyoko 96986 +Kyongwon 1221 Kyoto 4533182 Kyparissia 3779 Kypchak 2459 @@ -65781,6 +66933,7 @@ Kyra 304420 Kyran 19577 Kyree 4898 Kyren 2448 +Kyrenia 54023 Kyrghyz 4611 Kyrgyz 492312 Kyrgyzstan 849473 @@ -65821,6 +66974,8 @@ LABAs 8855 LABs 27024 LAC 1252320 LACC 23737 +LACW 1169 +LACs 15498 LAE 136380 LAEs 2687 LAG 295417 @@ -65890,21 +67045,26 @@ LBSCR 563 LBT 48295 LBV 29919 LBVs 7641 +LBW 209403 LBWA 909 LBWs 921 LBs 43395 LC 15742542 LCAO 119980 LCAOs 691 +LCB 94794 LCBO 5666 +LCC 696643 LCCN 316824 LCCNs 2199 LCCs 47050 +LCDR 342469 LCE 58428 LCG 66600 LCGs 4900 LCH 106449 LCHF 4357 +LCJ 10196 LCL 589056 LCLC 3650 LCLs 23338 @@ -65921,6 +67081,7 @@ LCTLs 4183 LCTs 35062 LCX 30328 LCs 125835 +LD 3866636 LDAP 418509 LDAR 14638 LDC 1297941 @@ -65962,6 +67123,7 @@ LEMP 11248 LEMS 60545 LEMSIP 5800 LEMs 10627 +LENR 2798 LEO 1877997 LEOs 37393 LEP 806036 @@ -65971,6 +67133,7 @@ LETS 166577 LEUs 567 LEV 258700 LEVs 14884 +LEZ 5124 LFB 39949 LFC 157783 LFD 40685 @@ -65983,6 +67146,7 @@ LFMR 4127 LFO 80395 LFOs 17551 LFP 98346 +LFR 84813 LFSR 76123 LFSRs 15432 LFTR 1203 @@ -66028,7 +67192,6 @@ LHXs 543 LIA 188328 LIAT 24491 LIAs 2818 -LIB 572975 LIBOR 558744 LIC 454438 LICs 64718 @@ -66061,7 +67224,7 @@ LISS 63988 LITA 159007 LJ 2292571 LJs 1482 -LKG 6459 +LKFS 647 LKM 24697 LKMs 1467 LLAP 4162 @@ -66107,6 +67270,8 @@ LMRPs 4285 LMST 5481 LMSs 17423 LMT 97431 +LMTD 29094 +LMTDs 408 LMTO 22834 LMTV 3338 LMTVs 459 @@ -66168,6 +67333,7 @@ LOML 300 LOOGY 499 LOQ 49038 LOQs 3874 +LOR 180542 LORAN 327667 LORD 9625436 LORRI 4505 @@ -66218,11 +67384,13 @@ LQ 1002035 LQA 15316 LQAs 590 LQE 2632 +LQP 9498 LR 3253770 LRAAM 936 LRAD 13040 LRADs 627 LRASM 548 +LRAs 9522 LRBM 1573 LRBMs 93 LRC 404507 @@ -66245,10 +67413,10 @@ LSB 338094 LSBs 25029 LSC 790249 LSCB 2228 -LSDs 22025 LSE 342141 LSFE 749 LSFM 1383 +LSIL 42641 LSJ 45483 LSL 104753 LSLs 2104 @@ -66313,21 +67481,27 @@ LVH 150400 LVL 90080 LVLs 1074 LVMPD 4525 +LVN 132618 +LVNs 39610 LVOT 65112 LVTs 24289 LVW 25999 LVs 21072 +LWA 69802 LWB 15975 LWBS 1571 LWBs 213 LWIR 87972 +LWL 40212 LWN 5848 LWOP 104984 +LWOST 561 LWR 882896 LWRs 168560 LWS 55736 LWT 73730 LWTs 2096 +LWV 90355 LX 917276 LXX 1567818 LXs 3524 @@ -66345,6 +67519,8 @@ LaFrance 203743 LaGory 7025 LaGrange 834518 LaLima 525 +LaMarque 14123 +LaMorte 20082 LaMoure 88229 LaPerm 675 LaPierre 68352 @@ -66353,6 +67529,9 @@ LaPorte 515554 LaPortes 565 LaPrise 1692 LaRocco 57751 +LaRouchian 938 +LaRouchite 543 +LaRouchites 1067 LaRue 604963 LaSalle 3063647 LaSorsa 2897 @@ -66415,6 +67594,7 @@ Labordes 908 Laborie 25212 Laborites 95569 Labossiere 5033 +Labouchere 158279 Labounty 5424 Labourites 30174 Labov 356194 @@ -66483,6 +67663,7 @@ Laches 549394 Lachesis 159103 Lachica 13360 Lachie 18675 +Lachin 32708 Lachish 234157 Lachlan 388088 Lachman 314491 @@ -66498,6 +67679,7 @@ Lackawaxen 84368 Lackenby 4929 Lackey 632057 Lackeys 14198 +Lackford 2102 Lackie 31048 Lackies 754 Lackman 43814 @@ -66506,6 +67688,7 @@ Lackner 132351 Lackners 639 Lacko 16587 Lackos 261 +Lacks 390119 Laclair 2698 Laclauian 201 Laclede 824967 @@ -66537,12 +67720,14 @@ Ladakhi 29149 Ladakhis 15075 Ladale 408 Ladas 80438 +Ladasha 442 Ladd 2907350 Laddies 8194 Ladds 26533 Lade 104368 Ladera 35971 Ladewig 35832 +Ladies 11650004 Ladin 191755 Ladinian 25192 Ladino 549998 @@ -66637,6 +67822,7 @@ Laframboise 35986 Laframboises 177 Lafrance 31396 Lafreniere 33406 +Lafrenz 12362 Lafuente 46176 Lagace 29253 Lagan 70805 @@ -66739,6 +67925,7 @@ Laises 823 Laist 34036 Laisterdyke 455 Lait 113177 +Laith 34506 Laithwaite 12360 Laitinen 94937 Laits 1380 @@ -66863,6 +68050,7 @@ Lamarckians 22797 Lamarckism 73772 Lamarckist 1661 Lamarckists 1324 +Lamarque 75034 Lamarr 113174 Lamarre 67316 Lamarrs 376 @@ -66874,6 +68062,7 @@ Lamay 9928 Lamaze 154861 Lamb 12267883 Lamba 58390 +Lamballe 92443 Lambas 4374 Lambda 1400301 Lambden 22010 @@ -66894,6 +68083,7 @@ Lambertist 630 Lambertists 940 Lamberton 339205 Lambertons 937 +Lamberts 159874 Lambertson 147036 Lambertsons 685 Lamberty 28769 @@ -66933,6 +68123,7 @@ Lambsons 111 Lambton 204745 Lambya 1187 Lamech 213982 +Lamellion 135 Lamendola 8761 Lamentations 526579 Lamer 93113 @@ -66953,6 +68144,8 @@ Lamington 49918 Lamke 29143 Lamkin 197193 Lamkins 8506 +Lamm 599802 +Lamma 23568 Lammas 78144 Lammastide 3558 Lammert 68292 @@ -67083,6 +68276,8 @@ Landefeld 48227 Landen 149236 Landens 483 Lander 1987268 +Landero 11659 +Landeros 17939 Landers 1153581 Landes 1030875 Landeshauptmann 6895 @@ -67097,6 +68292,7 @@ Landinos 305 Landins 1500 Landis 2693383 Landises 2886 +Landkey 480 Landler 48878 Landman 274158 Landmans 1148 @@ -67124,6 +68320,7 @@ Landreths 5538 Landri 8932 Landrigan 115583 Landron 13087 +Landru 42419 Landrum 925161 Landrums 2217 Landry 1763934 @@ -67132,6 +68329,7 @@ Landsats 29555 Landsbaum 3371 Landsberg 453000 Landsbergs 302 +Landseer 244438 Landsgemeinde 17295 Landshut 111829 Landsknecht 9830 @@ -67295,6 +68493,7 @@ Lannom 25179 Lannon 154232 Lannons 812 Lanny 549291 +Lanoraie 5114 Lanoue 35032 Lanphear 85189 Lanpher 32452 @@ -67317,6 +68516,7 @@ Lansfords 240 Lansing 12717564 Lansley 17934 Lant 144291 +Lantao 9476 Lantau 28098 Lanterman 362192 Lantermans 251 @@ -67440,6 +68640,8 @@ Laputans 5958 Lapwai 179984 Lapworth 90450 Laquana 551 +Laque 14800 +Laques 1634 Laquisha 2319 Laquita 6198 Lara 1757252 @@ -67478,6 +68680,7 @@ Laren 78012 Lares 281585 Larestan 506 Larez 7538 +Largactil 16582 Largaespada 3851 Largan 2503 Large 39476575 @@ -67754,8 +68957,10 @@ Latins 1211668 Latinx 54562 p Latinxs 7721 p Latinxua 2224 +Latisha 53019 Latium 436696 Laton 81299 +Latona 176911 Latonia 80739 Latonian 1723 Latonya 11516 @@ -67769,6 +68974,7 @@ Latowsky 1205 Latoya 37362 Latreillean 109 Latreillian 97 +Latrobe 1203496 Latrocinium 5569 Latshaw 105334 Latshaws 303 @@ -67866,6 +69072,7 @@ Lauren 3548192 Laurence 6401703 Laurencekirk 6442 Laurens 2150423 +Laurent 2304527 Laurentia 91464 Laurentian 708092 Laurentians 39360 @@ -67931,6 +69138,7 @@ Lavalles 894 Lavalley 15274 Lavallie 2605 Lavan 97385 +Lavandera 8824 Lavans 939 Lavant 23137 Lavanya 17505 @@ -67987,6 +69195,8 @@ Lavoisierian 3040 Lavonia 52572 Lavoslav 947 Lavoy 20283 +Lavrio 1022 +Lavrion 7915 Lavrov 151813 Lavukaleve 822 Lavy 55533 @@ -68244,6 +69454,7 @@ Leaths 1570 Leavell 195215 Leavells 1654 Leavenworth 4019184 +Leavenworths 927 Leaver 156405 Leavers 76828 Leaverton 27744 @@ -68305,6 +69516,7 @@ Lebrons 253 Lebrun 401509 Lebruns 2059 Lebs 2170 p +Lebu 20532 Lecates 3935 Lecce 122769 Lecco 44332 @@ -68382,6 +69594,8 @@ Ledo 111981 Ledonne 2431 Ledos 3617 Ledoux 322644 +Ledru 128564 +Ledrue 725 Ledsham 5285 Leduc 339051 Ledvina 17435 @@ -68591,6 +69805,7 @@ Leicestrian 1589 Leicestrians 2429 Leichenhaus 614 Leichhardt 43504 +Leichliter 9954 Leicht 92990 Leichts 291 Leichty 17802 @@ -68796,6 +70011,7 @@ Lendu 17090 Leneghan 1217 Lenehan 83405 Lenehans 187 +Leney 23888 Lengacher 7459 Lengel 80927 Lengels 191 @@ -68976,8 +70192,10 @@ Lernaeans 1142 Lernean 9700 Lerneans 599 Leroi 105114 +Leros 35595 Leroux 418048 Leroy 4490568 +Lerro 15390 Lerwick 75299 Les 15151179 Lesage 186986 @@ -69138,6 +70356,7 @@ Leven 432001 Levene 355826 Levenes 955 Levengood 24454 +Levenhagen 7412 Levens 78623 Levenshulme 4397 Levenson 644606 @@ -69205,6 +70424,8 @@ Levits 2717 Levitsky 177480 Levitskys 383 Levitt 1573913 +Levittown 370454 +Levittowns 13033 Levitts 15565 Levkowitz 4667 Levonian 15489 @@ -69309,11 +70530,13 @@ Lezgic 228 Lezgin 7353 Lezgins 6874 Lezgis 590 +Lezotte 25962 Lh'asa 5292 Lhanbryde 459 Lhasa 794527 Lhoba 1946 Lhoka 2387 +Lhoke 451 Lhotsampa 1913 Lhotsampas 831 Lhotse 34545 @@ -69375,6 +70598,8 @@ Liberman 572398 Libermans 2601 Liberson 25500 Libert 114612 +Libertad 373043 +Libertads 267 Libertarian 354353 Libertarians 89525 Libertas 83021 @@ -69437,6 +70662,7 @@ Lichtys 595 Lichuan 5520 Licius 954 Lick 2269971 +Lickey 18582 Lickfold 1132 Lickorish 9647 Licks 151850 @@ -69450,7 +70676,6 @@ Liddick 8678 Liddle 341744 Liddles 1055 Liddy 603519 -Lide 157836 Lides 2425 Lidgett 21811 Lidia 289490 @@ -69485,6 +70710,7 @@ Liechtensteiners 3249 Liechtensteinian 535 Liechty 36692 Lieder 449187 +Liederkranz 66871 Lieders 3271 Liedtke 80559 Liedtkes 1494 @@ -69504,6 +70730,7 @@ Lier 109486 Liera 10355 Lieras 948 Lierman 16721 +Liesel 81867 Lieser 28917 Lieske 36374 Liestal 14009 @@ -69632,12 +70859,14 @@ Lills 3280 Lilly 5060239 Lillyan 2524 Lillyanne 468 +Lillys 10075 Lilongwe 104107 Lily 7810677 Lilyan 44522 Lilyana 2706 Lilyann 778 Lilyanna 559 +Lilybeth 1261 Lim 2050831 Lima 8663630 Liman 184073 @@ -69653,6 +70882,7 @@ Limbaughs 2410 Limbe 45600 Limberg 48356 Limberham 8402 +Limbo 323334 Limbrick 8373 Limbs 486252 Limbu 25469 @@ -69726,6 +70956,7 @@ Linda 16578102 Lindahl 350273 Lindahls 727 Lindal 42331 +Lindale 82621 Lindamood 48842 Lindamoods 383 Lindas 21098 @@ -69831,6 +71062,7 @@ Lingao 2116 Lingard 375198 Lingayat 15913 Lingayatism 1237 +Lingayats 15074 Lingayen 123798 Lingbao 17420 Lingchuan 684 @@ -69842,6 +71074,7 @@ Linger 179071 Lingerfelt 11241 Lingers 50731 Lingfield 14802 +Lingiari 543 Lingism 177 Lingle 285870 Lingles 696 @@ -69853,6 +71086,7 @@ Lingshi 2140 Lingshui 2446 Lingwood 16577 Lingwu 1911 +Lingya 180 Lingyuan 5051 Linhart 102782 Linharts 180 @@ -69889,6 +71123,7 @@ Linneus 69698 Linney 150575 Linneys 432 Linnie 127229 +Linny 52045 Linquist 35617 Linquists 351 Linsanity 2414 @@ -69928,6 +71163,7 @@ Linxia 8539 Linyi 17237 Linying 846 Linyou 431 +Linyuan 2403 Linz 766377 Linzer 88343 Linzhou 1877 @@ -70034,6 +71270,7 @@ Liriano 8677 Lisa 11002770 Lisanti 26750 Lisas 28878 +Lisaw 1323 Lisboa 423708 Lisbon 6261316 Lisboner 113 @@ -70155,6 +71392,7 @@ Littlehaven 200 Littlejohn 658154 Littlemill 537 Littlemore 72781 +Littleover 2223 Littlepage 223028 Littlepages 8474 Littleport 11609 @@ -70180,6 +71418,7 @@ Litvin 82668 Litvinenko 88758 Litvins 554 Litvish 922 +Litvishe 654 Litwack 135452 Litwiller 14034 Lityerses 10036 @@ -70291,6 +71530,7 @@ Llanddyfnan 170 Llandegai 1245 Llandegfan 238 Llandeilo 27678 +Llandinabo 136 Llandough 5881 Llandoverian 19510 Llandovery 69370 @@ -70303,21 +71543,27 @@ Llanegwad 247 Llaneilian 257 Llanelli 12440 Llanelly 32487 +Llanerchymedd 848 Llanfachreth 452 Llanfair 16299 Llanfairfechan 2172 Llanfairpwll 472 Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch 603 +Llanfoist 476 Llanfrothen 745 Llanfyllin 3369 +Llanfynydd 569 Llanfyrnach 283 Llangamarch 242 Llangefni 4110 Llangelynin 616 Llangennech 901 Llangollen 67934 +Llangua 129 Llangunllo 241 +Llangurig 1363 Llangyfelach 663 +Llangynog 1184 Llangynwyd 955 Llanharan 385 Llanhilleth 378 @@ -70328,10 +71574,13 @@ Llanito 1832 Llanitos 4331 Llanllechid 541 Llanllyfni 710 +Llannon 504 Llano 907673 Llanos 228314 Llanover 10997 +Llanquihue 31223 Llanrhian 65 +Llanrug 404 Llanrumney 454 Llanrwst 9801 Llansadwrn 375 @@ -70342,6 +71591,7 @@ Llantrisant 7024 Llanuwchllyn 1402 Llanvihangel 1387 Llanwddyn 1086 +Llanwenarth 999 Llanwenog 801 Llanwern 4451 Llanwrda 479 @@ -70355,6 +71605,7 @@ Llerena 41857 Llerenas 733 Llewellyn 1600728 Llewelyn 268378 +Llorach 5263 Llorens 60633 Llorente 124914 Llorentes 146 @@ -70362,6 +71613,7 @@ Lloyd 22949617 Lloyd's 2520 Lloydminster 38066 Lloyds 1263267 +Llullaillaco 6978 Llullian 676 Llwydcoed 258 Llwyngwril 467 @@ -70385,6 +71637,7 @@ Loa 803120 Loach 142381 Loader 744982 Loaders 324475 +Loadholt 7410 Loaghtan 307 Loaiza 23635 Loamshire 16836 @@ -70645,6 +71898,7 @@ Loiselle 57328 Loiselles 153 Loja 118438 Lojban 1461 +Lojek 7585 Lokapala 3380 Lokapalas 3031 Lokasenna 8418 @@ -70661,6 +71915,7 @@ Lokian 180 Lokken 58763 Lokkens 155 Lokoja 24662 +Lokting 736 Lol 132786 Lola 2115707 Loleatta 1176 @@ -70725,6 +71980,7 @@ Lonardo 32791 Lonardos 377 Lonas 17174 Loncar 36549 +Loncoche 1801 Londesborough 18703 Londinensian 49 Londinian 607 @@ -70772,7 +72028,6 @@ Longannet 1934 Longbenton 1327 Longbone 2410 Longbones 835 -Longbottom 48144 Longbottoms 571 Longbrake 21829 Longbridge 29092 @@ -70784,6 +72039,7 @@ Longcore 16432 Longcross 1531 Longde 4255 Longden 70916 +Longdens 318 Longdon 78513 Longe 94351 Longenecker 209724 @@ -70827,6 +72083,8 @@ Longneckers 367 Longniddry 3425 Longnor 3265 Longo 546265 +Longobard 12734 +Longobards 28303 Longonot 4480 Longoria 107289 Longorias 1435 @@ -70908,6 +72166,8 @@ Loonan 9418 Looney 719812 Looneys 4124 Looneyville 6626 +Loonie 14006 +Loonies 7867 Loop 4796036 Looper 129637 Loopers 25867 @@ -70979,6 +72239,7 @@ Lorences 1003 Lorencs 229 Lorene 258242 Lorenson 22494 +Lorente 95312 Lorentzian 326105 Lorenz 2645086 Lorenzana 80844 @@ -71367,6 +72628,7 @@ Luanne 107993 Luanshya 19354 Luas 4720 Luba 257255 +Lubavitch 120190 Lubavitcher 75208 Lubavitchers 22216 Lubben 48587 @@ -71379,6 +72641,7 @@ Lubentina 605 Luber 72623 Lubers 5759 Lubey 7863 +Lubie 4587 Lubienski 23840 Lubin 800065 Lubins 2710 @@ -71441,6 +72704,7 @@ Luciano 872279 Lucid 208101 Lucido 30079 Lucids 682 +Lucie 1422948 Lucier 143150 Luciers 253 Lucifer 1896813 @@ -71560,6 +72824,7 @@ Lueken 17580 Luekens 2592 Luella 559681 Luellen 36826 +Luena 15548 Luengas 1086 Luepke 11243 Luepkes 356 @@ -71582,6 +72847,7 @@ Lufton 108778 Luftwaffe 1106685 Lufty 6639 Lug 243870 +Luga 40397 Luganda 52262 Lugang 1621 Lugano 310641 @@ -71611,6 +72877,7 @@ Luhyia 1318 Lui 334391 Luib 2952 Luichow 6460 +Luigi 2185880 Luikart 26670 Luis 12524016 Luisi 50848 @@ -71618,6 +72885,7 @@ Luisis 225 Lujan 620603 Lujano 2698 Lujans 909 +Lujiang 7006 Luka 346303 Lukach 13430 Lukacs 616501 @@ -71698,6 +72966,8 @@ Lunans 257 Lunar 3323118 Lunarian 7535 Lunarians 8986 +Lunarite 535 +Lunarites 725 Lunbeck 14626 Lunberry 640 Luncarty 1645 @@ -71748,6 +73018,9 @@ Lungki 483 Lungs 1065012 Lungu 26975 Lungwa 265 +Lunite 1613 +Lunites 1043 +Lunix 724 Lunn 448412 Lunner 4161 Lunney 82176 @@ -71855,9 +73128,12 @@ Lusitania 775301 Lusitanian 65587 Lusitanians 32073 Lusitanic 427 +Lusitano 16755 +Lusitanos 2023 Lusk 1088796 Luskin 93468 Lusks 2836 +Luso 176922 Lusoga 2096 Lusophile 276 Lusophiles 235 @@ -71951,6 +73227,7 @@ Luxton 63668 Luxtons 291 Luxulyan 1578 Luy 30709 +Luyang 2866 Luyendyk 38109 Luyi 3935 Luys 75991 @@ -72012,6 +73289,7 @@ Lydens 2454 Lydes 1443 Lydford 15740 Lydgate 656252 +Lydham 473 Lydia 7699353 Lydian 427165 Lydians 158555 @@ -72045,6 +73323,7 @@ Lylyan 1336 Lyman 7631699 Lyme 2190920 Lymeswold 252 +Lyminge 7256 Lymington 63484 Lyminster 1113 Lymm 9579 @@ -72118,6 +73397,7 @@ Lysenkoist 4976 Lysenkoists 4435 Lysenkoite 1911 Lysenkoites 2259 +Lysette 21941 Lysiak 11237 Lysimachean 262 Lysistrata 190413 @@ -72128,7 +73408,9 @@ Lysne 16644 Lysnes 1511 Lysol 178674 Lysons 51023 +Lyss 28814 Lyssa 105331 +Lyssy 5729 Lyster 199762 Lysters 1027 Lysy 9227 @@ -72199,6 +73481,7 @@ MAP 5569476 MAPP 133003 MAPPA 4557 MAPs 199931 +MAQ 20566 MARCKS 25059 MARCOM 9523 MARDI 36930 @@ -72232,9 +73515,7 @@ MAX 2785593 MAgr 1639 MAs 196735 MB 6189515 -MBA 3625387 MBARI 17663 -MBAs 236111 MBBCh 3531 MBBS 58850 MBC 430742 @@ -72278,12 +73559,14 @@ MCDB 16031 MCDM 48824 MCDs 28902 MCE 246943 +MCED 1789 MCF 830939 MCFC 98138 MCG 169724 MCGA 22948 MCGs 4327 MCI 3073651 +MCIs 10397 MCKD 2599 MCLOS 605 MCLU 5401 @@ -72299,6 +73582,7 @@ MCOs 193059 MCP 1065353 MCPE 6459 MCPON 10501 +MCPOs 243 MCPs 58872 MCPyV 6538 MCR 651596 @@ -72311,7 +73595,6 @@ MCSE 94939 MCSEs 2604 MCT 447751 MCTFS 1717 -MCTS 20940 MCTs 49388 MCU 212487 MCUs 28145 @@ -72377,6 +73660,7 @@ MEGA 151292 MEGAs 288 MEGX 7256 MEGs 8939 +MEK 301031 MEL 564468 MELAS 48071 MEMM 7388 @@ -72398,6 +73682,7 @@ METAR 35832 METARs 3112 METI 55752 METIs 358 +METO 18305 MEU 106047 MEUs 7924 MEVN 267 @@ -72408,6 +73693,7 @@ MEds 87 MF 7518012 p MFC 505709 MFCC 37398 +MFCE 285 MFCs 24221 MFD 159816 MFDs 9454 @@ -72432,6 +73718,8 @@ MGA 233922 MGCC 2596 MGDA 1335 MGIB 71277 +MGN 54377 +MGNs 503 MGS 191488 MGTOW 3580 MGU 119706 @@ -72445,6 +73733,7 @@ MH 4457446 MHA 207395 MHAs 4631 MHC 2242806 +MHCP 21249 MHCs 30695 MHD 2473875 MHET 1980 @@ -72454,7 +73743,10 @@ MHL 58973 MHN 19105 MHRB 268 MHS 656057 +MHSCP 270 MHTML 5227 +MHWN 3254 +MHWS 6136 MHs 33281 MI 17156584 MIA 1146608 @@ -72540,6 +73832,7 @@ MLE 343709 MLEM 7362 MLH 94404 MLI 132377 +MLIR 3995 MLK 145244 MLLP 2424 MLM 313256 @@ -72556,6 +73849,8 @@ MLT 165654 MLU 87138 MLUs 5887 MLW 143911 +MLWN 1907 +MLWS 5546 MLs 26395 MM 8180987 MMAPI 4831 @@ -72573,6 +73868,7 @@ MMDs 8686 MMEL 5644 MMELs 327 MMF 257349 +MMFF 4010 MMFs 38276 MMH 106843 MMHS 2640 @@ -72673,6 +73969,7 @@ MP 6444853 MPA 898258 MPAA 362701 MPAs 107086 +MPB 161492 MPBR 882 MPC 1146124 MPD 574807 @@ -72682,6 +73979,7 @@ MPE 233803 MPEG 1075080 MPEGs 1602 MPF 214715 +MPHP 1095 MPI 712994 MPKC 343 MPLA 486404 @@ -72797,7 +74095,6 @@ MSIL 32624 MSIs 18744 MSJ 28381 MSL 775684 -MSM 548467 MSMA 106754 MSME 41807 MSMEs 10920 @@ -72852,6 +74149,7 @@ MTOW 9619 MTP 471015 MTPL 1837 MTPs 16748 +MTR 431922 MTS 1193030 MTSO 27284 MTSOs 2194 @@ -72936,6 +74234,7 @@ MZD 4147 MZM 27933 MZS 5117 Ma 18106933 +Ma'an 35823 Ma'anshan 3034 Ma'at 32519 Ma'bar 3586 @@ -72948,6 +74247,7 @@ Maalaea 31821 Maalouf 27410 Maaloufs 189 Maaloula 942 +Maan 70042 Maas 1121384 Maasai 321185 Maassen 46948 @@ -73100,6 +74400,7 @@ Macarian 5186 Macarius 166459 Macaronesia 5948 Macaronesian 5328 +Macarthur 133911 Macartney 370564 Macartneys 1446 Macassar 135970 @@ -73218,6 +74519,7 @@ Mackall 246123 Mackalls 671 Mackauer 7926 Mackay 2729706 +Mackellar 81657 Mackem 3492 Mackenzie 5001106 Mackenzies 31681 @@ -73246,6 +74548,7 @@ Macmurray 50932 Macnab 89211 Macnair 29792 Macnamara 134921 +Macneal 8191 Macolytes 130 Macomb 1851852 Macon 6962745 @@ -73378,6 +74681,7 @@ Madincea 137 Madioen 5132 Madison 53577306 Madisonian 129915 +Madisonians 13608 Madisons 53209 Madisonville 526873 Madisyn 6248 @@ -73445,6 +74749,7 @@ Maeda 454439 Maeder 119549 Maeders 471 Maedi 15179 +Maegan 10479 Maenalus 11104 Maenan 923 Maenclochog 471 @@ -73660,7 +74965,9 @@ Mahajani 5509 Mahajans 2505 Mahakala 25771 Mahal 553642 +Mahalakshmi 6375 Mahalapye 5870 +Mahalaxmi 3649 Mahalia 170820 Mahamad 19020 Mahamat 29777 @@ -73688,6 +74995,8 @@ Maharashtrians 8777 Maharastra 13680 Maharjan 3121 Mahars 24092 +Mahasamghika 3092 +Mahasanghika 4353 Mahaska 239632 Mahavamsa 19362 Mahavir 13207 @@ -73723,6 +75032,7 @@ Mahican 61942 Mahicans 31358 Mahikari 12619 Mahilyow 1490 +Mahim 11471 Mahinahina 1585 Mahindra 40033 Mahjar 4255 @@ -73799,6 +75109,7 @@ Maiden 3465587 Maidencreek 9314 Maidenhead 218038 Maidens 335560 +Maidford 944 Maidie 47385 Maidment 73849 Maidstone 342322 @@ -73834,6 +75145,7 @@ Mainas 9212 Maindee 389 Maindy 1042 Maine 50814285 +Mainella 14801 Mainely 4374 Mainer 42346 Mainers 42523 @@ -73860,6 +75172,7 @@ Maiongong 3286 Maiorana 20302 Maiorano 21610 Maioranos 361 +Maipo 41793 Maipure 3293 Mair 518360 Maire 394755 @@ -73998,6 +75311,7 @@ Maks 45055 Makua 83459 Makung 5140 Makurdi 13746 +Makushi 5329 Mal 1556272 Malabanan 2425 Malabar 747639 @@ -74196,6 +75510,8 @@ Mallards 149240 Mallari 6579 Mallaris 103 Mallas 26164 +Malleco 18773 +Mallee 34336 Mallen 116779 Maller 78940 Mallers 24564 @@ -74243,6 +75559,8 @@ Mallu 3045 Mallus 15958 Mally 133986 Malm 265113 +Malmaison 251363 +Malmaisons 989 Malmberg 141743 Malmbergs 270 Malmesbury 419977 @@ -74334,6 +75652,7 @@ Mamet 290861 Mami 283881 Mamie 1561061 Mamiko 2493 +Mamikonyan 1461 Mamiku 317 Mamil 697 Mamilian 2087 @@ -74490,6 +75809,7 @@ Mandeville 1226662 Mandevillean 1504 Mandevilles 7100 Mandevillian 3412 +Mandia 10827 Mandich 22843 Mandies 485 Mandigo 36873 @@ -74530,6 +75850,7 @@ Maneval 24617 Maney 274797 Maneys 1507 Manfre 8972 +Manfred 1804554 Manfredo 81706 Mang'anja 10941 Mangaian 17095 @@ -74615,6 +75936,7 @@ Manichaeanism 21944 Manichaeans 135450 Manichaeism 150227 Manichaeist 668 +Manichaeistic 1037 Manichaeists 373 Manichaeus 13213 Manichean 220056 @@ -74624,6 +75946,7 @@ Manichee 29407 Manichees 82343 Manicheism 53034 Manicheist 301 +Manicheistic 859 Manicheists 209 Manicheus 1425 Manics 5641 @@ -74886,6 +76209,7 @@ Manzis 117 Manzo 123187 Manzonian 2534 Manzonians 233 +Manzoor 25521 Manzos 1125 Mao 9635995 Maohi 9687 @@ -74902,6 +76226,7 @@ Maoli 45112 Maolin 8739 Maomet 406 Maoming 12911 +Maona 3733 Maonan 5439 Maoping 1409 Maor 35581 @@ -74960,6 +76285,7 @@ Marah 196680 Maraj 15086 Marak 54862 Maraks 335 +Marampa 8849 Maran 154560 Maranan 2671 Maranao 26175 @@ -74967,6 +76293,7 @@ Maranda 61413 Marandas 2000 Marandellas 5915 Maranello 12158 +Marangoni 165790 Maraniss 41201 Marano 181251 Maranon 92758 @@ -74986,6 +76313,7 @@ Marathas 116625 Marathi 334566 Marathon 3370735 Marau 23846 +Marave 1989 Maravi 19908 Maravilla 51647 Maravillas 41342 @@ -75002,6 +76330,7 @@ Marberry 33676 Marble 5362449 Marbles 314506 Marblette 15065 +Marbs 1150 Marburg 1204391 Marburger 119746 Marburgers 1792 @@ -75107,6 +76436,7 @@ Marcuseans 243 Marcusian 5185 Marcusians 259 Marcy 2667297 +Marcyites 229 Marcys 3299 Mardakert 5023 Mardas 4098 @@ -75116,6 +76446,7 @@ Mardigian 16075 Mardon 62911 Mardones 25661 Marduk 502049 +Mardy 30376 Mardyke 11292 Marechal 367959 Maredia 3238 @@ -75140,6 +76471,7 @@ Maretts 536 Marez 22806 Marfa 333580 Marfik 145 +Marfleet 7881 Margaery 3856 Margam 18528 Margaret 40288766 @@ -75156,6 +76488,7 @@ Margashirsha 661 Margate 354441 Margaux 136094 Marge 1361140 +Margerison 18169 Margerum 58997 Margery 1630859 Margeson 43293 @@ -75250,6 +76583,7 @@ Marinelli 171279 Marinellis 453 Marinello 65396 Mariner 2385443 +Marinero 12067 Mariners 1177970 Marines 6972733 Marinescu 31893 @@ -75545,6 +76879,7 @@ Marsalis 223366 Marsalises 823 Marsaxlokk 6200 Marsay 65358 +Marscape 439 Marsch 86729 Marschke 20790 Marschkes 229 @@ -75586,6 +76921,7 @@ Marsolek 5081 Marson 161482 Marsquake 580 Marsquakes 1328 +Marsscape 115 Marsteller 175312 Marstellers 256 Marston 2527891 @@ -75619,6 +76955,7 @@ Martha 21885205 Marthaler 23490 Martham 6312 Marthas 158819 +Marthe 377040 Marths 1060 Martian 1816931 Martianism 194 @@ -75823,6 +77160,7 @@ Masella 13601 Maselli 31334 Masellis 2488 Maserati 145756 +Maserejian 419 Maseru 122542 Masgai 1282 Mash 1190390 @@ -75835,6 +77173,7 @@ Mashes 20654 Mashhad 104783 Mashhadi 7476 Mashhadis 620 +Mashiah 15181 Mashiter 4858 Mashona 41818 Mashonaland 138332 @@ -75867,6 +77206,7 @@ Maslin 156811 Maslovian 4159 Maslow 1415366 Maslowian 3594 +Maslows 2535 Maslowski 50441 Masmuda 3325 Mason 30398275 @@ -75939,6 +77279,7 @@ Massie 865584 Massies 15024 Massiliote 1659 Massiliotes 1852 +Massillon 902493 Massimino 28639 Massingale 50571 Massingales 236 @@ -76107,6 +77448,7 @@ Matie 66373 Maties 35839 Matilda 3177997 Matildas 9238 +Matildine 900 Matin 265019 Matins 213355 Matissean 2094 @@ -76114,6 +77456,7 @@ Matkin 55605 Matkins 23095 Matlack 311969 Matlacks 665 +Matlatzinca 9691 Matley 33086 Matlin 73238 Matlins 7253 @@ -76151,6 +77494,7 @@ Matsuba 13338 Matsubara 153224 Matsuda 460733 Matsudaira 111806 +Matsudo 21427 Matsue 54466 Matsui 586294 Matsuis 637 @@ -76331,6 +77675,7 @@ Mauriello 30161 Maurin 151322 Maurins 827 Maurism 209 +Maurissa 1659 Maurist 12908 Maurists 17358 Mauritania 1431786 @@ -76368,7 +77713,6 @@ Mavrud 808 Mavs 13926 Maw 520191 Mawa 9041 -Mawan 2209 Mawcarse 178 Mawddach 5997 Mawddwy 2927 @@ -76483,6 +77827,7 @@ Mayhorn 7133 Mayhue 18084 Mayhues 131 Mayhugh 43365 +Mayim 17800 Maykop 24425 Mayland 80195 Maylander 3203 @@ -76632,6 +77977,7 @@ Mazzone 66575 Mazzoni 174539 Mazzonis 2157 Mazzotta 40467 +Mazzu 2863 Mazzuca 42281 Mazzucco 11246 Mb 1621917 @@ -76656,6 +78002,7 @@ Mbunga 2288 Mbuti 91598 Mbyte 164310 Mbytes 227477 +Mc 4823183 McAbee 73585 McAbees 349 McAdam 535404 @@ -76889,6 +78236,7 @@ McClane 102682 McClanes 443 McClaran 29613 McClard 10990 +McClare 11825 McClaren 89568 McClarens 849 McClarty 28288 @@ -77006,7 +78354,11 @@ McCorkles 2446 McCormac 81647 McCormack 2529028 McCormacks 6941 +McCormic 22749 McCormick 7704068 +McCormics 207 +McCorquodale 303950 +McCorquodales 485 McCorry 38312 McCort 33093 McCorvey 53662 @@ -77041,6 +78393,7 @@ McCrary 615772 McCrarys 1972 McCraw 188659 McCraws 733 +McCray 611804 McCrea 720953 McCreadie 19047 McCready 395219 @@ -77058,6 +78411,7 @@ McCright 22476 McCrillis 60898 McCrimmon 70887 McCrimmons 1075 +McCrindle 29683 McCrory 421221 McCrorys 1083 McCrum 109131 @@ -77311,6 +78665,7 @@ McGaw 251048 McGawley 4266 McGeachie 5109 McGeachin 12564 +McGeachy 37168 McGeady 18025 McGeary 96915 McGearys 252 @@ -77382,6 +78737,7 @@ McGonagall 24141 McGonagle 102599 McGonagles 435 McGoogan 19619 +McGoohan 29782 McGough 191011 McGoughs 549 McGourty 23600 @@ -77670,6 +79026,7 @@ McLouth 169294 McLucas 119738 McLuckie 20761 McLuhan 782783 +McLuhanesque 7856 McLuhanian 618 McLuhanism 5612 McLuhanite 2655 @@ -77849,6 +79206,8 @@ McPartin 543 McPartland 159950 McPartlands 865 McPeak 113585 +McPeake 20759 +McPeakes 620 McPeaks 505 McPeek 65785 McPeeks 293 @@ -78038,6 +79397,7 @@ Meade 5413012 Meader 532262 Meaders 40056 Meades 30214 +Meadian 15889 Meador 390364 Meadors 77537 Meadow 4114960 @@ -78104,6 +79464,7 @@ Mech 4673281 Mecham 252883 Mechams 619 Mechanic 3494138 +Mechanicville 236309 Meche 26036 Mecheir 2640 Mechelen 70986 @@ -78136,6 +79497,7 @@ Medak 25805 Medan 211475 Medawar 154826 Medbourne 9045 +Medburn 1962 Medcalf 59765 Medcalfs 291 Medcroft 2768 @@ -78219,6 +79581,7 @@ Medog 1113 Medora 344293 Medrano 169636 Medranos 2105 +Medrash 20981 Medraut 19331 Medsker 64479 Medstead 1607 @@ -78358,6 +79721,7 @@ Mehringer 46140 Mehrings 1619 Mehrotra 104994 Mehs 1534 +Mehsana 6645 Mehta 862013 Mehtas 2543 Mehujael 9701 @@ -78403,6 +79767,7 @@ Meir 1287222 Meiring 23455 Meiringen 19622 Meirings 111 +Meirowsky 13855 Meirs 20627 Meis 83407 Meisel 338959 @@ -78655,6 +80020,7 @@ Melusina 44648 Melusine 92464 Melverley 1485 Melverton 1831 +Melvill 122723 Melville 7181257 Melvillean 9998 Melvilles 21581 @@ -78695,7 +80061,6 @@ Menangkabau 12123 Menangkabaus 979 Menangle 3537 Menapii 16940 -Menard 1237406 Menards 10290 Mencer 26377 Menchaca 65266 @@ -78756,6 +80121,7 @@ Mendips 17978 Mendivil 14101 Mendizabal 48608 Mendizabals 287 +Mendler 30284 Mendocino 1774612 Mendola 33094 Mendon 513909 @@ -78847,6 +80213,7 @@ Menorcans 333 Menors 824 Menos 61995 Menrva 3632 +Mens 804404 Mensa 145839 Mensah 101567 Mensan 1375 @@ -78861,6 +80228,7 @@ Menshevists 2944 Mensing 74809 Mensings 193 Mensk 2079 +Menson 8367 Menston 22548 Mensun 2603 Mentalese 7046 @@ -79028,6 +80396,7 @@ Merlinesque 654 Merlinian 312 Merlino 113178 Merlinos 613 +Merlins 40301 Merlion 6136 Merlo 187320 Merlos 5414 @@ -79084,6 +80453,7 @@ Merrymans 1389 Merryweather 175347 Merryweathers 2619 Mersch 67821 +Mersea 12689 Mersereau 148782 Mersereaus 563 Mersey 529046 @@ -79282,6 +80652,7 @@ Metcalfs 17155 Metchette 433 Metchif 306 Meteyard 22859 +Metge 22903 Metheny 122992 Methenys 93 Metheringham 3445 @@ -79301,6 +80672,7 @@ Methuen 2077159 Methusael 5907 Methuselah 352351 Methuselahs 9481 +Methuselan 685 Methven 68329 Methvin 55015 Methvins 924 @@ -79350,6 +80722,8 @@ Meunier 356590 Meuniers 2886 Meurer 103502 Meurers 3954 +Meursault 147332 +Meursaults 1583 Meus 16672 Meusburger 1891 Meuse 1262826 @@ -79376,6 +80750,8 @@ Mexicanas 67527 Mexicanes 308 Mexicanism 8344 Mexicanisms 2149 +Mexicanist 6277 +Mexicanists 4472 Mexicanity 513 Mexicanization 29882 Mexicanizations 277 @@ -79428,6 +80804,7 @@ Mezzrow 34270 Mfecane 18699 Mfengu 13742 Mhairi 14773 +Mhow 14417 Mi'ilya 484 Mi'kmaq 50735 MiB 12105 @@ -79455,6 +80832,7 @@ Miaplacidus 1561 Mias 29071 Mib 8166 Mibit 130 +Mica 1856752 Micaella 945 Micah 1861114 Micahs 828 @@ -79477,6 +80855,7 @@ Mich 10116316 Michaca 809 Michael 91179895 Michaela 274398 +Michaelchurch 503 Michaelhouse 3575 Michaelite 541 Michaelites 815 @@ -79590,6 +80969,7 @@ Microscopium 4547 Microserf 329 Microserfs 4675 Microshaft 141 +Microsloth 160 Microsoft 14968297 Microsofters 195 Microsoftian 343 @@ -79633,6 +81013,7 @@ Mideastern 43462 Mideasterner 214 Mideasterners 601 Mider 33106 +Midewin 20666 Midewiwin 39689 Midford 16386 Midgard 75253 @@ -79810,6 +81191,7 @@ Mildred 6046673 Mildura 28960 Mile 8709989 Mileff 1903 +Mileham 28767 Mileikowsky 4084 Miler 87368 Milers 6001 @@ -80031,9 +81413,12 @@ MinGW 3223 Mina 1887764 Minaean 16601 Minagawa 28154 +Minah 23588 Minahan 87818 Minahans 169 Minahasa 20010 +Minahasan 3729 +Minahasans 2235 Minahassa 13045 Minaic 500 Minako 23903 @@ -80104,6 +81489,7 @@ Minerva 2880665 Minerval 3728 Minervals 769 Minervan 3306 +Minervas 10531 Minervini 17029 Minety 4832 Minfeng 1676 @@ -80195,7 +81581,9 @@ Minniear 7804 Minniefield 3074 Minnies 17532 Minnifield 6825 +Minnis 187990 Minniti 15044 +Minns 133832 Minny 82422 Minoan 843091 Minoans 110371 @@ -80428,6 +81816,7 @@ Miss'ippi 2365 Misselbrook 2399 Missenden 22214 Misses 1638342 +Misseses 257 Missey 15179 Missildine 12946 Mission 31948821 @@ -80457,6 +81846,7 @@ Missuses 925 Missy 1035694 Mistassini 51938 Mistassinis 233 +Mistelbach 2866 Mister 3297195 Misters 22160 Misterton 6898 @@ -80472,6 +81862,8 @@ Misty 758209 Misuraca 9948 Misurata 22027 Mitanni 98382 +Mitannian 23379 +Mitannians 6797 Mitch 2833271 Mitcham 162524 Mitchams 161 @@ -80565,6 +81957,7 @@ Mixon 264950 Mixons 1957 Mixquiahuala 5645 Mixson 48416 +Mixtard 6118 Mixtec 257086 Mixtecan 20890 Mixtecs 56606 @@ -80641,6 +82034,7 @@ Mkn 10283 Mkrtchyan 12096 Mkuu 5836 Mkwaya 269 +Mlabri 4682 Mladen 46777 Mladomir 211 Mljet 7599 @@ -80667,6 +82061,7 @@ MoD 119536 MoDs 981 MoE 43010 MoF 86755 +MoG 4988 MoID 261 MoJ 7889 MoM 93902 @@ -80690,6 +82085,7 @@ Moammed 320 Moana 276778 Moat 249510 Moats 151042 +Moazagotl 624 Mob 831512 Mobberley 9245 Mobbs 63264 @@ -80702,9 +82098,11 @@ Mobil 2978220 Mobile 21520232 Mobilian 26203 Mobilians 18539 +Mobius 284869 Mobley 772370 Mobot 7768 Mobtown 2039 +Mobus 7094 Mobutism 2162 Mobutist 2216 Mobutists 703 @@ -80724,8 +82122,10 @@ Mockler 81657 Mocklers 101 Mocks 50657 Mocksville 76264 +Mocoa 11429 Moctezuma 320402 Modane 41513 +Modbury 9289 Modekngei 3424 Modena 1059784 Modenese 31270 @@ -80733,6 +82133,7 @@ Moder 446002 Moderne 588684 Moders 4297 Modesitt 29681 +Modestino 15203 Modesto 1774259 Modglin 15482 Modi 259042 @@ -80766,6 +82167,7 @@ Moeller 892954 Moellers 4709 Moen 537257 Moenkopi 267950 +Moeran 27644 Moerk 27485 Moerke 10585 Moerman 77604 @@ -80829,6 +82231,7 @@ Mogridge 30111 Moguel 9833 Mogul 1143459 Moguls 169423 +Mogum 313 Mohabir 3745 Mohaka 2069 Mohall 36392 @@ -81180,6 +82583,7 @@ Moneys 1091992 Monfalcone 27416 Monflanquin 733 Mong 281391 +Mongan 83564 Monge 398466 Mongeau 31443 Mongelli 13931 @@ -81255,6 +82659,7 @@ Monnow 9882 Monns 1044 Mono 2350245 Monoceros 30204 +Monolith 166320 Monom 2605 Monon 353222 Monona 388036 @@ -81297,6 +82702,7 @@ Monsalves 770 Monsanto 2694682 Monsantos 1958 Monsarrat 61326 +Monschau 18094 Monseigneur 631388 Monseigneurs 937 Monsen 140457 @@ -81328,6 +82734,8 @@ Montagu 1681689 Montague 3885213 Montagues 81995 Montaigne 2367823 +Montaignean 1312 +Montaignesque 1267 Montaignian 3302 Montalban 140963 Montalbano 86668 @@ -81448,6 +82856,8 @@ Montford 140125 Montfords 475 Montfort 822423 Montfortian 1546 +Montgomerie 173960 +Montgomeries 8366 Montgomery 30414958 Montgomeryshire 55269 Monticello 3182435 @@ -81488,6 +82898,7 @@ Montseny 18369 Montserrat 712389 Montserratian 5496 Montserratians 4335 +Montt 259669 Montu 26085 Montufar 30500 Montuori 17803 @@ -81634,6 +83045,7 @@ Moravianism 12597 Moravians 747751 Moravid 404 Moravids 185 +Morawa 9094 Morawski 72693 Moray 597043 Morayshire 25835 @@ -81718,6 +83130,7 @@ Morettos 229 Moretz 30803 Morey 1427790 Moreys 6468 +Morez 7413 Morfin 17926 Morford 209774 Morfords 398 @@ -81861,6 +83274,8 @@ Moronta 690 Morori 156 Moros 406052 Morosaglia 1433 +Morotoco 1449 +Moroukian 207 Moroz 157275 Morozoff 3571 Morozov 309194 @@ -81896,6 +83311,7 @@ Morrilton 117972 Morrin 88839 Morrinsville 1705 Morris 42734507 +Morrisburg 35487 Morrisean 234 Morrises 63098 Morrisette 46508 @@ -81995,6 +83411,7 @@ Mosher 1747750 Moshers 4057 Moshfegh 5701 Moshi 97319 +Moshiach 23773 Moshier 65010 Moshiers 187 Mosier 442311 @@ -82026,6 +83443,7 @@ Mosleyite 1239 Mosleyites 1252 Mosman 84640 Mosmans 1027 +Mosney 1039 Mosopelea 4105 Mosotho 5852 Mosqueda 22071 @@ -82084,6 +83502,8 @@ Motens 498 Motes 198078 Moteuczoma 19106 Mother 43035147 +Mothers 6040581 +Mothersbaugh 12715 Mothershead 31740 Mothershed 16793 Motherwell 356092 @@ -82272,6 +83692,7 @@ Moyle 417834 Moyles 25892 Moynahan 102831 Moynahans 127 +Moyne 419279 Moynihan 2198182 Moynihans 2873 Moys 15600 @@ -82318,6 +83739,7 @@ Mpongwe 47622 Mpoto 899 Mpumalanga 32024 Mpur 1538 +Mrabri 937 Mraz 74665 Mrazek 138270 Mrazeks 445 @@ -82373,6 +83795,7 @@ Muckers 16119 Mucking 43283 Muckle 88344 Muckles 804 +Muckleshoot 61945 Muckley 34245 Mucklow 34755 Mucks 12988 @@ -82483,6 +83906,7 @@ Mujica 65027 Mukachevo 12937 Mukdahan 4407 Mukden 667967 +Muker 4472 Mukha 23258 Mukhabarat 23235 Mukherjee 464990 @@ -82492,6 +83916,7 @@ Mukhtars 4581 Mukono 8907 Muktsar 1073 Mukuzani 565 +Mukwa 12506 Mul 253151 Mulam 2655 Mulan 105927 @@ -82585,6 +84010,7 @@ Mullins 1851056 Mullion 41729 Mulloy 178661 Mulloys 728 +Mulnix 13331 Mulqueen 50471 Mulqueens 393 Mulroney 254684 @@ -82850,9 +84276,12 @@ Murph 224270 Murphey 453295 Murpheys 1815 Murphian 543 +Murphied 44 +Murphies 2941 Murphree 227089 Murphrees 6773 Murphy 26717843 +Murphying 92 Murphys 149831 Murphysboro 264173 Murr 216961 @@ -82862,6 +84291,8 @@ Murran 4009 Murrans 313 Murray 29820710 Murrayfield 13238 +Murrayian 965 +Murrayians 839 Murrayism 359 Murree 34904 Murrell 572891 @@ -83173,6 +84604,7 @@ Mylod 22281 Myloi 1054 Mylor 8344 Mylrea 23846 +Mymensingh 36287 Mynatt 89016 Mynott 5576 Myr 201720 @@ -83212,10 +84644,14 @@ Mytilini 7125 Myton 74236 Myung 193909 Myvyrian 6683 +Mzabite 2263 +Mzabites 2938 Mzansi 995 +Mzuzu 9346 N'Djamena 81469 N'Ko 330 N'ko 3407 +NAA 1171157 NAACP 4066345 NAAFI 13589 NAAFIs 125 @@ -83285,6 +84721,7 @@ NAS 6084966 NASAMS 506 NASBA 40303 NASCAR 589131 +NASD 3293548 NASDAQ 2429866 NASH 691420 NASM 218299 @@ -83341,6 +84778,7 @@ NCBI 121040 NCCA 56329 NCCAM 70185 NCCDPHP 26753 +NCCJ 32218 NCD 217658 NCDs 61072 NCERT 11806 @@ -83355,6 +84793,7 @@ NCIS 72932 NCIT 2942 NCJW 38680 NCLB 517067 +NCLC 196402 NCLDV 855 NCLEX-RN 392 NCLT 4717 @@ -83472,7 +84911,6 @@ NFLers 505 NFP 244171 NFPA 2603599 NFPs 18814 -NFR 80986 NFS 1060536 NFT 118633 NFTs 33802 @@ -83497,6 +84935,7 @@ NGRI 50021 NGSO 168786 NGSOs 1211 NGST 44530 +NGU 69944 NGs 37469 NH 8225575 NHAR 1362 @@ -83525,6 +84964,8 @@ NICCD 595 NICE 450409 NICER 7171 NICI 21522 +NICRUT 1502 +NICRUTs 465 NICU 326292 NICUs 36570 NICs 402924 @@ -83536,11 +84977,14 @@ NIEs 135628 NIFOC 141 NIGMS 158746 NIHL 27038 +NII 230346 NIL 374974 NIMA 113321 NIMBY 113661 NIMBYism 10776 NIMBYs 8895 +NIMCRUT 10728 +NIMCRUTs 1684 NIMH 1314964 NIMHD 4472 NIMS 149924 @@ -83592,6 +85036,7 @@ NLM 1093954 NLP 335358 NLPC 3545 NLPG 225 +NLPHL 10905 NLQ 35176 NLR 306130 NLRB 19507856 @@ -83629,7 +85074,6 @@ NNT 71976 NNTO 379 NNTP 76846 NNW 227763 -NNZ 2426 NOA 430852 NOAC 26080 NOAD 3963 @@ -83679,6 +85123,7 @@ NOT 34747267 NOTAM 170508 NOTAMs 68804 NOTAR 9724 +NOTMAR 1101 NOTP 6850 NOTs 6416 NOVA 730158 @@ -83702,10 +85147,8 @@ NPK 160604 NPL 848808 NPN 451018 NPNs 3732 -NPO 726020 NPOESS 73603 NPOV 1945 -NPOs 68118 NPP 500647 NPPV 42254 NPQH 655 @@ -83731,9 +85174,12 @@ NR 6047240 NRA 2387136 NRAB 106185 NRAO 105384 +NRB 104968 NRC 12843301 NRCA 43616 NRCC 139617 +NRCs 38211 +NRDC 512572 NREL 161308 NREM 313071 NREMT 19578 @@ -83787,11 +85233,13 @@ NSO 310613 NSOs 28693 NSPC 8408 NSPCC 18418 +NSPF 804993 NSQ 6323 NSR 392148 NSS 486815 NSSC 85556 NSSE 65358 +NSSI 46334 NSSL 77057 NSTEMI 49993 NSWBC 149 @@ -83841,6 +85289,7 @@ NV 4403404 NVA 717977 NVC 82143 NVD 34025 +NVDA 4617 NVDs 5433 NVE 37309 NVEs 1306 @@ -83864,6 +85313,7 @@ NWAV 3518 NWEM 347 NWFZ 18889 NWFZs 5348 +NWG 21285 NWHRC 1909 NWIP 7325 NWMP 7084 @@ -83878,13 +85328,16 @@ NYA 398148 NYAG 5504 NYCL 1747 NYCTA 120241 +NYD 22349 NYFM 331 NYI 74205 NYLON 266216 NYLT 494 +NYP 71430 NYPD 487648 NYR 24841 NYRA 24824 +NYSD 1748 NYSE 3688935 NYT 1200344 NYX 9652 @@ -83893,6 +85346,7 @@ NYer 2138 NYers 1033 NZMC 554 NZSL 4998 +NZST 856 NZT 3578 NZers 157 Na 13596120 @@ -84027,6 +85481,7 @@ Nagasawa 101438 Nagata 339056 Nagatas 271 Nagavali 292 +Nagda 23036 Nagelian 2045 Nagi 78728 Nagios 30770 @@ -84137,6 +85592,7 @@ Nakais 233 Nakajima 436011 Nakakawa 176 Nakama 21678 +Nakamaru 5450 Nakamine 1823 Nakamori 11952 Nakamoto 97424 @@ -84191,12 +85647,14 @@ Nally 127906 Nallys 577 Nalty 39367 Nalukataq 1225 +Nalvarte 599 Nam 5760119 Nama 187055 Namaka 7523 Namaland 5042 Namaqua 32842 Namaqualand 72197 +Namatjira 7435 Nambiar 25929 Nambikwara 14052 Nambissan 1347 @@ -84236,6 +85694,8 @@ Nanabush 12547 Nanai 22093 Nanaimo 272585 Nanako 7029 +Nanakpanthi 181 +Nanakpanthis 376 Nanami 4299 Nanase 2258 Nancagua 325 @@ -84298,6 +85758,7 @@ Nansemonds 4350 Nansen 653832 Nansha 27770 Nanshan 34746 +Nanshi 6013 Nansi 14608 Nanson 37732 Nanstallon 203 @@ -84438,6 +85899,7 @@ Narendra 146177 Narew 45265 Narez 1159 Nargis 37013 +Narin 39267 Narine 19160 Narines 194 Narinjari 381 @@ -84498,6 +85960,7 @@ Nasers 341 Nases 977 Nash 8810351 Nashean 341 +Nashes 20378 Nashi 34733 Nashian 591 Nashik 4843 @@ -84522,6 +85985,7 @@ Naskapi 75843 Naskh 4931 Naskhi 7020 Naslund 47372 +Nasmyth 189642 Naso 154993 Nason 729883 Nasons 3581 @@ -84629,6 +86093,7 @@ Natzke 11564 Nau 285861 Naubinway 12037 Naucratis 51116 +Nauen 46949 Nauert 22003 Naufal 6279 Naugahyde 65581 @@ -84728,6 +86193,7 @@ Navratri 2862 Navrot 2153 Navroz 3092 Navruz 2607 +Nawalapitiya 891 Nawanshahr 199 Nawar 20789 Nawars 115 @@ -84798,6 +86264,7 @@ Nazaryan 6413 Nazca 265926 Nazcan 894 Nazcans 891 +Nazeing 4335 Nazerini 133 Nazgul 12270 Nazguls 159 @@ -84912,10 +86379,12 @@ Necessarians 2085 Necessarium 6076 Necessary 4215738 Necessarys 8270 +Necessitas 10206 Nechaev 78578 Nechako 15142 Nechayev 55344 Neche 41032 +Nechells 3328 Nechepurenko 715 Nechtan 10689 Neckar 267629 @@ -84969,6 +86438,7 @@ Nees 356488 Neesam 2970 Neese 120926 Neeses 9831 +Neether 312 Nefasit 1140 Nefertem 4168 Nefertiti 180934 @@ -85127,6 +86597,7 @@ Nemaha 369813 Neman 51448 Nemaska 1388 Nemat 46097 +Nemausa 1920 Nemausus 14466 Nembhard 17260 Nemean 131171 @@ -85246,9 +86717,11 @@ Nernst 720207 Nernstian 28933 Nero 3556576 Neron 50231 +Neroni 31049 Neronian 64118 Nerons 612 Neros 26947 +Nerquis 328 Nersesyan 3794 Nersisyan 2885 Nertz 2261 @@ -85305,6 +86778,7 @@ Netflixed 413 Netflixing 143 Neth 396535 Netherbury 3780 +Netherby 45819 Nethercote 5701 Nethercott 19748 Netherdale 1882 @@ -85339,6 +86813,7 @@ Netter 230222 Netters 8087 Netterville 42969 Nettervilles 197 +Nettesheim 63718 Nettie 1341549 Nettlecombe 5777 Nettles 424964 @@ -85439,6 +86914,7 @@ Neveu 122432 Neveus 1177 Nevi'im 13496 Nevil 290010 +Nevile 124537 Nevill 321893 Neville 3410779 Nevills 29141 @@ -85460,6 +86936,7 @@ Newall 156705 Newar 73686 Newari 44730 Newark 21250919 +Newarthill 691 Newaygo 314055 Newband 1582 Newbauer 26119 @@ -85649,6 +87126,7 @@ Ngarinyin 3817 Ngarluma 1285 Ngarrindjeri 9445 Ngaruawahia 2839 +Ngauranga 390 Ngawa 3774 Ngawi 3194 Ngawun 872 @@ -85849,6 +87327,7 @@ Nidas 783 Nidavellir 1480 Niday 22864 Nidd 14519 +Nidderdale 21699 Niddrie 9612 Nide 5037 Nidhogg 8560 @@ -85869,6 +87348,7 @@ Niece 222369 Nieces 43960 Nied 24107 Nieder 74217 +Niederer 38508 Niederhauser 26851 Niederkorn 13477 Niederlahnstein 2047 @@ -85877,6 +87357,7 @@ Niedermeyers 137 Nieders 1857 Nieds 615 Niedzwiecki 16751 +Nieheim 3195 Niehoff 95649 Niehoffs 337 Niekamp 7732 @@ -86087,6 +87568,7 @@ Ningpo 282195 Ningqiang 1187 Nings 1917 Ningshan 462 +Ningwood 145 Ningwu 1344 Ningxia 121778 Ninh 223684 @@ -86158,6 +87640,7 @@ Nish 129127 Nishada 2681 Nishadas 1384 Nishapur 82350 +Nishga 7669 Nishi 340304 Nishida 400031 Nishidas 310 @@ -86191,6 +87674,7 @@ Nisquallis 215 Nisqually 354581 Nissan 1395573 Nisse 19487 +Nissen 634458 Nissitissit 2491 Nissley 87051 Nissleys 533 @@ -86267,6 +87751,8 @@ Njoku 33522 Njoroge 27929 Njuguna 8621 Nkana 21697 +Nkawkaw 2092 +Nko 7154 Nkore 9083 Nkrumaism 5683 Nkrumaist 1595 @@ -86321,6 +87807,7 @@ Nobes 26971 Nobiin 1013 Nobile 152788 Nobiles 5652 +Nobilo 4503 Noble 10442081 Nobleford 1116 Nobles 958372 @@ -86394,6 +87881,8 @@ Noh 389813 Noha 17469 Noho 10930 Nohs 604 +Noid 15032 +Nokes 125808 Nokia 503863 Nokian 1484 Nokians 653 @@ -86551,7 +88040,6 @@ Noretti 324 Norfleet 179259 Norfleets 1268 Norfolcian 481 -Norfolk 20171759 Norfolkian 1075 Norfolkians 1280 Norfolks 14148 @@ -86708,6 +88196,7 @@ Northmore 33577 Northmores 1723 Northolt 26347 Northorpe 2567 +Northport 715304 Northridge 988069 Northron 1184 Northrons 295 @@ -86773,6 +88262,7 @@ Nostradamuses 353 Nostratic 25439 Nostraticist 52 Nostraticists 955 +Not 249370968 Notah 11061 Notaro 30877 Notaros 649 @@ -86781,6 +88271,7 @@ Noteboom 18111 Notestine 13143 Notestines 157 Nothingville 201 +Notis 40671 Notkerian 949 Noto 235805 Notos 20646 @@ -86887,6 +88378,7 @@ Nowakowski 109811 Nowata 193035 Nowell 651872 Nowells 6187 +Nower 10634 Nowheresville 8739 Nowhereville 780 Nowicki 234491 @@ -86914,6 +88406,8 @@ Noys 18246 Nozickian 4249 Nozomi 12516 Nri 21782 +Nsawam 5849 +Nsuta 8261 NtRTI 766 NtRTIs 834 Nu 2705801 @@ -87066,14 +88560,17 @@ Nuttons 135 Nutts 9972 Nuuk 25091 Nuvvuagittuq 563 +Nuwa 5127 Nuwaubian 3044 Nuwaubians 1896 Nuwere 424 Nuyorican 71450 Nuyoricans 9947 Nuzhen 2525 +Nuzi 96904 Nuzian 1709 Nuzians 697 +Nuzu 8161 Nuzum 86569 Nuzums 587 Nuzzi 15839 @@ -87271,8 +88768,10 @@ OAK 1580544 OAL 272548 OAMC 2659 OAS 2726624 +OASI 819026 OASIS 366708 OATUS 226 +OAU 947591 OAV 26404 OAVs 2420 OAX 8079 @@ -87388,6 +88887,7 @@ OGTTs 2439 OH 31149583 OHA 423178 OHC 114542 +OHCHR 52808 OHCs 35044 OHIM 9451 OHIP 10597 @@ -87401,6 +88901,7 @@ OICs 18956 OID 704302 OIF 211551 OIG 1776020 +OIL 11208735 OIML 21767 OISE 59316 OISM 1289 @@ -87533,15 +89034,16 @@ ORAS 7196 ORBs 30970 ORCID 3056 ORCs 5959 +ORD 2901229 ORE 1625754 ORFeome 3224 +ORFeomes 458 ORIF 71395 ORL 166548 ORM 227444 ORMs 4919 ORNL 2875820 ORR 699801 -ORS 5832812 ORSA 181559 ORSAs 189 ORT 395238 @@ -87588,6 +89090,7 @@ OTC 3263478 OTE 177504 OTEC 734141 OTECs 1519 +OTEs 2767 OTF 138166 OTG 22736 OTH 1392901 @@ -87626,6 +89129,8 @@ OVV 8748 OVVs 865 OVs 6868 OWA 118012 +OWF 23153 +OWFs 410 OWI 493823 OWIN 3683 OWIs 595 @@ -87648,6 +89153,7 @@ Oakeshott 247503 Oakeshottian 1803 Oakey 167444 Oakeys 441 +Oakford 92702 Oakham 129975 Oakhill 70669 Oakhurst 227538 @@ -87735,6 +89241,7 @@ Obioha 2678 Obion 297002 Obispo 2494937 Obispos 5169 +ObjC 398 Objectivism 87077 Oblation 42645 Oblomovian 575 @@ -87765,6 +89272,7 @@ Observantists 1501 Observants 36176 Obst 785042 Obsts 554 +Obuasi 13046 Obuchi 53798 Obukhiv 197 Obummer 103 @@ -87868,6 +89376,7 @@ Odawa 42535 Odawara 54583 Oday 15440 Odays 2515 +Odd 3614097 Oddfellow 7714 Oddfellows 39645 Oddie 251955 @@ -87947,6 +89456,7 @@ Ofala 783 Ofcom 26744 Ofer 101723 Offaly 43786 +Offchurch 1201 Offenbachian 2402 Offenburg 29710 Offer 6156478 @@ -87972,6 +89482,7 @@ Og 546919 Oga 38265 Ogaden 194000 Ogadenia 253 +Ogalala 14863 Ogallala 530913 Oganessian 4234 Ogas 5478 @@ -87986,6 +89497,7 @@ Ogburn 353236 Ogburns 2590 Ogden 8349923 Ogdoad 18799 +Oge 67740 Ogema 32182 Ogg 470178 Oggerino 517 @@ -88031,6 +89543,8 @@ Ohashi 161908 Ohau 6550 Ohayon 27070 Ohi 121495 +Ohian 1271 +Ohians 1047 Ohio 212112848 Ohioan 110669 Ohioans 167603 @@ -88056,6 +89570,7 @@ Oi'll 12811 Oi've 8356 Oiapoque 4733 Oich 9577 +Oil 86523871 Oildale 30070 Oilgate 873 Oireachtas 35956 @@ -88255,6 +89770,7 @@ Olley 67001 Olleys 247 Ollie 1423193 Olliemania 1441 +Ollier 114469 Olliges 2576 Ollila 27744 Ollis 63624 @@ -88325,6 +89841,8 @@ Omagh 53346 Omagua 24656 Omaguas 11161 Omaha 16108996 +Omahan 2965 +Omahans 5092 Omahas 163514 Omak 102565 Oman 2619905 @@ -88343,8 +89861,10 @@ Omaris 295 Omartian 8480 Omawhaw 3124 Omawhaws 4751 +Ombersley 4482 Omdurman 182703 Ome 150262 +Omega 3271118 Omelia 5157 Omer 867225 Ometepec 12465 @@ -88355,6 +89875,8 @@ Omie 23123 Omikron 6554 Omine 12346 Omlor 5149 +Ommiad 11360 +Ommiads 6347 Omnipotent 323770 Omniscient 127339 Omohundro 71714 @@ -88390,11 +89912,14 @@ Oneiders 661 Oneika 289 Oneiroi 815 Oneonta 976181 +Oneota 228079 Ong 930832 +Ongan 1566 Ongar 53408 Onge 149373 Ongee 3172 Ongian 643 +Ongole 41104 Ongota 1313 Onibury 458 Onida 40785 @@ -88417,6 +89942,7 @@ Onondagan 8393 Onondagans 740 Onondagas 218421 Onorato 86247 +Onore 18748 Onoway 3145 Onsagerian 199 Onslow 593321 @@ -88438,6 +89964,7 @@ OoB 776 OoT 866 Ooi 73584 Oola 14066 +Ooma 6913 Oommen 17022 Oona 171264 Oonagh 29300 @@ -88503,6 +90030,7 @@ Oppedisano 6587 Oppel 100641 Oppels 538 Oppelt 31742 +Oppen 168339 Oppenheim 1426484 Oppenheimer 2570370 Oppies 173 @@ -88518,6 +90046,7 @@ Opsterland 203 Optimist 296113 Optimists 132530 Optimus 117423 +Opua 3986 Opunake 1762 Opuzen 556 Oquawka 86301 @@ -88606,6 +90135,7 @@ Ore 7114036 Orebaugh 30589 Orebite 1018 Orebites 1006 +Oredezh 1439 Oree 18773 Orefield 16242 Oregon 70185786 @@ -88760,12 +90290,14 @@ Oromos 28973 Orontean 121 Orontes 241142 Oropesa 45327 +Oropeza 67692 Oropom 441 Oroqen 8151 Oroqens 1585 Oroquieta 9429 Oros 80925 Orosi 56752 +Orosz 37903 Orovada 11659 Oroville 925153 Orozco 680904 @@ -88776,6 +90308,7 @@ Orpheus 1908437 Orphic 364434 Orphical 98 Orphically 397 +Orphics 28635 Orphism 76030 Orphist 2858 Orphists 3412 @@ -88788,6 +90321,7 @@ Orrantia 7417 Orrego 57976 Orrell 91745 Orren 134740 +Orrens 341 Orrick 286281 Orricks 858 Orrico 9734 @@ -88811,6 +90345,7 @@ Orta 121827 Ortas 2486 Ortega 2102667 Ortenau 4641 +Ortet 4146 Orthodox 9247142 Orthodoxes 1703 Orthodoxy 1426737 @@ -88837,6 +90372,7 @@ Ortoqids 251 Ortrud 54591 Ortsgruppenleiter 7829 Ortsgruppenleiters 851 +Orumiyeh 3268 Orunmila 22483 Oruro 212004 Orvieto 272280 @@ -88937,6 +90473,7 @@ Osmanski 10030 Osmanya 283 Osment 28036 Osments 83 +Osmin 37760 Osmon 30426 Osmond 775673 Osmons 111 @@ -88966,6 +90503,7 @@ Osrohene 107 Ossa 185470 Ossai 2055 Ossas 1579 +Ossau 10343 Ossenfort 7800 Osseo 146368 Osset 8714 @@ -88988,11 +90526,13 @@ Ossipee 246547 Ossman 33460 Ossoff 10893 Ossonoba 1160 +Ossun 13693 Ostanek 1001 Ostap 55124 Ostara 22163 Ostberg 47649 Ostbergs 414 +Oste 14941 Ostend 565437 Ostender 1161 Ostenders 1507 @@ -89074,6 +90614,7 @@ Otomanguean 16435 Otomi 108600 Otomian 6436 Otomis 14423 +Otonabee 9520 Otrera 4015 Otruba 3423 Otsego 1307455 @@ -89144,12 +90685,14 @@ Oudet 17531 Oudets 918 Oudh 224684 Oughtibridge 1099 +Ouigours 1940 Ouija 169704 Ouijas 489 Ouimette 26696 Ouistreham 9059 Oujda 35595 Oujiang 536 +Oulie 3416 Oulipian 6171 Oulipians 1231 Oulman 6211 @@ -89172,7 +90715,11 @@ Ouse 230687 Ouseburn 3378 Ouseley 93541 Ouseleys 323 +Oushak 5277 Ouspenskian 580 +Ousset 5715 +Oustalet 13230 +Oustau 2371 Ouston 14366 Outagami 7113 Outagamie 311080 @@ -89205,7 +90752,9 @@ OvaHerero 394 Ovada 4079 Ovaherero 7324 Ovaltine 95157 +Ovambo 69251 Ovamboland 45414 +Ovambos 13914 Ovando 212296 Ovchinnikov 108100 Ovechkin 22203 @@ -89216,6 +90765,8 @@ Overbay 26260 Overbey 58891 Overby 187303 Overbys 1112 +Overdale 8405 +Overend 95422 Overgaard 70635 Overgaards 115 Overground 11024 @@ -89228,6 +90779,7 @@ Oversons 108 Overstreet 593688 Overton 2530842 Overtons 8759 +Overtown 27133 Overturf 71235 Overturfs 426 Overy 78349 @@ -89255,6 +90807,7 @@ Owensboro 1035454 Owensby 42593 Owenton 54597 Owenyo 10745 +Ower 50889 Owerri 61857 Owings 680984 Owingses 229 @@ -89266,13 +90819,16 @@ Owst 25973 Owston 35963 Owyhee 570852 Ox 1629165 +Oxborough 9092 Oxbow 268335 Oxbridge 136130 Oxbridgian 347 Oxenbridge 43235 Oxenbridges 633 +Oxendale 4326 Oxendine 53609 Oxendines 678 +Oxenham 96538 Oxenholme 2937 Oxenhope 2429 Oxf 173475 @@ -89300,7 +90856,9 @@ Oxonians 36619 Oxshott 6851 Oxspring 2193 Oxted 14967 +Oxton 21099 Oxus 298462 +Oxwick 696 Oxy 487157 OxyContin 124522 Oxyrhynchite 7087 @@ -89358,6 +90916,7 @@ Ozymandiases 251 Ozzie 446251 Ozzies 1511 Ozzy 106762 +P'eng 171941 P's 4362 P'ship 29940 P'town 2741 @@ -89424,8 +90983,10 @@ PAWG 3346 PAYE 31979 PAYG 50257 PAYGO 215722 +PAYO 1396 PAc 13400 PAs 389847 +PB 11391038 PBA 407773 PBAN 18039 PBAs 7127 @@ -89473,11 +91034,13 @@ PCH 182238 PCHR 11143 PCIs 34270 PCL 815172 +PCLL 1707 PCM 1619289 PCMCIA 246525 PCMs 41787 PCN 276957 PCNB 85905 +PCNL 16412 PCNs 31139 PCO 372597 PCOs 44423 @@ -89494,6 +91057,7 @@ PCT 2520852 PCU 139960 PCUs 9147 PCV 397578 +PCVs 38399 PCW 93814 PCX 224722 PCing 1107 @@ -89561,6 +91125,7 @@ PEDOT 54836 PEDs 24595 PEEK 311771 PEEP 626927 +PEF 327885 PEFC 33791 PEFCs 7883 PEGI 3681 @@ -89589,6 +91154,7 @@ PERSTAT 388 PES 649636 PESC 41629 PETA 165291 +PETG 18015 PETM 11065 PEV 41163 PEVs 8496 @@ -89607,6 +91173,7 @@ PFBS 1912 PFC 1206798 PFCA 3355 PFCAs 1937 +PFCE 2634 PFCs 102350 PFD 386496 PFDs 56492 @@ -89667,12 +91234,15 @@ PHEIC 3112 PHEICs 431 PHEV 24384 PHEVs 20831 +PHEs 7284 PHI 843707 PHN 141593 PHON 20736 PHOSITA 5055 PHOs 23427 PHP 1108239 +PHRA 57518 +PHRAs 217 PHS 3562409 PHU 21515 PHUs 1837 @@ -89697,6 +91267,7 @@ PID 1330581 PIDs 33620 PIE 775822 PIEs 7797 +PIF 189546 PIG 725347 PIGS 433858 PIGs 20559 @@ -89706,8 +91277,10 @@ PIIRS 358 PIIS 3666 PILON 10004 PILs 6396 +PIMO 5692 PIMS 104996 PIMU 1052 +PINS 515277 PINs 96307 PIO 260743 PIOs 21010 @@ -89740,6 +91313,7 @@ PIs 182417 PJ 2220122 PJA 21583 PJAs 299 +PJO 3039 PJs 50274 PK 1791661 PKA 324236 @@ -89750,6 +91324,7 @@ PKI 549633 PKK 370036 PKKP 2078 PKKs 588 +PKP 78953 PKR 70237 PKU 479541 PKer 243 @@ -89757,8 +91332,8 @@ PKers 263 PKs 17392 PL 10694997 PLA 2510710 +PLAAF 42821 PLAF 83370 -PLAN 9868504 PLAs 94829 PLBs 15481 PLCC 48023 @@ -89795,6 +91370,7 @@ PMA 1718254 PMB 225399 PMBs 2807 PMC 632152 +PMDs 13085 PMEE 1182 PMFJI 214 PMH 80695 @@ -89802,6 +91378,7 @@ PMHx 2378 PMI 612387 PMID 886847 PMIDs 745 +PMIS 42806 PML 403807 PMMU 9112 PMMUs 241 @@ -89879,6 +91456,7 @@ POPs 170539 POR 595110 PORT 3286251 PORs 4267 +POSB 4708 POSITA 685 POSIX 176468 POSSLQ 4623 @@ -89902,6 +91480,7 @@ PPBM 2545 PPBs 5413 PPC 616977 PPCs 25286 +PPDs 13461 PPE 756779 PPEs 11083 PPG 932874 @@ -89911,6 +91490,8 @@ PPHs 1401 PPL 322535 PPLs 3226 PPM 808835 +PPMD 7655 +PPMDs 217 PPMs 31095 PPN 107791 PPNB 21315 @@ -89924,6 +91505,8 @@ PPT 581805 PPTC 4165 PPTP 102837 PPTs 10710 +PPU 57734 +PPUs 6883 PPV 386604 PPW 123289 PPY 18364 @@ -89967,6 +91550,8 @@ PRRs 31284 PRS 884525 PRT 510041 PRTs 55340 +PRU 96780 +PRUs 10473 PRVI 1546 PRs 111061 PS 8205803 @@ -89979,6 +91564,7 @@ PSATs 5631 PSAs 251344 PSB 297581 PSBK 465 +PSBs 16014 PSC 1763502 PSD 1578881 PSDP 6084 @@ -90020,6 +91606,7 @@ PT 5311298 PTA 2088120 PTAL 1292 PTAs 154796 +PTBD 4656 PTBT 8760 PTC 791251 PTCA 301754 @@ -90036,7 +91623,10 @@ PTHC 2763 PTHs 9319 PTI 316097 PTIs 4959 +PTLV 3125 +PTLVs 239 PTM 133130 +PTMs 23910 PTO 2055097 PTOL 26732 PTOs 31261 @@ -90073,6 +91663,7 @@ PVC 3094557 PVCs 205145 PVCu 383 PVD 280671 +PVFS 6134 PVM 159673 PVN 163648 PVNs 1904 @@ -90083,6 +91674,7 @@ PVRI 5364 PVRs 13685 PVS 252673 PVT 378503 +PVTs 9617 PVX 36788 PVs 78086 PW 2216672 @@ -90098,7 +91690,6 @@ PWM 780559 PWP 137564 PWPs 4826 PWR 1680703 -PWT 87755 PWs 65775 PX 951625 PXR 36180 @@ -90189,6 +91780,8 @@ Padarn 5866 Padasjoki 769 Padaung 7659 Padaungs 1485 +Padawan 15931 +Padawans 2389 Padborg 1864 Padden 152331 Paddies 25310 p @@ -90268,6 +91861,7 @@ Paff 61205 Pafford 52421 Paffs 697 Pag 313675 +Pagadian 3725 Pagaduan 1485 Pagan 2115892 Paganalia 2038 @@ -90279,6 +91873,7 @@ Paganinis 3609 Paganis 3491 Pagano 375662 Paganos 9623 +Pagay 1449 Page 86672260 PageRank 68966 PageRanks 1540 @@ -90314,6 +91909,8 @@ Pahouin 6516 Pahrump 101991 Pahute 53220 Pahutes 2439 +Pahvant 18479 +Pahvants 2293 Paia 67920 Paide 7251 Paidia 2015 @@ -90323,6 +91920,7 @@ Paignton 32715 Paik 278469 Paiks 2093 Paily 8545 +Paimpol 14831 Pain 10272618 Paine 6877685 Painesville 556949 @@ -90335,6 +91933,7 @@ Painter 4396062 Painters 3195677 Paints 2482012 Paintsville 169608 +Paipai 15498 Pair 2522333 Pairan 1273 Pairs 1078193 @@ -90413,12 +92012,14 @@ Palafox 140396 Palafoxes 1405 Palahniuk 25253 Palaic 8039 +Palaihnihan 7827 Palaiologan 7888 Palamism 3963 Palamite 7693 Palamites 2836 Palamitism 165 Palanan 18609 +Palanpur 10183 Palapye 8812 Palare 1254 Palari 1838 @@ -90433,6 +92034,7 @@ Palau 1565701 Palauan 135164 Palauans 44977 Palaung 14501 +Palaungic 2460 Palaveram 214 Palawan 289256 Palawano 3025 @@ -90525,6 +92127,7 @@ Pallante 12617 Pallantes 278 Pallas 1381307 Pallavaram 2797 +Pallavicini 91195 Pallene 31806 Pallie 10894 Pallies 1497 @@ -90678,6 +92281,7 @@ Panas 57797 Panasonic 669342 Panathenaea 40040 Panathenaean 2223 +Panathenaeic 311 Panathenaic 96558 Panay 348444 Pancake 358750 @@ -90792,7 +92396,9 @@ Panicos 3201 Panikkar 123059 Panini 135997 Paninian 5050 +Panionian 1545 Panionic 755 +Panionium 4549 Panipat 32636 Panisk 105 Panisks 524 @@ -90858,6 +92464,7 @@ Panslavist 10993 Panslavists 8061 Panslavonian 212 Panslavonic 2373 +Pansy 634267 Pant 263531 Pantagruelism 5064 Pantagruelist 1762 @@ -91062,6 +92669,8 @@ Pardees 3475 Pardesi 3439 Pardesis 211 Pardew 15735 +Pardhan 3547 +Pardhans 1593 Pardi 44234 Pardiac 1359 Pardies 10401 @@ -91085,6 +92694,7 @@ Parel 43721 Pareles 22471 Parell 6733 Paremata 886 +Parenica 557 Parent 12368095 Parentalia 19822 Parente 113112 @@ -91092,6 +92702,8 @@ Parenteau 37710 Parentes 6076 Parenti 162148 Parentis 29468 +Paresi 7005 +Paressi 10698 Paretian 64740 Paretoan 986 Paretsky 40676 @@ -91118,6 +92730,8 @@ Parilia 10467 Parillo 20856 Parinian 164 Parins 11906 +Parintintin 9829 +Parintintins 843 Paris 130100362 Parise 71730 Pariseau 35830 @@ -91165,6 +92779,7 @@ Parkham 13543 Parkhead 15841 Parkhill 255316 Parkhills 1062 +Parkhouse 36097 Parkhurst 1034764 Parkhursts 2693 Parkie 5299 @@ -91309,6 +92924,7 @@ Parsleys 1651 Parslow 54234 Parslows 333 Parson 2076485 +Parsonian 63211 Parsons 12983149 Parsonsian 4548 Partain 64406 @@ -91344,6 +92960,7 @@ Partington 354778 Partingtons 1905 Partins 1968 Partium 9128 +Partizansk 1550 Partlow 171829 Partlows 533 Partner 6810173 @@ -91381,6 +92998,7 @@ Pascaline 16448 Pascalines 147 Pascall 31758 Pascals 39907 +Pascarella 110810 Pasch 175076 Pascha 84345 Paschal 888855 @@ -91513,6 +93131,7 @@ Pastukh 922 Paswan 7079 Paszkiewicz 11277 Pat 17302049 +Patagones 14143 Patagonia 1220063 Patagonian 320808 Patagonians 79406 @@ -91648,6 +93267,8 @@ Patty 3013604 Patung 2630 Patuxent 940861 Patuxents 2593 +Patuxet 27359 +Patuxets 2151 Patween 195 Patweens 235 Patwin 61932 @@ -91693,6 +93314,7 @@ Paulinized 483 Paulinizing 366 Paulino 129923 Paulinos 2306 +Paulism 1605 Paulist 622317 Paulistano 6534 Paulistanos 2324 @@ -91710,11 +93332,13 @@ Paumanok 45066 Paumari 4555 Paumotu 37946 Paumotuan 5735 +Paunees 621 Pauni 4444 Pauranic 1973 Pausanian 738 Pausanias 1065916 Pause 1964878 +Pauserna 4068 Pauses 189522 Pausha 1277 Pausic 378 @@ -91780,6 +93404,7 @@ Pawpaw 88298 Pawsey 24194 Pawson 127120 Pawtucket 1851611 +Pawtuckets 4875 Pawtuxent 1801 Pax 1045123 Paxford 3667 @@ -91804,6 +93429,7 @@ Paye 47293 Payen 119775 Payens 21046 Payer 429931 +Payerbach 1369 Payers 158763 Payes 10206 Payette 658793 @@ -91936,6 +93562,7 @@ Peckett 22639 Peckham 1359643 Peckhamite 446 Peckhams 17133 +Peckinpah 181359 Peckinpaugh 48046 Peckinpaughs 523 Pecksniff 349607 @@ -92107,6 +93734,8 @@ Pelagianized 181 Pelagianizing 1971 Pelagians 144043 Pelagies 179 +Pelagio 12162 +Pelagios 1254 Pelagius 419870 Pelargonium 145888 Pelasgi 56560 @@ -92125,6 +93754,7 @@ Pelecanos 12871 Pelechaty 1047 Pelee 244520 Peleg 497258 +Peleng 3437 Peleus 320544 Pelewans 311 Pelfrey 35891 @@ -92316,12 +93946,15 @@ Penicks 3747 Penicuik 20328 Penin 63922 Peninah 15218 +Peniston 108583 Penistone 21792 +Penistons 671 Penix 34080 Penjaringan 398 Penk 23075 Penkalski 2566 Penketh 9993 +Penkhull 4203 Penki 3515 Penkridge 7437 Penland 210368 @@ -92366,6 +93999,7 @@ Pennimans 2597 Pennine 120529 Pennines 68479 Penning 290108 +Pennings 68431 Pennington 2929611 Penningtons 18177 Penninic 6711 @@ -92381,6 +94015,7 @@ Pennsylvania 150133611 Pennsylvanian 3212075 Pennsylvanians 440838 Penny 5067957 +Pennyburn 991 Pennycook 60507 Pennywell 8026 Penobscot 2141479 @@ -92615,6 +94250,7 @@ Perinel 253 Perino 195385 Perinos 535 Perins 3942 +Perinton 50020 Perioecians 321 Perioikoi 4449 Peripatetic 213633 @@ -92625,6 +94261,8 @@ Perisher 4534 Periton 5798 Perivale 23017 Periven 76 +Perizzite 17037 +Perizzites 74340 Perkey 29648 Perkin 1255053 Perkinism 6733 @@ -92687,6 +94325,7 @@ Peros 13381 Perot 1666171 Perots 6815 Perotti 96822 +Perpall 8129 Perpendicular 528253 Perpignan 209236 Perranarworthal 349 @@ -92938,6 +94577,7 @@ Petitts 237 Petka 26627 Petkov 87384 Petkovich 7289 +Petley 30506 Petliurist 524 Petliurists 725 Petliurite 215 @@ -92960,6 +94600,7 @@ Petrarch 1934781 Petrarchan 225655 Petrarchanism 3935 Petrarchian 12134 +Petrarchianism 450 Petrarchism 44965 Petrarchisms 477 Petre 349517 @@ -93094,6 +94735,7 @@ Petuns 7019 Petway 24907 Petways 141 Petwo 6137 +Petworth 118520 Petz 57969 Petzold 130189 Petzolds 223 @@ -93104,8 +94746,10 @@ Peugeot 447373 Peugeots 16033 Peugh 31939 Peughs 369 +Peulla 4331 Peumo 2736 Peutingerian 1748 +Pevensey 67575 Peveto 12319 Pevey 23431 Pevsner 193664 @@ -93230,6 +94874,7 @@ Pharmuthi 6217 Pharo 61712 Pharos 273199 Pharr 401505 +Pharrell 13054 Pharrs 1765 Pharsalia 231028 Pharsalian 8378 @@ -93374,6 +95019,7 @@ Philogene 7735 Philogenes 2248 Philolexian 12343 Philolexians 137 +Philomel 184668 Philomela 155240 Philomena 191427 Philonian 9576 @@ -93703,10 +95349,13 @@ Pietsch 135574 Pietschmann 21963 Piette 92059 Pietz 52828 +Pietzsch 16285 Pifer 129307 Pifers 620 Piffard 57989 Piffards 251 +Piffer 4829 +Piffers 775 Pig 4767868 Pigasus 5069 Pigeon 2365775 @@ -93753,6 +95402,7 @@ Pilats 815 Pilawa 1937 Pilbara 54466 Pilbeam 84350 +Pilbrow 16085 Pilcher 547457 Pilchers 2721 Pile 2171114 @@ -93800,6 +95450,7 @@ Pilon 187345 Pilons 1037 Piloto 29440 Pilotos 3465 +Pilsbury 76721 Pilsen 212555 Pilsley 585 Pilson 67110 @@ -93915,6 +95566,7 @@ Pingdingshan 4579 Pingel 37704 Pingelapese 2921 Pinggu 2570 +Pinghu 3520 Pingju 1248 Pingle 19795 Pingles 311 @@ -93935,6 +95587,7 @@ Pingtan 4998 Pingtingshan 1543 Pingtung 21077 Pingxi 1179 +Pingxiang 12325 Pingyao 6368 Pingyu 1226 Pingzhen 167 @@ -94161,6 +95814,7 @@ Pitcombe 1235 Pither 11445 Pithers 14892 Pithie 2871 +Pitino 38389 Pitjantjara 1883 Pitjantjatjara 15671 Pitkanen 19544 @@ -94193,6 +95847,7 @@ Pittengers 373 Pitter 69319 Pitters 4395 Pittinger 48592 +Pittington 3651 Pittite 8339 Pittites 8064 Pittman 2156232 @@ -94206,6 +95861,7 @@ Pittsburghers 49011 Pittsburghese 5370 Pittses 1843 Pittsfield 2620171 +Pittsford 456396 Pittsley 12022 Pittuck 2577 Pitz 108406 @@ -94250,6 +95906,7 @@ Placerville 608523 Places 7615373 Plachutta 759 Placilla 5414 +Plack 58255 Placke 15898 Plaice 55845 Plain 13509914 @@ -94414,6 +96071,7 @@ Plethon 28409 Plett 34812 Pletts 3136 Pletz 23026 +Pleubian 314 Pleva 21816 Pleven 121396 Plevin 12599 @@ -94524,6 +96182,9 @@ Pluto 2090189 Plutonian 51015 Plutonians 4459 Plutonic 120336 +Plutonism 9475 +Plutonist 2327 +Plutonists 7585 Plutus 138877 Plutynski 1323 Plyler 137178 @@ -94577,6 +96238,7 @@ Pococks 6034 Pocomania 6806 Poconos 112332 Podaleirios 2051 +Podany 15691 Podell 264240 Podesta 271236 Podestas 2645 @@ -94685,6 +96347,7 @@ Polangui 3248 Polans 6012 Polanski 231679 Polanskian 96 +Polanskis 1722 Polansky 158251 Polanskys 225 Polanyian 9899 @@ -94879,6 +96542,8 @@ Pomerelia 6367 Pomerenke 3153 Pomerleau 74027 Pomerleaus 238 +Pomerol 51180 +Pomerols 3548 Pomeroy 3139316 Pomeroys 11560 Pomfret 665884 @@ -94938,6 +96603,7 @@ Pons 911049 Ponsford 48959 Ponsonby 352021 Ponsonbys 5091 +Pontacq 1133 Pontardawe 3821 Pontarddulais 159 Pontarelli 14000 @@ -94964,11 +96630,13 @@ Pontin 21021 Pontine 177920 Pontines 765 Pontllanfraith 449 +Pontlottyn 295 Pontnewydd 1685 Pontocaspian 913 Pontoise 113937 Ponton 154957 Pontons 5144 +Pontop 2092 Pontoriero 3417 Pontotoc 414148 Pontresina 23860 @@ -95038,6 +96706,7 @@ Pophams 2700 Popian 4239 Popiel 28363 Popil 5402 +Popish 618705 Popkin 418798 Popkins 25117 Poplar 2226340 @@ -95119,6 +96788,7 @@ Porlockian 156 Pornocracy 1569 Poropat 3230 Poroshenko 9642 +Porphyrian 12482 Porphyry 711576 Porrajmos 1640 Porras 216313 @@ -95208,6 +96878,7 @@ Portmeirion 10348 Portmore 23198 Portner 104404 Portners 2724 +Portnoo 1164 Portnoy 287921 Portnoys 2216 Porto 8717634 @@ -95246,6 +96917,7 @@ Portuguese 18344008 Portugueseness 1526 Portugueses 42060 Portuguezes 6846 +Portuondo 52213 Portus 110087 Portwood 54394 Portz 29932 @@ -95345,6 +97017,7 @@ Pottawattamie 288666 Pottebaum 6912 Potteiger 18539 Potter 13223259 +Potteresque 433 Potterhead 163 Potterheads 233 Potterhill 283 @@ -95426,6 +97099,8 @@ Pouzzner 2666 Poveda 32567 Povey 137067 Povh 4492 +Povindah 491 +Povindahs 575 Povinelli 58890 Povkh 1344 Pow 706177 @@ -95446,6 +97121,7 @@ Powellian 1915 Powellism 3385 Powellite 7441 Powellites 776 +Powelltown 948 Powels 13578 Powelson 99374 Power 132141469 @@ -95513,6 +97189,7 @@ Praeger 3562483 Praegers 2065 Praetorian 257427 Praetorians 66681 +Pragati 8059 Prager 550986 Pragers 4597 Pragian 7250 @@ -95646,10 +97323,12 @@ Presbyterianized 1515 Presbyterianizing 1012 Presbyterianly 253 Presbyterians 2741491 +Presbyterism 215 Prescod 14548 Prescot 68927 Prescott 6485630 President 522356256 +Presidential 19316495 Presidentress 1025 Presidents 11840450 Presland 10909 @@ -95688,6 +97367,7 @@ Prestages 289 Prestas 325 Prestatyn 7008 Prestbury 13112 +Prestea 9815 Prestedge 430 Presteigne 3541 Presti 58131 @@ -95737,6 +97417,7 @@ Prewitts 2151 Prews 725 Preyer 364168 Preyers 737 +Prez 115259 Preza 2598 Prezas 1364 Preziosi 48834 @@ -95751,6 +97432,7 @@ Pribble 38817 Pribbles 497 Pribina 5972 Pribyl 26085 +Prica 22108 Price 88759425 Pricean 549 Prices 25360770 @@ -95838,6 +97520,7 @@ Prince 49621742 Princes 2297283 Princess 12862963 Princessa 16608 +Princesses 339215 Princeton 37668006 Princetonian 85439 Princetonians 45161 @@ -95932,6 +97615,8 @@ Prochnow 116121 Prochnows 113 Prock 31045 Procks 684 +Proclian 578 +Procline 590 Proclus 455315 Procne 69121 Procop 26632 @@ -96118,6 +97803,7 @@ Provises 610 Provisional 5602061 Provisionals 51158 Provo 2068181 +Provoans 129 Provos 47037 Provost 2759043 Prow 72221 @@ -96205,6 +97891,7 @@ Pryluky 1088 Pryor 2852667 Pryors 16110 Prys 30593 +Prysby 6317 Prystai 865 Prystay 2858 Prytula 3509 @@ -96295,6 +97982,7 @@ Pueblans 2822 Pueblo 8757122 Puebloan 104281 Puebloans 37523 +Pueblos 1028513 Puelche 16775 Puelchean 1644 Puello 5951 @@ -96393,6 +98081,8 @@ Pulsiphers 247 Pultusk 31505 Pultz 32896 Puluwat 21346 +Pulvermacher 30683 +Pulvermachers 121 Puma 396785 Pumas 61512 Pummill 8982 @@ -96437,6 +98127,7 @@ Puns 81896 Punt 226322 Punti 17479 Puntian 349 +Puntis 3792 Puntite 1105 Puntites 2117 Puntland 34772 @@ -96636,6 +98327,7 @@ Puyang 6990 Puyuma 7280 Puzi 746 Puzio 4858 +Pwca 1041 Pwllheli 11405 Px 426579 Pyatigorsk 22340 @@ -96724,6 +98416,8 @@ Pythagorical 1603 Pythagorically 126 Pythagorics 301 Pythagorism 4019 +Pythagorist 394 +Pythagorists 723 Pythagorizing 1432 Pythia 138765 Pythian 409407 @@ -96745,6 +98439,8 @@ Pythons 56742 Pyu 27770 Pyxis 30321 Q'anjob'al 6383 +Q'eqchi' 641 +Q's 1711 QAC 27442 QAFL 187 QAI 13852 @@ -96771,6 +98467,7 @@ QCCS 3584 QCD 774700 QCU 2557 QCs 62181 +QDA 32285 QDII 1663 QDIIs 303 QDR 158591 @@ -96797,6 +98494,7 @@ QKD 17562 QLC 6832 QLD 101255 QMC 160976 +QMG 32129 QMHP 4072 QMHPs 295 QMJHL 2796 @@ -96817,6 +98515,7 @@ QR 832660 QRA 72269 QRAM 3746 QRAs 4401 +QRDR 2708 QRF 33851 QRFs 779 QRH 2447 @@ -96856,6 +98555,7 @@ QWERTZ 459 QXGA 508 Qaaf 243 Qaanaaq 6730 +Qabbala 5232 Qadaffi 14812 Qadafi 6477 Qadarite 1384 @@ -96903,6 +98603,7 @@ Qarmatian 3268 Qarmatians 7827 Qarqan 185 Qasem 24859 +Qashgai 2149 Qashqai 14536 Qasim 291412 Qataban 8682 @@ -96991,6 +98692,7 @@ Qiqihar 10559 Qira 2918 Qirghiz 1574 Qishan 12914 +Qitaihe 949 Qiu 313072 Qius 310 Qixi 1188 @@ -97010,6 +98712,7 @@ Qor'an 2697 Qoran 14636 Qoranic 1968 Qosqo 2823 +Qs 358090 Qt 552624 Qtz 11972 Qu 806545 @@ -97119,8 +98822,10 @@ Quashee 15415 Quashees 469 Quashie 15924 Quashies 299 +Quashqai 343 Quasimodo 171399 Quasimodos 1031 +Quasney 5432 Quast 97035 Quasts 105 Quatannens 1187 @@ -97149,12 +98854,14 @@ Quebecians 153 Quebecker 3241 Quebeckers 19642 Quebedeaux 22402 +Quecchi 1857 Quechan 75761 Quechans 17808 Quechua 646893 Quechuan 18443 Quechuans 1138 Quechuas 23238 +Quechumaran 1672 Queda 19276 Quedah 10540 Quedgeley 2210 @@ -97184,6 +98891,7 @@ Queequeg 169205 Queercore 1168 Queets 59190 Quek 23399 +Quekchi 1605 Quekett 32571 Quelimane 29781 Queluz 22480 @@ -97226,6 +98934,7 @@ Qufu 23896 Quhistan 2145 Quiambao 3043 Quiberon 93820 +Quichua 150454 Quichuan 3836 Quichuans 1329 Quick 9621039 @@ -97445,6 +99154,7 @@ R'n'R 830 RAA 151634 RAAF 84854 RAAN 10730 +RAAS 62810 RAC 900544 RACC 24839 RACCs 459 @@ -97480,6 +99190,7 @@ RAPCONs 1209 RAPIDS 1017846 RAPs 46103 RAR 258844 +RARP 41878 RASC 19471 RAST 139907 RASopathies 1158 @@ -97606,7 +99317,6 @@ RFJ 5105 RFK 237542 RFLP 378406 RFLPs 103165 -RFNA 10233 RFQ 288226 RFQS 369 RFQs 24419 @@ -97631,9 +99341,13 @@ RHDV 3466 RHDs 1390 RHEL 42119 RHF 54534 +RHI 85594 RHIB 7627 RHIBs 2143 RHIP 7231 +RHIs 1652 +RHQ 5822 +RHQs 2071 RHS 597181 RHU 23743 RHUs 6651 @@ -97680,6 +99394,8 @@ RJD 16177 RKA 21554 RKO 1303351 RKU 5747 +RKVA 1408 +RKVAH 142 RLD 87270 RLDRAM 497 RLDs 1775 @@ -97782,8 +99498,6 @@ ROY 1772498 RP 3723121 RPA 861593 RPAs 20252 -RPC 940603 -RPCs 100129 RPE 574757 RPG 455766 RPGer 107 @@ -97863,7 +99577,6 @@ RTCs 42926 RTD 479339 RTDs 70186 RTECS 140109 -RTF 248739 RTFA 794 RTFM 7427 RTH 137081 @@ -97881,7 +99594,6 @@ RTO 276835 RTOS 82900 RTOSes 1576 RTOs 68744 -RTP 586806 RTSP 28841 RTTI 13227 RTTY 143777 @@ -97923,6 +99635,8 @@ RVRs 2033 RVSP 9052 RVW 12123 RVed 654 +RVer 5649 +RVers 27217 RVing 15158 RVs 403228 RWA 134589 @@ -97993,6 +99707,7 @@ Rabindra 31622 Rabindranath 235968 Rabinowitz 731691 Rabins 56121 +Rabjohns 2633 Rablen 3874 Raboin 7358 Rabold 15670 @@ -98038,6 +99753,7 @@ Racines 16056 Racinian 27158 Racka 1598 Rackerby 9487 +Racket 269537 Rackham 701705 Rackhams 1720 Rackheath 1918 @@ -98067,6 +99783,7 @@ Raddall 13896 Raddatz 74376 Raddell 697 Radder 16334 +Raddock 27773 Rade 111197 Radebaugh 59062 Radebeul 14846 @@ -98099,6 +99816,8 @@ Radiches 221 Radigan 85859 Radilla 2866 Radillo 3329 +Radimichi 1265 +Radimichians 1369 Radimir 1965 Radin 567535 Radins 1540 @@ -98243,6 +99962,8 @@ Rahab 379597 Rahaim 6165 Rahal 48854 Rahaman 23192 +Rahanwein 2601 +Rahanweyn 5857 Rahanwin 832 Rahe 200409 Raheem 63792 @@ -98284,6 +100005,7 @@ Raikeses 91 Raikkonen 4691 Railey 114997 Raileys 1316 +Railroad 93318318 Railsback 256696 Railsbacks 183 Railton 128025 @@ -98317,6 +100039,7 @@ Raipur 36053 Rairigh 4047 Raisa 169287 Raisanen 20001 +Raisbeck 45885 Raisi 5302 Raisin 1049859 Raisinet 631 @@ -98358,9 +100081,11 @@ Rajkumari 7222 Rajkumars 323 Rajneeshee 11108 Rajneeshees 8477 +Rajoy 9011 Rajpoot 24292 Rajpoots 14271 Rajput 323759 +Rajputana 136138 Rajputs 158741 Rajs 4315 Rajshahi 45471 @@ -98374,6 +100099,7 @@ Rakers 27200 Rakes 221517 Rakestraw 118290 Rakestraws 694 +Rakhaing 905 Rakhine 27064 Rakhiv 827 Rakka 20233 @@ -98481,6 +100207,7 @@ Rameswaram 8740 Ramey 964895 Rameys 2460 Rami 224311 +Ramian 3419 Ramic 6574 Ramilie 1418 Ramillie 1254 @@ -98530,6 +100257,7 @@ Ramsdell 450503 Ramsden 367984 Ramsdens 2643 Ramsell 10306 +Ramsen 10661 Ramses 560450 Ramseur 168232 Ramseurs 446 @@ -98613,12 +100341,14 @@ Ranger 5637309 Rangers 2841282 Rangeworthy 734 Rangiora 4882 +Rangkhol 114 Rangoon 1432314 Rangpur 38797 Ranhofer 8002 Rani 312778 Ranieri 114018 Ranieris 246 +Ranikhet 11547 Ranjan 71356 Ranjana 16894 Rank 7153960 @@ -98708,6 +100438,7 @@ Raptis 25398 Rapture 390385 Rapunzel 182396 Rapunzelesque 48 +Rapunzels 724 Raqqa 31692 Raqqah 7957 Raquel 458550 @@ -98723,6 +100454,7 @@ Rarotongan 20228 Rarotongans 5268 Ras 1492678 Rasalas 417 +Rasalgethi 815 Rasalhague 1984 Rasberry 50179 Rasberrys 147 @@ -98737,6 +100469,7 @@ Rascians 3211 Rasco 70905 Rascoe 111865 Rascoes 371 +Rascol 10896 Rascolnik 327 p Rascolniks 991 p Rascon 38361 @@ -98862,6 +100595,7 @@ Rathwa 289 Rati 99626 Ratigan 41130 Ratisbon 308885 +Ratlam 4377 Ratledge 32696 Ratley 16549 Ratliff 665280 @@ -98967,6 +100701,7 @@ Ravenstonedale 2539 Ravenswood 768098 Ravensworth 48763 Raver 164554 +Raveret 4249 Ravers 7923 Raves 33653 Ravi 585551 @@ -99080,6 +100815,8 @@ Razos 3487 Razzano 18840 Razzie 3793 Razzies 1467 +RdAc 1688 +RdTh 4488 Re 29448017 ReMine 9676 Rea 1856609 @@ -99089,6 +100826,7 @@ Reade 1299331 Reader 17290842 Readers 8793025 Readership 235408 +Readerships 2249 Readick 3766 Reading 48512943 Readinger 33413 @@ -99205,6 +100943,8 @@ Recombination 561237 Reconquista 89900 Reconstruction 12589509 Record 48744938 +Recordite 641 +Recordites 507 Records 43652931 Recore 4724 Recores 447 @@ -99233,6 +100973,7 @@ Redcliffe 118835 Redcorn 4574 Redcrest 4852 Redd 541666 +Reddaway 90957 Reddell 42990 Redden 323057 Redder 75625 @@ -99297,6 +101038,7 @@ Redinger 37396 Redings 1718 Redington 316880 Redingtons 1049 +Redjang 5263 Redknapp 1779 Redland 105903 Redlands 1123579 @@ -99373,6 +101115,8 @@ Reform 27692399 Reformasi 13835 Reformati 2718 Reformation 9521698 +Reformationist 1698 +Reformationists 1080 Reformed 6296715 Reformer 885364 Reformers 1728231 @@ -99538,6 +101282,7 @@ Reineckes 1758 Reinecks 347 Reinert 217144 Reinerts 1576 +Reing 14329 Reinhardt 1738720 Reinhardtian 544 Reinhardts 6810 @@ -99633,7 +101378,9 @@ Rembrandt 2610196 Rembrandtesque 16729 Rembrandtian 1881 Rembrandtish 2175 +Rembrandtism 409 Rembrandts 82407 +Remchingen 2058 Remedios 183653 Remembrancer 124651 Remembrancers 3689 @@ -99675,9 +101422,12 @@ Remsen 779243 Remsens 2689 Remuera 5059 Remus 905399 +Ren 1354133 +Renaico 1152 Renaissance 18073092 Renaissant 2431 Renaldo 122439 +Renanian 948 Renard 674705 Renards 26931 Renascence 240826 @@ -99792,6 +101542,7 @@ Reo 612018 Reos 16312 Rep 8448819 RepRap 6535 +Repalle 457 Repasky 11386 Repetitor 723 Repetitorium 2677 @@ -99922,8 +101673,10 @@ Reusch 103592 Reuss 1203304 Reusser 31595 Reusses 827 +Reuteman 3103 Reutemann 10909 Reuter 1130154 +Reuterman 2482 Reuters 1347487 Reuther 1211171 Reuthers 11712 @@ -99967,6 +101720,7 @@ Revuelta 17518 Revueltas 56848 Revvy 799 Rew 189806 +Rewari 4482 Rewerts 5644 Rewinkle 115 Rewis 12888 @@ -100045,6 +101799,7 @@ Rheden 3801 Rhee 959093 Rhees 163203 Rheic 3094 +Rheidol 8173 Rheims 935634 Rheinau 17555 Rheineck 11424 @@ -100156,6 +101911,7 @@ Ribblesdale 20817 Ribbonism 5798 Ribbonman 2251 Ribbonmen 14722 +Ribbs 9239 Ribeiro 456272 Ribera 310136 Riberas 3095 @@ -100324,6 +102080,8 @@ Ridloff 627 Ridlon 83567 Ridlons 255 Ridner 11920 +Ridolfi 145033 +Ridolfis 621 Ridout 137057 Ridouts 941 Ridpath 140721 @@ -100350,6 +102108,7 @@ Riedls 217 Riedy 33082 Riefenstahlian 52 Rieff 144483 +Riefler 51066 Riegel 558549 Riegels 16158 Riegelsville 49309 @@ -100462,6 +102221,7 @@ Riggleman 31400 Riggles 13183 Riggs 3192845 Riggsbee 7423 +Right 59345640 Righter 222738 Righters 15386 Rigler 135010 @@ -100755,6 +102515,7 @@ Rivard 235180 Rivards 1073 Rivas 632026 Rive 352684 +Rivelin 3581 Rivenbark 18374 Rivenburg 13399 River 258850528 @@ -100825,6 +102586,7 @@ Roade 17251 Roadian 2777 Roadley 6084 Roadwater 256 +Roaix 1518 Roana 3375 Roane 892195 Roanes 5173 @@ -100968,6 +102730,8 @@ Rochell 34166 Rochelle 3859713 Rochells 727 Rochester 30172778 +Rochesterian 4268 +Rochesterians 9796 Rochette 89425 Rochettes 994 Rochford 279945 @@ -100978,6 +102742,7 @@ Rochons 775 Rock 50688440 Rockall 90876 Rockaway 1411485 +Rockbourne 2215 Rockbridge 474441 Rockcastle 202278 Rockcliffe 18584 @@ -101004,6 +102769,7 @@ Rockites 3280 Rockland 3334444 Rockledge 182207 Rocklein 911 +Rockley 36197 Rocklin 214900 Rockmore 57943 Rockmores 1263 @@ -101029,6 +102795,7 @@ Rodabaugh 53031 Rodak 20579 Rodaks 215 Rodarte 32889 +Rodborough 6200 Rodbourn 4249 Rodchenkov 1544 Rodd 278192 @@ -101045,6 +102812,7 @@ Roddy 765593 Roddys 911 Rode 753103 Rodea 2325 +Rodebaugh 20844 Rodeheaver 54955 Rodela 5737 Rodelas 989 @@ -101159,6 +102927,8 @@ Rogel 58536 Rogels 577 Rogen 35937 Roger 28812802 +Rogerene 3445 +Rogerenes 10734 Rogerian 113924 Rogernomics 2565 Rogers 32457476 @@ -101322,6 +103092,7 @@ Roly 87424 Rom 5088884 Roma 3314370 Romack 18800 +Romadur 1483 Romaean 67 Romagna 401415 Romagnol 5857 @@ -101485,6 +103256,7 @@ Ronaynes 179 Ronca 32897 Roncadori 2698 Roncaglian 1035 +Roncalese 277 Roncas 574 Roncesvalles 95775 Ronchetti 24670 @@ -101544,6 +103316,7 @@ Roosendaal 13864 Rooses 28679 Roosevelt 37958568 Rooseveltian 88155 +Rooseveltiana 2242 Rooseveltism 6778 Rooshian 4964 Rooshians 3066 @@ -101555,6 +103328,7 @@ Rooster 473755 Root 11499640 Rootes 94724 Rooth 106844 +Rootstown 34688 Ropar 6949 Roper 2542559 Ropley 3556 @@ -101599,6 +103373,7 @@ Rosalind 2030794 Rosaline 209322 Rosals 269 Rosalyn 335674 +Rosalynn 173482 Rosamond 1056475 Rosamund 451612 Rosander 37085 @@ -101742,6 +103517,7 @@ Rosewarnes 549 Rosewell 122731 Rosewood 781328 Rosewoods 2053 +Rosey 214053 Roshan 69558 Rosicrucian 433303 Rosicrucianism 46783 @@ -101757,6 +103533,7 @@ Rosillo 16497 Rosillos 4213 Rosin 844918 Rosina 523243 +Rosindell 565 Rosins 25523 Rosinski 57529 Rosinsky 12589 @@ -101766,6 +103543,7 @@ Roskilde 236932 Roskin 38695 Roskins 947 Roskomnadzor 958 +Roskopf 6403 Roslin 133610 Roslyn 860137 Rosman 153923 @@ -101827,6 +103605,7 @@ Rostros 2407 Roswell 2640202 Roswellian 275 Roswells 1238 +Rosy 593973 Rosyth 45227 Roszkowski 30612 Rota 633763 @@ -101933,10 +103712,12 @@ Rotzo 531 Roubaix 137889 Roubideaux 14787 Roucas 705 +Rouch 127311 Roudebush 174838 Roudham 310 Rouen 1959398 Rouens 6258 +Rouge 11231057 Rougeau 19628 Rough 4397260 Roughan 24358 @@ -101956,6 +103737,9 @@ Roumania 1495522 Roumanian 775076 Roumanians 214907 Roumeli 13051 +Roumelia 79474 +Roumelian 8349 +Roumelians 891 Roumeliot 901 Roumeliote 1073 Roumeliotes 1414 @@ -102178,6 +103962,7 @@ Ruano 37436 Ruark 185679 Ruarks 671 Ruas 18444 +Rubadub 3012 Rubalcaba 15628 Rubalcava 17818 Rubbo 22120 @@ -102246,9 +104031,11 @@ Ruddy 488723 Ruden 60729 Rudens 26894 Ruderman 163442 +Rudgard 2322 Rudge 357786 Rudges 1971 Rudheath 697 +Rudi 591906 Rudick 45039 Rudie 49301 Rudies 1763 @@ -102267,6 +104054,7 @@ Rudnicki 50143 Rudnicks 523 Rudnik 31485 Rudok 3104 +Rudolf 4135574 Rudolfine 3767 Rudolph 5515524 Rudolphine 15287 @@ -102393,6 +104181,7 @@ Rulos 5634 Rumania 3783671 Rumanian 2080602 Rumanians 404778 +Rumansch 943 Rumantsch 1977 Rumball 26922 Rumballs 163 @@ -102563,6 +104352,7 @@ Rushkoff 21539 Rushlow 15593 Rushmere 11493 Rushmoor 1690 +Rushmore 588102 Rushmores 1161 Rusholme 15469 Rushoon 398 @@ -102645,11 +104435,13 @@ Russo 3652148 Russocentric 2499 Russom 22993 Russomania 430 +Russophil 5982 Russophile 30054 Russophiles 13056 Russophilia 3045 Russophilic 897 Russophilism 5074 +Russophils 1225 Russophobe 7926 Russophobes 5496 Russophobia 22391 @@ -102776,6 +104568,7 @@ Ryckmans 23171 Rycroft 99515 Rycrofts 315 Ryczek 39822 +Rydal 177535 Rydall 7639 Rydberg 800883 Ryde 223170 @@ -102788,6 +104581,7 @@ Rydzewski 10598 Rye 3843817 Ryecroft 28334 Ryedale 5512 +Ryeford 509 Ryegate 116542 Ryeland 19674 Ryer 151109 @@ -102840,6 +104634,7 @@ Ryugu 2877 Ryukyu 516537 Ryukyuan 94081 Ryukyuans 27474 +Ryukyus 258039 Ryus 15467 Ryves 28701 Ryvita 4525 @@ -102885,12 +104680,15 @@ SAF 960779 SAFT 69351 SAG 1816747 SAGs 13515 +SAH 380912 SAHA 37220 SAHM 11188 SAHMs 1161 SAHP 9870 SAHPs 169 +SAHRA 2949 SAHRC 4504 +SAHs 3582 SAIC 267331 SAIDS 16503 SAIL 320195 @@ -102929,10 +104727,8 @@ SASE 1763452 SASER 340 SASEs 16864 SASL 23603 -SAT 5410943 SATA 239908 SATB 333754 -SATs 141984 SAU 158855 SAUs 11061 SAVAK 82160 @@ -102958,6 +104754,7 @@ SBIT 2087 SBK 30549 SBM 252649 SBMs 4728 +SBN 492141 SBNR 3616 SBO 93414 SBOs 5259 @@ -102999,6 +104796,7 @@ SCIFs 2247 SCJD 2459 SCJP 3355 SCLC 811273 +SCLCs 7626 SCN 615277 SCNR 7762 SCO 619771 @@ -103055,6 +104853,7 @@ SDO 159040 SDOs 39301 SDP 480492 SDPO 981 +SDR 1734180 SDRAM 188356 SDRs 889781 SDS 3268805 @@ -103069,7 +104868,6 @@ SDs 156768 SE 15426583 SEA 6642213 SEAD 47688 -SEADs 227 SEAL 3125890 SEALs 343318 SEAQ 21244 @@ -103113,6 +104911,7 @@ SERE 57601 SERM 35858 SERMs 40278 SERP 82269 +SERPS 17230 SERPs 14965 SERS 246574 SERT 107548 @@ -103124,7 +104923,6 @@ SET 5493958 SETI 221093 SEUs 12519 SEWS 8870 -SEZ 151338 SEs 123959 SFA 586245 SFC 716673 @@ -103136,6 +104934,7 @@ SFM 194633 SFO 242059 SFP 176537 SFPD 37236 +SFPM 21870 SFPs 18225 SFR 193539 SFRP 14898 @@ -103156,6 +104955,7 @@ SGDs 3715 SGM 106599 SGML 332476 SGMs 3516 +SGO 90018 SGR 189756 SGRAM 13544 SGRs 6646 @@ -103181,11 +104981,13 @@ SHO 186943 SHORAN 10761 SHPO 496040 SHPOs 37862 +SHQ 16198 SHRIMP 418392 SHTF 837 SHTML 917 SHU 172265 SHUs 3744 +SHV 38197 SI 12817165 SIA 656559 SIAD 15223 @@ -103203,6 +105005,7 @@ SIDs 62509 SIGINT 168363 SIGMET 36671 SIGMETs 11252 +SIH 34352 SIJORI 2102 SIL 429324 SILENT 454331 @@ -103218,7 +105021,9 @@ SIN 721486 SINCGARS 67171 SINE 182252 SINEs 16868 +SIO 340415 SIOP 133478 +SIOs 6656 SIP 2319498 SIPP 394176 SIPPs 2160 @@ -103233,6 +105038,7 @@ SISEA 747 SIT 628154 SITI 11608 SITO 12885 +SITREP 20305 SITs 12436 SIU 366573 SIUs 8174 @@ -103317,6 +105123,7 @@ SMEAC 20924 SMERSH 22182 SMEs 793996 SMF 256730 +SMFH 422 p SMG 141130 SMH 69188 SMIL 79303 @@ -103362,9 +105169,12 @@ SNARE 175678 SNAREs 43904 SNAs 14858 SNB 113144 +SNCC 830804 SNES 12705 SNF 896218 +SNI 129267 SNL 350952 +SNLR 264 SNMP 540992 SNOBOL 42991 SNP 534439 @@ -103376,6 +105186,7 @@ SNRIs 54511 SNRs 103810 SNSs 28849 SNTP 12105 +SNU 54821 SO 18681978 SOA 798163 SOAB 1762 p @@ -103483,6 +105294,8 @@ SPLEED 1558 SPLs 28845 SPM 533199 SPME 80477 +SPMT 13358 +SPMTs 766 SPMs 22161 SPN 176702 SPNs 21735 @@ -103527,6 +105340,7 @@ SRAMs 84546 SRB 420733 SRBM 13002 SRBMs 10084 +SRBP 5875 SRBs 36555 SRC 1407402 SRCs 12980 @@ -103653,6 +105467,8 @@ STID 4013 STIR 165821 STIRs 1319 STIs 234058 +STLV 23482 +STLVs 546 STM 922102 STML 2419 STMs 14724 @@ -103747,8 +105563,6 @@ SWMs 839 SWOT 218837 SWP 584497 SWPs 3083 -SWR 309389 -SWRs 2763 SWS 298610 SWT 111993 SWs 16114 @@ -103771,6 +105585,7 @@ SYs 11715 Sa 3215468 SaaS 127770 Saab 533553 +Saabs 18883 Saad 466343 Saadat 25059 Saadeh 16185 @@ -103836,6 +105651,7 @@ Sabazios 12427 Sabb 26907 Sabbaday 3512 Sabbagh 64321 +Sabbaghian 2256 Sabbat 81794 Sabbatarian 80673 Sabbatarianism 34566 @@ -103927,6 +105743,7 @@ Saccavino 522 Sacchetti 94267 Sacchettis 196 Saccone 30854 +Sacha 223461 Sachdev 66057 Sachdeva 21987 Sacher 300517 @@ -103955,9 +105772,13 @@ Sacksian 171 Sackville 683937 Sackvilles 9513 Saco 1069896 +Sacramentan 1948 +Sacramentans 7355 Sacramentarian 6662 Sacramentarians 17350 Sacramento 24772141 +Sacramentoan 91 +Sacramentoans 87 Sacs 324586 Sacto 113669 Sactown 275 @@ -104028,6 +105849,7 @@ Saed 21687 Saeed 218114 Saeger 76519 Saegers 1432 +Saei 1293 Saeima 35467 Saeko 16106 Saelee 2364 @@ -104450,11 +106272,9 @@ Salmen 50339 Salmens 383 Salmeron 66941 Salmo 1077764 -Salmon 8803793 Salmonby 337 Salmond 173422 Salmonds 1268 -Salmons 121198 Salmonson 25337 Salmore 16114 Salome 1349533 @@ -104512,7 +106332,6 @@ Saluda 526460 Saluki 32430 Salukis 18506 Salva 115314 -Salvador 11507615 Salvadoran 1415918 Salvadorans 376499 Salvadorean 145621 @@ -104583,6 +106402,7 @@ Samad 116705 Samads 621 Samael 88240 Samaha 41151 +Samakh 4628 Samangan 6854 Samanid 32490 Samaniego 81394 @@ -104598,6 +106418,7 @@ Samarcand 104481 Samaria 2020586 Samarian 24299 Samarians 6875 +Samarinda 21257 Samaritan 2729947 Samaritaness 733 Samaritanism 19869 @@ -104716,6 +106537,7 @@ Sampath 61317 Sampayo 16634 Sampedro 22375 Sampey 28830 +Sampford 18201 Sample 23055565 Samples 11857000 Sampley 28950 @@ -104885,6 +106707,7 @@ Sandvik 188088 Sandvika 7534 Sandviken 23952 Sandviks 424 +Sandway 881 Sandweiss 48990 Sandwell 56723 Sandwich 3869764 @@ -104914,6 +106737,7 @@ Sangatte 11949 Sangeeta 21141 Sanger 2071788 Sangerhausen 12296 +Sangh 153636 Sangha 301101 Sangharama 909 Sanghas 4475 @@ -104952,6 +106776,7 @@ Sanilac 270858 Sanis 3126 Sanitas 73572 Saniyah 798 +Sanjana 13192 Sanjay 278152 Sanjaya 42033 Sanjose 8296 @@ -105082,6 +106907,7 @@ Santizo 3666 Santo 5163150 Santolaria 1787 Santon 38725 +Santoni 72065 Santonian 124134 Santoprene 9510 Santora 53851 @@ -105213,6 +107039,9 @@ Saraswati 102744 Saratoga 5926362 Saratogan 4772 Saratogans 790 +Saratogas 5700 +Saratogian 20003 +Saratogians 1609 Saratov 420470 Saravanan 14861 Saravia 68344 @@ -105248,6 +107077,7 @@ Sardinians 81866 Sardis 784898 Sardist 183 Sardo 54897 +Sardoodledom 1849 Sardos 4504 Sare 67872 Sares 10197 @@ -105315,6 +107145,8 @@ Sarnowski 7704 Sarny 12249 Saroka 2837 Sarot 12277 +Sarouk 10407 +Sarouks 2671 Saroyan 382550 Saroyanesque 1967 Sarpanit 1413 @@ -105370,6 +107202,7 @@ Sarwar 48112 Sas 151945 Sasak 27287 Sasaki 767926 +Sasakis 1027 Sasanian 258755 Sasanians 38735 Sasanid 29047 @@ -105417,6 +107250,7 @@ Sassoons 10683 Sassos 1701 Sassover 2104 Sassuolo 8892 +Sassy 201866 Sastra 34900 Sastras 13952 Sastre 77887 @@ -105538,6 +107372,7 @@ Saudek 41632 Sauder 96130 Sauders 10155 Saudi 12816285 +Saudia 69594 Saudis 980240 Saudize 187 Saudized 255 @@ -105613,6 +107448,8 @@ Savanilla 17551 Savanillas 371 Savanna 624093 Savannah 14268969 +Savannahian 2702 +Savannahians 8474 Savannahs 31959 Savanne 13455 Savant 142066 @@ -105768,6 +107605,7 @@ Saxton 1278086 Saxtons 48494 Sayako 1293 Sayan 121780 +Sayans 8905 Sayantan 1297 Sayavong 967 Sayavongs 113 @@ -105808,6 +107646,7 @@ Scaff 33069 Scaffidi 12307 Scaffs 251 Scafidi 27467 +Scaggs 70146 Scaglione 48654 Scaife 303265 Scaifes 965 @@ -105837,8 +107676,10 @@ Scallys 193 Scalzi 37994 Scalzo 75354 Scamander 83620 +Scamblesby 535 Scammel 67090 Scammell 133071 +Scamozzian 126 Scandahoovian 868 Scandahoovians 363 Scandaroon 1833 @@ -105942,9 +107783,14 @@ Schab 20119 Schabel 41008 Schaber 67839 Schabs 205 +Schabzieger 1869 +Schabziger 619 Schacher 31658 Schachter 594415 Schachters 635 +Schachtian 2604 +Schachtianism 170 +Schachtism 341 Schachtman 17177 Schack 138250 Schacks 507 @@ -105956,6 +107802,7 @@ Schaefer 2990494 Schaefers 21871 Schaeffer 1637520 Schaeffers 9413 +Schaeffler 33127 Schaer 70253 Schaerbeek 9199 Schaers 903 @@ -106028,6 +107875,7 @@ Schaus 160359 Schauss 32542 Schaut 14731 Schauts 307 +Schawbel 4436 Scheat 4509 Schechner 115761 Schechnerian 124 @@ -106163,6 +108011,7 @@ Schiahs 193 Schiano 24977 Schiaparelli 191248 Schiaparellis 605 +Schiappa 28027 Schiavo 197946 Schiavone 144019 Schick 1067318 @@ -106657,6 +108506,7 @@ Schurzes 1174 Schussler 96534 Schusslers 171 Schut 94142 +Schute 19794 Schuts 2514 Schutte 314841 Schutter 56426 @@ -106717,6 +108567,7 @@ Schweiger 153391 Schweigers 1313 Schweigert 101705 Schweigerts 125 +Schweikart 29674 Schweikert 70736 Schweinfurt 126762 Schweiss 17205 @@ -106875,6 +108726,7 @@ Scotchwoman 25302 Scotchwomen 2335 Scothern 1833 Scotia 7978092 +Scotian 246520 Scotic 9565 Scoticism 521 Scoticisms 910 @@ -106929,6 +108781,7 @@ Scottsburg 140239 Scottsdale 1571870 Scottsville 297267 Scotty 1075082 +Scotus 887456 Scouse 14019 Scouser 2850 Scousers 2185 @@ -106950,12 +108803,15 @@ Scovills 3331 Scovils 1609 Scowcroft 451288 Scowcrofts 254 +Scowegian 357 Scowen 9802 Scrabble 259273 Scrabbler 675 Scrabblers 975 Scrabster 5217 Scranton 5112390 +Scrantonian 8386 +Scrantonians 1465 Scrantons 7433 Scraptoft 1616 Scratch 1019456 @@ -107148,6 +109004,7 @@ Seater 34714 Seaters 5414 Seaton 1449791 Seatons 8202 +Seatown 5354 Seats 1613056 Seatter 2718 Seatters 151 @@ -107176,6 +109033,7 @@ Sebastianist 1009 Sebastianists 1076 Sebastion 20830 Sebastopol 693328 +Sebastopols 836 Sebat 12886 Sebba 34808 Sebec 46856 @@ -107219,6 +109077,7 @@ Seclin 3888 Secombe 37777 Secombes 3325 Seconal 134867 +Seconals 6749 Secondspace 1264 Secor 391325 Secord 420601 @@ -107245,6 +109104,7 @@ Sedalia 847857 Sedam 28143 Sedams 256 Sedan 1363758 +Sedang 19703 Sedano 34936 Sedanos 377 Sedbergh 18844 @@ -107543,6 +109403,7 @@ Selkup 8489 Selkups 2689 Sell 4743241 Sella 207347 +Sellack 4185 Sellafield 78922 Sellar 107877 Sellards 181071 @@ -107702,6 +109563,7 @@ Senatobia 79067 Senator 260315629 Senatore 31034 Senatores 3241 +Senators 27569730 Senatus 107872 Sencion 1823 Send 30349078 @@ -107772,6 +109634,8 @@ Sensabaugh 39020 Sensenig 48979 Sensex 6097 Sensi 45476 +Sensing 4147532 +Sensings 1218 Sensurround 5912 Sentell 66820 Sentells 321 @@ -107859,6 +109723,7 @@ Serano 17781 Seranos 865 Seraphina 134091 Seraphine 74641 +Serapic 248 Serapis 402001 Seraydarian 9851 Serb 1620519 @@ -107968,6 +109833,9 @@ Serravallian 9323 Serres 292201 Serrs 753 Sers 30369 +Sertorian 6959 +Sertorians 2141 +Servello 9465 Server 9043590 Servers 746051 Servetian 837 @@ -108045,7 +109913,9 @@ Setzers 877 Seubert 72405 Seufert 49205 Seuferts 811 +Seumas 86985 Seuser 743 +Seuss 403225 Seussian 5182 Sevan 92389 Sevareid 149353 @@ -108065,6 +109935,9 @@ Severances 6980 Severas 2565 Severe 10152255 Severes 2039 +Severia 4262 +Severian 34713 +Severians 8402 Severin 559987 Severino 161119 Severinos 705 @@ -108078,6 +109951,8 @@ Severt 20078 Severts 2345 Severtson 13391 Severus 1009607 +Severyan 728 +Severyans 133 Sevier 1806255 Sevierville 122962 Sevigny 51373 @@ -108147,6 +110022,7 @@ Shabazz 139744 Shabazzes 67 Shabbas 14782 Shabbat 712390 +Shabbes 28403 Shabbos 282024 Shabo 11073 Shabuot 8641 @@ -108305,6 +110181,7 @@ Shakey 62068 Shakha 2042 Shakhas 537 Shakir 90101 +Shakira 58637 Shakirs 289 Shakoor 13252 Shakopee 298274 @@ -108377,6 +110254,7 @@ Shanahans 1824 Shanbeh 318 Shancheng 655 Shand 366191 +Shandaken 57727 Shandean 23063 Shandley 14284 Shandon 164863 @@ -108399,6 +110277,7 @@ Shangcheng 2180 Shangdang 1607 Shanghai 11982281 Shanghaier 280 +Shanghaiers 525 Shanghailander 1595 Shanghailanders 4671 Shanghainese 40272 @@ -108406,6 +110285,7 @@ Shanghais 15034 Shanghang 3109 Shangjao 1887 Shangjie 707 +Shangli 1376 Shangluo 1290 Shangnan 754 Shango 116040 @@ -108416,6 +110296,7 @@ Shangzhou 1444 Shanholtz 22125 Shani 112644 Shania 54341 +Shanice 26864 Shaniqua 13331 Shank 994968 Shankar 346970 @@ -108464,6 +110345,7 @@ Shaoshan 18593 Shaoxing 44188 Shaoyang 8134 Shap 43338 +Shapcott 18955 Shapero 90566 Shapin 91158 Shapingba 1215 @@ -108597,6 +110479,7 @@ Shavuos 19579 Shavuot 108557 Shavuoth 11769 Shaw 22901035 +Shawanda 7010 Shawano 502588 Shawcross 185091 Shawcrosses 429 @@ -108630,6 +110513,9 @@ Shayang 1442 Shayar 659 Shaye 80635 Shaykh 536008 +Shaykhi 5867 +Shaykhis 2379 +Shaykhism 1928 Shayla 96250 Shaylene 1822 Shayler 22533 @@ -108679,6 +110565,7 @@ Sheba 1003611 Sheban 8458 Shebans 921 Shebat 22485 +Shebekino 1703 Sheboygan 1811378 Shebrew 345 Shebrews 167 @@ -108751,6 +110638,7 @@ Shehri 8277 Shehu 108873 Shehus 1265 Sheikh 1533350 +Sheikhs 48911 Sheila 4265083 Sheilagh 17774 Sheils 52958 @@ -109002,6 +110890,7 @@ Shevel 8161 Shevelov 12829 Shevlin 165867 Shevlins 633 +Shevuoth 5390 Shew 295343 Shewa 24189 Shewchuk 16467 @@ -109075,10 +110964,13 @@ Shifts 1212310 Shiga 467834 Shigatse 33057 Shigeko 28886 +Shigemitsu 77494 Shigeo 149973 Shigeru 299646 +Shigu 4854 Shih 2155476 Shihadeh 9515 +Shihchiachuang 12463 Shihchih 207 Shihe 2357 Shihezi 5252 @@ -109252,6 +111144,7 @@ Shirin 156644 Shirk 394021 Shirkey 40942 Shirks 15308 +Shirky 36224 Shirl 90210 Shirland 28060 Shirley 9914029 @@ -109306,6 +111199,7 @@ Shizuishan 1452 Shizuka 40469 Shizuko 39432 Shizuoka 295492 +Shkadov 3062 Shkodran 319 Shkypetar 507 Shkypetars 863 @@ -109426,6 +111320,7 @@ Shorters 5947 Shortess 24606 Shorthouse 54498 Shorthouses 201 +Shortland 95139 Shortlands 20791 Shortridge 429095 Shortridges 520 @@ -109489,6 +111384,8 @@ Shrader 294253 Shraders 2179 Shraft 1376 Shragge 8405 +Shrake 44877 +Shrakes 240 Shreeve 79776 Shreeves 20572 Shreffler 48023 @@ -109500,6 +111397,8 @@ Shrestha 78458 Shresthas 449 Shreve 843695 Shreveport 4493043 +Shreveporter 1106 +Shreveporters 742 Shreves 24567 Shrewsbury 1880883 Shri 275839 @@ -109542,6 +111441,7 @@ Shu 1431657 Shua 29243 Shuadit 535 Shuaib 13545 +Shuangchengzi 344 Shuangqiao 886 Shuangta 424 Shuangyashan 2041 @@ -109680,6 +111580,7 @@ Shys 1802 Si 19188577 SiAl 2798 Sia 291453 +Sialkot 54236 Siam 2912471 Siamak 11840 Siamen 644 @@ -109802,6 +111703,7 @@ Siderio 833 Sideris 44503 Sidetan 287 Sidey 81880 +Sidford 8280 Sidgwickian 1449 Sidhe 89652 Sidhu 84597 @@ -109811,6 +111713,8 @@ Sidles 35044 Sidlesham 1310 Sidley 164452 Sidlow 11156 +Sidman 190394 +Sidmans 357 Sidmouth 151270 Sidnee 3135 Sidney 15811345 @@ -109861,6 +111765,7 @@ Siehs 335 Sielaff 27467 Sieler 14065 Siemak 2059 +Siemens 2689933 Siemer 55372 Siemers 48306 Sieminski 32388 @@ -109928,6 +111833,7 @@ Siguencia 129 Siguenza 42738 Sigurd 797659 Sigurdson 48286 +Sih 114266 Siha 9250 Sihanoukism 303 Sihanoukist 4571 @@ -110018,6 +111924,7 @@ Sillars 49542 Siller 88961 Sillers 71651 Sillery 121223 +Sillicus 351 Silliman 1110156 Sillimans 4632 Sillitoe 99399 @@ -110266,6 +112173,7 @@ Singapuras 496 Singara 13738 Singaraja 7698 Singareni 3581 +Singen 21348 Singer 8398468 Singerian 4397 Singers 1335304 @@ -110299,6 +112207,7 @@ Sinicism 1494 Sinicize 1440 Sinicized 16564 Sinicizing 1439 +Sinify 691 Sinim 19350 Sining 33443 Sinism 4213 @@ -110481,12 +112390,14 @@ Sisyphism 517 Sisyphus 394258 Sisyphusean 140 Sit 4921449 +SitRep 2140 Sita 460229 Sitar 51751 Sitars 1030 Sitchin 21927 Sitges 42533 Sithney 1746 +Sithole 84918 Sitka 2088300 Sitko 23118 Sitler 39478 @@ -110525,6 +112436,8 @@ Sivakumar 40428 Sivan 148465 Sivas 160616 Siver 35534 +Siveria 1310 +Siverian 2161 Sivers 38132 Siversk 1141 Sivertsen 37268 @@ -110584,6 +112497,7 @@ Skapin 663 Skarda 36687 Skares 499 Skarlatos 3845 +Skarzinski 635 Skarzynski 13240 Skat 39213 Skate 319929 @@ -110591,6 +112505,7 @@ Skategate 253 Skater 54853 Skates 232466 Skathi 1273 +Skaw 22997 Skeat 365108 Skeats 25524 Skeavington 1525 @@ -110790,6 +112705,7 @@ Slagters 299 Slaidburn 2178 Slaithwaite 4728 Slama 67725 +Slamannan 1988 Slamas 247 Slami 208 Slane 124870 @@ -110841,6 +112757,7 @@ Slavicists 6549 Slavicize 461 Slavicized 5226 Slavicizing 337 +Slavick 17615 Slavicness 255 Slavik 62687 Slavin 573917 @@ -110948,6 +112865,7 @@ Slight 4089241 Slights 20731 Sligo 496723 Sligoman 149 +Sligoville 1361 Sliker 17509 Slim 1848800 Slimane 36237 @@ -110999,6 +112917,7 @@ Slocum 2382896 Slocumb 87396 Slocumbs 1728 Slocums 15276 +Sloley 6453 Sloman 229788 Slomans 1450 Slominski 18251 @@ -111049,6 +112968,7 @@ Slovyansk 767 Slowey 36890 Slowik 31891 Slowinski 40075 +Slowley 871 Sloyan 31382 Sluder 93855 Sluders 674 @@ -111107,6 +113027,7 @@ Smartism 406 Smartsville 34586 Smartt 89211 Smartts 390 +Smath 6063 Smay 17820 Smays 387 Smead 239199 @@ -111391,6 +113312,7 @@ Snuggies 981 Snyder 12006130 Snyders 119665 So 361619284 +SoA 10933 SoC 151024 SoCal 177395 SoCo 4060 @@ -111427,6 +113349,7 @@ Sober 541638 Soberano 12230 Soberanos 859 Sobers 23445 +Soberton 3470 Sobey 49331 Sobeys 4999 Sobhita 1015 @@ -111470,11 +113393,13 @@ Socorro 1130219 Socotra 89536 Socotran 2148 Socotrans 852 +Socotri 1326 Socotrine 21382 Socrates 9391830 Socratic 1315379 Socratical 1211 Socratically 7754 +Socraticism 1801 Socratics 94030 Socratism 13946 Socratist 582 @@ -111543,6 +113468,7 @@ Sogdiana 65742 Sogdians 25224 Soggies 582 Soh 100527 +Sohag 14040 Sohail 34439 Sohal 29602 Soham 20501 @@ -111581,6 +113507,7 @@ Sokols 21446 Sokolsky 117400 Sokolskys 643 Sokoto 234943 +Sokotri 1575 Sokrates 144434 Sokratis 2577 Soks 1627 @@ -111678,6 +113605,7 @@ Soltani 23763 Soltero 31798 Solteros 618 Soltesz 17211 +Soltman 5603 Soltys 35347 Solukhumbu 1007 Solum 126835 @@ -111717,6 +113645,7 @@ Somercotes 2766 Somerdale 21117 Somerford 24503 Somerhalder 4425 +Somerley 3115 Somerleyton 4992 Somers 2486336 Somerset 7005432 @@ -111783,6 +113712,7 @@ Soninke 67647 Sonis 36709 Sonja 636618 Sonjo 15537 +Sonn 131678 Sonne 466908 Sonnenberg 188027 Sonnenbergs 747 @@ -111797,6 +113727,7 @@ Sonniers 671 Sonning 18304 Sonnite 1181 Sonnites 5628 +Sonns 4500 Sonny 2726879 Sonoda 84155 Sonoma 3332195 @@ -111806,6 +113737,7 @@ Sonorans 32790 Sonoras 2476 Sonrai 3043 Sons 32294627 +Sonsorolese 1275 Sontag 788860 Sontagian 325 Sontags 2924 @@ -111839,6 +113771,7 @@ Sooters 139 Soots 26688 Sooy 106546 Sooys 477 +Sopara 2109 Soper 846142 Sopers 6185 Soperton 34941 @@ -111979,6 +113912,7 @@ Sothis 36677 Sotho 182400 Soths 374 Sotiris 20638 +Sotk 779 Sotkamo 2014 Soto 3079627 Sotolongo 12385 @@ -112014,6 +113948,7 @@ Souliers 2589 Soulliere 10227 Soulsby 73005 Soulsbyville 14773 +Soum 15476 Soumya 5012 Soun 34419 Sound 30030510 @@ -112080,6 +114015,7 @@ Southport 816035 Southrey 1223 Southron 75230 Southrons 38269 +Southrop 2717 Souths 103733 Southsea 59415 Southsider 1393 @@ -112104,12 +114040,14 @@ Southworth 967480 Southworths 4224 Souto 48590 Soutos 374 +Souwegians 210 Souza 1031878 Souzas 5027 Sova 43181 Sovas 2467 Sovereign 4302304 Sovereigns 431943 +Sovetsk 8880 Soviet 147693808 Sovietdom 800 Sovietesque 74 @@ -112207,6 +114145,7 @@ Spafford 276760 Spaffords 2469 Spagnola 29368 Spagnolas 147 +Spagnoletti 17862 Spagnoli 41104 Spagnolis 474 Spagnolo 34759 @@ -112303,6 +114242,8 @@ Spartanburg 2107376 Spartanlike 2809 Spartanness 89 Spartans 1451474 +Spartiate 21925 +Spartiates 25765 Sparty 3481 Spartz 11467 Spataro 30094 @@ -112312,6 +114253,7 @@ Spatialism 1743 Spatola 18557 Spaugh 32210 Spaulding 2612497 +Spauldings 11455 Spaur 15870 Spaven 4561 Spavor 207 @@ -112599,6 +114541,7 @@ Split 3838981 Splitberger 137 Splott 819 Spock 1074663 +Spocked 218 Spockian 1895 Spocking 146 Spockish 93 @@ -112722,6 +114665,7 @@ Springsteen 554794 Springsteenian 253 Springsteens 1460 Springston 29855 +Springthorpe 7213 Springton 11741 Springview 28900 Springville 490324 @@ -112751,10 +114695,12 @@ Sprouses 1385 Sprouston 2057 Sprout 460944 Sprouts 341354 +Sproveri 219 Sprow 21746 Sprowl 54618 Sprowls 76231 Sprows 15958 +Spruce 3644716 Spruell 22041 Spruiell 15120 Spruill 207195 @@ -112988,6 +114934,7 @@ Staley 1197324 Staleys 11730 Stalham 7664 Stalin 13298041 +Stalinesque 6895 Stalingrad 883145 Stalinian 1976 Stalinism 746074 @@ -113023,6 +114970,7 @@ Stalter 59746 Stalters 965 Stalvey 18173 Stalwart 127045 +Stalworth 6739 Stalybridge 17704 Stalzer 13333 Stam 335334 @@ -113079,6 +115027,7 @@ Stancos 163 Stanczak 20148 Stanczyk 35221 Stanczyks 479 +Standard 84065850 Standedge 897 Standefer 46938 Standen 114849 @@ -113164,6 +115113,7 @@ Stanningley 5914 Stannington 2884 Stano 48551 Stanos 5101 +Stanovoy 11362 Stanphill 4380 Stans 430025 Stansberry 78129 @@ -113296,6 +115246,7 @@ Stateside 140667 Statesider 395 Statesiders 1703 Statesville 434288 +Statfold 407 Statham 478071 Stathams 459 Stathern 2103 @@ -113589,6 +115540,7 @@ Stemens 771 Stemm 21649 Stemmler 61837 Stemms 1095 +Stemp 14288 Stempel 194032 Stempels 999 Stemper 25277 @@ -113751,6 +115703,7 @@ Steveson 7569 Stevie 1379098 Stevinson 39777 Stevo 24959 +Stevulak 149 Stew 959725 Steward 3509800 Stewardson 91725 @@ -113981,6 +115934,7 @@ Stogdill 99387 Stogdills 331 Stogner 26682 Stogsdill 16485 +Stogumber 8733 Stohl 77520 Stohls 99 Stohr 109437 @@ -114012,6 +115966,7 @@ Stokley 99445 Stokleys 231 Stoklosa 10289 Stolarski 25801 +Stolarz 11012 Stolberg 220046 Stolbergs 4508 Stoli 26304 @@ -114177,6 +116132,7 @@ Strabo 1319772 Stracener 10356 Strachan 706785 Strachans 1833 +Strachwitz 26793 Strack 269506 Stracks 1053 Strad 76823 @@ -114225,6 +116181,7 @@ Strange 7096709 Strangelovean 383 Strangelovian 3377 Strangeways 68728 +Strangford 89029 Strangio 5672 Strangite 7304 Strangs 3522 @@ -114532,6 +116489,7 @@ Stuards 1119 Stuart 22862986 Stubbe 110640 Stubbes 60383 +Stubbings 42295 Stubbington 5465 Stubbins 89965 Stubblefield 398030 @@ -114601,6 +116559,7 @@ Stundism 3337 Stundist 6018 Stundists 21139 Stunkard 164900 +Stupak 238658 Stupnik 653 Stuppler 2464 Sturdevant 225356 @@ -114737,6 +116696,7 @@ Suceava 23612 Sucellus 2038 Such 234683968 Suchan 26207 +Sucheng 30373 Sucher 68280 Suchers 885 Suchet 145896 @@ -114751,6 +116711,7 @@ Suckov 257 Suckow 88523 Suckows 141 Sucre 482786 +Sud 827328 Suda 227222 Sudak 22917 Sudan 9100954 @@ -114770,7 +116731,10 @@ Sudanizing 144 Sudano 47338 Sudans 8900 Sudbeck 3471 +Sudborough 16912 +Sudbourne 4665 Sudbrook 11366 +Sudbrooke 1052 Sudbury 1778414 Sudd 48660 Suddaby 16849 @@ -114816,6 +116780,7 @@ Suens 213 Suero 19658 Sueros 450 Sues 231537 +Suess 330365 Suetonian 5487 Suever 1076 Suevi 105563 @@ -114875,6 +116840,7 @@ Sui 726703 Suichow 479 Suide 8974 Suifenhe 5189 +Suihua 3858 Suijin 2223 Suining 7714 Suiping 1909 @@ -114947,6 +116913,8 @@ Sulkowski 30181 Sullenger 27356 Sullinger 13049 Sullington 950 +Sullivanian 14797 +Sullivanians 2414 Sullivant 167922 Sullivants 1591 Sullo 15650 @@ -114967,6 +116935,7 @@ Sulus 12922 Sum 7263232 Suma 170189 Sumadija 9077 +Sumain 288 Suman 101088 Sumana 16004 Sumans 528 @@ -115002,6 +116971,7 @@ Sumitra 27134 Sumler 12484 Sumlin 28460 Summa 1409209 +Summary 53887710 Summas 5244 Summer 34641548 Summerall 118457 @@ -115014,6 +116984,7 @@ Summerhays 39302 Summerhill 161290 Summerhills 1136 Summerland 179137 +Summerlee 34951 Summerlin 163379 Summerlins 677 Summerour 17737 @@ -115142,6 +117113,7 @@ Suomussalmi 8171 Suon 6363 Suons 310 Supan 44374 +Supara 5007 Super 15030887 SuperBASIC 353 SuperDisk 12247 @@ -115179,6 +117151,7 @@ Supriya 20887 Supyire 1204 Suqian 2150 Suquamish 86805 +Suqutri 493 Sura 384984 Surabaya 231919 Surace 20779 @@ -115280,6 +117253,7 @@ Susmita 6534 Susquehanna 5056651 Susquehannock 77321 Susquehannocks 82610 +Suss 120185 Sussberg 2126 Sussex 4924134 Sussexes 449 @@ -115340,6 +117314,7 @@ Suzane 7735 Suzanna 204686 Suzannah 70057 Suzanne 4863984 +Suzdal 88165 Suze 176175 Suzhou 258567 Suzi 178000 @@ -115464,6 +117439,7 @@ Swanigan 6880 Swank 609237 Swanks 7306 Swanley 18803 +Swanmore 2073 Swann 1860273 Swanner 35368 Swannington 4458 @@ -115480,6 +117456,7 @@ Swantons 774 Swanville 31106 Swanwick 134982 Swarbrick 35565 +Swarby 270 Sward 98521 Swards 4801 Swarey 4866 @@ -115493,6 +117470,7 @@ Swarthmore 1416035 Swarthout 174130 Swarthouts 447 Swartley 47593 +Swartney 415 Swartout 95105 Swartouts 529 Swartruggens 1372 @@ -115624,6 +117602,7 @@ Swilley 24731 Swilleys 345 Swim 946641 Swims 44011 +Swinbrook 6994 Swinburne 1800540 Swinburnean 1672 Swinburnesque 120 @@ -115726,6 +117705,7 @@ Syberts 303 Sybian 1461 Sybians 125 Sybil 1564888 +Sybill 20188 Sybilla 117384 Sybils 17840 Sycamore 1610843 @@ -115733,6 +117713,7 @@ Sycorax 62821 Syd 583563 Sydenham 777720 Sydenhams 2331 +Syder 16095 Sydneian 1182 Sydney 12669062 Sydneyan 135 @@ -115811,6 +117792,7 @@ Syracusans 281510 Syracuse 18558527 Syracuses 1416 Syrah 171514 +Syrahs 4953 Syrette 4165 Syria 14715349 Syriac 1543254 @@ -115891,6 +117873,7 @@ Szilard 341778 Szilards 727 Szkotak 427 Szlachta 6942 +Szlamowicz 327 Szollosi 15351 Szolnok 28301 Szombathely 23190 @@ -115947,6 +117930,7 @@ TAPVC 16543 TAPs 22692 TARDIS 26396 TARDISes 318 +TARP 336529 TARU 3654 TAS 470088 TASS 1745729 @@ -115965,7 +117949,6 @@ TBA 724495 TBAs 31656 TBBT 808 TBD 394281 -TBDs 10276 TBF 86750 TBG 226862 TBHQ 19252 @@ -116007,6 +117990,7 @@ TCO 311305 TCON 4434 TCOs 15185 TCP 4262952 +TCPO 7684 TCR 920161 TCRs 71459 TCS 372555 @@ -116020,9 +118004,9 @@ TD 4528616 TDA 426757 TDDRA 8891 TDDs 32461 +TDE 167130 TDI 391906 TDIC 14247 -TDM 573651 TDMA 539871 TDMAs 95 TDP 292042 @@ -116169,6 +118153,7 @@ TINs 52339 TIP 2679197 TIPS 1220371 TIPs 61618 p +TIRF 30931 TIS 394031 TIs 55429 TJ 4454516 @@ -116179,7 +118164,7 @@ TKA 90402 TKD 10063 TKI 46983 TKIP 31354 -TKO 59810 +TKR 77057 TL 2727728 TLA 216692 TLAs 15127 @@ -116192,6 +118177,7 @@ TLDL 1391 TLDR 281 TLDs 87048 TLEs 5307 +TLH 18552 TLL 47942 TLM 132693 TLMs 4297 @@ -116211,6 +118197,7 @@ TME 465533 TMH 43624 TMI 1030297 TMIs 1725 +TMJs 19242 TMNT 3238 TMOs 9899 TMP 716710 @@ -116284,6 +118271,7 @@ TPLF 90957 TPM 366626 TPMS 17245 TPMs 19920 +TPNG 1620 TPO 219714 TPOs 14350 TPP 378437 @@ -116348,6 +118336,7 @@ TSGs 12014 TSIA 6479 TSL 136232 TSLP 14082 +TSMC 54206 TSMV 401 TSN 86635 TSO 446338 @@ -116444,8 +118433,10 @@ TWBs 1647 TWCC 11519 TWENEX 202 TWOC 14945 +TWOT 5187 TWTs 37628 TWU 211218 +TWX 1159899 TWs 12100 TX 27183029 TXes 171 @@ -116537,6 +118528,8 @@ Taddei 52218 Tadesse 28810 Tadevosyan 1661 Tadjik 23699 +Tadjikistan 32955 +Tadjiks 12452 Tadjoura 11295 Tadjourah 3419 Tadley 3296 @@ -116572,6 +118565,7 @@ Tafts 38639 Tagal 32228 Tagala 7904 Tagalas 1479 +Tagalic 864 Tagalized 74 Tagalog 497183 Tagalogs 43783 @@ -116588,6 +118582,7 @@ Tagg 139563 Taggart 1383686 Taggarts 13109 Taggs 3107 +Tagil 47475 Tagish 34567 Tagle 73996 Tagles 621 @@ -116637,6 +118632,7 @@ Taichung 182525 Taidong 4118 Taierhchwang 2260 Taierzhuang 1962 +Taig 17776 Taiga 113580 Taigu 5329 Taihape 2275 @@ -116668,6 +118664,7 @@ Taipeh 34790 Taipei 2905131 Taiping 434588 Taipings 107643 +Taipingshan 1222 Taiqian 131 Taira 282203 Tairona 22874 @@ -116780,6 +118777,7 @@ Talbott 1119895 Talbotton 51222 Talbotts 5507 Talca 62675 +Talcahuano 93085 Talcott 1589948 Talcotts 5207 Talcville 8847 @@ -116916,6 +118914,7 @@ Tambuki 1139 Tamburello 14234 Tamburi 4575 Tamburini 61009 +Tamburrino 5823 Tamburro 14058 Tame 330061 Tameka 47988 @@ -116991,6 +118990,7 @@ Tanana 715191 Tanapox 3590 Tanat 3546 Tanay 26853 +Tancharoen 3120 Tancheng 3354 Tancred 402005 Tandil 21431 @@ -117049,11 +119049,13 @@ Taniguchi 238414 Taniguchis 177 Taniko 2502 Tanimbars 397 +Taniqua 2175 Tanis 260626 Tanisha 55896 Tanit 45146 Tanith 58635 Tanitic 6723 +Taniya 1896 Tanjore 144109 Tanka 111506 Tankas 5017 @@ -117116,6 +119118,8 @@ Tanzis 332 Tao 2448930 Taocheng 265 Taoiseach 59152 +Taoiseachs 129 +Taoisigh 370 Taoism 826587 Taoisms 328 Taoist 1040997 @@ -117143,6 +119147,7 @@ Taphians 8760 Taphthartharath 703 Tapia 361304 Tapias 11930 +Tapiwa 2903 Tapley 335957 Tapleyism 431 Tapleys 2028 @@ -117178,6 +119183,7 @@ Tapuria 787 Tar 3520430 Tara 2451113 Taraba 17353 +Tarache 2880 Tarah 35956 Tarahumara 194581 Tarahumaran 1561 @@ -117258,6 +119264,7 @@ Tarkington 514559 Tarkingtonian 699 Tarkingtons 2267 Tarkovskian 404 +Tarkwa 19594 Tarlac 122985 Tarleton 857990 Tarletons 4023 @@ -117274,6 +119281,7 @@ Tarnowski 63182 Taro 452907 Taroko 6333 Taron 29072 +Tarons 199 Taroudant 8329 Tarpeian 80341 Tarpey 66034 @@ -117282,6 +119290,8 @@ Tarpleys 557 Tarporley 5273 Tarqeq 175 Tarquin 410577 +Tarquinian 10168 +Tarquinians 3239 Tarquinio 19092 Tarquinios 1405 Tarr 889987 @@ -117358,8 +119368,13 @@ Tashjians 703 Tashkand 1620 Tashkandi 709 Tashkent 917628 +Tashkenters 821 Tashkurgan 4445 Tashlhiyt 1177 +Tashnag 3039 +Tashnags 1586 +Tashnak 2362 +Tashnaks 1485 Tasikmalaya 4106 Tasker 552200 Taskers 4447 @@ -117536,8 +119551,10 @@ Taye 43381 Tayeh 21190 Tayes 1724 Taygeta 5659 +Taygetan 237 Taygete 6218 Taygetos 11304 +Taygetus 43434 Tayk 2475 Tayla 14793 Tayler 355474 @@ -117597,6 +119614,7 @@ Tchou 26710 Tcl 162356 Tcler 217 TdT 83131 +TeCA 3129 TeV 368090 TeX 104429 Tea 7585756 @@ -117726,6 +119744,7 @@ Tegelers 221 Teges 3973 Tegetmeier 24068 Tegfan 195 +Tegh 11122 Tegtmeier 16302 Tegucigalpa 599104 Teh 441727 @@ -117810,6 +119829,7 @@ Telfeyan 6417 Telford 783267 Telfords 1508 Telfort 1674 +Telkes 25449 Tell 28386858 Tella 106005 Tellado 9129 @@ -117828,6 +119848,7 @@ Tells 1639009 Tellurian 16172 Tellurians 2789 Telluride 517058 +Tellus 340589 Tellytubbies 165 Telmun 1155 Teloogoo 13123 @@ -117878,6 +119899,8 @@ Templeton 2050090 Templets 19885 Templin 253981 Templins 853 +Tempo 947026 +Tempos 37058 Tempsford 5844 Temuco 60913 Temujin 111919 @@ -117915,6 +119938,7 @@ Tengrism 491 Tengs 9889 Tengwar 3275 Tengzhou 975 +Tenharim 927 Tenhoff 1952 Teniente 109724 Tenientes 1554 @@ -117965,6 +119989,7 @@ Tenzin 82227 Tenzing 80727 Teo 340170 Teochew 10450 +Teochews 1435 Teoh 41383 Teos 65248 Teotihuacan 643874 @@ -118064,6 +120089,7 @@ Terramycin 215455 Terran 216527 Terrana 9619 Terrance 465650 +Terranian 470 Terrans 66420 Terrassa 12315 Terrebonne 430911 @@ -118230,6 +120256,8 @@ Teutonize 891 Teutonized 6922 Teutonizing 1595 Teutonomania 455 +Teutonophobia 365 +Teutonophone 193 Teutons 351922 Teutophobia 447 Teutsch 70970 @@ -118260,6 +120288,8 @@ Texanized 361 Texanness 459 Texans 1737916 Texarkana 1522173 +Texarkanan 273 +Texarkanans 117 Texas 189198180 Texass 1307 p Texeira 34579 @@ -118561,6 +120591,7 @@ Theseum 27723 Theseus 1612899 Thesiger 108995 Thesing 21395 +Thesiphone 1142 Thesmophoria 48259 Thesmophorian 1404 Thesmophoric 278 @@ -118590,6 +120621,7 @@ Thew 173539 Thews 28140 Thi 1178117 Thiam 43448 +Thibault 339474 Thibeau 18544 Thibeault 44120 Thibeaux 7352 @@ -118677,6 +120709,7 @@ Thole 56043 Tholen 48465 Tholens 2983 Tholes 4661 +Tholm 263 Thom 1831804 Thomaism 119 Thomann 96210 @@ -118734,6 +120767,7 @@ Thoothukudi 289 Thor 2255874 Thora 216892 Thorah 22330 +Thorazine 263496 Thorburn 289909 Thorburns 1450 Thoreau 4378455 @@ -118803,6 +120837,7 @@ Thoroughbred 677546 Thoroughbreds 144699 Thorp 1482228 Thorpe 2949469 +Thorpeness 1495 Thorpes 15232 Thorpey 315 Thorri 1358 @@ -118925,6 +120960,7 @@ Thunderbirds 115332 Thunderbolt 364300 Thunderdome 12877 Thunderer 163246 +Thundersley 2937 Thundridge 897 Thune 150388 Thunes 5652 @@ -119113,6 +121149,7 @@ Tiemans 673 Tiemeyer 15479 Tiempo 233575 Tien 1157606 +Tienanmen 30865 Tienchin 393 Tienda 111331 Tiendas 5863 @@ -119476,12 +121513,14 @@ Tirpak 23934 Tirpitz 322401 Tirrell 176336 Tirrells 641 +Tirschenreuth 3818 Tirthankara 11041 Tirthankaras 10769 Tiruchchirappalli 3418 Tiruchirappalli 7344 Tirumala 9504 Tirunelveli 14831 +Tiruvallur 1041 Tirzah 174289 Tisa 59790 Tisbury 207635 @@ -119573,12 +121612,15 @@ Tiwi 71599 Tixall 7986 Tizard 147347 Tizards 253 +Tiziana 29641 +Tiziano 66988 Tiznado 1253 Tiznados 699 Tizona 4931 Tizzard 11549 Tjaden 76998 Tjadens 612 +Tjapaltjarri 2131 Tjernobyl 559 Tkac 7417 Tkachenko 58819 @@ -119612,6 +121654,7 @@ To'a 1886 ToC 11046 ToD 10227 ToDs 967 +ToR 15803 Toal 73750 Toals 982 Toarcian 38515 @@ -119645,7 +121688,9 @@ Tobruk 229995 Tobson 775 Toby 3757299 Tobys 6126 +Toca 47025 Tocantins 117445 +Tocas 1287 Tocci 68098 Toccis 321 Tocco 115461 @@ -119715,6 +121760,7 @@ Toisanese 2092 Toishan 8008 Toishanese 1324 Tojo 328552 p +Tojolabal 22566 Tojos 3596 p Tok 248901 Tokaj 19934 @@ -120205,6 +122251,7 @@ Torricellian 36219 Torrico 45890 Torricos 402 Torridge 15880 +Torridonian 14399 Torrijos 405802 Torrington 1195086 Torringtons 1101 @@ -120238,6 +122285,7 @@ Toryish 1897 Toryism 221233 Toryisms 537 Torzhok 12302 +Tosado 3175 Tosafist 7868 Tosafists 18099 Tosafos 79937 @@ -120289,6 +122337,7 @@ Tothills 669 Toths 1513 Totilo 1328 Totino 14221 +Totland 7789 Totley 3134 Totman 84990 Totmans 299 @@ -120367,6 +122416,7 @@ Tournai 256561 Tournaisian 57015 Tournapull 34425 Tournapulls 20901 +Tournay 174489 Tournefortian 1158 Tourret 5852 Tours 4440654 @@ -120459,6 +122509,7 @@ Toyokawa 29273 Toyoko 13628 Toyosaburo 3506 Toyota 3148315 +Toyotaism 1160 Toyotas 66276 Toyotism 3625 Toytown 5496 @@ -120482,6 +122533,7 @@ Trachsel 32424 Trachtenberg 269814 Traci 262708 Tracie 142260 +Tracies 793 Tracinski 2209 TrackBack 1674 Tractarian 135231 @@ -120502,6 +122554,7 @@ Traficante 11755 Traficantes 955 Trafton 204071 Traftons 497 +Tragard 741 Trager 386634 Tragers 961 Trageser 24644 @@ -120705,6 +122758,7 @@ Trebach 18264 Trebay 6285 Trebbi 11562 Trebbiano 23481 +Trebbianos 201 Trebeck 7141 Trebek 18054 Trebellian 1904 @@ -120731,6 +122785,7 @@ Trefeglwys 633 Trefethen 109295 Trefethens 783 Treffgarne 576 +Treffry 22873 Trefil 29985 Treforest 8602 Trefz 23503 @@ -120747,6 +122802,7 @@ Tregos 1933 Tregs 67534 Treharris 957 Treherbert 1717 +Treibick 1979 Treichel 37706 Treille 11539 Treinen 10800 @@ -120836,6 +122892,8 @@ Tresslers 373 Trester 32989 Tresters 151 Tretheway 39069 +Trethewy 5053 +Tretire 734 Treto 8821 Tretos 962 Tretter 29974 @@ -120926,9 +122984,11 @@ Tridentines 997 Trier 811540 Trieste 2332556 Triestine 15932 +Triestini 2893 Triestino 24227 Triestinos 435 Trieu 36281 +Trieux 9283 Trifluvien 284 Trifluvienne 177 Trigarta 903 @@ -121003,6 +123063,10 @@ Tripi 12064 Tripis 1322 Tripitaka 123404 Tripitakas 1526 +Triplet 272735 +Triplets 109790 +Triplett 590773 +Tripletts 3774 Triplex 216972 Tripodi 47657 Tripodis 817 @@ -121128,6 +123192,7 @@ Tromblys 225 Trompetter 3156 Tron 240774 Trona 197481 +Tronador 7577 Troncoso 97642 Troncosos 155 Trondheim 556026 @@ -121271,6 +123336,7 @@ Truesdells 607 Truett 216964 Truetts 625 Truex 111624 +Truganini 4824 Truitt 446037 Trujillo 1717688 Truk 493437 @@ -121354,6 +123420,7 @@ Trypillians 223 Trysta 206 Trzcinski 13891 Trzeciak 12342 +Ts'ai 144615 Tsaconian 806 Tsai 1070737 Tsaidam 22531 @@ -121371,6 +123438,7 @@ Tsans 576 Tsao 329409 Tsaochuang 1633 Tsaos 407 +Tsaoyang 1833 Tsarist 525273 Tsaritsyn 46358 Tsarnaev 17650 @@ -121390,10 +123458,12 @@ Tschetters 777 Tschida 21782 Tschirhart 21885 Tse 1959009 +Tsenacommacah 3155 Tseng 633328 Tsengs 1538 Tsering 74337 Tses 4953 +Tsetsaut 4747 Tsez 5386 Tshangla 937 Tshiluba 11336 @@ -121444,6 +123514,7 @@ Tsukuyomi 1090 Tsuneko 8956 Tsunemi 4799 Tsungming 4053 +Tsunyi 10084 Tsuruga 39246 Tsushima 226134 Tsutsuji 819 @@ -121497,6 +123568,7 @@ Tuchman 332649 Tuchmans 389 Tucholski 3234 Tuck 1917848 +Tuckenhay 250 Tucker 12731350 Tuckernuck 19778 Tuckers 68031 @@ -121545,6 +123617,7 @@ Tuftes 526 Tufts 2943715 Tuftses 235 Tugela 73950 +Tuggeranong 2028 Tuggle 228946 Tuggles 4980 Tuguegarao 21921 @@ -121562,6 +123635,7 @@ Tuke 242699 Tukes 8198 Tukey 733848 Tukh 4486 +Tukudeka 1287 Tukwila 62264 Tula 671786 Tulare 2223283 @@ -121662,6 +123736,7 @@ Tunguses 21913 Tungusian 10148 Tungusic 35851 Tungyin 815 +Tungyung 443 Tunhuang 18174 Tunhwang 2802 Tunica 376301 @@ -122099,6 +124174,7 @@ Twyla 136418 Twyman 185369 Twymans 1127 Tx 7764138 +Txs 2866 Ty 2232340 Tyack 152306 Tyacke 31610 @@ -122140,6 +124216,8 @@ Tylerized 836 Tylers 87075 Tylertown 47253 Tylka 12054 +Tylorian 3870 +Tylorians 151 Tyman 20129 Tymans 583 Tyme 83407 @@ -122219,6 +124297,7 @@ Tyrus 146036 Tyrwhitt 161755 Tyseley 3138 Tysinger 14367 +Tysoe 15067 Tyson 3016938 Tytherington 1260 Tyumen 153726 @@ -122232,14 +124311,19 @@ Tzeltal 102905 Tzeltalan 4300 Tzepo 391 Tzetzes 49116 +Tzeyang 1098 +Tzfat 4315 Tzidkiyahu 1342 Tzipi 10377 +Tziporah 6229 +Tzipporah 4690 Tzotzil 127742 Tzougros 2471 Tzul 3309 Tzutujil 14438 Tzvi 64302 U's 780 +UA 2212188 UAC 213306 UACs 6165 UAF 90534 @@ -122292,6 +124376,7 @@ UCTs 6987 UChicago 3739 UConn 74512 UCs 24686 +UCx 1541 UD 770837 UDAA 1655 UDC 902690 @@ -122323,6 +124408,9 @@ UFAs 3405 UFC 137872 UFCW 314983 UFF 51648 +UFOlogist 3148 +UFOlogists 7283 +UFOlogy 7043 UFTA 52887 UFTAA 1701 UFW 321829 @@ -122355,6 +124443,7 @@ UIMs 2594 UIs 33889 UJT 50489 UJTs 3108 +UKCP 2171 UKIDSS 1313 UKIRT 16367 UKP 5581 @@ -122399,6 +124488,7 @@ UMOC 834 UMP 195195 UMPP 900 UMTS 270970 +UMWA 477552 UMass 118796 UMich 3031 UMs 13184 @@ -122422,6 +124512,7 @@ UNFICYP 134824 UNG 62149 UNHCR 1369999 UNICEF 2072437 +UNIDO 637805 UNIDROIT 63637 UNIFIL 162449 UNIKOM 28888 @@ -122440,12 +124531,15 @@ UNOI 435 UNOS 118711 UNPROFOR 246038 UNRRA 917249 +UNRWA 499476 UNS 331646 UNSC 221902 UNSCOM 183358 UNSW 25199 UNTAC 155375 UNTAET 42395 +UNWTO 37523 +UO 738802 UOG 12418 UOL 13962 UOP 361940 @@ -122485,9 +124579,9 @@ URM 87869 URMs 9309 URN 100275 URNs 9471 -URT 73778 URTI 22057 URTIs 4527 +URTs 460 URs 21013 US 5396152 USA 69083673 @@ -122506,6 +124600,8 @@ USAMRIID 64639 USAMU 5284 USAN 65375 USAR 526226 +USART 33282 +USARTs 2451 USAT 42661 USB 1692113 USBs 2610 @@ -122523,6 +124619,7 @@ USDA 18396156 USDOT 139380 USDS 35216 USDs 2071 +USES 3442889 USEUCOM 56778 USF 625691 USFI 3460 @@ -122547,6 +124644,8 @@ USN 3024171 USNA 153219 USNH 24090 USNORTHCOM 13214 +USNR 772702 +USNS 188700 USNTS 1291 USNs 5448 USO 551986 @@ -122599,7 +124698,6 @@ UUP 57176 UUV 32072 UUVs 12734 UUW 3313 -UV 8250509 UVCE 1729 UVCEs 488 UVF 56465 @@ -122694,6 +124792,7 @@ Udolphoish 97 Udupi 4779 Udy 63704 Uea 11952 +Uebler 4070 Uechi 6173 Uecker 63253 Ueckers 147 @@ -122726,10 +124825,12 @@ Ugartes 483 Ugborough 2374 Ugger 1150 Ugglebarnby 269 +Ugley 6376 Ugrian 66800 Ugrians 23949 Ugric 115309 Ugricists 394 +Ugu 4597 Ugwu 11621 Uher 60280 Uhers 503 @@ -122746,10 +124847,13 @@ Uhrig 61735 Uie 254619 Uies 2203 Uighur 196545 +Uighurian 439 +Uighuric 158 Uighurs 104766 Uigur 35826 Uigurian 991 Uiguric 542 +Uiju 4878 Uiko 2991 Uintah 689223 Uist 69182 @@ -122900,11 +125004,13 @@ Umbri 10530 Umbria 387055 Umbrian 249229 Umbrians 52157 +Umbric 5258 Umbriel 31952 Umbundu 20815 Ume 95914 Umeda 79016 Umeko 15035 +Umfleet 4991 Umfolosi 2710 Umfreville 14403 Umfrevilles 269 @@ -122925,6 +125031,7 @@ Umtali 57263 Umuahia 23474 Umvoti 9121 Umvuma 1432 +Umwa 701 Umwelt 160502 Umwelts 2257 Un 6484731 @@ -122941,6 +125048,7 @@ Unalaska 429605 Unalaskan 1308 Unalaskans 1523 Unami 29760 +Unamuno 395366 Unangan 7837 Unangans 299 Unangst 27364 @@ -122972,6 +125080,8 @@ Ungaro 59005 Ungaros 447 Ungava 174665 Unger 1490117 +Ungerer 114869 +Ungerers 109 Ungerian 427 Ungs 5986 Uniat 30466 @@ -123180,6 +125290,7 @@ Ureys 430 Urfa 58462 Urfirnis 3766 Urga 124728 +Urgench 11343 Urger 2612 Urgiles 205 Urgonian 11817 @@ -123289,6 +125400,7 @@ Usher 1702598 Usherian 1244 Ushers 160996 Ushkoff 139 +Ushnishavijaya 808 Ushpizin 1856 Ushuaia 64579 Usipetes 11451 @@ -123348,6 +125460,7 @@ Utley 620523 Utleys 1429 Utonian 1656 Utonians 233 +Utopia 2440157 Utopian 1686456 Utopianism 94401 Utopianisms 777 @@ -123482,6 +125595,7 @@ VCBs 822 VCC 157470 VCD 132465 VCDs 16031 +VCH 260113 VCL 68832 VCO 474879 VCPI 7486 @@ -123494,6 +125608,7 @@ VCUs 28931 VCs 212705 VDA 172274 VDC 450785 +VDH 21099 VDI 220877 VDIs 1096 VDL 46748 @@ -123517,6 +125632,8 @@ VED 78583 VEE 198360 VEI 41882 VELS 6252 +VEM 47082 +VEMs 1897 VEOS 3179 VEP 190790 VEPs 51841 @@ -123533,16 +125650,20 @@ VFD 89960 VFDF 552 VFDs 17335 VFL 20309 +VFO 109005 +VFOs 7731 VFP 57216 VFR 1058148 VFRs 4023 +VFS 50723 VFW 692468 VFX 43041 -VGA 861502 VGC 21088 VGK 5903 VGM 73337 VGTU 177 +VH 986366 +VHC 17841 VHD 60603 VHDL 441442 VHEMT 503 @@ -123556,6 +125677,7 @@ VHRs 466 VHS 3838901 VHSIC 128015 VHSICs 1411 +VHs 3933 VI 58151494 VIB 77699 VIBGYOR 869 @@ -123567,6 +125689,7 @@ VIIIth 63093 VIIth 51586 VILI 22528 VINs 14429 +VIPer 318 VIPergic 2828 VIPoma 15508 VIPomas 10808 @@ -123588,6 +125711,7 @@ VLAD 10717 VLAN 363510 VLANs 166793 VLAT 482 +VLBW 77903 VLDB 111699 VLDBs 2399 VLE 91803 @@ -123602,6 +125726,7 @@ VLM 49468 VLMs 4880 VLOC 2114 VLOCs 149 +VLOP 191 VLOS 2838 VLP 67377 VLPs 45904 @@ -123631,6 +125756,8 @@ VNC 75182 VNE 25202 VNSA 5377 VNSAs 1833 +VNTR 72495 +VNTRs 17662 VNs 13807 VO 921919 VOA 612062 @@ -123649,6 +125776,7 @@ VOP 63839 VORTAC 307928 VORTACs 3549 VOS 112438 +VOV 10312 VOX 112069 VOs 32710 VOx 6246 @@ -123658,8 +125786,10 @@ VPIP 1055 VPL 98216 VPLs 2564 VPM 67857 +VPOTUS 2380 VPSO 3946 VPSOs 669 +VPU 12798 VR 2575419 VRAM 80821 VRB 44809 @@ -123668,6 +125798,7 @@ VRE 129061 VREs 1815 VRI 49829 VRIO 4762 +VRLA 21092 VRML 232927 VRO 12425 VROs 539 @@ -123707,16 +125838,21 @@ VTE 306154 VTHL 803 VTID 398 VTOL 493688 +VTOLport 388 +VTOLports 765 VTOLs 3930 VTR 349694 VTRs 125276 VTVL 706 +VTVM 75342 +VTVMs 3118 VTX 16255 VTs 61836 VU 548746 VUCA 9435 VUI 32570 VUIs 1003 +VUR 65814 VUSA 1998 VUs 3439 VVA 66152 @@ -123775,6 +125911,7 @@ Vahey 49447 Vahle 23636 Vahles 398 Vai 203077 +Vaibhasika 6546 Vaid 64514 Vaiden 91481 Vaidic 1694 @@ -123812,6 +125949,7 @@ Vajraratna 244 Vajras 1265 Vajrasattva 40019 Vajrayana 118797 +Vakinankaratra 2655 Vaksdal 2024 Vakulabharanam 575 Valade 29811 @@ -123824,6 +125962,7 @@ Valasek 17809 Valazquez 4889 Valbuena 29151 Valcarcel 34950 +Valchiusa 1113 Valcin 4505 Valdenses 7163 Valdensian 1183 @@ -124023,6 +126162,7 @@ Vancouver 11640149 Vancouverism 255 Vancouverite 1025 Vancouverites 6000 +Vancouvers 7284 Vancura 17314 Vancuren 2143 Vandagriff 6719 @@ -124166,12 +126306,12 @@ Vaneks 413 Vanes 140997 Vanessa 2143352 Vanetten 3057 +Vanetzian 625 Vanevery 781 Vanfleet 8850 Vanfossen 8399 Vang 226846 Vange 12647 -Vangelis 28235 Vangilder 12098 Vangorden 927 Vangorder 2126 @@ -124299,6 +126439,7 @@ Vaquero 83637 Vaqueros 269447 Var 2198751 Vara 166561 +Varadero 60156 Varades 1379 Varadkar 635 Varady 42720 @@ -124381,9 +126522,11 @@ Varvel 16326 Varvels 279 Varyag 9076 Varyags 565 +Vasai 2140 Vasallo 7252 Vasallos 1761 Vasant 57342 +Vasanth 5055 Vasantkumar 781 Vasari 973886 Vasarian 3883 @@ -124667,6 +126810,7 @@ Venezianos 317 Venezuela 14866385 Venezuelan 3505718 Venezuelans 277413 +Vengi 4533 Vengo 8527 Veniamin 32696 Venice 15022530 @@ -124720,6 +126864,7 @@ Venturini 61942 Venu 25211 Venugopal 37822 Venus 10987670 +Venusberg 56176 Venuses 70161 Venusian 183229 Venusians 25557 @@ -124976,6 +127121,9 @@ Vians 1871 Viar 34032 Viars 8392 Vias 50155 +Viatich 197 +Viatichi 2093 +Viatichians 809 Viator 138333 Viators 2413 Viau 54576 @@ -125061,6 +127209,7 @@ Vidalian 1993 Vidalias 3433 Vidana 1821 Vidar 72145 +Vidarbha 21131 Vidas 67684 Vidaurre 17253 Vidaurri 47163 @@ -125085,6 +127234,7 @@ Vidzeme 7779 Vie 1748685 Vieau 21771 Vieaus 157 +Viedma 30585 Vieillot 129477 Vieira 445541 Viel 83459 @@ -125160,6 +127310,7 @@ Vijayadashami 708 Vijayanagara 53478 Vijayawada 14561 Vijays 109 +Vijnanavada 7494 Vik 151111 Viking 6453830 Vikingism 701 @@ -125297,6 +127448,7 @@ Vincentian 106157 Vincentians 51351 Vincentis 7850 Vincents 106324 +Vincenzo 723969 Vinchenzo 2011 Vincian 2443 Vinciguerra 37426 @@ -125362,7 +127514,9 @@ Viponds 324 Vipperman 22716 Virac 8490 Viracocha 105101 +Viramgam 1835 Virani 9899 +Virar 1455 Viray 7686 Virbius 20140 Virchow 949625 @@ -125373,6 +127527,7 @@ Virella 12391 Virellas 145 Virga 85451 Virgas 507 +Virgie 198842 Virgil 7781554 Virgilian 250151 Virgilianism 1137 @@ -125419,6 +127574,7 @@ Visconti 661932 Viscontis 8742 Viscos 4251 Viscount 2287388 +Viscounts 57802 Visct 8205 Viscuso 5024 Vise 359372 @@ -125427,6 +127583,7 @@ Vises 107190 Vishakhapatnam 8511 Vishal 30734 Vishnu 950527 +Vishnupriya 556 Vishu 3929 Vishwamitra 3727 Visigoth 75161 @@ -125611,6 +127768,7 @@ Voguls 17115 Vohra 57181 Vohras 591 Vohwinkel 11824 +Voice 12674279 Voight 366179 Voights 5901 Voigt 988001 @@ -125635,6 +127793,7 @@ Volcae 9207 Volcanalia 1924 Volcano 1343109 Volcanus 5298 +Volchok 16468 Volcy 3510 Vold 73340 Voldemort 74282 @@ -125668,6 +127827,8 @@ Volkswagen 1617704 Volkswagens 85498 Voll 128959 Vollbrecht 23673 +Voller 40564 +Vollers 29678 Vollman 35120 Vollmar 65818 Vollmars 143 @@ -125767,6 +127928,7 @@ Vorbeck 41142 Vorce 39971 Vorces 695 Vorderer 16200 +Vorderman 4822 Vordernberg 1687 Vore 113151 Vores 21648 @@ -125918,6 +128080,8 @@ Vyachaslau 473 Vyacheslav 220885 Vyas 92425 Vyasa 84900 +Vyatichi 1097 +Vyatichians 1214 Vyborg 64115 Vygotskian 68837 Vygotskians 2284 @@ -125990,6 +128154,7 @@ WBA 142035 WBC 1045362 WBE 218975 WBEs 28050 +WBG 45518 WBN 116421 WBO 23174 WBS 444910 @@ -126011,6 +128176,7 @@ WDC 257750 WDCs 17264 WDDX 8816 WDI 69661 +WDL 49915 WDM 597527 WDS 122023 WDSs 1029 @@ -126033,7 +128199,6 @@ WFFs 3474 WFH 9526 WFK 3223 WFL 47288 -WFNA 5522 WFOE 8164 WFOEs 5792 WFP 376515 @@ -126087,6 +128252,7 @@ WIWAL 286 WJC 56999 WJHC 3275 WJs 735 +WKB 183509 WKF 3067 WKID 3969 WKSI 5137 @@ -126126,6 +128292,7 @@ WMV 35345 WMVs 175 WMs 8364 WNBA 100968 +WNBR 1114 WNL 58604 WNW 216251 WOC 179639 @@ -126186,6 +128353,7 @@ WRUD 125 WRULD 419 WRULDs 371 WRVS 1887 +WRX 8516 WS 2808028 WSBK 18941 WSC 267121 @@ -126212,6 +128380,7 @@ WSTA 9102 WSU 256008 WSVGA 151 WSW 244471 +WSX 18262 WTA 168288 WTAI 2682 WTB 239926 @@ -126241,6 +128410,7 @@ WVS 48246 WVTR 17813 WVU 100125 WW 2852721 +WWAN 8016 WWC 81076 WWE 121791 WWF 397984 @@ -126269,6 +128439,7 @@ WaPo 1171 WaaS 391 Waage 111061 Waages 257 +Waaihoek 523 Waal 497851 Waals 1157249 Waama 859 @@ -126305,6 +128476,7 @@ Wack 98853 Wacker 1407749 Wackers 14053 Wacks 26956 +Wackson 197 Waco 3336832 Wacoan 257 Wacoans 671 @@ -126375,6 +128547,7 @@ Wagaya 787 Wageman 31794 Wagener 372525 Wageners 3725 +Wagenhausen 681 Wageningen 438587 Wagenknecht 121970 Wager 841963 @@ -126504,6 +128677,7 @@ Wainrights 979 Wains 7669 Wainscott 74222 Wainscotts 629 +Wainuiomata 906 Wainwright 2061719 Wainwrights 10403 Waiouru 1437 @@ -126632,6 +128806,7 @@ Waldschmidts 139 Waldstreicher 41391 Waldvogel 59024 Waldvogels 196 +Walek 12140 Walen 46245 Walens 7266 Walenski 2291 @@ -126666,6 +128841,7 @@ Walkerism 179 Walkerisms 129 Walkers 381218 Walkes 11114 +Walkey 28241 Walkford 159 Walkhampton 1305 Walkins 27277 @@ -126731,6 +128907,7 @@ Wallington 157824 Wallingtons 405 Wallins 37033 Wallis 2923758 +Wallisellen 4004 Wallisian 5562 Wallisians 2022 Wallman 136560 @@ -126902,7 +129079,9 @@ Wannamakers 1201 Wannan 9802 Wannemacher 31270 Wanner 299823 +Wanneroo 2882 Wanners 948 +Wannon 1698 Wanquan 2443 Wanrong 2052 Wans 37282 @@ -126925,6 +129104,7 @@ Wanxian 6993 Wanyamwezi 14774 Wanzer 98606 Wanzers 359 +Wanzhi 439 Wanzhou 1525 Wapakoneta 160934 Wapanese 122 @@ -126976,6 +129156,7 @@ Wardman 212255 Wardmans 219 Wardon 11707 Wardons 885 +Wardour 171145 Wardrip 28894 Wardrop 156675 Wardrope 10928 @@ -127020,6 +129201,7 @@ Warholites 109 Warhurst 37123 Wari 133213 Waring 2080958 +Wario 5707 Wark 227398 Warkentin 99159 Warkentins 403 @@ -127087,6 +129269,7 @@ Warrilow 16211 Warriner 281129 Warriners 1857 Warring 395852 +Warringah 2833 Warrings 857 Warrington 1351766 Warrior 3267941 @@ -127135,6 +129318,7 @@ Wash 11667606 Washabaugh 75888 Washam 33691 Washams 198 +Washbourne 126922 Washburn 5264692 Washburns 12696 Washer 985920 @@ -127150,6 +129334,7 @@ Washiyama 1601 Washko 20892 Washminster 457 Washoe 1182446 +Wasian 1091 Wasielewski 56245 Wasik 69675 Wasilewski 111295 @@ -127628,6 +129813,7 @@ Weihers 138 Weihes 260 Weihsien 26796 Weihui 1531 +Weija 1672 Weik 120997 Weikel 67528 Weikert 79967 @@ -127811,6 +129997,7 @@ Wells 27040620 Wellsboro 198686 Wellsburg 253933 Wellsian 32309 +Wellsians 748 Wellstone 307204 Wellsy 760 Welly 46086 @@ -127876,6 +130063,7 @@ Wenchow 30008 Wenchuan 18219 Wenck 60051 Wend 2205633 +Wenda 47479 Wendake 3701 Wendat 20845 Wendats 6243 @@ -128000,8 +130188,10 @@ Wernicks 297 Werra 63382 Werre 13464 Werres 7022 +Werrett 14284 Werribee 16761 Werrington 4156 +Werriwa 349 Wersching 5989 Werschkul 4496 Wertenbaker 149053 @@ -128176,6 +130366,7 @@ Westmount 109448 Westoe 4041 Westoll 17671 Weston 7366033 +Westoning 1355 Westover 821445 Westow 4467 Westoxification 1911 @@ -128351,6 +130542,7 @@ Whelley 2551 Whelpley 157817 Whelpleys 157 Whelton 61664 +Whenby 642 Whenuapai 1151 Wherley 11934 Whernside 2636 @@ -128403,6 +130595,7 @@ Whilkut 7188 Whilkuts 173 Whimple 9362 Whinery 116204 +Whinham 2295 Whinmoor 338 Whipkey 21217 Whipp 86597 @@ -128458,6 +130651,7 @@ Whitcombs 7698 Whitcraft 23442 White 169311769 Whiteacre 97884 +Whiteadder 1514 Whiteaker 65077 Whiteakers 157 Whitean 874 @@ -128472,6 +130666,7 @@ Whitecroft 2344 Whited 131057 Whiteds 211 Whitefield 1396125 +Whitefieldian 3234 Whiteford 212401 Whitefords 1459 Whitehair 41784 @@ -128528,6 +130723,7 @@ Whitewatergate 1486 Whiteway 63064 Whiteways 1604 Whitfield 2296313 +Whitfieldian 561 Whitfields 8079 Whitford 606152 Whitfords 1678 @@ -128635,6 +130831,7 @@ Whixall 718 Whixley 1381 Who 110408076 Whobrey 4341 +Whome 15628 Whoosis 3713 Whorf 346386 Whorfian 34243 @@ -128690,6 +130887,7 @@ Wick 1309931 Wickard 338891 Wickards 439 Wicke 95514 +Wickenby 626 Wickenden 151682 Wickendens 239 Wickens 262620 @@ -128897,6 +131095,7 @@ Wiker 18154 Wikers 167 Wikes 7495 Wiki 163567 +WikiLeaks 109986 Wikia 3191 Wikimania 567 Wiking 33224 @@ -128913,6 +131112,7 @@ Wikoffs 585 Wiks 11398 Wikstrom 69674 Wiktionary 3305 +Wil 1554853 Wilamowice 171 Wilbarger 135415 Wilber 1079187 @@ -128968,6 +131168,7 @@ Wildesque 51 Wildey 132906 Wildeys 144 Wildgust 1035 +Wildian 403 Wilding 400285 Wildings 11825 Wildish 20288 @@ -129050,6 +131251,7 @@ Willan 195894 Willand 17723 Willans 53772 Willapa 303703 +Willapah 1407 Willapas 472 Willard 11229823 Willards 44269 @@ -129159,6 +131361,9 @@ Willner 183111 Willners 939 Willock 85067 Willocks 21893 +Willopa 899 +Willopah 3053 +Willopahs 139 Willott 32193 Willoughby 2828203 Willoughbys 19078 @@ -129193,6 +131398,7 @@ Wilmingtonian 2064 Wilmingtonians 4812 Wilmore 323751 Wilmores 681 +Wilmorton 193 Wilmot 1738891 Wilmoth 109067 Wilmoths 373 @@ -129381,6 +131587,7 @@ Wingate 1593507 Wingding 2478 Wingdings 12311 Winge 97092 +Wingecarribee 553 Winger 290372 Wingers 21862 Wingert 133921 @@ -129602,6 +131809,8 @@ Wisener 55867 Wiser 355219 Wisers 2995 Wish 2338113 +Wisham 20130 +Wishams 167 Wishart 556497 Wisharts 1811 Wishaw 35433 @@ -129667,6 +131876,7 @@ Witczak 28384 Witek 50845 Witham 309030 Withams 3091 +Withcall 271 Withee 69081 Withees 224 Withem 4007 @@ -129678,6 +131888,7 @@ Witherells 600 Withering 128270 Witherington 141646 Witheringtons 837 +Witherley 2727 Withern 2028 Withernsea 3563 Witherow 105548 @@ -129764,6 +131975,7 @@ Wixoms 231 Wixon 92695 Wixons 713 Wixson 96814 +Wixted 23189 Wiyot 69767 Wlodarczyk 13045 Wn 1049679 @@ -129957,7 +132169,6 @@ Womack 867137 Womacks 6077 Womble 168882 Wombles 8544 -Wombo 1069 Wombourne 1578 Wombwell 25870 Wombwells 246 @@ -129987,6 +132198,7 @@ Woo 1272911 Wooburn 7365 Wood 56094988 Woodacre 16768 +Woodale 7955 Woodall 569776 Woodalls 3100 Woodard 1182206 @@ -130191,6 +132403,7 @@ Worden 1114904 Wordens 6528 Wordian 4627 Wordlaw 7258 +Wordsley 3755 Wordsworth 6740829 Wordsworthian 154278 Wordsworthianism 1701 @@ -130220,6 +132433,7 @@ Worlingham 1485 Worm 1626591 Worman 112217 Wormans 744 +Wormbridge 270 Wormegay 1234 Wormeley 116450 Wormeleys 1976 @@ -130343,6 +132557,7 @@ Wrightsman 110475 Wrightsmans 2974 Wrightson 195110 Wrightsons 774 +Wrightstown 121870 Wrightsville 338284 Wrightwood 115991 Wrighty 343 @@ -130352,6 +132567,7 @@ Wrinehill 256 Wrington 14828 Wrinkle 245235 Wrinkles 189532 +Wriothesley 103815 Wrisley 38223 Wrisleys 177 Wriston 222366 @@ -130417,6 +132633,7 @@ Wuisse 292 Wujiang 8968 Wujiaqu 151 Wuku 1320 +Wulai 3112 Wulff 415264 Wulffs 4740 Wulfila 22117 @@ -130498,6 +132715,7 @@ Wychnor 2502 Wychwood 25760 Wyckoff 1048809 Wyckoffs 4907 +Wyclef 19286 Wycliffe 557914 Wycliffes 1379 Wycliffian 1050 @@ -130570,6 +132788,7 @@ Wynkoops 1714 Wynn 1848102 Wynne 1654247 Wynns 40718 +Wynona 52576 Wynter 169588 Wynyard 63110 Wyobraska 1506 @@ -130661,7 +132880,6 @@ XPs 16418 XQ 174056 XQs 772 XQuery 94820 -XR 684218 XRCD 1547 XRR 10034 XSD 58828 @@ -130693,6 +132911,7 @@ Xamtanga 216 Xan 104241 Xanadu 203263 Xanadus 1199 +Xanambre 108 Xanatos 571 Xanax 184202 Xanaxed 47 @@ -130767,6 +132986,7 @@ Xers 134528 Xerxean 466 Xerxes 1216071 Xerxeses 111 +Xfic 130 Xhosa 330794 Xhosan 219 Xhosas 14364 @@ -130848,6 +133068,7 @@ Xinca 10568 Xincai 1535 Xincan 1517 Xindian 2327 +Xinfeng 3512 Xinfu 2798 Xing 387834 Xingcheng 1985 @@ -130863,6 +133084,9 @@ Xinhui 8136 Xining 57042 Xinjiang 745434 Xinmi 568 +Xinping 5032 +Xinpu 837 +Xinqing 575 Xinrong 2218 Xins 425 Xinshi 2900 @@ -130902,6 +133126,7 @@ Xlets 780 Xmas 455223 Xmases 580 Xmastide 369 +Xnty 19477 Xochimilcan 374 Xochistlahuaca 2359 Xocomil 759 @@ -130970,6 +133195,7 @@ YBAs 2210 YBCO 251529 YBP 25179 YC 454902 +YCH 10406 YCL 92302 YCP 9654 YE 706431 @@ -131012,6 +133238,7 @@ YOYO 10646 YP 227596 YPs 6052 YRD 6110 +YRUU 1482 YSK 2236 YSL 36018 YSO 13442 @@ -131074,6 +133301,7 @@ Yagis 23746 Yagnob 3413 Yagnobi 1459 Yagnobis 332 +Yago 53288 Yagua 32893 Yaguchi 18735 Yah 452290 @@ -131084,6 +133312,7 @@ Yahir 581 Yahn 35214 Yahnke 15122 Yahns 316 +Yahoel 2463 Yahoo 626434 Yahooed 119 Yahooing 193 @@ -131191,6 +133420,7 @@ Yamanakas 265 Yamanashi 105485 Yamane 112509 Yamanoue 4923 +Yamantaka 13804 Yamasaki 244256 Yamasee 52860 Yamasees 16927 @@ -131255,6 +133485,7 @@ Yangon 107050 Yangpu 14687 Yangqu 638 Yangquan 3675 +Yangshao 28355 Yangshuo 8944 Yangshupu 1669 Yangtse 203814 @@ -131287,6 +133518,7 @@ Yankeeizing 251 Yankeeness 1056 Yankees 4423655 Yankeetown 38017 +Yankelovich 232168 Yankes 1558 Yankey 37759 Yankeys 4550 @@ -131335,6 +133567,7 @@ Yanyula 705 Yanyuwa 6205 Yanzi 15516 Yao 1555577 +Yaohai 270 Yaoi 9231 Yaozhou 3337 Yap 706093 @@ -131384,6 +133617,7 @@ Yarkand 79990 Yarkandi 1092 Yarkant 1086 Yarker 12729 +Yarl 6737 Yarlagadda 5187 Yarm 24785 Yarmouk 44453 @@ -131721,6 +133955,7 @@ Yi 3474482 YiB 403 Yiannitsa 550 Yiannopoulos 21950 +Yib 1639 Yibin 11353 Yichang 32890 Yicheng 10478 @@ -131755,6 +133990,7 @@ Yielding 533201 Yieldings 297 Yiewsley 1323 Yihewani 1496 +Yijiang 3312 Yijun 7781 Yilan 13855 Yildirim 36823 @@ -131785,6 +134021,7 @@ Yingshan 2688 Yingst 23241 Yingze 1225 Yining 19960 +Yinlong 1340 Yins 2934 Yintai 893 Yip 343151 @@ -131904,6 +134141,7 @@ Yonkalla 1140 Yonke 10682 Yonker 48246 Yonkers 3259511 +Yonkersite 131 Yonkes 165 Yonne 106383 Yonner 672 @@ -132017,6 +134255,7 @@ Yougoslavia 5108 Yougoslavian 305 Yougoslavs 947 Youkhana 1666 +Youlgreave 3028 Youman 38239 Youmans 503190 Youn 167300 @@ -132029,6 +134268,8 @@ Youngberg 157456 Youngbergs 260 Youngblood 710982 Youngbloods 10888 +Youngdahl 129405 +Youngdahls 170 Younger 4132375 Youngerman 52317 Youngers 50755 @@ -132084,6 +134325,7 @@ Yowells 1143 Yown 1053 Yows 2562 Yoxall 24919 +Yoyo 36409 Yp 90976 Ypres 594435 Ypresian 19273 @@ -132159,6 +134401,7 @@ Yugur 6119 Yugurs 701 Yuhas 56260 Yuhasz 8084 +Yuhsi 349 Yui 75276 Yuichiro 17235 Yuiko 1098 @@ -132204,7 +134447,6 @@ Yumiko 46090 Yums 3162 Yun 1128453 Yuna 32726 -Yunan 32612 Yunani 5014 Yuncheng 8849 Yunfu 2685 @@ -132222,6 +134464,7 @@ Yunmeng 3427 Yunnan 1388122 Yunnanese 29038 Yuns 1444 +Yunupingu 2892 Yunxi 2199 Yunyang 4683 Yunzhou 1402 @@ -132299,6 +134542,7 @@ ZEC 11655 ZECs 747 ZELL 42492 ZETA 158938 +ZEZ 2051 ZF 205967 ZFC 62490 ZIF 45241 @@ -132800,6 +135044,8 @@ Zecharia 14790 Zechariah 1350066 Zechman 24104 Zechstein 80631 +Zeddies 8449 +Zeddy 5388 Zedekiah 506931 Zee 985459 Zeeb 452992 @@ -132816,6 +135062,7 @@ Zeeman 811504 Zeenat 9077 Zeerust 10158 Zees 22616 +Zeeshan 3401 Zeewolde 859 Zeferino 13685 Zegarra 17368 @@ -132860,6 +135107,7 @@ Zelayas 779 Zelayeta 3919 Zelazny 84059 Zelda 834396 +Zeldas 1262 Zeledon 34585 Zelenak 21570 Zelenka 56487 @@ -132953,6 +135201,7 @@ Zepedas 410 Zephaniah 436114 Zephier 5838 Zephyr 675586 +Zephyrean 101 Zephyrette 1302 Zephyrettes 618 Zephyrus 69113 @@ -132962,6 +135211,7 @@ Zeppelins 170772 Zepps 4885 Zepu 738 Zerahiah 12785 +Zeralda 4859 Zeravshan 24188 Zerbe 192085 Zerbes 2412 @@ -132995,6 +135245,7 @@ Zetlanders 5572 Zettel 92760 Zettelkasten 486 Zettels 1319 +Zetter 37766 Zettler 85391 Zettlers 211 Zeug 11425 @@ -133022,6 +135273,7 @@ Zhai 102018 Zhan 152178 Zhanaozen 1053 Zhang 5941678 +Zhanghua 2993 Zhangjiajie 2447 Zhangjiakou 10984 Zhangpu 1743 @@ -133071,6 +135323,7 @@ Zhmud 3958 Zhmuds 326 Zhong 565784 Zhongdu 4707 +Zhongguo 656817 Zhongli 15382 Zhonglu 5995 Zhongmu 698 @@ -133426,6 +135679,7 @@ Zsazsa 1627 Zsuzsanna 23563 Zu 471076 Zuara 6477 +Zub 11148 Zubair 56794 Zubarevich 1476 Zubatovshchina 2280 @@ -133588,6 +135842,7 @@ a'n't 57706 a's 3998 aDNA 9493 aRNA 6541 +aSDH 1366 aa 6070526 aaa 251444 aaagh 797 @@ -134051,7 +136306,6 @@ abidingly 27085 abidingness 23605 abidings 4375 abids 462 -abie 36774 abience 2974 abient 5014 abier 733 @@ -135255,6 +137509,7 @@ acceleron 342 accels 2869 accendibility 197 accent 10237205 +accentable 3295 accented 2035362 accentedly 136 accentedness 5739 @@ -135277,6 +137532,7 @@ accentuation 749257 accentuations 29418 accentuator 1183 accentuators 1204 +accentus 8174 accept 118672624 acceptabilities 2714 acceptability 3699132 @@ -135365,6 +137621,7 @@ acciaccaturas 3100 acciaccature 1090 accidence 60073 accidences 1815 +accidens 98990 accident 86005815 accidental 16748173 accidentalism 3284 @@ -135375,11 +137632,13 @@ accidentally 8090828 accidentalness 3264 accidentals 228715 accidented 5874 +accidentia 15106 accidently 411604 accidentologist 1841 accidentologists 419 accidentology 1084 accidents 36661962 +accidia 8049 accidie 16799 accinge 137 accipenser 502 @@ -136201,6 +138460,7 @@ achars 732 acharya 9848 acharyas 3808 achatin 347 +achatina 6590 achatinella 250 achatinellid 613 achatinellids 251 @@ -136300,7 +138560,6 @@ achondroplastic 33325 achoo 5043 achoos 149 achordate 67 -achorn 51 achrestic 2768 achroacytosis 69 achrodextrin 703 @@ -136762,7 +139021,6 @@ acquitals 1459 acquited 22721 acquites 498 acquiting 2388 -acquitment 1610 acquitments 376 acquits 139693 acquittal 3684747 @@ -137288,6 +139546,7 @@ actinorhizal 18910 actinorhizas 151 actinorhodin 7603 actinoscopy 64 +actinosiphonate 2432 actinospore 1276 actinosporean 811 actinosporeans 165 @@ -137677,6 +139936,7 @@ adamantinely 509 adamantinomas 7301 adamantinomata 907 adamantinomatous 4928 +adamantite 1141 adamantium 3427 adamantly 763783 adamantoid 514 @@ -137693,6 +139953,7 @@ adamellites 5136 adamite 12173 adamites 1675 adamsite 4554 +adanal 19696 adance 10488 adangle 1682 adansonia 1104 @@ -137777,8 +140038,11 @@ adawlut 1564 adaxial 182663 adaxially 74991 adaxonal 2371 +adaze 762 adazzle 4804 adblocking 180 +adboard 354 +adboards 167 adcauline 1651 adcumulate 2260 add 146202649 @@ -137870,6 +140134,7 @@ addlepated 14916 addlepatedness 211 addles 8343 addling 15741 +addnl 46511 addolorato 480 addon 73303 addons 23565 @@ -137882,6 +140147,7 @@ addressabilities 209 addressability 50633 addressable 516679 addressably 725 +addressal 3691 addressed 78287409 addressedness 110 addressee 2046261 @@ -138169,6 +140435,10 @@ adfected 1791 adfix 146 adfluvial 6889 adfolk 176 +adfreeze 9114 +adfreezes 61 +adfreezing 6646 +adfrozen 916 adhaka 92 adhan 12253 adhans 120 @@ -138485,6 +140755,7 @@ adjutator 546 adjutators 1554 adjutor 19584 adjutors 9003 +adjutory 501 adjutrice 74 adjutrices 180 adjutrix 1383 @@ -138682,6 +140953,7 @@ admonitorial 232 admonitorily 1006 admonitors 758 admonitory 201236 +admor 3958 admortization 121 adnascent 337 adnate 390986 @@ -138720,6 +140992,7 @@ adolescently 4731 adolescents 14490443 adolesces 213 adolescing 2317 +adonidin 6368 adonirubin 181 adonise 71 adonises 306 @@ -138800,6 +141073,8 @@ adorningly 165 adornings 15621 adornment 1464117 adornments 507351 +adorno 20673 +adornos 15293 adorns 649062 ados 21158 adovada 3328 @@ -138823,6 +141098,7 @@ adradially 1000 adrafinil 545 adrak 1409 adream 10417 +adrectal 448 adrenal 8608595 adrenalated 179 adrenalectomies 6783 @@ -139088,6 +141364,7 @@ adv 4546529 advance 118421168 advanceable 9668 advanced 116107357 +advancedly 519 advancedness 1168 advancement 20177451 advancemente 2869 @@ -139143,6 +141420,7 @@ adventive 101089 adventives 4567 adventral 1221 advents 25368 +adventual 998 adventure 17257394 adventured 148642 adventuredom 99 @@ -139631,6 +141909,7 @@ aerolith 1390 aerolithic 529 aeroliths 1082 aerolitic 1317 +aerolization 453 aerolized 1077 aerologic 2369 aerological 119570 @@ -139742,6 +142021,8 @@ aeroplaning 5479 aeroplanist 1991 aeroplanists 1668 aeroplankton 1121 +aeropolitical 494 +aeropolitics 462 aeroponic 4783 aeroponically 929 aeroponics 4511 @@ -140140,6 +142421,7 @@ affixial 327 affixing 1002315 affixings 105 affixion 1156 +affixless 514 affixment 2600 affixments 513 affixoids 183 @@ -140513,6 +142795,8 @@ aftername 195 afternames 115 afterness 3292 afternoon 70976618 +afternooner 409 +afternooners 324 afternoones 1357 afternoonish 363 afternoons 3758352 @@ -140643,6 +142927,8 @@ agalite 3146 agalloch 713 agallochum 2153 agallop 862 +agalma 9993 +agalmata 3930 agalmatolite 6794 agalmatophilia 321 agals 793 @@ -140796,6 +143082,7 @@ agenbite 2933 agencies 191334534 agency 226791018 agencylike 69 +agencywide 111965 agenda 20723166 agendae 2656 agendaless 997 @@ -141070,10 +143357,12 @@ agitatable 294 agitate 1397534 agitated 7357390 agitatedly 72193 +agitatedness 210 agitates 213551 agitatest 46 agitateth 216 agitating 1585114 +agitatingly 525 agitation 14324738 agitational 84526 agitationally 263 @@ -141096,6 +143385,8 @@ agitoxin 230 agitpop 119 agitprop 78064 agitprops 799 +agitpunkt 473 +agitpunkts 163 aglandular 1609 aglaonema 1831 aglaonemas 944 @@ -141108,6 +143399,7 @@ aglets 8780 agley 23170 aglimmer 2659 aglint 3780 +aglisten 1371 aglitter 22793 aglomerated 305 aglomerates 571 @@ -141262,6 +143554,7 @@ agony 8765168 agora 303617 agorae 1182 agorah 54 +agorai 1706 agoranome 324 agoranomes 74 agoranomoi 3490 @@ -141365,6 +143658,7 @@ agribusiness 1031132 agribusinesses 127135 agribusinessman 4805 agribusinessmen 13114 +agribusinessperson 123 agrichemical 52960 agrichemicals 38465 agricolist 178 @@ -141462,6 +143756,10 @@ agroclavine 4828 agroclimate 3064 agroclimates 655 agroclimatic 42723 +agroclimatological 2948 +agroclimatologist 113 +agroclimatologists 330 +agroclimatology 4263 agrocoenosis 453 agrodiversity 3695 agrodolce 2428 @@ -141584,6 +143882,7 @@ agrotype 832 agrotypes 959 aground 1238552 agroupment 145 +agrowaste 603 agrozootechnical 489 agrypnia 3456 agrypnocoma 174 @@ -141594,6 +143893,7 @@ aguacates 6179 aguachile 203 aguaje 3928 aguajes 775 +aguamiel 12499 aguardiente 118509 aguardientes 2066 aguayo 534 @@ -141722,8 +144022,10 @@ aidings 1109 aidless 3812 aidman 7979 aidmen 8406 +aidoru 736 aidos 14446 aids 22158441 +aie 341241 aiea 21313 aiee 3768 aieee 711 @@ -141760,6 +144062,8 @@ ailanthuses 668 ailanto 535 ailantus 8251 ailantuses 173 +ailavator 647 +ailavators 477 ailed 366326 aileron 648274 ailerons 473278 @@ -141787,6 +144091,10 @@ ailurophobic 357 aim 45874904 aim'd 31137 aimable 45899 +aimag 11017 +aimags 3685 +aimak 11985 +aimaks 6163 aimara 1293 aimaras 88 aimed 31831956 @@ -141804,6 +144112,7 @@ aimlessness 141032 aimpoint 26529 aimpoints 11307 aims 24981746 +ain 1728851 ain' 333 ain't 50824 ain'tcha 7284 @@ -141818,6 +144127,7 @@ air 426429272 airable 1287 airag 5284 airan 1715 +airation 1836 airbag 284227 airbagged 146 airbags 246841 @@ -141960,6 +144270,7 @@ airhouses 257 airier 37685 airiest 34567 airified 921 +airigh 228 airily 348799 airiness 102308 airing 1474458 @@ -142171,7 +144482,6 @@ aiya 3311 aiyah 497 aiyee 401 aiyo 778 -aizel 125 aizle 144 ajacine 547 ajaeng 840 @@ -142194,8 +144504,10 @@ ajika 160 ajingle 1535 ajinomoto 4009 ajis 1079 +ajitter 423 ajiva 3520 ajivas 238 +ajkaite 50 ajmalicine 10756 ajmaline 14500 ajoene 6604 @@ -142210,18 +144522,21 @@ ajowan 6522 ajr 15407 ajuga 9391 ajugas 994 +ajumble 3007 ajutage 8832 ajutages 5172 ajvar 1602 ajwain 3352 ajwan 616 aka 1245439 +akaakai 71 akaganeite 4971 akageneite 181 akalat 138 akalats 85 akamai 2851 akamatsu 1512 +akamiso 201 akanje 256 akanthion 405 akara 9584 @@ -142307,6 +144622,7 @@ akodontine 982 akodontines 507 akoluthic 445 akonting 667 +akosmism 358 akousma 380 akousmata 1244 akpeteshi 206 @@ -142846,6 +145162,7 @@ aldolates 546 aldolic 414 aldolization 5915 aldolizations 228 +aldolized 164 aldols 6174 aldonate 484 aldonates 806 @@ -143050,7 +145367,6 @@ alforjas 10903 alfredo 19474 alfresco 93238 alfuzosin 12145 -alfvenic 483 alga 1068830 algacidal 434 algaculture 673 @@ -143164,9 +145480,11 @@ algophagous 150 algophilia 315 algophobia 1537 algor 10938 +algorisms 10905 algorist 1304 algoristic 1313 algorists 1976 +algorithm 30438819 algorithmic 897855 algorithmical 3964 algorithmically 80646 @@ -143316,7 +145634,6 @@ alimentive 1992 aliments 118861 alimonies 3545 alimonious 163 -alimony 5527563 alims 1687 alinasal 1686 alinearity 1175 @@ -144020,6 +146337,7 @@ allobaric 816 allobars 287 allobetulin 232 allobiosis 161 +alloc 102782 allocability 57882 allocable 3386181 allocare 2449 @@ -144085,6 +146403,7 @@ allocutes 64 allocuting 412 allocution 189916 allocutions 23998 +allocutive 1235 allocycles 497 allocyclic 6152 allod 8662 @@ -144163,6 +146482,7 @@ alloimmunized 15671 alloimmunizing 66 alloisoleucine 12520 alloisomerism 345 +alloknesis 651 allolactose 8785 allolalia 175 allologous 274 @@ -144707,6 +147027,7 @@ alonely 17011 aloneness 369530 alonenesses 255 aloner 5758 +aloners 1970 alonest 215 along 410423606 alongshelf 13434 @@ -144870,6 +147191,7 @@ alpinism 10201 alpinist 19604 alpinistic 522 alpinists 18637 +alpist 168 alprazolam 202905 alprenolol 27545 alprostadil 31771 @@ -145101,6 +147423,8 @@ alulae 8829 alular 4767 alulas 429 alum 3604912 +alumbrado 5151 +alumbrados 9009 alumed 5813 alumian 338 alumic 107 @@ -145122,6 +147446,7 @@ aluminising 2013 aluminite 5922 aluminium 3524875 aluminiums 1335 +aluminiumware 83 aluminize 1388 aluminized 257569 aluminizes 141 @@ -145156,6 +147481,7 @@ aluminumized 1591 aluminumizing 45 aluminumlike 486 aluminums 16790 +aluminumware 6853 aluminyl 56 alumn 9265 alumna 261725 @@ -145244,7 +147570,6 @@ alveus 27228 alvikite 584 alvikites 284 alvimopan 4568 -alvine 75224 alvinellid 709 alvinellids 388 alvite 1317 @@ -145540,6 +147865,7 @@ ambilingualism 315 ambilinguals 190 ambilocal 4502 ambilocality 835 +ambilogy 117 ambiophonic 1100 ambiphilic 1435 ambiphilicity 333 @@ -146230,6 +148556,7 @@ aminophospholipid 5893 aminophospholipids 4272 aminophosphonate 1388 aminophosphonates 2431 +aminophyllin 12560 aminophylline 267879 aminophyllines 112 aminopimelate 265 @@ -146771,6 +149098,10 @@ amphiboliferous 137 amphibolite 609607 amphibolites 166547 amphibolitic 25965 +amphibolitization 2203 +amphibolitized 4664 +amphibolization 3240 +amphibolized 4448 amphibologia 486 amphibological 2443 amphibologically 107 @@ -146998,6 +149329,7 @@ amplexes 269 amplexicaul 23814 amplexiform 185 amplexing 1364 +amplexion 145 amplexoid 2590 amplexus 33703 ampliatio 1586 @@ -147252,9 +149584,9 @@ amyotrophia 1710 amyotrophic 394193 amyotrophies 3807 amyotrophy 61691 -amyous 165 amyrin 16418 amyrins 1500 +amyris 3226 amyss 207 amytal 190836 amytals 111 @@ -148025,6 +150357,8 @@ anchorpeople 3042 anchorperson 20913 anchorpersons 6933 anchors 3605599 +anchorsmith 1301 +anchorsmiths 570 anchorwoman 40940 anchorwomen 2865 anchory 536 @@ -148034,6 +150368,7 @@ anchoveta 53502 anchovetas 8777 anchovetta 3073 anchovettas 1064 +anchovied 257 anchovies 637576 anchovy 863263 anchovylike 237 @@ -148362,7 +150697,6 @@ anemochorous 1458 anemochory 1005 anemogram 581 anemograms 508 -anemographic 504 anemography 305 anemological 481 anemology 584 @@ -148402,7 +150736,6 @@ anencephalous 5148 anencephalus 17847 anencephaly 158156 anend 14622 -anenst 1233 anenterous 299 aneolithic 129 anephric 32537 @@ -149009,6 +151342,7 @@ anhydration 1026 anhydric 2033 anhydride 2691904 anhydrides 403255 +anhydridization 356 anhydrite 1018956 anhydrites 26483 anhydrobiosis 7446 @@ -149054,6 +151388,7 @@ anigh 31723 anights 2536 anigre 1497 anil 3300264 +anilao 54 anilazine 5445 anile 16687 anileridine 10028 @@ -149231,6 +151566,7 @@ anisakids 1449 anisaldehyde 19483 anisate 5306 anisates 122 +anisatin 843 anise 666251 aniseed 101729 aniseeds 5897 @@ -149599,10 +151935,10 @@ annulling 714478 annulment 1814180 annulments 132269 annuloaortic 4479 -annuloid 989 annuloplasties 328 annuloplasty 46622 annulose 7207 +annulosiphonate 1404 annulospiral 12887 annulotomy 2009 annuls 217854 @@ -149899,6 +152235,7 @@ ansamitocin 966 ansamitocins 669 ansamycin 7406 ansamycins 3740 +ansaphone 1141 ansate 5068 ansated 1972 ansatz 124648 @@ -149996,6 +152333,7 @@ antarthritic 663 antas 4993 antasthmatic 316 antazoline 9245 +antbed 512 antbird 8855 antbirds 16998 antdom 315 @@ -150172,6 +152510,7 @@ antepronotal 564 antepronotum 1670 antepubic 670 antepyretic 227 +anterevolutionary 1870 anteriad 35865 anteriodorsal 920 anteriodorsally 249 @@ -150502,6 +152841,7 @@ anthrone 60996 anthrones 3595 anthropeia 109 anthrophilic 466 +anthrophobia 1033 anthrophony 483 anthropic 117457 anthropical 622 @@ -151039,6 +153379,7 @@ antibreeding 77 antibribery 27085 antibromic 366 antibronchospastic 235 +antibronzing 103 antibrown 176 antibrowning 3509 antibrucellar 212 @@ -151188,6 +153529,8 @@ antichaotropic 989 anticharity 222 anticharm 1750 antichatter 316 +antichauvinism 217 +antichauvinist 511 anticheat 174 anticheating 558 antichemical 5560 @@ -151777,6 +154120,7 @@ antidromical 175 antidromically 37654 antidromous 810 antidrone 387 +antidrop 225 antidrought 4052 antidrug 255452 antidrugs 2411 @@ -151864,6 +154208,7 @@ antientropic 3707 antients 21753 antienvironment 4018 antienvironmental 15106 +antienvironmentalism 1490 antienvironmentalist 2884 antienvironmentalists 1661 antienzymatic 1740 @@ -152058,8 +154403,6 @@ antifog 7420 antifoggant 4304 antifoggants 4293 antifogging 12089 -antifogmatic 776 -antifogmatics 235 antifolate 37739 antifolates 20910 antifolding 476 @@ -152227,6 +154570,7 @@ antigout 14569 antigov 423 antigovernment 319235 antigovernmental 11125 +antigovernments 56 antigraffiti 3302 antigraft 3918 antigram 851 @@ -152549,6 +154893,7 @@ antiliberty 375 antilibidinal 6877 antilibidinous 237 antilibido 141 +antilibrary 283 antilife 8969 antilight 1238 antilimit 249 @@ -152664,6 +155009,7 @@ antimarketeer 128 antimarketeers 359 antimarketing 925 antimarriage 6991 +antimartial 305 antimarxism 143 antimasculine 1080 antimasculinist 492 @@ -152698,6 +155044,7 @@ antimechanist 785 antimechanistic 2552 antimechanists 297 antimechanization 341 +antimechanized 6042 antimedia 2560 antimedical 3038 antimedicine 962 @@ -152801,6 +155148,7 @@ antimiscegenation 49349 antimiscegenationist 215 antimiscegenist 183 antimisogynist 361 +antimisogyny 54 antimissile 174492 antimissiles 4284 antimissionaries 281 @@ -152830,6 +155178,7 @@ antimodes 1160 antimoisture 267 antimold 1903 antimolecules 299 +antimonarchal 268 antimonarchial 2023 antimonarchic 3833 antimonarchical 22862 @@ -153101,6 +155450,7 @@ antioppressive 4553 antioption 19960 antiordinance 168 antiorganic 658 +antiorganization 3728 antiorgastic 121 antiorthodox 1510 antiorthostatic 35244 @@ -153624,6 +155974,8 @@ antiquarianist 50 antiquarianizing 205 antiquarianly 112 antiquarians 293113 +antiquariat 735 +antiquariats 171 antiquaries 263592 antiquarism 711 antiquarium 2627 @@ -153822,6 +156174,7 @@ antirightist 12526 antirightists 154 antirights 591 antiriot 25155 +antirise 105 antirishons 151 antiritual 1204 antiritualism 1345 @@ -154031,6 +156384,7 @@ antiskepticism 781 antiskeptics 263 antiskid 73597 antiskidding 1723 +antiskinning 2902 antiskyrmion 177 antislaughter 246 antislave 9405 @@ -154633,6 +156987,7 @@ antiweapon 651 antiwear 57675 antiweed 510 antiwelfare 9704 +antiwestern 6413 antiwesternism 855 antiwetting 801 antiwhaling 4505 @@ -155308,6 +157663,7 @@ apigenins 175 apiin 3282 apikoros 3024 apikorsim 1939 +apikorus 668 apinch 786 apine 4263 aping 254727 @@ -155481,6 +157837,7 @@ apodeictical 1008 apodeictically 3197 apodeixis 5401 apodema 1682 +apodemal 11517 apodeme 97741 apodemes 58634 apodemic 445 @@ -155750,6 +158107,8 @@ aposporous 5761 aposporously 688 apospory 14416 apostacies 7363 +apostacize 256 +apostacized 768 apostacy 215209 apostasies 32539 apostasize 3260 @@ -156314,6 +158673,8 @@ appreciant 202 appreciatable 292 appreciate 46183880 appreciated 22305902 +appreciater 570 +appreciaters 171 appreciates 2927571 appreciatest 137 appreciateth 75 @@ -157575,6 +159936,7 @@ archiepiscopal 180846 archiepiscopate 8114 archiepiscopates 521 archies 11173 +archils 376 archilute 59 archimage 2278 archimages 223 @@ -157595,6 +159957,7 @@ archipallial 1134 archipallium 11329 archipelagic 149337 archipelago 2148881 +archipelagoed 417 archipelagoes 121789 archipelagos 102390 archiphoneme 6627 @@ -157632,6 +159995,8 @@ architectures 2730566 architecturesque 881 architeuthids 178 architeuthis 102 +architextual 322 +architextuality 592 architextural 320 architexture 1207 architextures 156 @@ -157754,6 +160119,7 @@ arciliuto 819 arcing 943572 arcings 1680 arcitumomab 1432 +arcjet 68277 arcked 931 arcking 1923 arclength 33838 @@ -157834,6 +160200,7 @@ arcweld 640 arcwelded 5333 arcwelding 12433 arcwelds 142 +arcwise 30611 ard 2642536 ardealite 303 ardeb 7393 @@ -158459,6 +160826,7 @@ armlocked 322 armlocking 53 armlocks 1355 armlong 280 +armo 10524 armodafinil 7087 armoir 2708 armoire 231145 @@ -158924,7 +161292,7 @@ arsanilates 489 arschin 400 arse 526509 p arsecheeks 185 p -arsed 31201 +arsed 31201 p arseful 122 arsehole 43048 p arseholed 490 p @@ -159013,7 +161381,7 @@ arsinate 1318 arsinates 202 arsine 206771 arsines 27505 -arsing 5047 +arsing 5047 p arsinh 386 arsinic 9578 arsinide 632 @@ -159084,7 +161452,6 @@ arter 426792 arterectomy 1236 arterenol 27735 arteria 149620 -arteriac 56 arteriae 34416 arterial 14735073 arterialisation 820 @@ -159470,6 +161837,7 @@ arundinaceous 1035 arundinoid 489 arura 3607 aruras 676 +arusha 1408 aruspex 2989 aruspice 272 aruspices 4757 @@ -159643,6 +162011,8 @@ arzoxifene 1874 as 11898421073 asRNA 2453 asRNAs 739 +asabiya 4599 +asabiyya 8442 asabiyyah 1619 asaccharolytic 4101 asaddle 713 @@ -159834,8 +162204,6 @@ ascosporogenous 2836 ascosporous 1347 ascostroma 2136 ascostromata 3915 -ascot 60317 -ascots 10387 ascovirus 1649 ascoviruses 922 ascribable 281375 @@ -160011,7 +162379,9 @@ ashtray 799936 ashtrays 320631 ashugh 979 ashughs 318 +ashwaganda 2313 ashwagandha 12373 +ashwaghanda 259 ashweed 44 ashwood 11002 ashwoods 375 @@ -160353,6 +162723,8 @@ aspiringly 4101 aspirings 30381 aspirinlike 5089 aspirins 117786 +aspiritual 8663 +aspirituality 276 aspirometer 112 aspis 25703 aspish 788 @@ -160473,6 +162845,7 @@ asscheek 1005 p asscheeks 5443 p assclown 760 p assclowns 211 p +assed 598945 p assegaai 193 assegai 39555 assegaied 1220 @@ -161115,6 +163488,7 @@ astringents 312601 astrionic 496 astrionics 3187 astro 198812 +astroarchaeological 333 astroarchaeology 1015 astroballistic 223 astroballistics 564 @@ -161557,6 +163931,7 @@ atemporal 119622 atemporality 16157 atemporally 5004 atenolol 212970 +atenteben 260 aterritorial 1328 atest 60990 atevirdine 781 @@ -161575,6 +163950,7 @@ athanogene 600 athanor 7466 athanors 632 athans 723 +athbash 1277 athecate 4367 atheised 112 atheism 1897547 @@ -161589,7 +163965,6 @@ atheize 344 atheized 393 atheizes 125 atheizing 441 -athel 5392 athelia 1449 atheling 9657 athelings 3248 @@ -161962,6 +164337,7 @@ atrypides 492 atrypids 1309 atrypoid 651 ats 304679 +atsara 365 atself 648 attB 13660 attP 17052 @@ -162153,6 +164529,7 @@ attiguous 149 attila 4145 attilas 379 attine 7993 +attines 2189 attingent 11621 attire 3724090 attired 1419730 @@ -162312,6 +164689,7 @@ attritted 1335 attritting 338 attritus 51491 attry 578 +atts 44343 attuition 698 attunable 314 attune 209241 @@ -162323,6 +164701,7 @@ attuner 167 attunes 38948 attunest 85 attuning 72392 +atuk 596 atumble 1322 atwain 3382 atween 77811 @@ -162407,6 +164786,9 @@ audially 1534 audiation 22469 audibilities 1636 audibility 271859 +audibilize 324 +audibilized 161 +audibilizing 111 audible 5571632 audibled 1061 audibleness 1638 @@ -162434,6 +164816,7 @@ audiobook 55225 audiobooks 57255 audiocast 1128 audiocasts 452 +audiocentric 309 audioconference 7522 audioconferences 4460 audioconferencing 13131 @@ -162841,6 +165224,7 @@ aurothiosulfate 586 aurothiosulphate 504 aurous 22997 aurovertin 6058 +aurox 265 auroxanthin 922 aurresku 654 aurulent 241 @@ -162954,6 +165338,7 @@ autarkies 1930 autarkist 580 autarkists 308 autarky 192967 +autecologic 676 autecological 18174 autecologically 225 autecologies 617 @@ -163259,6 +165644,7 @@ autochtonous 11227 autocidal 5891 autocide 1122 autocides 581 +autocinesis 131 autocitation 649 autoclasis 272 autoclassification 409 @@ -163493,6 +165879,10 @@ autoexcision 503 autoexplosive 131 autoexposure 22203 autoextraction 649 +autofac 1193 +autofacs 219 +autofactories 161 +autofactory 396 autofade 353 autofecundation 437 autofeedback 1999 @@ -163565,6 +165955,7 @@ autogenocide 2514 autogenous 722734 autogenously 20186 autogeny 12368 +autogeosynclinal 422 autogeosyncline 1119 autogeosynclines 540 autogestion 21181 @@ -163690,6 +166081,7 @@ autoinjection 2475 autoinjections 127 autoinjector 19619 autoinjectors 7323 +autoinoculability 537 autoinoculable 6301 autoinoculate 498 autoinoculated 781 @@ -163701,6 +166093,9 @@ autoinsufflation 199 autointegration 1991 autointoxicant 169 autointoxicants 321 +autointoxicate 45 +autointoxicated 810 +autointoxicating 206 autointoxication 149818 autointoxicative 106 autoion 435 @@ -163846,6 +166241,7 @@ automatonism 1205 automatonlike 2231 automatons 258551 automats 16336 +automechanism 207 automedication 310 automela 291 automelon 261 @@ -164024,6 +166420,8 @@ autopipette 292 autopipettes 118 autopista 9396 autopistas 2140 +autopistol 1310 +autopistols 350 autoplagiarism 519 autoplast 398 autoplastic 42756 @@ -164151,6 +166549,7 @@ autoregressions 22645 autoregressive 598976 autoregressively 734 autoregressiveness 324 +autoregressivity 205 autoregulate 11717 autoregulated 17520 autoregulates 3412 @@ -164488,6 +166887,8 @@ autozygous 1470 autumn 20544039 autumnal 1363926 autumnally 2632 +autumned 553 +autumning 120 autumnish 54 autumns 132565 autumntide 1014 @@ -164495,6 +166896,7 @@ autumntime 777 autumny 616 autunite 73967 autunites 1207 +auwai 5194 aux 3238532 auxanogram 532 auxanograms 460 @@ -164667,6 +167069,7 @@ averages 18553567 averagest 186 averaging 14842705 averagings 4517 +averah 2361 averbal 4132 averill 805 avermectin 28578 @@ -165001,6 +167404,7 @@ awesome 4011297 awesomely 98786 awesomeness 85381 awesomer 752 +awesomes 306 awesomest 1490 awest 1711 awestricken 25376 @@ -165060,6 +167464,8 @@ awninged 8857 awnings 801971 awnless 173323 awnlessness 1291 +awnlet 113 +awnlets 4921 awnlike 5814 awnry 89 awns 459160 @@ -165350,6 +167756,7 @@ ayont 13785 ayoo 398 ayr 17733 ayran 3882 +ayrant 50 ayre 120016 ayres 26920 ayries 217 @@ -165716,7 +168123,6 @@ b'ys 11566 bDNA 16246 bTB 1530 ba 2996391 -ba' 6715 baa 430607 baaa 12678 baaad 10557 @@ -165857,8 +168263,6 @@ babyfather 403 babyfathers 227 babyfied 1079 babyfying 50 -babygirl 4917 -babygirls 177 babygram 1108 babygrams 127 babygro 426 @@ -165978,6 +168382,8 @@ baches 4002 bachfisch 103 baching 8121 bachs 1348 +bachur 4770 +bachurim 3634 bacillaemia 1518 bacillar 12128 bacillariophycean 56 @@ -166013,6 +168419,7 @@ back 803647829 backable 685 backache 619937 backaches 138200 +backaching 1741 backaction 2545 backal 406 backannotation 1069 @@ -166144,6 +168551,7 @@ backdune 3315 backdunes 1161 backed 22004865 backer 528805 +backerboard 6632 backers 1203698 backest 1081 backet 9188 @@ -166366,6 +168774,8 @@ backpost 970 backposts 1658 backpressure 173880 backpressures 6902 +backprime 52 +backprimed 214 backpriming 258 backprint 436 backprinted 355 @@ -166672,6 +169082,7 @@ backwinged 675 backwinging 283 backwood 13154 backwoods 887689 +backwoodser 119 backwoodsiness 255 backwoodsman 172801 backwoodsmen 181331 @@ -166723,6 +169134,9 @@ bacteremia 966600 bacteremias 53656 bacteremic 88754 bacteria 36460691 +bacteriacidal 4894 +bacteriacide 2244 +bacteriacides 1405 bacteriae 3130 bacteriaemia 5539 bacteriaemias 239 @@ -166897,6 +169311,10 @@ badasses 9771 badassness 619 badaud 2880 badauds 3979 +badchan 1443 +badchanim 168 +badchen 1866 +badchens 167 badded 349 baddeleyite 41297 baddeleyites 173 @@ -166934,6 +169352,7 @@ badgework 221 badging 24745 badgir 685 badgirs 697 +badhan 892 badian 2901 badigeon 656 badinage 167889 @@ -166946,6 +169365,10 @@ badious 285 baditude 206 badjoe 63 badju 591 +badkhan 220 +badkhen 793 +badkhn 3425 +badkhonim 775 badla 1591 badland 47715 badlands 270018 @@ -166977,6 +169400,7 @@ badtempered 22176 baduk 987 badun 183 badware 398 +badwill 3408 bae 42714 baed 9340 baeing 80 @@ -167040,6 +169464,8 @@ bagboy 2261 bagboys 858 bagel 399728 bageled 256 +bagelries 123 +bagelry 423 bagels 366047 bagful 82991 bagfuls 8184 @@ -167120,6 +169546,7 @@ bagrooms 197 bags 23626856 bagsful 2165 bagsy 331 +bagtikan 1353 bagua 15871 baguala 437 bague 7353 @@ -167275,6 +169702,7 @@ bajillions 285 bajillionth 108 bajocchi 3300 bajocco 1723 +bajonado 2939 bajra 29957 bajree 325 bajri 2926 @@ -167333,6 +169761,7 @@ bakin' 784 baking 13679744 bakingly 557 bakings 23912 +bakingware 129 bakkie 12424 bakkies 1066 bakla 8959 @@ -167351,6 +169780,7 @@ bakufu 194599 bakufus 218 bakula 1012 bakulas 139 +balaban 1579 balabatim 483 balaboosta 259 balabos 263 @@ -167414,6 +169844,7 @@ balantidia 5504 balantidial 3963 balantidiasis 11433 balantidium 4782 +balanus 9795 balao 7582 balaphone 1195 balaphones 283 @@ -167435,7 +169866,6 @@ balboa 32615 balboas 42636 balbriggan 10214 balbriggans 3887 -balbutient 164 balconet 516 balconets 277 balconette 869 @@ -167502,6 +169932,7 @@ balefull 10395 balefullest 221 balefully 92534 balefulness 3478 +baleless 46 balenine 817 balenological 147 baler 341221 @@ -167622,6 +170053,8 @@ ballcocks 3786 ballcourt 37025 ballcourts 20540 balldom 404 +balldress 2555 +balldresses 1079 balled 647471 baller 40397 ballerina 574987 @@ -167658,7 +170091,9 @@ ballhawk 861 ballhawks 418 ballhead 5863 ballheads 839 +ballhooting 122 ballia 689 +ballibuntl 466 ballicaters 155 ballies 1017 balling 292990 @@ -167692,6 +170127,7 @@ ballistospores 3112 ballistosporic 156 ballists 2224 ballium 6504 +ballized 264 ballizing 1507 balljoint 6385 balljoints 1840 @@ -167712,6 +170148,10 @@ balloonacy 159 ballooned 306572 ballooner 3893 ballooners 1571 +balloonet 1751 +balloonets 2071 +balloonette 843 +balloonettes 747 balloonfish 1961 balloonful 296 ballooning 594651 @@ -167896,6 +170336,7 @@ bambooed 3218 bambooing 2515 bamboolike 5377 bamboos 397303 +bambooware 944 bamboowork 309 bamboozingly 248 bamboozle 65737 @@ -168338,6 +170779,8 @@ bankless 6928 banklike 6647 bankline 16040 banklines 4716 +bankman 2278 +bankmen 2533 banknote 168383 banknotes 655138 bankocracy 1045 @@ -168379,6 +170822,7 @@ banlieues 26608 banlieusard 746 banna 5838 bannable 859 +bannal 1207 bannat 552 banned 5964728 banner 7950235 @@ -168398,6 +170842,7 @@ bannermen 41888 bannerol 1621 bannerols 1636 banners 3944169 +bannerstone 23450 bannerwise 138 banneton 1542 bannetons 825 @@ -168437,6 +170882,7 @@ banquettes 106185 banquetting 19103 banquettings 737 bans 1478536 +bansalaguin 479 banshee 180790 bansheelike 934 banshees 49596 @@ -168547,6 +170993,7 @@ baraesthesiometer 222 barages 361 baragnosis 658 baragouin 1430 +barajillo 170 barakah 6237 baralyme 2941 baramin 1601 @@ -168559,6 +171006,7 @@ barani 9068 baranis 123 bararite 277 barasinga 163 +barasingh 2211 barasingha 6649 barasinghas 145 barathea 3532 @@ -168632,6 +171080,8 @@ barbecues 282086 barbecuing 98445 barbed 3183134 barbedly 110 +barbeiro 1865 +barbeiros 1606 barbel 173181 barbeled 1910 barbell 223046 @@ -168708,8 +171158,14 @@ barbourin 488 barboy 2752 barboys 2658 barbs 899860 +barbtail 147 +barbthroat 110 +barbudo 3528 +barbudos 8527 barbulate 1825 +barbulation 259 barbule 22899 +barbuled 775 barbules 104134 barbut 1190 barbute 1401 @@ -168984,6 +171440,8 @@ barling 1157 barm 73108 barma 1965 barmaid 287770 +barmaiden 179 +barmaidens 166 barmaids 69426 barman 312032 barmaster 1862 @@ -169019,6 +171477,7 @@ barnburners 6191 barndoor 18854 barndoors 10594 barned 3307 +barnes 32764 barnesite 471 barnet 5068 barnets 1129 @@ -169290,6 +171749,7 @@ barricader 602 barricaders 1402 barricades 1347933 barricading 103366 +barricadings 177 barricado 10424 barricadoed 13517 barricadoes 5367 @@ -169383,6 +171843,7 @@ bartons 1511 bartop 8278 bartops 565 barttin 831 +barunduki 122 barware 10148 barway 6612 barways 2011 @@ -169514,6 +171975,7 @@ basemap 13365 basemaps 4566 basemen 86832 basement 18734859 +basemented 607 basementful 197 basementless 23772 basementlike 456 @@ -169530,6 +171992,7 @@ basepath 3164 basepaths 10239 baseperson 2215 baseplate 265714 +baseplated 178 baseplates 36434 basepoint 24984 basepoints 7841 @@ -169982,6 +172445,7 @@ bataca 620 batacas 297 batagurid 297 batakari 633 +batanga 248 batanopride 293 batard 5253 batardeau 449 @@ -170089,8 +172553,10 @@ bathtubfuls 161 bathtubs 440443 bathtubsful 108 bathward 61 +bathware 1180 bathwater 183247 bathwaters 294 +bathwear 127 bathy 24730 bathyal 151766 bathybic 1172 @@ -170301,6 +172767,7 @@ battleline 27558 battlelines 18702 battlemage 452 battlemages 325 +battlemaster 535 battlement 190654 battlemented 116771 battlements 1037802 @@ -170313,6 +172780,7 @@ battlers 30583 battles 15228898 battleship 2374209 battleships 2427696 +battleskies 165 battlesome 628 battlespace 106729 battlespaces 1947 @@ -170378,7 +172846,9 @@ baudrick 570 baudricks 97 baudrons 912 bauds 134907 +bauer 30360 bauerenol 112 +bauers 1142 bauf 1432 baugh 28546 bauhinia 5209 @@ -170452,6 +172922,7 @@ bawn 35826 bawneen 1264 bawneens 284 bawns 1664 +bawu 1075 bay 27277926 bay'd 7801 baya 16570 @@ -170561,7 +173032,9 @@ bcc'd 224 bcm 49742 bcos 8740 bcoz 103 +bcs 10319 bcse 422 +bcus 1094 bd 1877859 bday 61732 bdays 344 @@ -170922,6 +173395,7 @@ beastily 363 beasting 1225 beastings 895 beastish 346 +beastkeepers 91 beastkind 1179 beastlier 2561 beastliest 6861 @@ -170995,9 +173469,11 @@ beatus 39100 beau 1511094 beaucoup 254354 beaucoups 999 +beaued 1076 beaufet 6010 beaufets 1188 beaufin 149 +beauing 1557 beauish 1000 beauless 362 beaupot 213 @@ -171315,6 +173791,7 @@ bedemoned 44 bedenimed 122 bedes 7976 bedesmen 9291 +bedesten 1024 bedeswoman 607 bedeswomen 391 bedevil 141332 @@ -171535,6 +174012,7 @@ bedtime 2877713 bedtimes 54238 bedtop 559 beducked 395 +bedug 1143 beduked 156 beduking 87 bedumb 48 @@ -172200,6 +174678,7 @@ behoved 151323 behoveful 5009 behovefully 85 behovely 1307 +behoven 783 behoves 224389 behoveth 41271 behoving 2887 @@ -172220,6 +174699,7 @@ beiger 341 beiges 49275 beigey 872 beiging 326 +beigish 112 beignet 11360 beignets 41960 beigy 1063 @@ -172239,6 +174719,7 @@ beings 40106255 beining 1056 beinked 289 beira 4673 +beis 45632 beisa 5719 bejabbers 4021 bejabers 2171 @@ -172624,6 +175105,7 @@ belowstairs 23062 bels 59096 belsire 260 belt 38733450 +belta 7739 belted 1301018 belter 331160 belters 6852 @@ -172726,6 +175208,7 @@ bemuddlement 339 bemuddles 309 bemuddling 621 bemuffled 377 +bemuscled 423 bemuse 57239 bemused 730661 bemusedly 30321 @@ -172970,6 +175453,7 @@ bennettites 685 benni 1437 bennie 5951 bennies 31522 +benniseed 3366 benny 23849 beno 17611 benodanil 1686 @@ -173087,6 +175571,8 @@ benzedeiras 170 benzedrine 100858 benzene 8656062 benzeneamine 1201 +benzeneazobenzene 166 +benzeneazophenol 1137 benzenediamine 2802 benzenediamines 253 benzenedicarboxylate 2163 @@ -173649,11 +176135,14 @@ bersagliere 4882 bersaglieri 10383 berseem 38573 berserk 396914 +berserked 333 berserker 60066 berserkergang 424 berserkers 24395 +berserking 1961 berserkly 854 berserkness 362 +berserko 377 berserks 8777 bertam 560 berth 3470450 @@ -174255,6 +176744,8 @@ betoqued 41 betorn 791 betoss 58 betossed 2093 +betoweled 160 +betowelled 52 betrail 49 betrap 140 betravel 41 @@ -174611,6 +177102,7 @@ bhangramuffin 70 bharal 6043 bharals 291 bharta 1254 +bhat 16799 bhatura 559 bhaturas 171 bhava 41364 @@ -174627,6 +177119,8 @@ bheesty 281 bhel 4643 bhelpuri 931 bhenchod 470 p +bher 3919 +bhers 141 bhikkhu 72665 bhikkhuni 9824 bhikkhunis 6567 @@ -174677,6 +177171,7 @@ biacromial 10973 biacuminate 287 biaffine 608 biajaca 202 +biajaiba 400 bialamicol 275 bialaphos 7744 bialate 2304 @@ -174696,6 +177191,7 @@ biamping 1217 bianalytic 1140 biandry 69 biangle 2225 +biangles 880 biangular 11832 biangulate 8213 biangulated 1601 @@ -174794,7 +177290,6 @@ bibenzimidazoles 511 bibenzyl 15001 bibenzyls 1865 bibes 1513 -bibi 38344 bibimbab 117 bibimbap 4062 bibimbop 564 @@ -174822,6 +177317,7 @@ biblicistic 2483 biblicists 8534 biblike 1543 bibliobibuli 222 +bibliocide 354 biblioclasm 917 biblioclast 1248 biblioclastic 161 @@ -175185,6 +177681,7 @@ bicycler 11845 bicyclers 17926 bicycles 3436943 bicyclette 6020 +bicyclettes 1038 bicyclic 201278 bicyclical 312 bicyclics 1321 @@ -175391,6 +177888,7 @@ bifloral 95 biflorate 128 biflorous 1012 bifluoride 47771 +bifluorides 1748 bifocal 205581 bifocaled 1811 bifocality 2863 @@ -175407,6 +177905,7 @@ bifoliolate 2882 bifolios 3629 bifolium 21574 bifonazole 2379 +bifora 1439 biforate 622 biforines 227 biforked 2216 @@ -175575,6 +178074,7 @@ bigtooth 29623 biguanide 39062 biguanides 29476 biguanidine 1349 +biguanidines 467 biguine 4136 bigun 739 biguns 879 @@ -175630,6 +178130,7 @@ bikathon 237 bikathons 117 bikaverin 1261 bike 6327590 +bikeability 970 bikeable 2249 bikeathon 833 bikeathons 587 @@ -176068,7 +178569,7 @@ bimillennial 2728 bimineralic 3648 bimini 6373 biminis 558 -bimmer 308 +bimmer 308 p bimmy 71 bimodal 795763 bimodalities 845 @@ -176239,6 +178740,7 @@ binitarianism 1416 binitarians 95 binits 4206 bink 10293 +binkie 2067 binkies 1631 binks 2670 binky 5373 @@ -176526,6 +179028,7 @@ bioceramic 12347 bioceramics 20250 bioch 2534 p biochamber 511 +biochambers 319 biochanin 10313 biochar 87475 biocharacter 901 @@ -176597,6 +179100,7 @@ biocolloid 3763 biocolloidal 1176 biocolloids 12136 biocolonial 138 +biocolonialism 1350 biocolonization 206 biocommerce 435 biocommodities 379 @@ -176637,6 +179141,7 @@ bioconjugations 115 bioconservatism 189 bioconservative 604 bioconservatives 968 +bioconstituents 319 bioconstruction 617 bioconstructions 808 biocontainment 25592 @@ -176902,6 +179407,7 @@ biofix 3006 bioflavones 183 bioflavonoid 18986 bioflavonoids 67072 +bioflick 48 biofloc 3109 bioflocculant 1278 bioflocculants 831 @@ -177061,6 +179567,7 @@ biohydrogenating 61 biohydrogenation 10437 biohydrometallurgical 902 biohydrometallurgy 1597 +bioi 6985 bioidentical 27760 bioidenticals 1623 bioidentification 232 @@ -177084,6 +179591,7 @@ bioindication 5673 bioindicative 297 bioindicator 25344 bioindicators 44254 +bioindividuality 171 bioindustrial 1685 bioindustries 1224 bioindustry 4385 @@ -177433,6 +179941,7 @@ bioparticle 2474 bioparticles 5429 biopatent 126 biopatents 277 +biopathies 2132 biopathogen 147 biopathogens 303 biopathologic 399 @@ -177543,6 +180052,7 @@ biopolymeric 5882 biopolymerization 317 biopolymers 198990 biopolysaccharide 239 +biopolysaccharides 147 biopore 457 biopores 3497 biopotencies 1559 @@ -177999,6 +180509,8 @@ biotissues 4809 biotite 2876706 biotites 81137 biotitic 40621 +biotitization 3737 +biotitized 3109 biotolerable 45 biotome 558 biotomy 253 @@ -178064,6 +180576,7 @@ bioval 225 biovar 48108 biovariability 623 biovariant 873 +biovariants 529 biovars 15009 biovector 341 biovectors 357 @@ -178164,6 +180677,7 @@ biphetamine 1195 biphobia 9896 biphobic 2430 biphonation 887 +biphonemic 1413 biphonic 1678 biphosphatase 3295 biphosphate 47313 @@ -178267,6 +180781,7 @@ biquadratically 191 biquadratics 2647 biquark 429 biquarterly 421 +biquaternary 395 biquaternion 2046 biquaternionic 459 biquaternions 2794 @@ -178500,6 +181015,7 @@ birthfamilies 1056 birthfamily 3334 birthfather 7012 birthfathers 2198 +birthfeast 117 birthhome 247 birthhouse 1288 birthing 718578 @@ -178605,6 +181121,7 @@ biscuitroot 4195 biscuitroots 585 biscuitry 362 biscuits 2875934 +biscuitware 1633 biscuity 6244 bisdemethoxycurcumin 1754 bisdesmosidic 315 @@ -178676,6 +181193,7 @@ bishopping 262 bishopric 998612 bishopricks 12500 bishoprics 457107 +bishopries 5751 bishopry 817 bishops 12594137 bishopship 231 @@ -178767,6 +181285,7 @@ bisphenol 236483 bisphenolic 1445 bisphenols 19109 bisphenyl 3326 +bisphenyls 44 bispheric 583 bisphosphatase 47754 bisphosphatases 1117 @@ -178998,6 +181517,8 @@ bitoscanate 548 bitplane 14554 bitplanes 11057 bitransgenic 2862 +bitransitive 3101 +bitransitives 299 bitrate 94559 bitrates 24250 bitrochanteric 5566 @@ -179070,6 +181591,7 @@ bittocks 93 bittorrent 1143 bitts 113826 bitty 166806 +bitubercular 189 bituberculate 8145 bitumen 2012068 bitumened 603 @@ -179214,6 +181736,7 @@ bizzy 6168 bj 822001 bk 2363103 bks 435118 +bla 196816 blaa 5459 blaas 439 blab 137067 @@ -179239,7 +181762,7 @@ blaberids 537 blabs 15082 blachang 191 black 264866912 -blackamoor 61925 +blackamoor 61925 p blackamoors 26101 blackamore 2448 blackamores 867 @@ -179778,12 +182301,14 @@ blastomeres 286656 blastomeric 1465 blastomers 1225 blastomogenic 7324 +blastomycetes 33682 blastomycetic 13803 blastomycin 13592 blastomycoses 1662 blastomycosis 284359 blastomycotic 9686 blastomylonite 7338 +blastomylonites 4269 blastophoric 385 blastophthoria 2785 blastoporal 11148 @@ -179815,6 +182340,7 @@ blastule 125 blastules 149 blastwave 3646 blastwaves 861 +blasty 2346 blat 46325 blatancies 1671 blatancy 28939 @@ -180195,6 +182721,7 @@ blik 12147 bliks 3104 blim 4477 blimbing 688 +blime 3658 blimey 17357 blimming 177 blimp 244784 @@ -180213,7 +182740,6 @@ blind 48034499 blindable 181 blindage 4504 blindages 3363 -blinde 55481 blinded 4380572 blindedly 303 blinden 4537 @@ -180376,6 +182902,7 @@ bln 51303 bloak 2232 bloaks 618 bloat 411800 +bloatable 572 bloated 1445917 bloatedly 685 bloatedness 10911 @@ -180511,6 +183038,7 @@ blogospheric 211 blogpost 1977 blogposts 1056 blogroll 6373 +blogrolling 245 blogrolls 2849 blogs 1288415 blogsite 1155 @@ -180547,6 +183075,8 @@ blondism 4580 blondly 1744 blondness 45874 blonds 107633 +blone 1015 +blones 57 bloo 44658 blood 259721454 bloodbath 262387 @@ -180654,6 +183184,7 @@ bloodthirsting 333 bloodthirsts 199 bloodthirsty 929434 bloodthirstyness 185 +bloodwater 655 bloodwit 1558 bloodwite 2365 bloodwood 7684 @@ -180666,6 +183197,7 @@ bloodying 29718 bloodyminded 9087 bloodymindedness 3017 blooey 11797 +blooie 4779 blook 18054 blooks 6825 bloom 12529183 @@ -180681,6 +183213,7 @@ bloometh 6177 bloomier 363 bloomiest 571 bloomin' 306 +bloominess 167 blooming 4622825 bloomingly 1556 bloomings 3614 @@ -180987,6 +183520,7 @@ blueshifted 23178 blueshifting 1808 blueshifts 6732 bluesier 4569 +bluesies 101 bluesiest 1359 bluesified 120 bluesily 291 @@ -180996,6 +183530,7 @@ blueslike 1426 bluesman 86118 bluesmen 61806 bluesnarfing 1778 +bluesologist 113 bluest 184405 bluestar 1792 bluestars 356 @@ -181127,6 +183662,7 @@ blurp 3685 blurps 1838 blurr 15594 blurred 5279594 +blurredly 1355 blurredness 2825 blurrer 306 blurrers 701 @@ -181148,6 +183684,7 @@ blurting 153224 blurtingly 307 blurtings 806 blurts 163994 +blus 9633 blush 4946726 blushed 2766927 blusher 41942 @@ -181186,7 +183723,6 @@ blvds 2207 bly 708649 blype 379 bm 341891 -bn 720390 bo 12677802 bo's'n 11986 bo's'ns 543 @@ -181198,6 +183734,7 @@ boa'd 3342 boa'ded 99 boa'ds 313 boab 4153 +boabs 942 boaded 591 boading 1499 boads 4946 @@ -181305,6 +183842,8 @@ boatings 2990 boatish 110 boatkeeper 2949 boatkeepers 1555 +boatlength 1145 +boatlengths 1942 boatless 5238 boatlet 200 boatlets 133 @@ -181340,6 +183879,7 @@ boatsides 193 boatsman 9652 boatsmen 10951 boatsteerer 14097 +boatsteerers 4930 boatswain 700419 boatswains 76826 boattail 72277 @@ -181369,6 +183909,7 @@ bobbed 1176264 bobber 85076 bobberies 313 bobbers 26959 +bobbes 739 bobbies 46001 bobbin 1089766 bobbinet 30640 @@ -181389,6 +183930,7 @@ bobbled 47161 bobblehead 15455 bobbleheads 5113 bobbler 562 +bobblers 364 bobbles 28262 bobbling 16143 bobbly 2362 @@ -181540,6 +184082,7 @@ bodonids 1065 bods 53839 body 456332569 bodyache 711 +bodyaches 467 bodyblock 313 bodyblocked 107 bodyboard 3597 @@ -181571,6 +184114,7 @@ bodyhood 890 bodying 78988 bodyism 1104 bodylength 2704 +bodylengths 691 bodyless 11749 bodylessness 398 bodylike 2421 @@ -181744,6 +184288,7 @@ bohereens 131 bohireen 456 bohireens 142 boho 16253 +bohort 665 bohos 1922 bohr 17351 bohrium 2024 @@ -181833,6 +184378,7 @@ bokken 8886 bokkens 173 bokmakierie 244 boko 10177 +bokola 469 bokono 968 bokonon 646 bokor 10208 @@ -182245,7 +184791,6 @@ boneens 275 bonefish 105275 bonefishes 1753 bonefishing 15428 -bonefolder 588 bonehead 59906 boneheaded 25201 boneheadedly 292 @@ -182279,6 +184824,7 @@ boneshakers 1799 boneshaking 1313 bonetta 940 bonettas 437 +boneware 365 bonework 4194 boney 76584 boneyard 57046 @@ -182399,8 +184945,8 @@ bonzes 70480 bonzo 1907 bonzos 371 boo 968716 +boo'd 712 boob 247268 -booba 1179 boobage 1348 boobed 4683 boober 163 @@ -182425,7 +184971,6 @@ booboos 3922 boobs 350365 booby 728072 boobyalla 70 -boobyish 912 boobyism 736 boobytrap 14882 boobytrapped 15597 @@ -182621,6 +185166,7 @@ bookracks 6595 bookrest 3987 bookrests 619 bookright 316 +bookrights 424 bookroll 2144 bookrolls 1124 bookroom 26177 @@ -182643,6 +185189,7 @@ bookshops 325068 bookstack 35203 bookstacks 54352 bookstaff 129 +bookstagrammers 133 bookstall 72389 bookstalls 84512 bookstand 21232 @@ -182691,6 +185238,7 @@ boomers 1132569 boometh 1327 boomie 181 boomier 1025 +boomies 169 boomiest 825 boominess 6437 booming 3363252 @@ -182836,6 +185384,7 @@ bootleg 427561 bootlegged 73681 bootlegger 323101 bootleggers 358247 +bootleggery 420 bootlegging 424870 bootlegs 38703 bootles 980 @@ -182884,6 +185433,7 @@ boottree 433 boottrees 516 bootup 24080 bootups 366 +bootwear 492 booty 2170604 bootyless 187 bootylicious 2405 @@ -182983,6 +185533,7 @@ bordarius 579 bordars 10414 bordeaux 513483 bordei 3649 +bordeis 931 bordel 11028 bordello 143809 bordelloes 1059 @@ -183167,6 +185718,7 @@ borogoves 9988 borohydride 321829 borohydrides 24430 borolane 448 +borolanes 288 borolanite 1232 borole 1785 boroles 866 @@ -183262,6 +185814,7 @@ borzoi 18239 borzois 8093 bos 232668 bos'n 34262 +bos'ns 1099 bosa 4915 bosal 8013 bosals 797 @@ -183289,6 +185842,7 @@ bosket 5275 boskets 3386 boskier 214 boskiest 214 +boskin 279 boskiness 722 bosks 4159 bosky 69289 @@ -183719,6 +186273,7 @@ bouncer 321324 bouncers 127323 bounces 733367 bounceth 173 +bounches 672 bouncier 6094 bounciest 2027 bouncily 2605 @@ -183876,6 +186431,7 @@ bovids 40364 boviform 193 bovine 6319086 bovinely 2059 +bovineness 114 bovines 117385 bovinity 1668 bovinized 63 @@ -183982,6 +186538,7 @@ bowlsful 999 bowmaking 4376 bowman 147102 bowmanship 2469 +bowmaster 161 bowmen 259261 bownds 3812 bowned 440 @@ -184195,6 +186752,7 @@ bpdc 7930 bpm 384405 bpp 47802 bps 811171 +br 1484681 br'er 1050 bra 1909052 braai 10249 @@ -184283,6 +186841,7 @@ brachos 2775 brachot 2904 brachs 2149 brachy 34678 +brachyaxis 838 brachyblast 2217 brachyblasts 4408 brachycalyx 2493 @@ -184451,6 +187010,7 @@ bradydysrhythmia 1719 bradydysrhythmias 6715 bradygastria 1967 bradyglossia 199 +bradying 99 bradykinesia 103418 bradykinesias 343 bradykinesis 1717 @@ -184921,6 +187481,7 @@ brassfounding 1075 brassic 1334 brassica 59079 brassicaceous 1841 +brassicae 218094 brassicas 37475 brassicasterol 4925 brassidate 574 @@ -185094,6 +187655,7 @@ brazils 3010 brazilwood 34430 brazilwoods 249 brazing 1748969 +brazy 180 brazzein 1215 brb 4377 breach 35568644 @@ -185204,6 +187766,7 @@ breakee 588 breaker 5550605 breakerless 12094 breakers 4734705 +breakes 15212 breakest 13197 breaketh 116472 breakeven 593520 @@ -185596,6 +188159,7 @@ brezinaite 291 briakinumab 290 brian 66242 brianite 200 +brians 1697 briar 408749 briarane 463 briarberry 171 @@ -185636,6 +188200,7 @@ brickclay 1297 brickclays 318 brickcoloured 411 brickdust 21128 +brickearth 3396 bricked 237381 bricken 879 bricker 2894 @@ -185750,6 +188315,7 @@ bridgeless 31241 bridgelike 9744 bridgeline 384 bridgemaker 817 +bridgemakers 405 bridgeness 177 bridger 10430 bridgers 9276 @@ -185826,8 +188392,6 @@ brigaded 76364 brigader 2096 brigaders 2901 brigades 3623791 -brigadier 2973406 -brigadiers 165181 brigadiership 4686 brigadierships 581 brigading 7602 @@ -185956,6 +188520,7 @@ brinjal 23062 brinjall 132 brinjalls 325 brinjals 3559 +brinjaree 287 brinjarries 598 brink 3985954 brinkman 1391 @@ -186044,6 +188609,7 @@ bristols 24772 brisure 3282 brisures 1626 brit 78407 +britch 11611 britchen 1844 britchens 156 britches 266938 @@ -186130,6 +188696,7 @@ broadest 4824684 broadhead 43950 broadheads 27497 broadhorn 5169 +broadhorns 5153 broadish 15708 broadleaf 672140 broadleafs 7976 @@ -186206,6 +188773,7 @@ broccolini 11133 broccolis 2810 broccolo 1015 broch 28597 +brocha 3204 brochantite 22605 broched 1168 broches 6184 @@ -186214,6 +188782,7 @@ brochettes 15232 brochi 3213 brochidodromous 7156 broching 223 +brochos 1162 brochs 10477 brochure 8856962 brochures 3449476 @@ -186320,6 +188889,7 @@ brokership 2218 brokerships 143 brokes 10134 brokest 1736 +broket 794 brokets 269 broking 60481 brolga 2222 @@ -186482,9 +189052,12 @@ bromogelatin 123 bromogelatine 257 bromohydrin 14883 bromohydrins 4073 +bromoil 30206 +bromoils 2623 bromoimide 255 bromoimides 263 bromoindole 1479 +bromoindoles 301 bromoiodized 252 bromoiodomethane 99 bromoisatin 593 @@ -186492,6 +189065,7 @@ bromoketone 5460 bromoketones 3224 bromol 1005 bromolactone 1644 +bromolactones 254 bromolysis 151 bromomethane 12487 bromomethanes 1038 @@ -186514,6 +189088,7 @@ bromopropylate 1152 bromopyridine 8155 bromopyridines 912 bromopyrrole 815 +bromopyrroles 289 bromopyruvate 4124 bromos 3834 bromosuccinimide 43929 @@ -186645,6 +189220,7 @@ bronchopneumonial 44 bronchopneumonias 10340 bronchopneumonic 22344 bronchopneumonitis 777 +bronchopneumopathies 1335 bronchopneumopathy 1881 bronchoprotection 1403 bronchoprotective 2426 @@ -187074,6 +189650,7 @@ brumes 6322 brummagem 10085 brummagems 144 brumous 2279 +brunatre 372 brunch 859512 brunched 1410 bruncheon 806 @@ -187103,6 +189680,7 @@ brunisols 247 brunneous 4108 brunnera 1050 brunneras 125 +brunnescent 1330 brunoise 6539 brunoised 285 brunost 236 @@ -187185,6 +189763,7 @@ brusquest 581 brusting 583 brustle 532 brustled 347 +brustles 930 brustling 460 brusts 543 brut 82033 @@ -187248,6 +189827,7 @@ bruxist 1483 bruxistic 181 bruxists 1412 bruxomania 1239 +bruz 500 bryaceous 535 bryndza 760 bryodin 90 @@ -187665,6 +190245,7 @@ bufanolides 276 bufexamac 847 buff 4732429 buffa 121602 +buffability 1945 buffable 4582 buffalo 7759307 buffaloberries 1883 @@ -187789,7 +190370,7 @@ buggerer 1697 buggerers 729 buggeress 94 buggeries 534 -buggering 20545 +buggering 20545 p buggerings 135 buggers 142266 buggery 77998 @@ -187979,6 +190560,7 @@ bulimorexia 260 bulimulid 834 bulimulids 547 bulimy 2803 +bulin 4571 bulinid 683 bulk 51425698 bulkage 1148 @@ -188033,6 +190615,8 @@ bulldoggedness 611 bulldogger 5505 bulldoggers 1670 bulldogging 22404 +bulldoggish 2301 +bulldoggishly 119 bulldoggy 638 bulldogs 102522 bulldozable 41 @@ -188219,6 +190803,7 @@ bultows 2555 bults 775 bulul 909 bulward 250 +bulwards 107 bulwark 2101742 bulwarked 37653 bulwarking 6445 @@ -188229,6 +190814,7 @@ bumbarrels 95 bumbasted 853 bumbasting 359 bumbee 370 +bumbees 447 bumbershoot 5286 bumbershoots 1427 bumble 308488 @@ -188257,6 +190843,7 @@ bumboats 11325 bumboo 354 bumboy 716 p bumboys 224 p +bumbum 1380 bumetanide 77594 bumfit 364 bumfluff 260 @@ -188410,7 +190997,8 @@ bungees 5667 bunger 3386 bungers 372 bunggul 153 -bunghole 61407 +bunghole 61407 p +bungholed 135 p bungholes 7219 bungie 3504 bungies 487 @@ -188493,6 +191081,7 @@ bunniahs 492 bunnias 997 bunnies 292794 bunning 2327 +bunnock 281 bunns 1511 bunny 691943 bunnyhopping 325 @@ -188616,6 +191205,7 @@ burdizzo 1508 burdizzos 339 burdock 204735 burdocks 28976 +burdon 12831 burdons 1941 burds 3979 bure 36841 @@ -188939,6 +191529,7 @@ burriest 60 burring 123562 burrish 122 burrita 324 +burritas 165 burrito 167431 burritoed 60 burritolike 49 @@ -189054,8 +191645,6 @@ buscon 2136 bused 297955 buserelin 22774 buses 11578903 -busfare 5237 -busfares 1055 busful 1798 busfuls 179 busgirl 2418 @@ -189204,6 +191793,8 @@ businesswoman 296378 businesswomen 107521 businessy 2233 busing 1559026 +busk 86042 +busked 10585 busker 21508 buskers 26277 buskin 66469 @@ -189719,6 +192310,8 @@ butyrylcholinesterase 32681 butyrylcholinesterases 1008 butyrylthiocholine 4477 buuut 194 +buvette 4270 +buvettes 1065 buwang 194 buxina 183 buxine 1362 @@ -189740,6 +192333,8 @@ buydowns 18626 buyed 5987 buyer 32943060 buyers 22465374 +buyership 1929 +buyerships 175 buyest 4885 buyeth 24081 buying 44127800 @@ -189813,6 +192408,7 @@ bwoy 9416 bwoys 695 by 11730175103 by'r 10055 +bya 316712 byakangelicin 196 byard 671 bybidder 311 @@ -189872,6 +192468,7 @@ bylini 1294 bylining 450 byliny 35654 bymatter 179 +bymeby 2097 bymovirus 176 bymoviruses 238 byname 71256 @@ -189907,6 +192504,8 @@ bys 185098 byshops 907 bysitter 229 bysitters 222 +bysmalith 5100 +bysmaliths 2516 byspeech 72 byssaceous 82 byssal 86766 @@ -189934,6 +192533,7 @@ bytecode 94059 bytecoded 309 bytecodes 28545 byter 3938 +byters 2956 bytes 4770884 bytestring 899 bytestrings 459 @@ -190009,6 +192609,8 @@ cabalistic 224620 cabalistical 13426 cabalistically 3578 cabalists 24645 +caballada 10970 +caballadas 790 caballed 6720 caballer 1041 caballeria 23906 @@ -190036,6 +192638,8 @@ cabarets 304447 cabarettist 341 cabarettists 155 cabas 2846 +cabasa 3833 +cabasas 236 cabasset 1854 cabassets 337 cabaya 528 @@ -190259,6 +192863,7 @@ caciques 320056 caciqueship 880 caciqueships 365 caciquism 4868 +caciquismo 18928 cack 18057 cacked 1599 cackerel 111 @@ -190269,7 +192874,6 @@ cackle 358005 cackleberries 760 cackleberry 380 cackled 324223 -cackler 4120 cacklers 4785 cackles 85857 cackleth 161 @@ -190469,6 +193073,8 @@ cadr 7873 cadralazine 413 cadrans 821 cadre 2306806 +cadreman 2513 +cadremen 5660 cadres 3729206 cadreship 239 cads 60957 @@ -190482,7 +193088,6 @@ caducibranchs 143 caducity 12409 caducous 153600 cadwelding 1403 -cady 10617 caeca 206243 caecal 144438 caecally 341 @@ -190505,6 +193110,8 @@ caenagnathid 359 caenagnathids 497 caenid 427 caenids 175 +caenobia 109 +caenobium 275 caenogastropod 1513 caenogastropods 3093 caenogenesis 1077 @@ -190565,6 +193172,7 @@ cafetoria 211 cafetorium 11092 cafetoriums 1022 caff 38159 +caffa 1264 caffearine 233 caffeate 3545 caffeates 191 @@ -190582,10 +193190,12 @@ caffeinic 705 caffeinism 9201 caffeins 283 caffeism 199 +caffeol 4597 caffeoyl 7054 caffeoylquinic 5395 caffers 153 p caffiso 200 +caffoy 278 caffres 274 p caffs 3985 cafila 1432 @@ -190655,6 +193265,7 @@ cahoun 238 cahow 11260 cahows 3031 cahs 3215 +caiarara 151 caid 48358 caids 14502 cailcedra 303 @@ -190675,6 +193286,7 @@ cain 94377 cain't 230707 caingin 3371 caingins 2407 +cainism 235 cainito 5017 cainophobia 270 cainotophobia 313 @@ -190703,6 +193315,7 @@ cajan 38941 cajans 224 cajaput 1476 cajeput 27463 +cajeputene 351 cajeputol 476 cajolable 142 cajole 396697 @@ -190766,6 +193379,7 @@ cakra 41362 cakras 14845 cakravartin 13182 cakravartins 1029 +caks 2841 caky 2283 cal 8359588 calaban 89 @@ -191002,8 +193616,10 @@ calcinoses 376 calcinosis 105556 calcinotic 438 calcinuria 638 +calciocarnotite 81 calcioferrite 406 calciol 464 +calciosamarskite 244 calciosome 842 calciosomes 1667 calciostat 345 @@ -191110,6 +193726,7 @@ calculous 137958 calculus 7221529 calculuses 3221 calcutta 11174 +calcuttas 897 calcyclin 3591 caldarchaeol 573 caldaria 3528 @@ -191123,6 +193740,7 @@ caldesmon 31198 caldron 362417 caldrons 96993 cale 116038 +calean 426 calebashes 209 caledonite 3610 calefaction 5132 @@ -191176,6 +193794,7 @@ calenture 15665 calentured 455 calentures 4407 caleosin 401 +cales 21831 calesa 9145 calesas 3538 calescence 1711 @@ -191247,6 +193866,9 @@ calicular 23427 caliculate 920 caliculi 444 caliculus 1977 +calid 3909 +calidaria 466 +calidarium 7230 calidrid 129 caliduct 278 caliducts 684 @@ -191344,6 +193966,7 @@ calli 158068 callianassid 3567 callianassids 1651 calliandra 3357 +callibogus 110 callicarpa 5938 callicarpas 195 callichthyid 638 @@ -191490,6 +194113,7 @@ caloric 2990430 calorically 48538 caloricists 296 caloricity 3370 +calorics 33737 calorieless 205 calories 9763257 calorifacient 3997 @@ -191613,6 +194237,9 @@ calumnied 1936 calumnies 580684 calumnious 119481 calumniously 8329 +calumnize 195 +calumnized 274 +calumnizing 118 calumny 1003132 calung 1948 calusterone 2398 @@ -191758,6 +194385,7 @@ cambiform 3218 cambio 121813 cambion 3825 cambions 537 +cambios 37764 cambism 159 cambisol 1246 cambisols 1766 @@ -191833,6 +194461,7 @@ camelpox 3712 camelry 3043 camels 3134465 camelshair 1329 +camelteers 179 camelthorn 8038 camelthorns 137 cameltoe 194 @@ -191879,6 +194508,7 @@ camgirl 796 camgirls 804 cami 23548 camia 781 +camias 308 camiknickers 1730 caming 6376 caminite 173 @@ -192009,6 +194639,8 @@ camphorated 143923 camphorates 1373 camphoric 34418 camphorin 108 +camphorized 571 +camphorizing 173 camphorquinone 6748 camphors 16128 camphorsulfonate 5058 @@ -192080,6 +194712,7 @@ camptothecin 79647 camptothecine 927 camptothecins 6724 camptown 7246 +camptowns 3204 campus 31758955 campused 2618 campuses 4756739 @@ -192104,6 +194737,8 @@ cams 1634997 camsal 568 camshaft 983973 camshafts 153242 +camsite 63 +camsites 177 camstairy 113 camstone 106 camsylate 6247 @@ -192193,6 +194828,8 @@ canatoxin 348 canavalin 4856 canavanase 143 canavanine 47121 +canawler 910 +canawlers 2598 cancan 59713 cancanned 86 cancanning 140 @@ -192557,6 +195194,7 @@ cannabis 1682498 cannabislike 61 cannabism 673 cannabivarin 189 +cannable 732 cannabutter 1472 cannakin 330 cannas 79198 @@ -192573,6 +195211,8 @@ canner 595469 canneries 1352093 canners 1029733 cannery 1677548 +canneryman 2041 +cannerymen 5971 cannest 487 cannet 9945 cannibal 659198 @@ -192607,6 +195247,7 @@ cannisters 53690 cannit 864 cannizzarite 521 cannoli 47760 +cannolicchi 253 cannolis 7335 cannolo 970 cannon 10762564 @@ -192785,6 +195426,9 @@ cantel 4310 cantellation 642 cantellations 111 cantelope 4732 +cantelopes 5653 +canteloupe 17636 +canteloupes 17283 cantels 1198 cantenna 801 cantennas 223 @@ -192975,6 +195619,7 @@ canyonlands 20576 canyonlike 11894 canyons 3019594 canyonside 2470 +canyonsides 2443 canzona 35552 canzonas 21757 canzone 135350 @@ -193101,6 +195746,7 @@ capesize 789 capeskin 7043 capeskins 420 capette 334 +capettes 447 capeweed 2590 capewise 205 capework 2404 @@ -193127,6 +195773,7 @@ capillament 262 capillaments 663 capillarectasia 181 capillariasis 11810 +capillaric 1390 capillarid 1881 capillarids 1901 capillaries 5168474 @@ -193247,6 +195894,8 @@ capitulations 197780 capitulator 2899 capitulators 8767 capitulatory 46328 +capitule 1157 +capitules 894 capitulescence 4712 capitulescences 1357 capituliform 1909 @@ -193261,6 +195910,7 @@ caplets 54245 caplike 16957 caplin 20000 capline 1942 +caplines 287 capling 433 caplins 742 caplock 3959 @@ -193305,6 +195955,7 @@ caponed 617 caponet 436 caponets 218 caponette 3594 +caponettes 5638 caponier 2949 caponiere 1921 caponieres 1508 @@ -193356,6 +196007,7 @@ capping 1753173 cappings 125741 cappo 1586 cappos 190 +capps 3784 cappucci 479 cappuccini 1742 cappuccino 252084 @@ -193530,6 +196182,7 @@ capsulopalpebral 7853 capsuloparietal 444 capsuloplasty 2120 capsulorhexis 10915 +capsulorrhaphies 437 capsulorrhaphy 20633 capsulorrhexis 11174 capsulotendinous 323 @@ -193719,6 +196372,7 @@ caramelly 3434 caramels 149984 caramiphen 6883 carana 4051 +caranas 263 carancha 296 carancho 2181 caranchos 1483 @@ -193747,6 +196401,7 @@ carapax 68910 carapid 869 carapids 965 carapo 6583 +carapos 42 caraps 260 carat 750764 caratage 1925 @@ -194007,6 +196662,7 @@ carbomers 1597 carbometallation 2135 carbometallations 225 carbometer 2494 +carbometers 185 carbomethoxy 32989 carbomethoxyl 3291 carbomonoxyhemoglobin 115 @@ -194112,6 +196768,7 @@ carbophos 3899 carboplatin 255018 carboplatinum 2065 carbopol 4523 +carbopols 137 carboprost 7285 carboquone 513 carbora 45 @@ -194234,6 +196891,7 @@ carboxysome 3121 carboxysomes 6025 carboxyterminal 31680 carboxyterminally 168 +carboxytetramethylrhodamine 977 carboxyvinyl 2534 carboy 169805 carboys 268192 @@ -194282,6 +196940,7 @@ carburizations 406 carburize 22580 carburized 261694 carburizer 14424 +carburizers 8987 carburizes 3207 carburizing 500043 carbutamide 13026 @@ -194385,6 +197044,7 @@ cardboardy 3410 cardcase 10514 cardcases 10376 cardcastle 175 +cardcastles 130 cardeck 152 cardecu 717 cardecue 538 @@ -194762,6 +197422,7 @@ carelessness 5514609 carelessnesses 5972 careline 215 carelines 87 +carena 6600 carenes 1464 carenum 287 carer 146255 @@ -194868,6 +197529,7 @@ caricaturist 200925 caricaturistic 1423 caricaturists 78610 caricaturization 2365 +caricaturizations 331 caricaturize 1823 caricaturized 5806 caricaturizes 717 @@ -194885,6 +197547,7 @@ carignan 1542 carillon 233222 carilloned 121 carilloneur 3176 +carilloneurs 781 carillonic 1384 carilloning 61 carillonist 767 @@ -194996,6 +197659,7 @@ carmelized 6650 carmelizes 683 carmelizing 835 carmellose 618 +carmels 1061 carminate 5535 carminated 742 carminates 379 @@ -195055,6 +197719,7 @@ carnationists 428 carnations 889519 carnauba 129157 carnaubas 151 +carnavals 833 carnegieite 11727 carnelian 205338 carnelians 16979 @@ -195227,6 +197892,7 @@ carpal 1452901 carpale 5224 carpalia 4659 carpals 88242 +carpectomies 185 carpectomy 11120 carpel 277894 carpellary 42457 @@ -195683,6 +198349,7 @@ carunculation 193 carunculations 239 carunculous 192 carus 15643 +carvability 649 carvable 2678 carvacrol 43551 carvacryl 472 @@ -196270,6 +198937,7 @@ cataclysms 167462 catacomb 179760 catacombic 332 catacombs 642104 +catacorner 409 catacosmesis 125 catacoustic 369 catacoustics 415 @@ -196385,6 +199053,7 @@ catamorphic 282 catamorphism 759 catamorphisms 497 catamountain 1071 +catamountains 101 catamounts 22028 catanionic 2285 catapan 1358 @@ -196950,6 +199619,7 @@ catlover 433 catlovers 537 catloving 335 catly 2441 +catma 357 catmeat 482 catmint 21028 catmints 1592 @@ -197079,6 +199749,8 @@ catwise 659 catwoman 1527 catwomen 342 catwort 153 +catydid 477 +catydids 443 catywampus 48 caubeen 4836 caubeens 669 @@ -197461,6 +200133,7 @@ cavernosal 28514 cavernositis 1730 cavernosography 7434 cavernosometry 4516 +cavernostomies 223 cavernostomy 3273 cavernous 1985355 cavernously 9832 @@ -197577,6 +200250,8 @@ caxiri 1324 caxixi 1485 caxixis 54 cay 253392 +cayak 187 +cayaks 117 cayenned 316 cayes 12917 cayeute 318 @@ -197672,6 +200347,7 @@ cecitis 5195 cecity 3431 cecocentral 6311 cecocolic 6517 +cecopexy 2623 cecostomies 897 cecostomy 43195 cecotropes 1104 @@ -197857,6 +200533,7 @@ celebutards 158 p celecoxib 99814 celemin 548 celemines 602 +celempung 1491 celeration 42692 celeriac 62782 celeriacs 462 @@ -198043,6 +200720,7 @@ cellulolytic 122800 cellulolytics 458 cellulomonads 311 cellulose 10305044 +celluloselike 1112 celluloses 150979 cellulosic 870537 cellulosics 68703 @@ -198693,6 +201371,7 @@ cephalhematomas 3007 cephalhematomata 452 cephalic 1589181 cephalically 17863 +cephalick 371 cephalin 179197 cephaline 4011 cephalines 95 @@ -198748,6 +201427,7 @@ cephalons 2921 cephalont 1925 cephalonts 1161 cephalopagus 1268 +cephalopathies 218 cephalopathy 2936 cephalopedal 864 cephalopelvic 40747 @@ -198827,6 +201507,7 @@ ceraceous 4023 ceractinomorph 300 cerago 53 ceramah 884 +ceramahs 194 ceramal 6486 ceramals 4885 cerambycid 21832 @@ -199460,7 +202141,6 @@ cezve 531 cfDNA 6885 cfg 18285 cfgs 122 -cgs 194791 ch 52489675 cha 1193497 cha'm 349 @@ -199492,6 +202172,7 @@ chachacha 1919 chachachas 101 chachalaca 11573 chachalacas 8993 +chacham 9190 chachas 870 chachka 174 chachkas 482 @@ -199514,6 +202195,7 @@ chaconines 127 chaconne 47210 chaconnes 8208 chacos 1854 +chacruna 1197 chactids 163 chad 89258 chadacryst 322 @@ -199622,6 +202304,7 @@ chagomas 584 chagreen 884 chagrin 1694930 chagrined 634285 +chagrines 191 chagrining 2134 chagrinned 8635 chagrinning 238 @@ -199860,6 +202543,7 @@ chalicothere 3511 chalicotheres 8916 chalimi 334 chalimus 6224 +chalitzah 15222 chalk 6388319 chalkboard 868558 chalkboards 95529 @@ -199969,6 +202653,7 @@ chambersite 250 chamberslides 227 chamberstick 1547 chambersticks 709 +chamberware 156 chamberwoman 1316 chamberwomen 692 chambira 3279 @@ -200011,6 +202696,7 @@ chamise 71839 chamiso 10358 chamisos 150 chamlets 297 +chamma 1253 chammy 1222 chamoe 48 chamois 714901 @@ -200175,6 +202861,7 @@ chandlering 2863 chandlers 95474 chandlery 87205 chandoo 2985 +chandu 8007 chanfrin 601 chanfron 1657 chanfrons 520 @@ -200610,6 +203297,7 @@ charburgers 173 charcloth 417 charcoal 10490290 charcoaled 17612 +charcoalified 853 charcoaling 5563 charcoalization 661 charcoalized 357 @@ -200813,6 +203501,7 @@ charreada 7654 charreadas 3459 charred 2205033 charrer 2927 +charrers 310 charres 2129 charrets 502 charrette 52754 @@ -200829,6 +203518,7 @@ charset 36481 charsets 2816 charshaf 1491 charshafs 269 +charstring 1608 chart 44693833 chartable 5833 chartaceous 118221 @@ -200857,6 +203547,7 @@ charterparties 7427 charterparty 67285 charters 7014289 charthouse 13032 +charthouses 213 charticle 213 charticles 252 charting 1837715 @@ -201071,8 +203762,12 @@ chattis 516 chatty 543535 chaturanga 4862 chatwood 163 +chatzos 505 +chatzot 186 chaudfroid 5005 chaudfroids 345 +chaudhari 1190 +chaudharis 480 chaudhuri 1624 chaudhuris 168 chaudin 304 @@ -201153,6 +203848,7 @@ chavish 67 chavismo 2494 chavrusa 1805 chavrusas 240 +chavruta 674 chavs 2800 p chavvy 456 chaw 119023 @@ -201186,11 +203882,13 @@ chays 1225 chazan 13660 chazanim 1104 chazans 221 +chazanut 538 chazeret 439 chazuke 601 chazzan 16073 chazzanim 2605 chazzans 107 +chazzanut 406 chazzen 613 chazzer 692 chazzerai 194 @@ -201234,7 +203932,9 @@ cheated 2956285 cheatee 785 cheatees 187 cheater 192587 +cheateries 1221 cheaters 199830 +cheatery 6629 cheatest 777 cheateth 1592 cheatgrass 160639 @@ -201396,7 +204096,9 @@ cheekers 510 cheekes 30483 cheekful 1761 cheekfuls 424 +cheekie 185 cheekier 2994 +cheekies 171 cheekiest 4866 cheekily 50131 cheekiness 16687 @@ -202085,6 +204787,7 @@ chenangos 99 chenar 4757 chenars 1520 chenco 322 +chenda 445 chenevixite 685 cheng 346958 chengguan 813 @@ -202111,7 +204814,6 @@ chenopods 18892 cheongsam 15075 cheongsams 3813 chequable 1064 -cheque 1063131 chequebook 12188 chequebooks 1881 chequeen 154 @@ -202174,6 +204876,7 @@ cheroot 135233 cheroots 122824 cherophobia 481 cherried 2650 +cherrier 323 cherries 4382263 cherriest 352 cherry 8073254 @@ -202279,6 +204982,7 @@ chetah 4645 chetahs 1011 chetak 395 chete 4640 +chetes 3601 cheth 3127 chetnik 7225 chetniks 13484 @@ -202454,6 +205158,8 @@ chichi 40601 chichis 2220 chichling 148 chick 5764836 +chick'n 2060 +chick'ns 612 chickabiddies 1700 chickabiddy 2721 chickadee 260155 @@ -202554,6 +205260,7 @@ chiefess 22334 chiefesses 5706 chiefest 469035 chiefhood 988 +chiefie 260 chiefing 1284 chiefless 5240 chiefliest 1012 @@ -202698,6 +205405,7 @@ childminder 8060 childminders 6686 childminding 4339 childminds 179 +childness 6223 childproof 55493 childproofed 4427 childproofing 11682 @@ -202793,6 +205501,7 @@ chillproof 1610 chillproofed 478 chillproofing 5224 chillroom 2163 +chillrooms 523 chills 2982153 chillsome 464 chillu 110 @@ -202819,6 +205528,7 @@ chilte 1049 chiltepe 229 chiltepin 2129 chiltepine 184 +chiltepines 1558 chiltepins 866 chilth 264 chilver 422 @@ -202959,16 +205669,17 @@ chinchillid 231 chinchillids 582 chinchin 1725 chinchona 11475 +chinchonas 212 chinchweed 693 chinchy 2193 chincona 2174 -chincough 2299 chincy 242 chindee 340 chindi 7082 chindis 444 chine 846429 chinela 610 +chinelas 1745 chines 340087 chinfest 608 chinful 291 @@ -202994,6 +205705,7 @@ chinkaras 127 chinked 119449 chinker 451 chinkerinchee 141 +chinkers 515 chinkie 166 p chinkies 231 p chinking 112212 @@ -203031,6 +205743,7 @@ chinovnik 6722 chinovniks 3138 chinovose 206 chinpiece 1317 +chinpieces 123 chinquapin 81576 chinquapins 16551 chinrest 5622 @@ -203065,6 +205778,7 @@ chionodoxas 2827 chionophile 66 chionophiles 169 chionophilous 526 +chionophobes 141 chionophobia 281 chionophobous 139 chioppine 185 @@ -203146,6 +205860,7 @@ chirches 3952 chiretta 4629 chirimen 2613 chirimia 5984 +chirimias 2342 chirimoya 9981 chirimoyas 6284 chirinabe 142 @@ -203185,6 +205900,7 @@ chiromantical 161 chiromantist 1190 chiromantists 287 chiromegaly 279 +chironian 49 chironomia 427 chironomic 1293 chironomid 120346 @@ -203449,6 +206165,7 @@ chloasmata 1165 chlodronate 166 chlophedianol 2678 chloracetamide 1887 +chloracetamides 279 chloracetic 20104 chloracne 91079 chloracnegen 325 @@ -203597,6 +206314,7 @@ chlorinous 11250 chlorins 22403 chloriodic 652 chloriodide 4977 +chloriodides 199 chloriodine 258 chlorion 1491 chlorions 389 @@ -203648,6 +206366,7 @@ chloroaluminates 4515 chloroamide 3073 chloroamides 2121 chloroamine 5292 +chloroamines 5426 chloroamphenicol 2642 chloroanaemia 600 chloroaniline 62587 @@ -203659,6 +206378,7 @@ chloroarenes 900 chloroaromatic 3611 chloroaromatics 2118 chloroaurate 5037 +chloroaurates 920 chloroauric 5527 chloroazodin 2702 chlorobactene 626 @@ -203710,6 +206430,7 @@ chlorocyclopentyl 93 chlorocyclopropyl 445 chlorodeoxyadenosine 8167 chlorodeoxyuridine 885 +chlorodibromomethane 5798 chlorodifluoromethane 11971 chlorodimethylphenylsilane 255 chlorodimethylsilane 1442 @@ -203766,6 +206487,7 @@ chlorohydrolase 903 chloroid 755 chloroindazole 406 chloroindole 1772 +chloroindoles 141 chloroiodide 4410 chloroiodides 533 chloroiodomethane 394 @@ -203806,11 +206528,13 @@ chloronema 3149 chloronemal 789 chloronemata 1256 chloronitrile 736 +chloronitriles 477 chloronitrobenzene 14906 chloronitrobenzenes 3639 chloronium 4652 chloropal 3715 chloropalladate 1500 +chloropalladates 181 chloropercha 7184 chloroperlid 224 chloroperoxidase 13796 @@ -203928,6 +206652,7 @@ chlorosulfite 3083 chlorosulfites 1253 chlorosulfolipids 411 chlorosulfonate 2332 +chlorosulfonates 453 chlorosulfonation 5089 chlorosulfonic 50318 chlorosulfonyl 4681 @@ -203969,6 +206694,7 @@ chloroxylenol 6409 chloroxylenols 211 chloroxynil 198 chlorozincate 783 +chlorozincates 184 chlorozotocin 15329 chlorphenamidine 1648 chlorphenamine 1100 @@ -203985,6 +206711,7 @@ chlorpromazine 1058499 chlorpromazines 471 chlorpropamide 141404 chlorpropham 25225 +chlorprophenpyridamine 3793 chlorprothixene 24715 chlorpyrifos 243275 chlorpyriphos 3980 @@ -204050,6 +206777,7 @@ chockers 1267 chockie 310 chockies 252 chocking 40440 +chocklit 542 chocks 264820 chockstone 10357 chockstones 3751 @@ -204062,6 +206790,7 @@ chocolate 13495362 chocolated 6084 chocolateless 126 chocolatelike 1025 +chocolately 1417 chocolateness 225 chocolateries 301 chocolates 939269 @@ -204113,6 +206842,8 @@ choicy 2682 choil 1531 choils 127 choir 8182586 +choirbook 12236 +choirbooks 11037 choirboy 72627 choirboyish 46 choirboys 58341 @@ -204213,6 +206944,7 @@ cholangiographic 12646 cholangiography 204002 cholangiohepatitis 14233 cholangiohepatoma 727 +cholangiohepatomas 280 cholangiojejunostomy 1658 cholangiolar 4021 cholangiole 980 @@ -204259,9 +206991,11 @@ cholecystitis 836423 cholecystocentesis 850 cholecystocolonic 756 cholecystoduodenal 4571 +cholecystoduodenostomies 131 cholecystoduodenostomy 5704 cholecystoenteric 2323 cholecystoenterostomy 2045 +cholecystogastrostomies 173 cholecystogastrostomy 5750 cholecystogram 31328 cholecystograms 11418 @@ -204276,6 +207010,7 @@ cholecystokinins 891 cholecystolithiasis 3625 cholecystolithotripsy 233 cholecystomy 557 +cholecystopathies 332 cholecystopathy 1559 cholecystosis 1137 cholecystosonography 1105 @@ -204307,7 +207042,9 @@ choledochorrhaphy 352 choledochoscope 7247 choledochoscopes 754 choledochoscopy 6364 +choledochostomies 343 choledochostomy 13795 +choledochotomies 1392 choledochotomy 30392 choleglobin 4180 cholehepatic 798 @@ -204347,6 +207084,7 @@ cholerization 185 choleroid 1078 cholerophobia 194 cholers 3864 +choles 34919 cholescintigraphic 2038 cholescintigraphy 14989 cholestadiene 5847 @@ -204472,6 +207210,7 @@ chondrichthian 976 chondrichthians 1249 chondrichthyan 11706 chondrichthyans 16114 +chondrichthyes 3042 chondrification 23742 chondrifications 527 chondrified 6130 @@ -204565,6 +207304,7 @@ chondron 1681 chondronecrosis 2987 chondronectin 3211 chondrons 1677 +chondroosseous 2192 chondropathies 2601 chondropathy 2363 chondropharyngeal 349 @@ -204717,6 +207457,7 @@ choralists 2479 chorally 21796 chorals 47380 chorangiosis 1517 +chorba 1360 chord 8934109 chordal 376936 chordality 1659 @@ -205003,6 +207744,8 @@ chowderheads 1325 chowdering 257 chowderlike 160 chowders 68705 +chowdries 197 +chowdry 153 chowed 13028 chowhound 2227 chowhounds 1671 @@ -205094,6 +207837,7 @@ chromaffinomas 447 chromagen 7610 chromagens 2071 chromagram 1134 +chromagrams 201 chromakey 6992 chromakeyed 352 chromakeyer 498 @@ -205103,6 +207847,7 @@ chromakeys 202 chromalveolate 673 chromalveolates 1196 chromameter 1825 +chromammines 197 chroman 13990 chromane 3331 chromanes 837 @@ -205124,6 +207869,8 @@ chromaticities 41120 chromaticity 342289 chromaticization 571 chromaticize 95 +chromaticized 3130 +chromaticizing 45 chromaticness 7148 chromatics 55607 chromatid 498593 @@ -205139,6 +207886,7 @@ chromatised 201 chromatism 18026 chromatisms 597 chromatist 144 +chromatists 113 chromatite 207 chromatize 76 chromatized 5054 @@ -205293,6 +208041,7 @@ chromogranins 9569 chromography 1961 chromoisomer 137 chromoisomeric 636 +chromoisomers 397 chromokinesin 970 chromokinesins 383 chromoleucites 315 @@ -205308,6 +208057,7 @@ chromolithographic 11856 chromolithographing 80 chromolithographs 32272 chromolithography 21307 +chromoliths 965 chromoluminarism 143 chromoly 3527 chromolysis 2079 @@ -205372,6 +208122,7 @@ chromoprotein 13109 chromoproteins 10406 chromos 92545 chromoscope 4484 +chromoscopes 441 chromoshadow 304 chromosol 419 chromosomal 3465881 @@ -205624,6 +208375,7 @@ chrysalides 39863 chrysalids 70574 chrysaline 162 chrysalis 588444 +chrysalised 118 chrysalises 16798 chrysaloid 226 chrysamine 796 @@ -205686,8 +208438,11 @@ chrysomelid 24549 chrysomelidial 302 chrysomelids 5904 chrysomeline 401 +chrysomes 109 chrysomonad 5827 +chrysomonadines 161 chrysomonads 8192 +chrysoms 107 chrysopal 746 chrysophan 1648 chrysophane 380 @@ -205715,6 +208470,7 @@ chrysotiles 2433 chrysotoxine 225 chrysotype 1062 chrystals 7839 +chrystocrenes 129 chs 1255325 chthamalid 648 chthamalids 616 @@ -205745,6 +208501,8 @@ chubbiness 16236 chubbing 945 chubbs 823 chubby 947610 +chubdar 157 +chubdars 114 chubes 245 chubs 166229 chubster 498 @@ -205884,6 +208642,7 @@ chumpions 97 chumpish 187 chumps 44939 chumpy 1222 +chumra 541 chums 452791 chumship 5733 chumships 2191 @@ -206039,6 +208798,7 @@ churlishness 42196 churls 73977 churly 776 churm 1490 +churms 221 churn 1721986 churnability 5180 churnable 896 @@ -206055,6 +208815,7 @@ churns 367777 churny 485 churr 14203 churra 669 +churras 287 churrascaria 3451 churrascarias 1604 churrasco 9618 @@ -206566,6 +209327,7 @@ cinemicrographically 293 cinemicrographs 1096 cinemicrography 13755 cinemobile 309 +cinemobiles 263 cinemograph 1926 cinenchyma 157 cinenchymatous 51 @@ -206623,6 +209385,7 @@ cingular 37029 cingulate 559365 cingulated 9988 cingulates 1209 +cingulectomies 245 cingulectomy 3940 cinguli 32118 cingulid 7413 @@ -206961,7 +209724,6 @@ circumfulgent 48 circumfuse 1423 circumfused 6034 circumfuses 489 -circumfusile 132 circumfusing 231 circumfusion 2850 circumgalactic 903 @@ -206987,6 +209749,7 @@ circumjacencies 469 circumjacency 182 circumjacent 69844 circumjacently 191 +circumjovian 358 circumlaryngeal 967 circumlental 3675 circumlimbal 969 @@ -207241,6 +210004,7 @@ cisandine 61 cisapride 103130 cisatlantic 10333 cisatracurium 21671 +cisbis 196 cisco 454488 ciscoes 51267 ciscos 5459 @@ -207591,9 +210355,9 @@ clabbers 1313 clachan 18595 clachans 2800 clack 362606 -clacka 573 p +clacka 573 clacked 113952 -clacker 11948 +clacker 11948 p clackers 8673 clacket 469 clacketed 119 @@ -207993,6 +210757,7 @@ claspeth 2055 claspin 2200 clasping 1617842 claspings 5317 +claspless 521 clasps 1026793 claspt 10718 class 390208693 @@ -208215,7 +210980,6 @@ clavichordists 514 clavichords 30446 clavicipitaceous 1548 clavicitherium 271 -clavicle 1596008 clavicles 261480 clavicor 279 clavicorn 1587 @@ -208227,6 +210991,7 @@ clavicular 336736 claviculate 940 clavicylinder 503 clavicymbal 1406 +clavicymbals 277 clavicymbalum 1616 clavicytheria 435 clavicytherium 4364 @@ -208384,6 +211149,8 @@ clearcoats 4503 clearcole 314 clearcutness 181 clearcuts 245368 +clearcutter 98 +clearcutters 607 clearcutting 528325 clearcuttings 12024 cleardown 645 @@ -208977,6 +211744,7 @@ clinoforms 16635 clinograde 3950 clinograph 1979 clinographic 6422 +clinographs 330 clinohedral 373 clinohedrite 2614 clinohumite 9404 @@ -209076,7 +211844,9 @@ cliquism 5198 cliquy 491 cliseral 529 clisere 1492 +cliseres 401 clishmaclaver 1091 +clishmaclavers 345 clit 484764 clitch 1148 clitches 223 @@ -209216,8 +211986,10 @@ clockspring 5953 clocksprings 992 clockstars 111 clocktime 4849 +clocktimes 246 clockvine 386 clockward 89 +clockware 186 clockwatcher 1921 clockwatchers 1604 clockwatching 2236 @@ -209360,6 +212132,7 @@ clonixin 517 clonk 12019 clonked 4739 clonker 191 +clonkers 158 clonking 3645 clonks 1970 clonogen 4080 @@ -209429,6 +212202,7 @@ closelier 5056 closeliest 76 closeminded 5126 closemindedness 1986 +closemouth 333 closemouthed 45837 closen 5790 closened 318 @@ -209510,6 +212284,7 @@ clothespinned 1858 clothespinning 176 clothespins 206000 clothespole 1782 +clothespoles 684 clothespress 16186 clothespresses 2895 clothesprop 236 @@ -209659,7 +212434,6 @@ clowndom 520 clowned 36733 clowneries 1468 clownery 5775 -clowness 305 clownfish 30841 clownfishes 3864 clowning 319233 @@ -209704,6 +212478,7 @@ clubber 10451 clubbers 35431 clubbie 850 clubbier 805 +clubbies 1562 clubbiest 419 clubbily 397 clubbiness 7157 @@ -209750,6 +212525,7 @@ clubmate 4197 clubmates 5972 clubmen 41527 clubmobile 5191 +clubmobiles 2721 clubnight 176 clubnights 91 clubroom 85106 @@ -209759,7 +212535,9 @@ clubroots 459 clubrush 772 clubrushes 85 clubs 26019165 +clubshell 6863 clubster 1253 +clubsters 2941 clubtail 4992 clubtails 2291 clubwear 1123 @@ -209818,6 +212596,7 @@ clunched 142 clunches 272 cluneal 12734 clunge 993 p +clunges 449 p clunial 3773 clunk 150606 clunked 50603 @@ -209857,6 +212636,8 @@ clusterberry 193 clustercentric 245 clustered 4724597 clusteredness 347 +clusterer 1847 +clusterers 1017 clustereth 331 clusterfuck 15278 p clusterfucked 192 p @@ -209942,6 +212723,7 @@ cmon 2995 cms 667242 cmt 246503 cmte 19693 +cmtes 1862 cmts 10454 cnemial 14342 cnemides 157 @@ -209963,9 +212745,11 @@ cnidocytes 4953 cnidom 1116 cnidome 340 cnidophore 440 +cnidophores 304 cnidosac 1304 cnidosacs 1407 cnidosporidian 546 +cnidosporidians 395 cnoidal 29196 cnx 4490 co 108620907 @@ -210065,6 +212849,7 @@ coadd 887 coadded 7288 coaddict 2054 coaddicts 2066 +coadding 2536 coaddition 4001 coadds 461 coadherence 59 @@ -210123,6 +212908,7 @@ coaeval 1088 coaevals 248 coag 16670 coagel 2313 +coagels 642 coagencies 94 coagency 1562 coagent 6735 @@ -210165,6 +212951,7 @@ coagulocytes 3602 coagulogen 3831 coagulogens 303 coagulogram 1614 +coagulograms 533 coagulometer 4090 coagulometers 938 coagulometric 319 @@ -210181,6 +212968,7 @@ coaked 1124 coaking 1766 coaks 2149 coal 166334965 +coalas 321 coalbags 135 coalbearing 36805 coalbin 8335 @@ -210193,6 +212981,7 @@ coaldust 18246 coaled 118302 coaler 10653 coalers 10370 +coales 21003 coalesce 1606149 coalesced 978414 coalescence 1356987 @@ -210222,7 +213011,6 @@ coalheavers 8120 coalheaving 351 coalhod 1182 coalhods 361 -coalholes 1776 coalhouse 8721 coalhouses 749 coalie 483 @@ -210282,6 +213070,7 @@ coalsacks 594 coalshed 3881 coalsheds 1325 coaltitude 2833 +coaltitudes 171 coalworker 1339 coalworkers 6807 coalworks 965 @@ -210438,6 +213227,7 @@ coatom 742 coatomer 14806 coatomers 667 coatomic 659 +coatoms 1202 coatroom 37965 coatrooms 5343 coats 11251847 @@ -210485,6 +213275,7 @@ cobaloxime 6701 cobaloximes 4284 cobalt 8057619 cobaltammine 2129 +cobaltammines 2742 cobaltate 5939 cobaltates 1508 cobaltian 2391 @@ -210618,6 +213409,7 @@ cobwebless 94 cobweblike 4445 cobwebs 915286 cobwork 1183 +cobyric 1728 cobza 1328 coca 1659398 cocaethylene 12422 @@ -211012,10 +213804,13 @@ cocktails 1581309 cockteased 95 p cockteaser 1810 p cockteasers 398 p +cockteases 43 cockteasing 881 p cocktip 165 p cockups 542 cocky 766992 +cockyleekie 224 +cockyleeky 256 coclass 16112 coclasses 2311 coclaurine 1668 @@ -211035,6 +213830,7 @@ cocoawood 329 cocobola 3729 cocobolo 16863 cocodette 363 +cocodettes 665 cocoercive 628 cocoes 1835 cocoliztli 1772 @@ -211177,6 +213973,7 @@ codaless 173 codalike 517 codas 73635 codbank 155 +codbanks 461 codded 1363 coddies 375 coddle 167351 @@ -211263,6 +214060,7 @@ codepositions 231 coder 757101 coderivative 1924 coderivatives 1208 +coderoom 444 coders 582379 codes 31484060 codeset 5584 @@ -211439,6 +214237,8 @@ codrove 115 codrug 580 codrugs 277 cods 64950 +codshead 930 +codsheads 117 codswallop 5199 codworm 1292 coeca 46616 @@ -211974,6 +214774,7 @@ cognation 17822 cognations 744 cognatus 48996 cognetics 401 +cogniac 3708 cognisable 32584 cognisance 184433 cognisances 2489 @@ -212642,6 +215443,8 @@ colibacilluria 542 colibacillus 1805 colic 2464287 colical 408 +colicense 114 +colicensing 137 colichemarde 1606 colichemardes 255 colicin 101945 @@ -213631,7 +216434,6 @@ columbinic 508 columbite 171904 columbites 2771 columbo 19915 -columbyn 239 columel 669 columella 805965 columellae 25713 @@ -213648,6 +216450,7 @@ columnarization 1467 columnarize 141 columnarized 1273 columnarizing 49 +columnarly 986 columnary 426 columnate 349 columnated 4983 @@ -213668,6 +216471,7 @@ columnized 3402 columnizes 60 columnizing 1279 columnless 2787 +columnlike 7127 columns 45375033 columnwise 16591 colupulone 1377 @@ -213985,6 +216789,10 @@ comforting 4776529 comfortingly 155900 comfortingness 105 comfortings 6807 +comfortization 1332 +comfortize 199 +comfortized 317 +comfortizing 328 comfortless 361895 comfortlessly 1701 comfortlessness 2249 @@ -214323,6 +217131,7 @@ commission 140667923 commissionable 58817 commissionaire 57536 commissionaires 16379 +commissional 1868 commissionaries 1076 commissionary 3062 commissioned 18274320 @@ -214486,10 +217295,12 @@ commoratio 1250 commorient 385 commorients 163 commos 3880 +commot 5081 commotes 2812 commotion 3422700 commotional 3109 commotions 445559 +commots 384 commove 1683 commoved 4670 commoves 220 @@ -214582,6 +217393,9 @@ communities 95928148 communitive 2226 communitization 35675 communitizations 185 +communitize 1865 +communitized 12998 +communitizing 999 community 319838676 communitywide 161617 communitywise 899 @@ -214881,6 +217695,7 @@ compellative 1382 compellatives 269 compellatory 204 compelled 39334859 +compellence 26593 compeller 19447 compellers 4681 compellest 4580 @@ -215230,6 +218045,7 @@ composed 86245392 composedly 241909 composedness 5006 composer 14556689 +composeress 444 composerly 2146 composers 7439302 composes 855727 @@ -215341,6 +218157,7 @@ compresences 159 compresent 10718 compresently 93 compress 3354274 +compressability 3290 compressable 2769 compressed 17766695 compressedly 1211 @@ -215732,6 +218549,7 @@ concentring 5226 concentrism 782 concents 16957 concentual 884 +concentus 8018 concept 118431673 conceptacle 27103 conceptacles 54179 @@ -216011,6 +218829,7 @@ conclusions 62090946 conclusive 18606515 conclusively 8273206 conclusiveness 528980 +conclusorily 6126 conclusory 682643 concoct 401923 concocted 1211996 @@ -216188,9 +219007,7 @@ condensability 2514 condensable 221134 condensary 17190 condensate 3397859 -condensated 4924 condensates 366056 -condensating 2821 condensation 10219864 condensational 16804 condensations 432826 @@ -217069,6 +219886,7 @@ congregational 1437094 congregationalism 29231 congregationalist 12594 congregationalistic 118 +congregationalists 15338 congregationalize 235 congregationalized 566 congregationalizing 403 @@ -217179,9 +219997,9 @@ coning 237656 coniology 222 coniopterygid 297 coniopterygids 243 +conioses 306 coniosis 3799 coniotomy 1402 -conirostral 2193 conisation 1159 conistra 220 conite 4681 @@ -217538,7 +220356,6 @@ conreport 826 conreports 308 conrotatory 20740 cons 4146782 -consang 712 consanguinal 8025 consanguine 47277 consanguinea 8930 @@ -217887,6 +220704,7 @@ consonance 1234221 consonances 120202 consonant 5653977 consonantal 356082 +consonantalization 340 consonantalized 63 consonantally 2334 consonantary 218 @@ -218222,6 +221040,7 @@ consumability 3290 consumable 812229 consumables 339439 consumably 1365 +consumation 31578 consume 12085126 consumed 31124241 consumedly 17808 @@ -218794,6 +221613,7 @@ contradistinguish 6779 contradistinguished 222064 contradistinguishes 3321 contradistinguishing 4546 +contraexpectation 629 contrafact 3849 contrafacta 11568 contrafacts 1906 @@ -219344,6 +222164,8 @@ conveyancing 256239 conveyancings 107 conveyaunces 184 conveyed 27294790 +conveyee 14880 +conveyees 4172 conveyer 1191265 conveyers 218377 conveyest 200 @@ -219530,6 +222352,7 @@ cookies 5794298 cookin' 986 cooking 28391043 cookings 6283 +cookingware 1955 cookish 125 cookless 1727 cookmaid 7424 @@ -219829,6 +222652,8 @@ copartnership 1555166 copartnerships 116158 copartnery 12511 copasetic 5753 +copassenger 775 +copassengers 1649 copastor 7259 copastors 1827 copatentee 802 @@ -219998,6 +222823,7 @@ copperizing 1112 copperleaf 4773 copperless 942 coppern 64 +copperous 944 copperplate 241684 copperplated 9588 copperplates 80256 @@ -220309,6 +223135,7 @@ coquets 10548 coquette 377937 coquetted 44156 coquetter 150 +coquettery 352 coquettes 62900 coquetting 80125 coquettings 1701 @@ -220342,6 +223169,7 @@ coracoclavicular 48414 coracohumeral 18382 coracoid 435373 coracoidal 8376 +coracoideum 1175 coracoids 35130 coracomandibular 241 coracoscapular 970 @@ -220450,6 +223278,7 @@ corchoroside 183 corchorus 2491 corcur 426 cord 32832254 +cordage 1190186 cordages 5327 cordaitalean 1065 cordaitaleans 679 @@ -220712,6 +223541,7 @@ corkier 74 corkies 317 corkiness 2631 corking 138678 +corkingest 165 corkingly 257 corkish 108 corkite 1212 @@ -220751,6 +223581,7 @@ cormus 5634 corn 80250322 cornaceous 561 cornage 7371 +cornamuse 774 cornball 35628 cornballs 2601 cornbind 825 @@ -220881,7 +223712,6 @@ cornichon 4725 cornichons 20998 cornicing 4227 cornicings 223 -cornicle 22247 cornicles 68060 cornicula 7704 cornicular 911 @@ -220934,6 +223764,7 @@ cornsack 396 cornsacks 681 cornsheller 5046 cornshellers 3600 +cornshock 1004 cornshuck 6222 cornshucking 2326 cornshuckings 1292 @@ -220954,6 +223785,7 @@ cornuate 2202 cornubianite 213 cornubite 233 cornucopia 459098 +cornucopiae 21117 cornucopian 14621 cornucopias 62112 cornucopiate 294 @@ -221106,6 +223938,7 @@ corporatese 696 corporatespeak 1031 corporatewide 46949 corporation 212483378 +corporational 3405 corporations 79005304 corporationwide 4589 corporatisation 6026 @@ -221160,6 +223993,7 @@ corporosity 4329 corposant 6477 corposants 4073 corpotentorium 1563 +corps 24061346 corpse 7376960 corpsed 2270 corpsehood 298 @@ -221215,6 +224049,8 @@ correalism 339 correct 152885649 correctability 12046 correctable 427652 +correctant 584 +correctants 85 corrected 32833638 correctedness 584 correctest 8363 @@ -221784,7 +224620,6 @@ cosily 99867 cosimplicial 7210 cosimulation 10306 cosimulations 194 -cosinage 2681 cosine 2102915 cosines 556028 cosiness 34996 @@ -221822,6 +224657,7 @@ cosmetology 424262 cosmian 146 cosmic 10311171 cosmical 246011 +cosmicality 290 cosmically 70831 cosmicism 1081 cosmicity 1162 @@ -222232,6 +225068,7 @@ cothons 299 cothouse 790 cothouses 246 cothurn 1484 +cothurnal 201 cothurnate 181 cothurned 128 cothurni 5421 @@ -222391,6 +225228,7 @@ cottonizing 2175 cottonless 1184 cottonlike 9606 cottonmouth 64131 +cottonmouthed 835 cottonmouths 23288 cottonocracy 879 cottonoid 12339 @@ -223120,6 +225958,8 @@ counterinitiative 865 counterinitiatives 700 counterinstance 4918 counterinstances 5953 +counterinstitution 947 +counterinstitutions 4482 counterinsult 492 counterinsults 295 counterinsurgencies 10565 @@ -223622,6 +226462,8 @@ countersigns 50580 countersing 419 countersinging 2662 countersink 188370 +countersinker 623 +countersinkers 814 countersinking 80102 countersinks 53655 counterslogan 597 @@ -223670,6 +226512,7 @@ counterstereotyped 771 counterstereotypes 1026 counterstereotypic 6231 counterstereotypical 3929 +counterstereotypically 224 counterstereotyping 438 counterstimulation 1612 counterstimuli 421 @@ -223978,6 +226821,7 @@ courageous 6340053 courageously 1348888 courageousness 15025 courages 42676 +couraging 80202 courant 174494 courante 42602 courantes 18221 @@ -224318,6 +227162,8 @@ cowardy 2916 cowback 221 cowbane 9143 cowbanes 119 +cowbarn 8700 +cowbarns 1792 cowbells 74025 cowberries 2684 cowberry 9819 @@ -225000,6 +227846,8 @@ craniometrical 2757 craniometrically 487 craniometrics 1286 craniometries 373 +craniometrist 322 +craniometrists 1093 craniometry 25234 cranioorbital 722 craniopagi 324 @@ -225068,6 +227916,7 @@ crankinesses 365 cranking 761661 crankings 725 crankish 4051 +crankism 2088 crankle 1646 crankled 449 crankles 495 @@ -225341,6 +228190,7 @@ craze 1576982 crazed 1389953 crazedly 589 crazedness 201 +crazeless 457 crazen 129 crazes 141033 crazier 202115 @@ -225573,6 +228423,8 @@ creedite 1917 creedless 18025 creedlessness 1122 creeds 2823008 +creedsman 144 +creedsmen 264 creek 18223129 creekbank 8034 creekbanks 2604 @@ -225586,6 +228438,7 @@ creeklet 2623 creeklets 1427 creekline 158 creeklines 143 +creekology 1346 creeks 3795894 creekshell 413 creekside 28519 @@ -225601,6 +228454,8 @@ creeling 11374 creelman 150 creelmen 49 creels 79539 +creemee 358 +creemees 275 creep 10952866 creepage 71302 creepages 3213 @@ -225922,7 +228777,6 @@ crewelwork 10455 crewer 914 crewers 1838 crewes 549 -crewet 285 crewets 383 crewing 57733 crewless 10639 @@ -225978,6 +228832,7 @@ cribrose 10174 cribrous 394 cribs 1317674 cribside 2857 +cribwall 1783 cribwork 54277 cribworks 369 cric 12541 @@ -226200,6 +229055,7 @@ crinose 231 crinosity 120 crinum 8062 crinums 6236 +criolla 30524 criollo 171011 criollos 104276 criosphinx 880 @@ -226361,8 +229217,6 @@ crizzle 720 crizzled 1706 crizzles 352 crizzling 2000 -crna 1712 -crnas 194 cro 353614 croak 517902 croaked 611492 @@ -226803,6 +229657,8 @@ crossin' 220 crossing 42057890 crossings 8993926 crossish 357 +crossite 11996 +crossites 358 crossjack 4874 crosslegged 111609 crossless 2826 @@ -227218,6 +230074,7 @@ cruciferin 1737 cruciferous 156773 crucifers 84682 crucifiable 169 +crucifices 175 crucificial 619 crucified 3548115 crucifier 4837 @@ -227513,6 +230370,7 @@ cruth 1709 cruths 119 cruts 646 crutter 104 +crutting 194 cruve 1990 cruves 1558 crux 2055030 @@ -227719,6 +230577,8 @@ cryonicists 2099 cryonics 31317 cryopathy 384 cryopedogenic 975 +cryopedologic 553 +cryopedological 408 cryopedology 3758 cryopelagic 2004 cryopexy 8732 @@ -227884,6 +230744,7 @@ cryptanalytically 372 cryptanalytics 395 cryptanalyze 2525 cryptanalyzed 1719 +cryptanalyzing 1017 cryptand 16867 cryptands 13960 cryptarithm 1422 @@ -228132,6 +230993,7 @@ crystalliferous 7073 crystalliform 337 crystallin 169045 crystalline 15568478 +crystallinely 422 crystallinities 12278 crystallinity 908183 crystallins 62195 @@ -228273,6 +231135,8 @@ cubanelle 1668 cubanelles 277 cubanes 3699 cubanite 25035 +cubarithm 241 +cubarithms 1310 cubatic 136 cubature 32350 cubatures 2657 @@ -229069,6 +231933,7 @@ cuprites 827 cupriuresis 578 cuprizone 5940 cupro 94296 +cuproadamite 150 cuproammonium 1331 cuprobismutite 1183 cuprocopiapite 127 @@ -229170,6 +232035,7 @@ curatours 256 curatress 127 curats 1097 curb 11771827 +curbash 185 curbed 1104148 curber 2292 curbers 1890 @@ -229326,6 +232192,7 @@ curlycues 3119 curlyhaired 14955 curlyhead 913 curlyheads 206 +curlytail 727 curmudge 119 curmudgeon 125403 curmudgeonhood 116 @@ -229521,6 +232388,7 @@ curvedness 4189 curveless 3860 curvelet 7131 curvelets 2727 +curvelinear 4746 curves 49883751 curvesome 1375 curvet 32666 @@ -230050,7 +232918,6 @@ cyanophores 128 cyanophosphonate 92 cyanophycean 3060 cyanophycin 6659 -cyanophyll 781 cyanophyte 9883 cyanophytes 16702 cyanopia 249 @@ -231096,6 +233963,8 @@ cyclorotations 493 cyclorphan 973 cyclorrhaphan 1654 cyclorrhaphous 5943 +cyclorubber 1226 +cyclorubbers 205 cyclos 10603 cyclosarin 5691 cycloscope 887 @@ -231392,8 +234261,10 @@ cypraeid 967 cypraeids 930 cyprenorphine 612 cypress 3070171 +cypressed 4670 cypresses 440828 cyprid 15454 +cyprides 500 cypridid 204 cypridinid 533 cypridinids 569 @@ -232106,6 +234977,7 @@ daals 631 daana 484 dab 736298 dabai 593 +dabakan 325 dabao 306 dabba 6671 dabbah 96 @@ -232367,8 +235239,10 @@ dafty 1345 dag 222384 dagaba 3675 dagabas 1467 +dage 25254 dagen 8772 dagens 2988 +dages 13328 dagesh 17257 dagga 19476 dagged 7535 @@ -232604,6 +235478,8 @@ dalmatic 48084 dalmatica 19185 dalmaticas 735 dalmatics 12720 +dalmatique 1033 +dalmatiques 254 dals 17645 dalteparin 28386 dalton 255350 @@ -232616,6 +235492,7 @@ daltonism 3516 daltons 504607 dalyite 578 dam 34848099 +dam' 1290 p dama 222352 damage 126391917 damageability 34032 @@ -233069,6 +235946,7 @@ dare 21014753 dared 11266069 daredevil 236000 daredeviling 322 +daredevilish 1461 daredevilism 233 daredevilry 3817 daredevils 56628 @@ -233237,6 +236115,7 @@ daruan 76 daruma 4222 darumas 249 darunavir 15945 +darusentan 815 darwesh 678 darweshes 198 darwin 23263 @@ -233674,6 +236553,7 @@ dayflowers 1234 dayfly 961 dayflying 1435 dayful 421 +dayger 122 daygirl 125 daygirls 243 dayglo 6020 @@ -233872,7 +236752,7 @@ deadapt 250 deadaptation 5272 deadapted 1014 deadapting 344 -deadass 731 p +deadass 731 deadband 79314 deadbands 7255 deadbeat 189004 @@ -233976,7 +236856,6 @@ deadpan 298582 deadpanned 56251 deadpanning 1889 deadpans 15173 -deadpool 185 deadrise 33777 deadrises 284 deads 26003 @@ -234382,6 +237261,7 @@ debarring 333952 debars 93593 debase 430234 debased 1390819 +debasedness 184 debasement 627529 debasements 24552 debaser 2801 @@ -234390,6 +237270,7 @@ debases 123395 debash 852 debasing 581371 debasingly 1096 +debasings 389 debatability 5054 debatable 2933951 debatableness 229 @@ -234422,6 +237303,7 @@ debauchers 7454 debauchery 1005723 debauches 92889 debauching 125341 +debauchings 113 debauchment 8301 debauchments 203 debbil 26708 @@ -234438,6 +237320,7 @@ debeige 230 debellatio 2419 deben 82522 debend 351 +debending 208 debenture 2060059 debentured 801 debentureholder 2269 @@ -234481,6 +237364,8 @@ debits 2044726 debitter 802 debittered 6681 debittering 7574 +debitterized 720 +debitterizing 79 debituminization 919 debituminized 1037 deblaterate 267 @@ -234651,6 +237536,7 @@ debunking 301627 debunkings 2147 debunkment 153 debunks 83985 +debureaucratisation 360 debureaucratise 56 debureaucratization 11049 debureaucratize 2274 @@ -234989,8 +237875,6 @@ decartelization 23654 decasaccharide 2004 decasaccharides 513 decasecond 501 -decastere 826 -decasteres 383 decastich 565 decastyle 3731 decasualization 21338 @@ -235260,6 +238144,8 @@ dechristianising 611 dechristianization 14980 dechristianize 2142 dechristianized 5485 +dechristianizer 190 +dechristianizers 909 dechristianizes 205 dechristianizing 2860 dechrome 132 @@ -235729,6 +238615,7 @@ decommissioning 1630571 decommissionings 7138 decommissions 3199 decommit 2694 +decommitment 4825 decommits 431 decommitted 2023 decommitting 1065 @@ -236334,6 +239221,9 @@ dedogmatization 278 dedogmatized 202 dedolation 168 dedollarization 3833 +dedollarize 292 +dedollarized 122 +dedollarizing 129 dedolomitization 16430 dedolomitize 150 dedolomitized 2257 @@ -236488,6 +239378,8 @@ deepmost 2532 deepness 76413 deepnesses 827 deepnight 88 +deepo 5811 +deepos 189 deepoxidase 502 deepoxidation 2005 deeprooted 110264 @@ -236534,7 +239426,6 @@ deers 49507 deerskin 348254 deerskins 127246 deerstalkers 2295 -deerstalking 4575 deerstealer 680 deerstealers 643 deertoe 381 @@ -237098,6 +239989,7 @@ defluorinating 2935 defluorination 26309 defluxions 6807 defn 14303 +defns 1048 defo 5219 defoam 2370 defoamed 2772 @@ -237246,6 +240138,7 @@ defrostings 1057 defrosts 16917 defrozen 709 defrutum 2771 +defs 36301 deft 2078004 defter 20154 defterdar 6156 @@ -237302,6 +240195,7 @@ defuzzification 54203 defuzzifications 180 defuzzified 11021 defuzzifier 8487 +defuzzifiers 631 defuzzifies 459 defuzzify 2818 defuzzifying 1419 @@ -237507,6 +240401,7 @@ degrative 408 degravitate 51 degravitation 359 degreasant 264 +degreasants 288 degrease 37515 degreased 115019 degreaser 124959 @@ -237822,6 +240717,7 @@ deifier 1605 deifiers 1247 deifies 42318 deiform 5615 +deiformity 2114 deify 146954 deifying 78299 deign 662108 @@ -238029,8 +240925,6 @@ dekametric 1330 dekarch 229 dekarchy 468 dekare 257 -dekastere 664 -dekasteres 118 dekatherm 5979 dekatherms 7228 dekatron 3318 @@ -238104,6 +240998,7 @@ delead 2370 deleaded 7362 deleading 21456 deleatur 1358 +delect 43049 delectabilities 548 delectability 6085 delectable 1006812 @@ -238116,7 +241011,10 @@ delectates 198 delectating 512 delectation 261095 delectations 9237 +delected 39347 +delecting 15578 delection 7127 +delects 31507 deled 19306 delegable 123195 delegacies 1968 @@ -238271,6 +241169,7 @@ delid 789 delidded 1311 delidding 1432 delids 58 +delie 7520 deligate 3092 deligated 3066 deligating 403 @@ -238608,6 +241507,8 @@ delustred 931 delustring 1274 deluvial 9170 deluxe 1163755 +deluxer 323 +deluxes 1308 delvauxite 449 delve 1410588 delved 569311 @@ -239105,6 +242006,7 @@ demodified 455 demodify 162 demodifying 175 demods 433 +demodularization 262 demodulate 61863 demodulated 217117 demodulates 30224 @@ -240129,8 +243031,10 @@ deorbit 41020 deorbited 5099 deorbiting 7233 deorbits 640 +deorganization 2806 deorganize 409 deorganized 3576 +deorganizing 329 deorphanization 467 deorphanize 64 deorphanized 378 @@ -240509,7 +243413,6 @@ dephlegmated 3137 dephlegmating 6620 dephlegmator 38923 dephlegmators 8380 -dephlegmatory 156 dephlogisticate 604 dephlogisticating 216 dephosphatase 121 @@ -240724,6 +243627,10 @@ deponer 1886 depones 8021 deponeth 1215 deponing 1163 +depopularization 326 +depopularize 1042 +depopularized 608 +depopularizing 241 depopulate 111877 depopulated 549065 depopulates 12639 @@ -240733,6 +243640,7 @@ depopulations 6467 depopulator 1761 depopulators 1032 deport 675574 +deportability 163340 deportable 403240 p deportables 1505 p deportation 5572063 @@ -241389,6 +244297,7 @@ derivatographic 3822 derivatographs 165 derivatography 1664 derive 20400174 +deriveable 1237 derived 118038297 derivedness 740 deriver 4172 @@ -241661,6 +244570,7 @@ derricking 5214 derrickman 13014 derrickmen 15035 derricks 866108 +derriengue 1350 derringer 122240 derringers 14783 derris 182277 @@ -241681,6 +244591,7 @@ dervise 24455 dervises 7934 dervish 316854 dervishes 263484 +dervishhood 281 dervishlike 1567 des 54321721 desacetylation 391 @@ -242000,6 +244911,8 @@ desertomycin 161 deserts 5149411 desertscape 2639 desertscapes 1101 +desertward 1779 +desertwards 435 deserty 2181 deservant 1243 deservedly 1265448 @@ -242199,6 +245112,7 @@ desires 39573822 desirest 107284 desireth 157507 desiring 11519508 +desiringly 1017 desirings 3056 desirive 97 desirous 8392577 @@ -242252,6 +245166,7 @@ deskmates 1054 deskmen 8309 deskperson 201 deskphone 1028 +deskphones 94 desks 6760528 deskside 10810 desksides 161 @@ -242315,7 +245230,6 @@ desmodonts 217 desmodromic 2665 desmoglein 18327 desmogleins 4277 -desmognathous 5235 desmography 118 desmoid 69249 desmoids 13139 @@ -242471,6 +245385,7 @@ despatialized 1338 despatializes 46 despatializing 201 despawn 306 +despecialization 4265 despecialize 971 despecialized 1057 despecializing 381 @@ -242489,6 +245404,7 @@ desped 122 despedida 12695 despedidas 1680 despeed 76 +desperacy 135 desperado 227886 desperadoes 329639 desperadoism 1389 @@ -242705,6 +245621,7 @@ destigmatising 70 destigmatization 8775 destigmatize 14120 destigmatized 3505 +destigmatizers 123 destigmatizes 943 destigmatizing 6361 destimulate 298 @@ -242712,7 +245629,6 @@ destimulated 180 destimulating 451 destimulation 729 destin'd 47378 -destinable 133 destinatary 206 destinate 4479 destinated 8495 @@ -242723,6 +245639,7 @@ destinational 3602 destinationless 1280 destinations 6976881 destinative 589 +destinatory 462 destine 89460 destined 17893437 destines 55648 @@ -242744,6 +245661,8 @@ destocking 13780 destocks 47 destone 365 destoned 691 +destoner 1259 +destoners 838 destoning 1289 destool 1270 destooled 3611 @@ -242796,6 +245715,8 @@ destructible 154728 destructibleness 167 destructing 51071 destruction 63461849 +destructional 15920 +destructionism 2793 destructionist 6922 destructionists 12415 destructions 205678 @@ -242916,6 +245837,9 @@ desuperheating 26803 desuperheats 391 desupersaturation 1982 desuppressed 487 +desurface 383 +desurfaced 3746 +desurfacing 2483 desvenlafaxine 10391 deswelling 11978 desyatin 3079 @@ -243018,6 +245942,7 @@ detainers 135682 detainest 670 detaineth 5401 detaining 1087318 +detainingly 1563 detainings 105 detainment 92668 detainments 16584 @@ -243077,6 +246002,7 @@ detectorists 1456 detectors 8814078 detects 2485091 detemir 17776 +detemporized 67 detensioned 1735 detensioning 4790 detensions 440 @@ -243138,7 +246064,6 @@ determinatively 6260 determinativeness 2151 determinatives 36603 determinators 7875 -determinatum 6684 determine 245289850 determined 283921443 determinedly 647771 @@ -243241,6 +246166,7 @@ detinues 529 detomidine 19062 detonability 11557 detonable 16708 +detonatability 253 detonatable 3045 detonate 500797 detonated 915414 @@ -243255,6 +246181,9 @@ detonization 109 detonize 308 detonized 328 detonizing 50 +detorse 598 +detorsed 1061 +detorsing 107 detorsion 26336 detorsions 223 detort 563 @@ -243359,6 +246288,7 @@ detribalize 2353 detribalized 29625 detribalizes 152 detribalizing 1665 +detriment 7056277 detrimental 10684676 detrimentality 471 detrimentally 287842 @@ -243395,10 +246325,12 @@ detruncated 1039 detruncation 1443 detrusion 7185 detrusions 626 +detrusive 999 detrusor 407857 detrusorrhaphy 399 detrusors 2447 dets 89931 +dettes 16876 detubularize 228 detubularized 4597 detubulated 663 @@ -243496,6 +246428,7 @@ deuterogamist 133 deuterogamists 129 deuterogamy 1565 deuterogenic 205 +deuterolearning 1016 deuteromycete 2247 deuteromycetes 5288 deuteron 956501 @@ -243744,6 +246677,7 @@ devilships 159 devilsome 93 deviltries 23482 deviltry 178728 +devilward 718 devilwood 1548 deviometer 2006 devious 1782624 @@ -243765,6 +246699,7 @@ devirilized 549 devirilizing 260 devirtualization 895 devirtualized 306 +devisability 2847 devisable 85927 devisal 2130 devisals 136 @@ -243908,6 +246843,8 @@ devulcanised 52 devulcanization 7304 devulcanize 1043 devulcanized 8437 +devulcanizer 1877 +devulcanizers 1696 devulcanizes 189 devulcanizing 3952 devulgarize 131 @@ -244130,6 +247067,7 @@ df 1769899 dghaisa 524 dghaisas 318 dghajsa 313 +dha 50232 dhaal 213 dhaba 3501 dhabas 1658 @@ -244172,6 +247110,7 @@ dharmshala 298 dharmshalas 205 dharna 4809 dharnas 1022 +dhas 6043 dhau 549 dhaus 168 dhawk 166 @@ -244235,6 +247174,7 @@ dhurra 8393 dhurrie 5002 dhurries 3957 dhurrin 11539 +dhurry 268 dhuti 1197 dhutis 581 dhyana 64116 @@ -244335,6 +247275,7 @@ diachronies 325 diachronist 113 diachronists 144 diachronous 37597 +diachronously 1908 diachrony 54625 diachylon 29999 diachylum 1006 @@ -244398,6 +247339,7 @@ diadematids 277 diadematoid 740 diadematoids 178 diademed 21047 +diademmed 635 diadems 148492 diadenosine 7055 diadenylate 184 @@ -244792,7 +247734,6 @@ diamylene 1799 diamylenes 302 dianalytic 258 diandric 2647 -diandrous 4796 diandry 1156 dianetic 3418 dianetics 13232 @@ -245008,6 +247949,7 @@ diascopy 4947 diaskeuasis 293 diaskeuast 1162 diaskeuasts 933 +diasone 7129 diaspidid 1931 diaspidids 654 diaspora 1674465 @@ -245110,6 +248052,7 @@ diatomous 461 diatoms 1550434 diatonic 589159 diatonically 19434 +diatonicism 13404 diatonicity 187 diatonism 1043 diatopic 2488 @@ -245197,6 +248140,7 @@ diazocarbonyl 3223 diazocarbonyls 180 diazocine 1050 diazocines 314 +diazodinitrophenol 3671 diazoester 1110 diazoesters 1521 diazoethane 6689 @@ -245347,6 +248291,7 @@ dibromobutanes 942 dibromocarbene 3146 dibromocarbenes 389 dibromochloromethane 12394 +dibromochloropropane 22938 dibromocholestane 437 dibromocyclopropane 1303 dibromocyclopropanes 1003 @@ -245712,6 +248657,7 @@ dictamnine 1576 dictamnus 5557 dictaphone 151942 dictaphones 31086 +dictaphonic 1156 dictatable 62 dictate 8914010 dictated 10392336 @@ -245822,6 +248768,8 @@ didact 4614 didactic 3202808 didactical 36617 didactically 83132 +didactician 1063 +didacticians 2626 didacticism 241917 didacticisms 1239 didacticist 1002 @@ -246079,6 +249027,8 @@ dieters 193765 dietetic 923624 dietetical 8177 dietetically 16363 +dietetician 438 +dieteticians 420 dietetics 583154 dietetist 671 dietetists 644 @@ -246326,6 +249276,7 @@ difluoroamino 3291 difluorocarbene 4777 difluorodiazene 123 difluorodinitrobenzene 749 +difluorodiphenyltrichloroethane 164 difluoroethane 14364 difluoroethanes 155 difluoroethylene 9194 @@ -246629,6 +249580,7 @@ dihalomethane 1019 dihalomethanes 3085 dihalomethyl 854 dihaploid 8729 +dihaploids 4106 dihedra 1252 dihedral 663107 dihedrals 11664 @@ -246640,6 +249592,7 @@ diheptanoate 189 diheptyl 2147 diheteroglycan 581 diheteroglycans 128 +diheterozygous 278 dihex 53 dihexagonal 9204 dihexahedral 1986 @@ -246806,6 +249759,7 @@ dihydroxybutane 837 dihydroxycalciferol 1032 dihydroxychalcone 549 dihydroxychalcones 213 +dihydroxychlorpromazine 847 dihydroxycholecalciferol 59171 dihydroxycholecalciferols 134 dihydroxyethyl 3452 @@ -246853,6 +249807,7 @@ diiodine 1163 diiodo 35655 diiodoacetylene 1308 diiodoethane 1891 +diiodohydroxyquin 10173 diiodohydroxyquinoline 2221 diiodomethane 7090 diiodoquin 250 @@ -247595,6 +250550,7 @@ dinkers 1371 dinkey 39239 dinkeys 6502 dinkier 634 +dinkies 4772 dinkiest 1270 dinkiness 519 dinking 7344 @@ -247614,6 +250570,7 @@ dinnered 1510 dinnering 949 dinnerless 17694 dinnerlessness 85 +dinnermate 81 dinnerplate 2751 dinnerplates 1400 dinners 4808853 @@ -248252,6 +251209,7 @@ dippiest 443 dippily 147 dippiness 428 dipping 5972034 +dippingly 291 dippings 64323 dippy 44358 diprafenone 188 @@ -249109,6 +252067,7 @@ disclames 43 disclaming 300 disclarity 157 disclassified 85 +disclaunder 182 discless 1234 disclike 18799 disclimax 10461 @@ -249427,6 +252386,8 @@ discourageth 985 discouraging 5636530 discouragingly 146716 discouragings 107 +discource 1803 +discources 1554 discoured 738 discoures 586 discouring 387 @@ -250076,6 +253037,7 @@ dishevelment 32439 dishevels 2505 dishful 10897 dishfuls 898 +dishie 151 dishier 212 dishiest 456 dishiness 137 @@ -250652,6 +253614,7 @@ dismutations 1326 disna 11406 disnaturalized 143 disnest 166 +disneyfication 553 disobedience 5006842 disobediences 10424 disobedient 1247983 @@ -250699,6 +253662,8 @@ disomically 251 disomics 2429 disomies 2746 disomy 41890 +disoperation 1505 +disoperative 1068 disoproxil 13133 disopyramide 121537 disorb 160 @@ -251661,6 +254626,7 @@ distancings 1232 distannoxane 2929 distannoxanes 331 distant 52377459 +distantial 1156 distantiate 1260 distantiated 2414 distantiates 409 @@ -251837,7 +254803,6 @@ distomolars 466 distonic 4851 distopalatal 1393 distopalmar 290 -distopias 254 distoposterior 2299 distoproximal 1911 distoproximally 210 @@ -252254,6 +255219,8 @@ ditrochees 89 ditroite 832 ditrysian 2003 dits 83508 +ditsily 91 +ditsiness 279 ditsy 11099 dittamy 47 dittander 392 @@ -252293,6 +255260,7 @@ ditzel 205 ditzes 673 ditzier 239 ditziest 234 +ditzily 112 ditziness 1295 ditzy 29638 diubiquitin 637 @@ -252661,6 +255629,7 @@ dixids 547 dixie 27338 dixies 4435 dixonary 640 +dixy 847 dixyrazine 1792 diya 27224 diyas 2515 @@ -252723,6 +255692,7 @@ djent 260 djereed 993 djerfisherite 2446 djerib 175 +djerid 1331 djerrid 358 djes 1452 djevo 426 @@ -252806,6 +255776,7 @@ dochmiac 4155 dochmiacs 2517 dochmii 389 dochmius 1496 +docibility 215 docible 4077 docile 1921197 docilely 113212 @@ -253113,6 +256084,8 @@ dodecylsulfates 66 dodecylsulphate 7827 dodecyltrimethylammonium 6578 dodemorph 664 +dodgast 381 +dodgasted 1882 dodge 1676502 dodgeable 119 dodgeball 34752 @@ -253392,6 +256365,7 @@ dogteeth 2121 dogtooth 32246 dogtooths 375 dogtor 343 +dogtors 85 dogtrot 37192 dogtrots 1427 dogtrotted 1940 @@ -253418,6 +256392,7 @@ dohai 85 dohas 2282 dohickey 535 dohickeys 127 +dohol 773 dohs 4212 dohyo 3278 doid 14054 @@ -253592,6 +256567,7 @@ dolloping 1783 dollops 71340 dollopy 131 dolls 4719927 +dollu 424 dolly 822595 dollying 13833 dollyman 375 @@ -253703,6 +256679,7 @@ domeless 4647 domelike 59240 domes 3170756 domeshaped 50485 +domesmen 244 domestic 140052503 domesticability 688 domesticable 8647 @@ -253980,6 +256957,7 @@ doobie 10707 doobies 2152 doobs 433 doobt 5068 +dooby 2714 dooce 5285 dooced 2644 doocedly 130 @@ -254072,6 +257050,8 @@ doomsdayer 561 doomsdayers 2361 doomsdayism 435 doomsdays 2031 +doomsman 4357 +doomsmen 4631 doomster 3658 doomsters 4238 doomward 366 @@ -254182,6 +257162,7 @@ dooses 113 doosh 1784 doosra 106 doot 41449 +dooties 4507 dootless 1772 doots 8230 dooty 35737 @@ -254280,7 +257261,6 @@ dorfin 87 dorfs 2207 dorgi 207 dorgis 216 -dorhawk 269 dorian 23449 dorians 629 dorid 7808 @@ -254580,6 +257560,8 @@ dotis 10646 dotish 1142 dotishness 153 dotless 3979 +dotlet 340 +dotlets 526 dotlike 16102 dotplot 19275 dotplots 6831 @@ -254684,7 +257666,9 @@ doubletracks 261 doubletree 38844 doubletrees 17459 doublets 715668 +doublette 1611 doubletted 259 +doublettes 750 doubleweight 3579 doublewide 21949 doublewides 2988 @@ -255078,9 +258062,9 @@ downhilling 1048 downhills 14851 downhole 597460 downhome 36644 -downie 3065 +downie 3065 p downier 1629 -downies 5870 +downies 5870 p downiest 5508 downily 724 downiness 5742 @@ -255456,6 +258440,7 @@ dozzle 1456 dozzles 182 dozzling 674 dppe 14632 +dpty 5616 dr 2820742 drab 2763863 drabber 14269 @@ -255485,6 +258470,7 @@ drachmes 3718 drachms 809108 dracma 392 dracmas 178 +draco 40218 dracocephalum 180 dracone 1965 dracones 5165 @@ -255571,6 +258557,7 @@ draggletail 2402 draggletailed 2430 draggletails 597 draggling 10450 +draggly 848 draggy 52518 draghound 259 draghounds 777 @@ -255593,6 +258580,7 @@ dragon 7101884 dragonback 1915 dragonbone 1622 dragonborn 3848 +dragonbreath 153 dragonesque 1392 dragoness 9590 dragonesses 498 @@ -255600,8 +258588,10 @@ dragonet 13873 dragonets 12112 dragonette 802 dragonettes 825 +dragonfire 5069 dragonfish 5812 dragonfishes 3570 +dragonflame 302 dragonflies 352868 dragonfly 366606 dragonhead 10480 @@ -255623,6 +258613,8 @@ dragonlings 850 dragonlord 1334 dragonlords 468 dragonlore 475 +dragonly 485 +dragonmaster 3941 dragonnade 2561 dragonnades 15777 dragonne 921 @@ -255635,8 +258627,11 @@ dragons 2327607 dragonskin 705 dragonslayer 4662 dragonslayers 1218 +dragonstone 2706 +dragonstones 238 dragontail 266 dragontails 117 +dragonwise 50 dragonwort 756 dragony 883 dragoon 368545 @@ -255681,6 +258676,7 @@ drainless 6669 drainlike 184 drainmakers 133 draino 419 +drainout 2114 drainpipe 154199 drainpipes 57292 drainplug 1314 @@ -255799,6 +258795,7 @@ drapings 21638 drapped 15450 drapping 3081 draps 19101 +drasha 907 drastic 9872670 drastically 6588586 drastics 10812 @@ -255876,6 +258873,7 @@ drawdowns 297039 drawed 110285 drawee 1836748 drawees 118468 +drawen 45152 drawer 11550303 drawered 3425 drawerful 13590 @@ -255884,6 +258882,7 @@ drawerless 884 drawerlike 943 drawers 6191864 drawersful 551 +drawes 22310 drawest 16646 draweth 170277 drawfiling 1909 @@ -255973,6 +258972,7 @@ dreadnoughts 136993 dreads 555334 dreadsome 506 dreadworthy 49 +dready 2943 dream 54300377 dreamable 1042 dreamboat 25830 @@ -256160,6 +259160,7 @@ dretching 340 dretful 26647 drever 415 drew 47683620 +drewe 17234 drewest 3275 drey 25691 dreydel 498 @@ -257876,6 +260877,7 @@ duppies 10293 dupping 150 duppy 19049 dups 5027 +dur 1382692 dura 2283291 durabilities 16184 durability 7768004 @@ -257965,6 +260967,7 @@ durotomies 887 durotomy 8319 duroy 3157 duroys 1229 +durr 5320 durra 70860 durras 4298 durrie 1360 @@ -258134,6 +261137,7 @@ duts 2586 dutties 427 duttonite 809 dutty 3605 +dutuburi 291 duty 238992693 dutybound 32298 dutyfree 107033 @@ -258495,6 +261499,8 @@ dyscohesive 2229 dysconjugate 8247 dysconnection 394 dysconnectivity 1208 +dysconscious 2445 +dysconsciousness 848 dyscontrol 57556 dyscoordinate 356 dyscoordinated 515 @@ -258568,6 +261574,7 @@ dysgeneses 1765 dysgenesis 287345 dysgenetic 27685 dysgenic 55403 +dysgenically 723 dysgenics 3822 dysgerminoma 46126 dysgerminomas 16352 @@ -258634,6 +261641,8 @@ dyslamination 726 dyslectic 3337 dyslectics 956 dyslexia 829780 +dyslexiac 233 +dyslexiacs 241 dyslexias 7444 dyslexic 329867 dyslexically 200 @@ -258918,7 +261927,9 @@ dytiscids 4910 dyuers 18920 dyun 594 dz 1352236 +dzeggetai 86 dzeren 492 +dzhezkazganite 482 dzhigit 1186 dzhigits 406 dziggetai 829 @@ -258950,6 +261961,7 @@ eBaying 252 eBays 1008 eBook 10788514 eBooks 137435 +eCall 934 eCommerce 51752 eForm 1091 eForms 1747 @@ -258961,6 +261973,7 @@ eGovernment 29737 eH 71692 eHealth 49169 eICU 1535 +eID 3179 eISBN 166572 eLISA 407 eLearning 55597 @@ -258977,8 +261990,10 @@ eaceworm 213 each 1473294652 eaches 24213 eager 24228384 +eagered 242 eagerer 1436 eagerest 5109 +eagering 241 eagerly 10807769 eagernesses 900 eagers 1071 @@ -259200,7 +262215,9 @@ earthholes 100 earthhood 182 earthhouse 350 earthhouses 323 +earthie 1330 earthier 38218 +earthies 211 earthiest 6907 earthily 6153 earthiness 129680 @@ -259327,6 +262344,7 @@ easing 3270515 easings 10796 easles 3818 easse 640 +eassel 369 east 117920918 eastabout 618 eastbound 1258492 @@ -259356,6 +262374,7 @@ eastland 2990 eastlands 511 eastly 3748 eastmost 5171 +eastness 413 eastonite 1846 easts 35559 eastside 110483 @@ -259377,6 +262396,7 @@ eatables 235140 eatage 3029 eatches 577 eated 102676 +eateing 853 eaten 19182604 eater 1563875 eaterie 2644 @@ -259384,6 +262404,7 @@ eateries 294410 eaters 1776368 eatertainment 2172 eatery 310253 +eates 18427 eatest 96567 eateth 273152 eath 178436 @@ -259702,6 +262723,7 @@ echinulate 59936 echinulated 1056 echinulation 1249 echinulations 2990 +echinulin 1031 echinus 64652 echinuses 494 echistatin 3273 @@ -259941,6 +262963,7 @@ ecocinema 1037 ecocities 1593 ecocity 3642 ecoclimate 1750 +ecoclimates 401 ecoclimatic 4491 ecoclimatology 234 ecoclinal 427 @@ -259977,6 +263000,7 @@ ecodisasters 673 ecodistrict 973 ecodistricts 751 ecodormancy 639 +ecodriving 335 ecoduct 98 ecoducts 532 ecodynamics 1880 @@ -260220,7 +263244,9 @@ ecosphere 69080 ecospheres 3559 ecospheric 1486 ecospiritual 1983 +ecospirituality 1894 ecostate 14405 +ecostratigraphic 1512 ecostratigraphy 1620 ecosynthesis 954 ecosystem 8536950 @@ -260591,6 +263617,7 @@ eczemata 1519 eczematic 1278 eczematiform 540 eczematization 5366 +eczematogenic 895 eczematoid 61073 eczematous 259524 eczemic 809 @@ -260944,6 +263971,7 @@ eer 214974 eerie 2167150 eerieness 3955 eerier 11741 +eeries 4980 eeriest 12654 eerily 602245 eeriness 45213 @@ -261468,6 +264496,7 @@ eidoloscope 842 eidos 145049 eidouranion 440 eids 2448 +eies 84862 eigenanalyses 792 eigenanalysis 17311 eigenangle 653 @@ -261752,6 +264781,7 @@ ejectors 335669 ejectosome 225 ejectosomes 738 ejects 276172 +ejidal 45368 ejido 272551 ejidos 190921 ejit 887 @@ -262084,6 +265114,7 @@ electively 80127 electiveness 2811 electives 1491601 electivity 20131 +electocracy 315 elector 4156260 electoral 12950306 electoralism 6560 @@ -262352,7 +265383,6 @@ electrodermally 1120 electrodermatome 620 electrodes 15004050 electrodesiccation 42682 -electrodessication 6051 electrodiagnosis 23788 electrodiagnostic 98789 electrodiagnostically 1786 @@ -262449,6 +265479,7 @@ electrofused 3603 electrofusing 233 electrofusion 29073 electrogalvanic 5124 +electrogas 11179 electrogasdynamic 6450 electrogasdynamics 2931 electrogastrogram 5513 @@ -262792,7 +265823,9 @@ electrophosphorescent 1160 electrophotographic 93514 electrophotographically 1002 electrophotography 36396 +electrophotometer 9725 electrophotometric 3105 +electrophotometry 795 electrophrenic 8188 electrophylic 1651 electrophysical 66398 @@ -262806,6 +265839,8 @@ electrophysiologists 16246 electrophysiology 345349 electroplaque 9045 electroplaques 11059 +electroplastic 4957 +electroplasticity 455 electroplatable 675 electroplate 88835 electroplated 338371 @@ -262880,6 +265915,7 @@ electrorefine 454 electrorefined 12855 electrorefinery 359 electrorefining 62619 +electroremediation 541 electrorepulsion 395 electrorepulsive 190 electroresistance 2497 @@ -263252,6 +266288,9 @@ eliche 768 elicit 6573960 elicitability 957 elicitable 22273 +elicitate 578 +elicitated 1734 +elicitating 752 elicitation 557735 elicitations 20422 elicited 7016443 @@ -263376,6 +266415,7 @@ ellipticines 1920 ellipticities 23128 ellipticity 359526 elliptick 323 +elliptics 14539 ellipting 70 elliptization 297 elliptocyte 1023 @@ -264278,6 +267318,7 @@ emic 259704 emically 10531 emicant 256 emication 168 +emicity 133 emiction 290 emictory 42 emicymarin 233 @@ -264853,6 +267894,7 @@ enallages 174 enals 6720 enamel 8121263 enameled 1928606 +enameledware 2094 enameler 21693 enamelers 31096 enamelin 4586 @@ -264962,6 +268004,7 @@ enantioselective 112302 enantioselectively 3938 enantioselectivities 18658 enantioselectivity 81815 +enantiosemy 281 enantioseparated 176 enantioseparation 5250 enantioseparations 1724 @@ -265396,6 +268439,7 @@ encradles 95 encranial 1263 encreased 124193 encreases 16643 +encreaseth 5375 encreasing 49287 encrimson 1635 encrimsoned 8308 @@ -265656,6 +268700,8 @@ endianness 5338 endict 403 endicted 1421 endictments 315 +endie 1202 +endies 517 endif 110230 ending 73076168 endingless 2866 @@ -266921,6 +269967,7 @@ enhardened 217 enharmonic 133983 enharmonical 195 enharmonically 21476 +enharmonicism 1335 enharmony 1291 enhaunces 92 enhearse 42 @@ -266959,6 +270006,7 @@ enigmatize 155 enigmatized 273 enigmatizes 123 enigmatizing 118 +enigmatologist 174 enigmatology 399 enilconazole 2663 enimine 1112 @@ -267144,6 +270192,7 @@ enneandrous 169 enneaploid 158 enneastyle 629 enneasyllabic 442 +enneasyllable 84 ennemies 10664 ennet 3664 ennets 547 @@ -267492,6 +270541,7 @@ enslavest 147 enslaveth 372 enslaving 497723 enslavings 364 +enslumbered 101 ensnare 339571 ensnared 418096 ensnarement 12065 @@ -268240,7 +271290,6 @@ entreative 231 entreaty 961356 entrechat 15598 entrechats 12254 -entred 205912 entrelac 2246 entremet 4609 entremetier 595 @@ -268272,7 +271321,6 @@ entresols 2521 entrest 746 entreth 10747 entries 34508609 -entring 56485 entrism 1582 entrist 814 entrists 177 @@ -268433,6 +271481,7 @@ enviableness 342 enviably 50441 envier 12034 enviers 10848 +envies 299545 envigorate 1213 envigorated 2321 envigorates 307 @@ -268496,6 +271545,7 @@ envoplakin 2110 envoy 2961070 envoys 2037193 envoyship 1302 +envy 9298211 envyfree 309 envyfreeness 126 envyingly 1337 @@ -268505,6 +271555,9 @@ enwalled 2047 enwalling 341 enwalls 131 enweave 586 +enweaved 313 +enweaves 477 +enweaving 55 enwiden 137 enwidened 180 enwind 912 @@ -268516,6 +271569,8 @@ enwombed 5547 enwombing 653 enwombs 484 enwound 6687 +enwove 709 +enwoven 6783 enwrap 43920 enwrapment 1644 enwrapments 745 @@ -270324,13 +273379,16 @@ equiprobabilities 352 equiprobability 20283 equiprobable 87048 equiprobably 5308 +equiproportion 258 equiproportional 8015 equiproportionality 419 equiproportionate 6988 equips 341482 equipt 101638 equiradial 1187 +equire 46156 equirectangular 2117 +equires 34320 equiripple 23424 equirotal 79 equisatisfiable 365 @@ -270773,6 +273831,7 @@ erm 166057 ermine 781989 erminea 32958 ermined 43785 +erminee 133 erminelike 128 ermines 43971 ermining 8353 @@ -271566,6 +274625,7 @@ espantoon 527 espantoons 119 esparto 128063 especial 7651503 +especiality 696 especialize 210 especially 327133416 especifically 1144 @@ -271845,6 +274905,8 @@ estivator 210 estivators 981 estivoautumnal 15283 estmark 126 +estoc 3399 +estocs 215 estoile 3297 estoiles 4527 estop 953864 @@ -271945,6 +275007,7 @@ esurient 8618 esuriently 157 esurine 106 esylate 385 +esymplastic 103 eszett 260 eszopiclone 18028 et 416905475 @@ -272067,6 +275130,7 @@ ethaverine 2342 ethchlorvynol 38836 ethea 1400 ethel 30459 +ethels 188 ethene 129423 ethenes 17982 ethenic 1198 @@ -273048,6 +276112,7 @@ eulogizing 151806 eulogy 2248153 eulophid 7086 eulophids 1336 +eulytine 468 eulytite 1121 eumalacostracan 1503 eumastacid 215 @@ -273191,6 +276256,7 @@ euphorically 20125 euphorics 2860 euphorigenic 7992 euphorine 1261 +euphorious 917 euphorogenic 2995 euphory 1086 euphotic 165487 @@ -273213,6 +276279,7 @@ euphuistically 2922 euphuists 3109 euphuize 101 euphuized 129 +euphyllin 2342 euphylline 1274 euphyllophytes 700 eupion 2803 @@ -273323,6 +276390,7 @@ euryplastic 1000 eurypterid 21733 eurypterids 53032 eurypteroid 373 +eurypteroids 101 eurypylous 1406 eurysaline 116 eurysome 308 @@ -273743,11 +276811,14 @@ eventlessly 757 eventlessness 2149 eventlike 1316 eventology 145 +eventrate 1462 +eventrated 2537 eventration 50386 eventrations 3271 events 157743346 eventscape 98 eventual 10745219 +eventualism 193 eventualities 397891 eventualize 1063 eventualized 753 @@ -273847,6 +276918,7 @@ everythang 4552 everythin' 384 everything 158263689 everythingness 1864 +everythink 10704 everyting 13379 everyware 798 everyway 47128 @@ -274239,6 +277311,8 @@ excambion 1208 excambions 209 excambium 1259 excandescence 106 +excardinate 148 +excardinated 455 excardination 2771 excarnate 4702 excarnated 1625 @@ -274380,6 +277454,8 @@ exchangeable 1841606 exchangeables 6807 exchangeably 4642 exchanged 18020432 +exchangee 17812 +exchangees 26677 exchangeless 689 exchanger 4565388 exchangers 2577935 @@ -274584,6 +277660,7 @@ excoriations 150200 excoriator 893 excoriators 421 excorporation 4752 +excorticate 401 excortication 330 excos 514 excrement 1190522 @@ -274969,6 +278046,8 @@ exhaustless 275936 exhaustlessly 1355 exhaustlessness 1532 exhausts 1333168 +exhbn 2907 +exhbns 3031 exhedra 1338 exhedrae 340 exhedras 150 @@ -275238,6 +278317,7 @@ exodermis 10802 exodes 1075 exodeviation 9881 exodeviations 5724 +exodi 516 exodic 1951 exodists 517 exodoi 266 @@ -275489,6 +278569,7 @@ exosite 9369 exosites 1520 exoskarn 1839 exoskarns 825 +exoskeleta 159 exoskeletal 34342 exoskeletally 102 exoskeleton 346809 @@ -275947,6 +279028,9 @@ explanatorily 35184 explanatoriness 2140 explanators 2540 explanatory 10388914 +explaned 6521 +explanes 366 +explaning 8264 explant 238818 explantation 64279 explantations 2501 @@ -275954,6 +279038,7 @@ explanted 140357 explanting 6312 explants 561912 explement 3634 +explemental 177 explementary 407 explements 465 expletive 355574 @@ -276239,7 +279324,6 @@ expropriators 25881 expropriatory 17164 exproprioception 283 exproprioceptive 953 -expugnable 912 expugnation 552 expugner 79 expulsatory 782 @@ -276344,6 +279428,7 @@ exsiccator 8210 exsiccators 949 exsiccatum 1998 exsiccosis 854 +exsmoker 3428 exsolution 131611 exsolutions 2685 exsolve 6312 @@ -276848,6 +279933,7 @@ extragradient 1455 extragranular 4392 extraguild 321 extrahaustorial 1797 +extrahazardous 98481 extrahelical 2842 extrahematopoietic 365 extrahepatic 462059 @@ -277096,6 +280182,7 @@ extrasellar 10062 extrasemantic 521 extrasensible 320 extrasensitive 6418 +extrasensorial 861 extrasensorily 529 extrasensory 208802 extrasensuous 121 @@ -277428,6 +280515,7 @@ exuvium 20849 exvessel 68729 exwife 64702 exwives 6001 +exworker 316 exx 32469 exy 15087 ey 2071774 @@ -277659,6 +280747,7 @@ f'rever 469 fALS 2593 fCT 4415 fMRI 758925 +fMRIs 5162 fNIRS 9405 fPET 236 fa 5845626 @@ -277804,6 +280893,7 @@ facelifting 18056 facelifts 25938 facelike 7799 facelock 288 +facemaking 1041 facemask 62146 facemasks 16444 faceoff 19129 @@ -278022,6 +281112,7 @@ factorialization 261 factorialized 503 factorially 45191 factorials 93756 +factoried 1113 factories 29031798 factoring 1176367 factorings 3562 @@ -278279,6 +281370,7 @@ faineant 14057 faineantise 594 faineants 4959 fainer 2191 +faines 2192 fainest 1762 faining 9372 fainly 2304 @@ -278840,6 +281932,7 @@ fanfolds 1458 fanfuckingtastic 347 p fang 792746 fanga 2995 +fangal 223 fangame 63 fangas 244 fangblenny 251 @@ -278928,6 +282021,7 @@ fantail 171895 fantailed 3887 fantails 24125 fantan 5193 +fantascience 163 fantasia 263072 fantasias 98660 fantasied 90912 @@ -279165,6 +282259,7 @@ farmerly 1510 farmers 81629210 farmership 310 farmery 4568 +farmes 16685 farmeth 54 farmette 2649 farmettes 1779 @@ -279725,6 +282820,7 @@ faucial 155773 faucitis 1594 faudes 191 faugh 16055 +fauj 852 faujasite 29810 faujasites 7966 faujdar 2475 @@ -279919,6 +283015,7 @@ fawnings 3311 fawnish 1050 fawnlike 6347 fawns 573095 +fawnsfoot 476 fawnskin 8631 fawnskins 2570 faws 5082 @@ -280102,7 +283199,6 @@ featless 866 featliest 62 featly 26873 featness 592 -featous 174 feats 2675336 featural 51798 featurally 3199 @@ -280165,17 +283261,17 @@ fecaluria 2323 feces 4994597 fecial 18319 fecials 1636 -feck 22169 p -fecked 1249 p +feck 22169 +fecked 1249 fecker 2028 feckers 609 feckful 283 -fecking 11405 p +fecking 11405 feckless 223155 fecklessly 6984 fecklessness 34068 feckly 243 -fecks 2113 p +fecks 2113 fecolith 2141 fecoliths 1496 fecosterol 780 @@ -280380,6 +283476,7 @@ feelingness 1253 feelings 74403291 feels 42772785 feelsome 152 +feelst 1152 feelth 347 feely 92363 feen 50408 @@ -280396,6 +283493,7 @@ feesh 12893 feete 89430 feeted 3420 feetfirst 20570 +feeties 340 feetless 2200 feetlong 9081 feets 37302 @@ -280506,7 +283604,9 @@ fella 829970 fellable 305 fellage 107 fellagha 4249 +fellaghas 3767 fellah 163619 +fellahdom 291 fellaheen 77271 fellahin 99511 fellahs 50793 @@ -280986,6 +284086,8 @@ ferbam 61227 ferberite 54052 ferberites 430 fercockta 54 +fercrissake 64 +fercrissakes 151 ferene 1666 ferenghi 729 feres 31077 @@ -281068,6 +284170,7 @@ fernery 32296 fernet 2521 fernets 99 fernier 104 +fernily 50 ferning 16322 ferninst 3651 fernland 1115 @@ -281780,6 +284883,7 @@ ff 15122366 fforde 980 ffrench 53134 ffs 62966 p +fg 363258 fi 11830092 fiacitabine 98 fiacre 66035 @@ -282321,6 +285425,8 @@ fiducials 40550 fiduciaries 1853604 fiduciarily 1599 fiduciary 12244932 +fidya 310 +fidyah 96 fie 998347 fied 1763814 fiedlerite 483 @@ -282700,7 +285806,6 @@ filibusterings 267 filibusterism 6329 filibusterous 159 filibusters 282244 -filical 160 filicic 9791 filicidal 5834 filicide 28234 @@ -282732,6 +285837,7 @@ filker 189 filkers 282 filking 761 filks 708 +filksinging 116 fill 77083953 fill'd 267904 fillability 1084 @@ -283274,6 +286380,7 @@ finned 614201 finnemanite 138 finner 12552 finners 6201 +finnes 8353 finnesko 4530 finneskos 142 finnicky 3532 @@ -283384,6 +286491,7 @@ firebugs 17195 firecall 301 firecalls 101 firecan 100 +firecoal 3319 firecocks 131 firecracker 248486 firecrackers 467968 @@ -283760,6 +286868,7 @@ fishes 14003645 fishest 87 fisheth 902 fisheye 71092 +fisheyed 1278 fisheyes 9847 fishfag 413 fishfags 170 @@ -284335,6 +287444,7 @@ flagtails 378 flagwaver 3716 flagwavers 1704 flagwaving 11701 +flagway 2337 flagwoman 625 flagwomen 170 flagworm 425 @@ -284400,6 +287510,7 @@ flamboyant 1420381 flamboyantly 115491 flamboyants 6312 flamboyer 314 +flamboys 660 flamdoodle 240 flame 30358414 flameable 131 @@ -284800,6 +287911,7 @@ flatulence 682411 flatulences 699 flatulencies 3401 flatulency 65187 +flatulent 157484 flatulently 1276 flatulist 201 flatulogenic 349 @@ -285327,7 +288439,6 @@ flickering 2692337 flickeringly 7433 flickerings 31930 flickerless 11734 -flickermouse 144 flickers 457115 flickertail 1947 flickertails 794 @@ -285715,7 +288826,6 @@ floofing 160 floofs 399 floofy 582 flooie 609 -flook 8470 flookan 353 flooks 3723 floom 5099 @@ -286120,6 +289230,7 @@ floxes 127 floxing 648 floxuridine 22611 floytes 121 +flr 88970 flu 3197411 fluanisone 2324 fluavil 1173 @@ -286157,6 +289268,7 @@ fluctuated 2087137 fluctuates 1448135 fluctuatest 123 fluctuating 4609007 +fluctuatingly 1643 fluctuatings 90 fluctuation 6225329 fluctuational 23472 @@ -286773,6 +289885,7 @@ flusterated 639 flusteration 1103 flustered 823750 flusteredly 684 +flusteredness 227 flustering 11609 flusterment 250 flusters 7023 @@ -286850,7 +289963,6 @@ fluvially 13341 fluviated 54 fluviatic 844 fluviatile 232555 -fluviation 243 fluvic 1030 fluvioglacial 30904 fluviograph 1912 @@ -286874,7 +289986,6 @@ fluxes 4775670 fluxgate 56745 fluxgates 2447 fluxibility 443 -fluxible 1998 fluxile 746 fluximetry 262 fluxing 532194 @@ -286895,8 +290006,10 @@ fluxomic 134 fluxomics 541 fluxon 16404 fluxons 9416 +fluxstone 8084 fluxtube 2159 fluxtubes 2227 +fluxy 403 fluyt 2813 fluyts 701 fly 46331231 @@ -287033,11 +290146,11 @@ fmole 7211 fmoles 13470 fmols 1163 fmr 19203 -fmri 2384 fmt 33502 fmz 465 fn 2075127 fnar 845 +fnc 33048 fnord 616 fns 57831 fo 6068224 @@ -287515,7 +290628,6 @@ followups 90439 folly 10413840 folpet 23164 folwed 8912 -folwes 59 folwing 14120 folx 1096 folyl 1957 @@ -287692,6 +290804,7 @@ foolhood 233 foolin' 449 fooling 1549724 foolings 2280 +foolio 147 foolish 15951814 foolisher 6690 foolishest 20531 @@ -287757,6 +290870,7 @@ footbindings 389 footboard 272076 footboards 55251 footboat 507 +footboats 136 footbone 775 footbones 1490 footbound 2829 @@ -288461,6 +291575,7 @@ forelaid 1222 foreland 338367 forelands 36295 forelash 57 +forelast 142 forelay 1834 forelaying 331 forelays 156 @@ -288477,6 +291592,7 @@ forelight 607 forelights 239 forelimb 309637 forelimbs 227023 +foreline 12596 forelived 122 forellenstein 817 forellensteins 123 @@ -288943,6 +292059,8 @@ forgeable 21289 forged 9864767 forgelike 190 forgeman 7530 +forgemaster 1679 +forgemasters 1415 forgemen 15887 forger 592605 forgeries 1023918 @@ -289092,6 +292210,7 @@ formaldehyde 5268683 formaldehydes 12650 formaldehydesulphoxylate 406 formaldoxime 5120 +formalese 58 formalesque 178 formalin 1929347 formaline 29503 @@ -289280,6 +292399,7 @@ formularizes 309 formularizing 1289 formulary 736735 formulas 18591688 +formulatable 2963 formulate 10876965 formulated 18083280 formulates 1089737 @@ -289697,6 +292817,7 @@ foulants 19643 foulard 76009 foulards 23350 foulbrood 183452 +foulbroods 1000 fouled 877737 fouler 98417 foulers 5245 @@ -290155,6 +293276,7 @@ fraid 118340 fraidy 13211 frail 5343634 frailed 2317 +frailejon 1158 frailer 87080 frailers 395 frailest 68871 @@ -290340,6 +293462,7 @@ franzy 2567 frap 6322 frape 2543 frapes 144 +frapp 1874 frappe 80241 frapped 5641 frappes 12465 @@ -290451,7 +293574,6 @@ fraying 303330 frayings 1577 frayproof 59 frays 93741 -frazil 86472 frazils 133 frazzle 83262 frazzled 248365 @@ -290750,6 +293872,8 @@ freightable 1433 freightage 141579 freightages 628 freighted 709354 +freightening 1427 +freightens 109 freighter 1395307 freighters 946793 freightest 123 @@ -291654,6 +294778,7 @@ froup 12089 froups 1338 froust 330 frousting 120 +frousy 1486 frouzily 189 frouzy 5653 frover 88 @@ -291797,6 +294922,7 @@ frugs 897 fruit 89312913 fruitage 343845 fruitages 1099 +fruital 1471 fruitarian 10498 fruitarianism 1276 fruitarians 5704 @@ -291938,6 +295064,7 @@ fruticulose 7123 fruticulture 242 frutification 369 frutify 1282 +frwy 672 fry 5075590 fryable 945 fryars 4001 @@ -291954,13 +295081,14 @@ frypans 4792 fsck 39057 fsec 32258 fsecs 160 -fsr 22111 ft 67868644 ftira 219 ftpi 923 ftw 20444 fu 2240837 fuage 858 +fuang 2375 +fuangs 392 fuar 2687 fuars 96 fubar 2561 @@ -292236,6 +295364,7 @@ fuh 82390 fuhgetaboutit 95 fuidhir 535 fuidhirs 429 +fujara 751 fuji 17591 fujis 325 fujo 1838 @@ -292406,6 +295535,7 @@ fulvenes 6286 fulvescent 4637 fulvestrant 17081 fulvic 226809 +fulvics 431 fulvid 766 fulvous 546636 fumacious 237 @@ -292497,6 +295627,7 @@ fumonisin 47889 fumonisins 30701 fumose 10922 fumosities 339 +fumper 65 fumulus 322 fumy 9347 fun 36918820 @@ -292572,6 +295703,7 @@ funda 346716 fundability 3918 fundable 97380 fundae 884 +fundage 305 fundal 120592 fundament 156453 fundamental 89220734 @@ -292723,6 +295855,7 @@ fungosities 9921 fungosity 1301 fungous 732093 fungs 1990 +funguria 3125 fungus 9490862 fungused 4738 funguses 20193 @@ -292979,9 +296112,11 @@ furnisheth 8138 furnishing 23956131 furnishings 8706074 furniture 45060875 +furnitured 1331 furnitureless 1994 furnituremaker 3760 furnituremakers 4466 +furnituremaking 6951 furnitures 27352 furo 38768 furoate 43388 @@ -293053,6 +296188,7 @@ furtaker 1455 furtakers 1106 furtaking 2111 furth 130422 +furthcoming 1385 furthen 2419 further 491663603 furtherance 5979503 @@ -293375,6 +296511,8 @@ fuzziness 271522 fuzzinesses 160 fuzzing 40071 fuzzless 3538 +fuzztail 348 +fuzztails 323 fuzztone 2463 fuzztoned 53 fuzztones 388 @@ -293385,6 +296523,7 @@ fuzzyheaded 2317 p fuzzyheadedness 135 fuzzywuzzy 699 fwd 118781 +fwdd 171 fwded 45 fwding 378 fwds 1009 @@ -293424,6 +296563,7 @@ g'hal 540 g'hals 544 g'head 329 g'night 2716 +g's 932 gDNA 7565 gE 33670 gEs 388 @@ -293496,7 +296636,6 @@ gabioned 132 gabionnade 2541 gabionnades 111 gabions 115667 -gable 1547519 gabled 494120 gablelike 702 gables 748673 @@ -293544,6 +296683,7 @@ gadgers 259 gadges 531 gadget 848341 gadgeteer 10694 +gadgeteering 6070 gadgeteers 7551 gadgetless 503 gadgetries 874 @@ -293722,7 +296862,6 @@ gainstander 169 gainstanders 163 gainstood 169 gairaigo 1610 -gairfowl 242 gaison 342 gait 5083956 gaited 127377 @@ -294010,6 +297149,7 @@ galingales 470 galinstan 227 galiot 14055 galiots 4178 +galip 1242 galipot 2674 galipots 321 galium 8165 @@ -294027,6 +297167,8 @@ gallabiyah 164 gallabiyahs 155 gallabiyas 492 gallacetophenone 778 +gallah 402 +gallahs 152 gallamine 51131 gallane 1092 gallanes 550 @@ -294042,6 +297184,8 @@ gallants 313869 gallate 144008 gallates 14985 gallaunts 97 +gallavant 130 +gallavanting 793 gallberries 2196 gallberry 43692 galleass 9358 @@ -294292,6 +297436,7 @@ galvanizers 25400 galvanizes 36910 galvanizing 842586 galvanizingly 147 +galvanizings 97 galvanneal 5325 galvannealed 12657 galvannealing 3461 @@ -294757,6 +297902,10 @@ gangmen 3871 gangosa 14154 gangplank 417487 gangplanks 36486 +gangplough 161 +gangploughs 97 +gangplow 2234 +gangplows 1293 gangrape 1087 gangraped 3332 gangraping 342 @@ -294766,7 +297915,6 @@ gangrels 516 gangrene 2506141 gangrened 33727 gangrenes 10476 -gangrenescent 385 gangrening 988 gangrenous 843606 gangrenously 206 @@ -294833,7 +297981,6 @@ ganoblast 325 ganoblasts 1682 ganof 275 ganoid 57508 -ganoidal 869 ganoidean 396 ganoids 56098 ganoin 4414 @@ -295187,6 +298334,7 @@ garpikes 3830 garrafeira 420 garran 1917 garrans 721 +garrelsite 664 garret 1220347 garreteer 2324 garreteers 1564 @@ -295661,6 +298809,7 @@ gatecrashes 409 gatecrashing 2737 gated 2325254 gatefold 28995 +gatefolded 67 gatefolds 7550 gatehouse 345973 gatehouses 26940 @@ -295764,6 +298913,7 @@ gaufrette 1148 gaufrettes 1330 gaugable 740 gauge 21541495 +gaugeability 190 gaugeable 3114 gauged 1746993 gaugelike 211 @@ -296009,6 +299159,7 @@ gazons 1579 gazoo 2311 gazoon 51 gazoos 181 +gazoz 826 gazpacho 65965 gazpachos 1402 gazump 693 @@ -296349,6 +299500,7 @@ gemel 3548 gemellary 287 gemelle 1888 gemelled 55 +gemelles 1131 gemellology 407 gemels 527 gemeprost 3896 @@ -296382,6 +299534,7 @@ gemmaceous 474 gemmae 80171 gemmal 317 gemman 21462 +gemmas 5278 gemmate 4009 gemmated 203 gemmates 99 @@ -296464,6 +299617,7 @@ gendarmery 17333 gendarmes 669166 gendarussa 683 gender 36349616 +genderal 1235 genderbend 52 genderbending 3833 genderbent 57 @@ -296801,6 +299955,7 @@ genizas 301 genizot 641 genizoth 144 genkan 6333 +genki 5506 genkwanin 600 genlock 13670 genlocked 1917 @@ -297757,6 +300912,7 @@ gerardia 10012 gerardias 1965 gerascophobia 226 gerasimovskite 109 +geratologic 376 geratology 1000 gerb 2318 gerbe 9553 @@ -297798,6 +300954,7 @@ geriatry 441 gerim 10885 geringsing 1240 geris 3691 +gerkins 985 germ 10393567 germacranolide 2158 germacranolides 2170 @@ -298192,6 +301349,7 @@ ghauts 7129 ghawazee 1025 ghawazees 115 ghayn 887 +ghayra 917 ghazal 59846 ghazals 32093 ghazawat 627 @@ -298203,6 +301361,7 @@ ghazis 10113 ghazwa 1120 ghazwat 94 ghee 310066 +gheera 72 ghees 1618 gheimeh 75 gherao 2991 @@ -298226,6 +301385,7 @@ ghettoise 302 ghettoised 1955 ghettoish 286 ghettoising 419 +ghettoism 2212 ghettoization 88384 ghettoizations 295 ghettoize 10255 @@ -298241,6 +301401,7 @@ ghichak 613 ghijak 286 ghillie 17575 ghillies 5331 +ghira 102 ghit 572 ghittern 1541 ghitterns 227 @@ -298498,6 +301659,7 @@ gigabarrels 456 gigabase 697 gigabases 1217 gigabaud 651 +gigabecquerel 853 gigabit 131062 gigabits 39137 gigabuck 432 @@ -299076,6 +302238,7 @@ gitting 34706 gittinsite 282 gittith 1634 gitty 1159 +giudecca 389 giuen 142771 giustamente 1388 giusto 29107 @@ -299100,6 +302263,7 @@ givers 1046673 gives 196428268 givest 197087 giveth 1214539 +givey 2142 givin' 116 giving 185861875 givingness 4893 @@ -299204,6 +302368,7 @@ gladened 1374 gladening 502 gladens 267 glades 628365 +gladey 391 gladful 970 gladfully 345 gladfulness 470 @@ -299255,6 +302420,7 @@ glady 14444 glaebule 749 glaebules 4469 glafenine 821 +glagah 339 glagol 1486 glaik 207 glaikit 2443 @@ -299263,8 +302429,11 @@ glair 12211 glaired 914 glaireous 132 glairin 429 +glairiness 193 glairing 867 glairs 408 +glaistig 1324 +glaistigs 353 glaive 42424 glaived 685 glaives 8914 @@ -299322,6 +302491,7 @@ glams 1693 glance 28698220 glanceable 615 glanced 20240397 +glancedst 105 glanceless 109 glancer 2011 glancers 948 @@ -299377,7 +302547,10 @@ glarings 922 glark 1425 glarks 196 glary 34525 +glased 7304 glaserite 9586 +glases 4965 +glasing 1613 glasma 470 glasnost 441516 glasphalt 4687 @@ -299421,6 +302594,7 @@ glassine 221949 glassines 7403 glassiness 17507 glassing 36799 +glassite 2285 glassless 37642 glasslike 73741 glassmaker 52529 @@ -299507,6 +302681,8 @@ glazework 166 glazier 196523 glaziers 193430 glaziery 475 +glazily 197 +glaziness 147 glazing 2285300 glazings 66091 glaziovine 261 @@ -299549,12 +302725,14 @@ glebes 46910 glebous 939 gleby 1325 glecaprevir 576 +gled 94294 glede 8814 gledes 2038 gledge 507 gledged 419 gledges 96 gledging 207 +gleds 563 glee 2576890 gleecraft 103 gleed 3802 @@ -299608,6 +302786,7 @@ glent 3681 glented 164 glents 97 gleptoferron 680 +gletcher 207 glews 401 gley 88946 gleyed 40950 @@ -299957,6 +303136,7 @@ globulists 277 globulite 708 globulites 8105 globulitic 6352 +globulol 749 globulose 1999 globulous 3640 globus 454539 @@ -300134,19 +303314,25 @@ gloryholing 187 glorying 274353 gloryingly 245 gloryless 478 +glose 22957 +glosed 3293 glosers 389 +gloses 5633 +glosing 5131 gloss 4050828 glossa 49008 glossae 14422 glossal 33711 glossalgia 1214 glossanthrax 313 +glossaria 725 glossarial 14275 glossarian 182 glossarians 137 glossaries 306783 glossarist 2755 glossarists 3319 +glossarium 2726 glossarized 594 glossary 3675351 glossas 1076 @@ -300159,6 +303345,7 @@ glossectomized 493 glossectomy 28771 glossed 802081 glossematic 4186 +glossematicians 302 glossematics 6113 glosseme 1215 glossemes 1086 @@ -300584,6 +303771,7 @@ gluelike 16033 gluemaker 774 gluemakers 523 gluemaking 616 +glueman 496 gluepot 7567 gluepots 2467 gluer 32925 @@ -301201,6 +304389,7 @@ glypiation 378 glypican 10953 glypicans 1861 glyptal 14094 +glyptals 1613 glyptic 44766 glyptics 5780 glyptodons 3100 @@ -301316,10 +304505,12 @@ gnawingly 2076 gnawings 37970 gnawn 9138 gnaws 222526 +gnc 3545 gneiss 3119862 gneisses 955472 gneissgranite 323 gneissic 289202 +gneissification 531 gneissoid 107773 gneissoids 373 gneissose 22140 @@ -301394,6 +304585,8 @@ gnotobiotes 3587 gnotobiotic 83694 gnotobiotically 595 gnotobiotics 3974 +gnr 4834 +gnrs 214 gnu 127785 gnudi 2155 gnus 51506 @@ -301486,6 +304679,7 @@ goatish 30336 goatishly 594 goatishness 1660 goatkeeper 929 +goatkeepers 522 goatless 409 goatlet 200 goatlets 91 @@ -301852,6 +305046,7 @@ goldcrests 2149 goldcup 1749 goldcups 179 golddigging 5213 +golddiggings 869 golde 128874 golded 3077 golden 34506176 @@ -302345,6 +305540,8 @@ gooched 118 gooches 567 gooching 50 good 1006030106 +goodbuddies 125 +goodbuddy 600 goodby 187772 goodbye 3621182 goodbyed 165 @@ -302462,6 +305659,7 @@ gooky 2283 p goolie 895 goolies 2819 p gooly 608 p +goom 6545 goomah 513 goomar 405 goomba 5660 @@ -302552,9 +305750,7 @@ goosestepping 8815 goosesteps 1308 goosetongue 411 gooseweed 1030 -goosewing 1574 goosewinged 806 -goosewings 199 goosey 34570 gooseys 157 goosh 3922 @@ -302588,6 +305784,7 @@ gopura 7862 gopuram 5484 gopurams 3941 gopuras 7797 +gor 146410 gora 24534 goral 15628 gorals 3377 @@ -302775,6 +305972,7 @@ gossan 145227 gossaniferous 230 gossans 31010 gosses 4247 +gossibs 279 gossima 134 gossip 7574635 gossip'd 1706 @@ -302868,6 +306066,7 @@ gougings 5769 goujon 3573 goujonettes 520 goujons 1900 +goulasch 930 goulash 123236 goulashes 3851 gouls 1257 @@ -302961,6 +306160,7 @@ governessy 2667 governest 5014 governeth 16976 governing 50814378 +governless 342 government 562209423 governmental 46910363 governmentalese 438 @@ -303117,11 +306317,13 @@ gracious 9595108 graciously 3584370 graciousness 617716 graciousnesses 945 +gracists 116 grackle 103346 grackles 121697 grad 2705660 gradability 9944 gradable 28946 +gradacol 670 gradate 27293 gradated 52364 gradates 13569 @@ -303170,6 +306372,8 @@ gradiometer 87928 gradiometers 26085 gradiometric 2647 gradiometry 12164 +gradocol 4505 +gradoo 219 grads 516673 gradual 24954945 gradualism 259471 @@ -303375,6 +306579,7 @@ grammatization 2640 grammatize 219 grammatized 959 grammatizing 299 +grammatolatry 120 grammatologic 54 grammatological 7168 grammatologically 285 @@ -303390,6 +306595,7 @@ grammemes 1272 grammemic 227 grammes 1641082 grammid 84 +grammie 1350 grammies 621 grammistid 307 grammistids 275 @@ -303405,6 +306611,7 @@ gramoxone 1578 gramp 5639 grampa 24653 grampas 1271 +grampie 124 grampies 322 grampop 161 gramps 26200 @@ -303717,6 +306924,7 @@ granularly 10514 granulary 677 granulate 368773 granulated 2608212 +granulater 258 granulates 39661 granulating 326582 granulation 1845502 @@ -304250,6 +307458,9 @@ gravitators 376 gravitatory 201 gravitaxis 2520 gravitic 12558 +gravitically 149 +gravitics 2807 +gravitied 311 gravities 689292 gravitino 23108 gravitinos 8290 @@ -304528,7 +307739,7 @@ greenheart 48121 greenhearts 363 greenhood 503 greenhoods 233 -greenhorn 204824 +greenhorn 204824 p greenhornism 95 greenhorns 94715 greenhouse 9912290 @@ -304614,6 +307825,7 @@ greenswarded 741 greenswards 8019 greentech 749 greenth 1940 +greenthorn 191 greenward 595 greenware 19452 greenwares 566 @@ -304680,6 +307892,7 @@ greisens 16963 greit 28547 greiting 47 greits 45 +grem 4198 gremial 5917 gremials 230 gremlin 61118 @@ -304688,6 +307901,7 @@ gremlins 78868 gremmie 710 gremmies 648 gremolata 13437 +grems 831 grenache 10076 grenaches 105 grenade 1643144 @@ -304784,6 +307998,7 @@ grid 22603920 gridded 298232 gridder 3928 gridders 9822 +griddies 214 gridding 88771 griddings 407 griddle 584875 @@ -304834,6 +308049,7 @@ grieflessness 167 grieflike 475 griefs 1154038 griefwork 2909 +griefy 198 gries 10948 grievance 14492401 grievances 11029733 @@ -304853,6 +308069,7 @@ grieving 2330588 grievingly 2261 grievings 3179 grievious 15691 +grievor 13431 grievous 3372003 grievousest 207 grievously 1116757 @@ -305143,6 +308360,7 @@ groaty 252 grob 9625 grobble 115 grobian 1255 +grobianism 463 grobians 277 grocer 2792384 grocer's 1243 @@ -305369,6 +308587,8 @@ groundbreakingly 464 groundbreakings 3143 groundburst 2811 groundbursts 1455 +groundcar 10676 +groundcars 2481 groundcherries 1734 groundcherry 13631 groundcloth 4126 @@ -305403,6 +308623,7 @@ groundline 71844 groundlines 5210 groundling 23287 groundlings 95969 +groundlubber 165 groundly 1167 groundman 21273 groundmass 802296 @@ -305424,6 +308645,8 @@ groundsels 5993 groundset 308 groundsheet 14329 groundsheets 4347 +groundside 11816 +groundsiders 177 groundsill 2734 groundsills 1126 groundskeeper 86168 @@ -305514,6 +308737,7 @@ groupwork 48866 groupworker 4830 groupworkers 1871 groupy 4998 +grouse 3048755 grouseberries 115 grouseberry 937 groused 151331 @@ -305825,6 +309049,7 @@ gryping 747 grysbok 3879 grysboks 350 grzywna 167 +gs 870864 gsg 2418 gsm 23679 gt 513070 @@ -305859,6 +309084,7 @@ guaiacolsulfonate 5137 guaiacs 1332 guaiacum 98130 guaiacums 111 +guaiacwood 508 guaiacyl 27157 guaiane 973 guaianes 57 @@ -305878,6 +309104,7 @@ guajilote 118 guajira 7249 guajiro 13509 guajiros 10215 +guala 766 guama 3819 guan 112792 guana 12136 @@ -305979,6 +309206,7 @@ guarantee 44026914 guaranteeable 15918 guaranteeably 100 guaranteed 34897668 +guaranteedly 106 guaranteeing 4139666 guaranteer 921 guaranteers 238 @@ -306085,6 +309313,7 @@ gubernators 318 gubernatrix 1028 gubernia 31937 gubernias 17731 +gubernium 1011 guberniya 18025 guberniyas 5852 gubernya 312 @@ -306138,6 +309367,7 @@ guerites 535 guernsey 11025 guernseys 2987 guerrilla 5263644 +guerrillaism 2431 guerrillalike 874 guerrillas 3629670 guerrillero 18584 @@ -306289,6 +309519,7 @@ guidon 93545 guidons 54423 guidos 2807 guids 4091 +guifts 14074 guige 2060 guiges 169 guijo 4071 @@ -306306,6 +309537,7 @@ guildmate 184 guildmates 1122 guildmember 124 guildmembers 451 +guildmistress 1533 guildry 2135 guilds 2057909 guildship 514 @@ -306417,6 +309649,8 @@ guitary 314 guitguit 120 guittar 3112 guittars 648 +guivre 1278 +guivres 244 guizers 1194 guizing 305 gujia 234 @@ -306432,6 +309666,7 @@ gular 343484 gulars 26251 gulas 912 gulasch 764 +gulash 880 gulden 290931 guldengroschen 382 guldens 39185 @@ -306609,6 +309844,7 @@ gunbelts 6478 gunbirds 391 gunboat 1264315 gunboaters 313 +gunboating 254 gunboats 1990883 guncase 2413 gunch 573 @@ -307074,6 +310310,7 @@ guzzling 216002 guzzlings 1147 guzzly 595 guzzy 231 +gvir 705 gvt 7270 gvts 347 gw 112564 @@ -307103,6 +310340,9 @@ gyanis 473 gyants 2132 gyaru 1594 gyascutus 1669 +gyassa 261 +gyassas 403 +gyat 373 gybe 13219 gybed 4078 gybes 1796 @@ -307157,7 +310397,6 @@ gymnics 425 gymnite 931 gymnoascaceous 125 gymnoblast 147 -gymnoblastic 1904 gymnoblasts 229 gymnocarpous 2222 gymnocyst 7083 @@ -307166,8 +310405,6 @@ gymnodimine 968 gymnodinioid 1435 gymnodinoid 575 gymnodomous 167 -gymnodont 713 -gymnodonts 2156 gymnogens 667 gymnolaemate 2274 gymnopaedic 665 @@ -307184,6 +310421,7 @@ gymnosomatous 949 gymnosome 589 gymnosomes 730 gymnosophic 766 +gymnosophical 47 gymnosophist 5550 gymnosophists 11108 gymnosophy 1235 @@ -307405,7 +310643,7 @@ gypsyesque 134 gypsying 13914 gypsyings 451 gypsyish 3698 -gypsyism 1043 p +gypsyism 1043 gypsylike 6388 gypsyweed 179 gypsywort 442 @@ -308735,6 +311973,7 @@ halictids 2192 halictine 6773 halictines 1557 halid 6696 +halidame 1247 halide 2139225 halided 175 halides 1854097 @@ -309424,6 +312663,7 @@ handcarrying 3227 handcars 12619 handcart 113563 handcarts 65063 +handcarved 45228 handclap 16706 handclapper 185 handclappers 625 @@ -309499,6 +312739,8 @@ handheld 1420046 handhelds 67697 handhold 276178 handholdable 616 +handholder 1683 +handholders 979 handholding 45395 handholdings 197 handholds 282568 @@ -309646,6 +312888,7 @@ handpresses 4370 handprint 90979 handprinted 43396 handprints 98748 +handproduced 794 handpull 714 handpump 18561 handpumps 11551 @@ -309681,6 +312924,7 @@ handselling 2526 handsels 1099 handset 853852 handsets 342602 +handsetting 3884 handsewn 23553 handsfree 17634 handsful 22072 @@ -310236,6 +313480,7 @@ hardboiled 192235 hardbottom 23944 hardbottoms 2666 hardbound 443801 +hardcoal 5888 hardcoat 7124 hardcoats 751 hardcore 585855 @@ -310362,6 +313607,7 @@ hardveld 1712 hardwall 14837 hardware 32055688 hardwareless 53 +hardwares 23427 hardway 8321 hardways 1402 hardwearing 10061 @@ -310691,7 +313937,6 @@ harshnesses 8417 harslet 1656 harslets 182 harstigite 495 -hart 891284 hartal 18406 hartals 5938 hartbeest 2434 @@ -311373,6 +314618,8 @@ hdc 112780 hdqrs 18500 hdr 13702 hdrs 1155 +hdwd 2217 +hdwds 2644 he 5466107172 he'd 259803 he'd've 12399 @@ -311489,6 +314736,7 @@ headhunter 89624 headhunters 127246 headhunting 85542 headhunts 493 +headie 1213 headier 22226 headies 174 headiest 12352 @@ -311794,6 +315042,7 @@ hear 160500875 hearability 1462 hearable 12693 hearably 1464 +hearbes 9852 heard 236797323 heardest 31030 heardst 8750 @@ -311860,6 +315109,7 @@ heartbroken 610324 heartbrokenly 6724 heartbrokenness 565 heartburn 720625 +heartburned 658 heartburning 21904 heartburnings 43351 heartburns 3569 @@ -312093,7 +315343,6 @@ heavenlike 3148 heavenlily 183 heavenliness 15207 heavenly 13354039 -heavenlyminded 2651 heaveno 55 heavens 13121131 heavenscape 137 @@ -312291,6 +315540,7 @@ hedgeline 310 hedgelines 165 hedgemaker 235 hedgemaking 84 +hedgenettle 704 hedgepig 965 hedgepigs 228 hedger 102821 @@ -312318,6 +315568,7 @@ hedonic 600172 hedonically 11606 hedonicity 495 hedonics 17165 +hedonimeter 642 hedonism 562003 hedonisms 1141 hedonist 150821 @@ -312548,6 +315799,8 @@ hejiras 129 hejra 437 heka 5161 hekat 5384 +hekesh 655 +hekhsher 1147 hektare 1431 hektares 1263 hekteus 272 @@ -312597,7 +315850,6 @@ heliangolides 286 helianthemum 2044 helianthemums 1583 helianthin 2862 -helianthoid 1064 helianthus 17792 helianthuses 342 heliast 635 @@ -312608,6 +315860,8 @@ helibucket 172 helibuckets 303 helibus 492 helibuses 155 +helicab 774 +helicabs 145 helical 3595122 helically 247307 helicarionid 229 @@ -312717,6 +315971,7 @@ heliographs 17090 heliography 8788 heliogravure 16808 heliogravures 5126 +heliohydroelectric 353 heliolater 163 heliolaters 89 heliolatitude 5502 @@ -312915,6 +316170,7 @@ hells 524675 hellscape 3160 hellscapes 391 hellspawn 4474 +hellstorm 781 helluv 312 helluva 339534 helluvalot 767 @@ -313567,6 +316823,7 @@ hemiplegias 27247 hemiplegic 236717 hemiplegics 33325 hemiplegy 1006 +hemipneustic 199 hemipode 1361 hemipodes 1323 hemipopulations 211 @@ -313713,6 +316970,7 @@ hemoblast 7028 hemoblastosis 1677 hemoblasts 13139 hemoccult 9861 +hemocel 164 hemochorial 15079 hemochromatoses 405 hemochromatosis 377014 @@ -313948,6 +317206,7 @@ hemotherapeutic 902 hemotherapy 9941 hemothoraces 6507 hemothorax 208708 +hemothoraxes 369 hemotoxic 10559 hemotoxicity 1141 hemotoxin 12892 @@ -314311,6 +317570,7 @@ hephaestin 2868 hephthemimeral 3006 hepialid 1203 hepialids 565 +heplock 873 hepness 367 hepoxilin 1783 hepoxilins 1102 @@ -314379,6 +317639,7 @@ heptageniid 1542 heptageniids 651 heptaglot 176 heptaglutamate 1338 +heptaglutamates 415 heptagon 41189 heptagonal 34678 heptagons 8340 @@ -314426,6 +317687,7 @@ heptanol 31031 heptanols 864 heptanone 31350 heptanones 815 +heptanonitrile 73 heptanoyl 1390 heptanuclear 447 heptanucleotide 3831 @@ -314436,6 +317698,8 @@ heptapeptide 38912 heptapeptides 3985 heptaploid 995 heptaploids 221 +heptapod 1896 +heptapods 3416 heptaprenyl 166 heptarch 244 heptarchic 3206 @@ -314451,6 +317715,7 @@ heptastyle 503 heptasulfide 2618 heptasulphide 857 heptasyllabic 12001 +heptasyllable 1329 heptathlete 1565 heptathletes 517 heptathlon 15728 @@ -314569,7 +317834,6 @@ herbicide 3707155 herbicides 4379376 herbicolin 137 herbier 4010 -herbiferous 1272 herbimycin 10277 herbiness 306 herbish 51 @@ -314588,6 +317852,7 @@ herblet 219 herblets 997 herblike 2349 herblore 820 +herbmaster 338 herbologist 1986 herbologists 1189 herbology 19849 @@ -315021,12 +318286,14 @@ hersum 150 hertz 660876 hertzes 583 hertzian 12270 +herx 1016 herye 530 herying 730 herzenbergite 1702 herzog 6486 herzogs 580 hes 532636 +hesed 74859 heshe 2464 p hesher 527 heshers 359 @@ -315117,6 +318384,7 @@ hetastarches 169 hetchel 2980 hetchels 784 hetegonic 2593 +heter 34726 heteracanth 91 heteradenia 263 heteranthery 187 @@ -315133,6 +318401,7 @@ heteroactivation 333 heteroaddition 205 heteroaggregate 147 heteroaggregates 834 +heteroaggregation 894 heteroalkyl 1563 heteroallele 470 heteroalleles 2859 @@ -315389,6 +318658,7 @@ heterogenisation 574 heterogenised 158 heterogenist 1218 heterogenists 1777 +heterogenite 2835 heterogenization 13544 heterogenize 713 heterogenized 5141 @@ -315397,6 +318667,7 @@ heterogenizing 2436 heterogenous 418375 heterogenously 3797 heterogeny 6968 +heterogloss 350 heteroglossia 64807 heteroglossic 20774 heteroglot 9166 @@ -315817,6 +319088,7 @@ heterozygotic 18673 heterozygous 1484437 heterozygously 2601 heterozygousness 276 +heterzygous 814 heth 18870 heths 162 hetman 109215 @@ -316222,6 +319494,8 @@ hexastyle 23800 hexastyles 307 hexasulfate 594 hexasyllabic 3349 +hexasyllable 732 +hexasyllables 823 hexatetrahedron 342 hexathlon 659 hexatic 14862 @@ -316474,6 +319748,7 @@ hiddest 593 hiddle 2264 hiddles 139 hide 27680777 +hideability 267 hideable 1070 hideaway 347604 hideaways 66876 @@ -316569,6 +319844,8 @@ hierocrat 448 hierocratic 18017 hierocratically 261 hierocrats 1341 +hierodeacon 778 +hierodeacons 251 hierodule 5393 hierodules 5891 hierodulic 199 @@ -316635,6 +319912,7 @@ higashi 7045 higenamine 523 higgle 21103 higgled 5069 +higgledy 68165 higgledypiggledy 8765 higgler 14548 higglers 16377 @@ -317030,6 +320308,7 @@ hinoeuma 316 hinoki 15325 hinokiflavone 527 hinokinin 232 +hinokitiol 2025 hins 18523 hinsdalite 2201 hint 12969585 @@ -317268,10 +320547,12 @@ hirsels 1919 hirsute 675737 hirsutely 2363 hirsuteness 7297 +hirsutes 2033 hirsutic 1110 hirsutidin 264 hirsuties 9543 hirsutism 341491 +hirsutoid 431 hirsutulous 31789 hirtellous 74750 hirudin 91382 @@ -317512,7 +320793,6 @@ histoquantitative 348 historadiography 2428 historesin 180 historian 20513555 -historianess 95 historians 17818356 historiasters 135 historiated 58385 @@ -317686,6 +320966,7 @@ hitter 1347829 hitters 595395 hittest 1663 hitteth 1593 +hittile 83 hittin' 125 hitting 8662139 hittingest 179 @@ -317872,6 +321153,7 @@ hobnob 60275 hobnobbed 55116 hobnobber 677 hobnobbers 473 +hobnobbery 235 hobnobbing 99906 hobnobbings 303 hobnobby 54 @@ -317981,6 +321263,7 @@ hoedowning 143 hoedowns 9962 hoeing 772504 hoeings 27806 +hoeish 54 p hoelike 1469 hoer 8495 hoers 6621 @@ -318074,6 +321357,7 @@ hogwort 554 hogyard 2211 hogyards 185 hoh 37193 +hoha 528 hohlraum 34866 hohlraums 8088 hohmannite 459 @@ -318116,6 +321400,7 @@ hoists 1692063 hoistway 172694 hoistways 54143 hoit 8799 +hoiting 525 hoits 1904 hojatoleslam 165 hojatolislam 297 @@ -318183,6 +321468,8 @@ holdin' 217 holding 153842843 holdings 20379880 holdless 3203 +holdman 1037 +holdmen 3375 holdoff 16160 holdoffs 337 holdout 232101 @@ -318204,6 +321491,7 @@ holers 8847 holes 43194786 holeshot 833 holey 78624 +holeyness 141 holibut 1380 holiday 20231685 holidayed 7691 @@ -318330,8 +321618,10 @@ holobooks 311 holobranch 1867 holobranchs 1226 holocaine 10559 +holocam 6326 holocamera 7302 holocameras 1214 +holocams 2241 holocarboxylase 8276 holocarboxylases 476 holocarpic 3286 @@ -318478,6 +321768,7 @@ holophytic 9978 holophytochrome 517 holoplankton 7869 holoplanktonic 6821 +holopneustic 863 holopod 488 holoprojection 1083 holoprojections 191 @@ -318499,6 +321790,7 @@ holors 672 holos 39050 holosaprophyte 193 holosaprophytes 395 +holoscope 370 holoscreen 6167 holoscreens 1303 holosiderite 222 @@ -318909,6 +322201,7 @@ homoacetogenic 3790 homoacetogens 2424 homoaconitase 369 homoaconitate 143 +homoaggregation 414 homoalanine 226 homoallele 54 homoalleles 629 @@ -318965,6 +322258,7 @@ homocline 26133 homoclines 3431 homoclinic 112788 homoclinicity 628 +homocoagulation 484 homocomplex 79 homocomplexes 249 homocon 213 @@ -319156,6 +322450,7 @@ homoheptameric 122 homohexamer 719 homohexameric 526 homohexamers 236 +homohysteria 810 homoimmune 1643 homoimmunity 154 homoiohydric 604 @@ -319736,6 +323031,7 @@ hooch 152490 hooches 20505 hoochie 20772 hoochies 4334 +hoochinoo 2511 hood 9295668 hooded 1627203 hoodedness 958 @@ -319778,6 +323074,7 @@ hoodwinkings 371 hoodwinks 9720 hoodwort 441 hoody 10598 +hooer 1293 hooey 59434 hooeys 85 hoof 2359858 @@ -319813,6 +323110,8 @@ hooka 27863 hookable 518 hookah 109410 hookahs 21965 +hookaroon 145 +hookaroons 190 hookas 2429 hookbill 1566 hookbills 1526 @@ -319867,6 +323166,7 @@ hooliganism 143146 hooliganisms 160 hooliganistic 1390 hooligans 229668 +hoolihan 1016 hoolivans 211 hoolock 8358 hoolocks 333 @@ -319877,6 +323177,7 @@ hooman 1865 hoomans 299 hoon 40151 hoond 1097 +hoondees 230 hoondi 247 hoondie 510 hoondies 185 @@ -320076,6 +323377,7 @@ hoquet 2676 hoquets 443 hor 655372 hora 285513 +horagai 286 horah 2633 horahs 83 horal 3645 @@ -320373,6 +323675,8 @@ horsebackers 2354 horsebacks 22856 horseball 440 horsebalm 779 +horsebarn 2907 +horsebarns 406 horseboat 2161 horseboats 1159 horsebound 160 @@ -321102,6 +324406,7 @@ housewifish 138 housewifization 1822 housewive 2180 housewived 109 +housewively 102 housewives 2575454 housewoman 1147 housework 2398054 @@ -321209,6 +324514,7 @@ howdunnit 233 howdy 101156 howdying 495 howe 230644 +howe'er 79572 howel 6122 howelling 780 howels 4183 @@ -321294,7 +324600,7 @@ hryvnyas 1343 hs 744228 hse 23025 hsianghualite 188 -hsien 594548 p +hsien 594548 hsiens 8869 hstead 338 hsync 839 @@ -321303,6 +324609,7 @@ hts 395142 http 1790520 https 48935 hu 1337527 +hua 672090 huabiao 180 huajillo 2202 huamuchil 389 @@ -321325,6 +324632,7 @@ huashi 1103 huauzontle 596 huayno 8565 hub 8670370 +hubba 21534 hubbas 336 hubbed 16220 hubbies 11418 @@ -321354,6 +324662,7 @@ hubs 1807653 hubshee 119 hubshi 2169 hubus 1195 +hubward 87 huc 33148 huchen 2825 huck 49128 @@ -321370,7 +324679,9 @@ huckleberries 204783 huckleberry 352553 huckleberrying 5660 hucklebuck 847 +huckled 1019 huckles 1050 +huckling 771 hucks 3520 huckster 226981 hucksterage 183 @@ -321674,6 +324985,7 @@ humbuggeries 896 humbuggers 1451 humbuggery 37395 humbugging 43407 +humbuggy 287 humbuging 322 humbugism 150 humbugs 146765 @@ -321706,10 +325018,10 @@ humerus 2622296 humeruses 491 humet 69 humette 219 -humetty 458 humf 504 humic 1200737 humicolous 1247 +humics 10078 humid 4999042 humider 163 humidex 1807 @@ -321886,6 +325198,7 @@ hums 367784 humstrum 436 humstrums 415 humuhumu 1230 +humuhumunukunukuapua'a 641 humuhumunukunukuapuaa 899 humulene 10894 humulenes 88 @@ -322141,6 +325454,8 @@ hurtles 69759 hurtless 11497 hurtlessly 349 hurtlessness 131 +hurtlest 45 +hurtleth 568 hurtling 636365 hurtlingly 350 hurtlings 628 @@ -322154,6 +325469,7 @@ husbander 1783 husbanders 1386 husbandhood 4292 husbanding 212836 +husbandish 54 husbandland 468 husbandlands 321 husbandless 35907 @@ -322328,6 +325644,7 @@ hyalinisation 1816 hyalinised 1288 hyalinization 113185 hyalinizations 157 +hyalinize 859 hyalinized 103090 hyalinizes 147 hyalinizing 11563 @@ -323442,6 +326759,8 @@ hydrotropism 10433 hydrotropy 1416 hydrotubation 4320 hydrotungstite 611 +hydroturbine 9992 +hydroturbines 7920 hydroureter 42821 hydroureteronephrosis 12400 hydroureters 4216 @@ -323528,6 +326847,7 @@ hydroxychalcones 1382 hydroxychavicol 308 hydroxychloride 7415 hydroxychloroquine 90601 +hydroxychlorpromazine 2836 hydroxycholecalciferol 35584 hydroxycholesterol 32632 hydroxycholesterols 1202 @@ -323695,6 +327015,7 @@ hydroxytryptophans 138 hydroxytyrosol 10208 hydroxyurea 228414 hydroxyureas 717 +hydroxyvalerate 9399 hydroxyvitamin 96558 hydroxyvitamins 50 hydroxywarfarin 1787 @@ -323977,9 +327298,9 @@ hyoplastra 2686 hyoplastron 5608 hyopsodontid 1135 hyopsodontids 1184 -hyoscami 69 hyoscine 165902 hyoscines 442 +hyoscyami 20260 hyoscyamine 154664 hyoscyamines 677 hyoscyamus 150785 @@ -324395,6 +327716,7 @@ hypercomputing 168 hyperconcentrated 12913 hyperconcentration 5326 hyperconcentrations 483 +hypercondensation 505 hypercondensed 649 hyperconductive 712 hyperconductivity 219 @@ -324565,6 +327887,7 @@ hyperdynamism 443 hyperechogenic 9642 hyperechogenicity 8685 hyperechoic 130360 +hypered 2966 hyperedge 14819 hyperedges 13843 hyperedited 135 @@ -324684,6 +328007,7 @@ hyperferritinaemia 419 hyperferritinemia 3106 hyperfertile 910 hyperfertility 1336 +hyperfibrinemia 95 hyperfibrinogenaemia 257 hyperfibrinogenemia 6478 hyperfibrinolysis 10054 @@ -324916,6 +328240,7 @@ hyperinflation 470135 hyperinflationary 56246 hyperinflations 21228 hyperinformation 1043 +hypering 1833 hyperinhibition 293 hyperinnervate 251 hyperinnervated 1164 @@ -325152,6 +328477,7 @@ hypermilitarization 358 hypermilitarized 403 hypermineralization 2943 hypermineralized 4467 +hypermineralocorticoidism 1718 hypermnesia 22331 hypermnesias 637 hypermnesic 2469 @@ -325343,6 +328669,7 @@ hyperpalatable 961 hyperpallium 860 hyperparakeratosis 1995 hyperparakeratotic 277 +hyperparallel 761 hyperparameter 19424 hyperparameters 46749 hyperparametric 288 @@ -326799,6 +330126,7 @@ hypopneic 3409 hypopneumatization 117 hypopnoea 4739 hypopnoeas 723 +hypopodia 498 hypopodium 756 hypopolarization 2233 hypopotassaemia 728 @@ -326929,6 +330257,7 @@ hyposternum 101 hyposthenia 1388 hyposthenuria 14926 hypostimulation 421 +hypostoichiometric 16375 hypostoma 37645 hypostomal 42022 hypostomata 872 @@ -327320,6 +330649,7 @@ hythergraphs 735 hyuk 3410 hyzer 368 hz 127460 +hzy 696 i' 79700 i'faith 29906 i'ma 1314 @@ -327496,11 +330826,14 @@ icemaker 26551 icemakers 9435 icemaking 25192 iceman 105158 +icemanship 162 icemelt 2610 icemen 30065 icen 7114 icens 1409 icepick 26593 +icepicked 272 +icepicking 42 icepicks 4308 iceproof 784 icequake 628 @@ -327696,6 +331029,7 @@ ickle 11940 ickler 957 ickles 3886 icky 94720 +icl 32032 iclaprim 1098 icodextrin 4806 icon 7269604 @@ -327824,8 +331158,10 @@ icterometer 514 icterus 522869 icthyomancy 99 ictic 3992 +ictidosaur 288 ictidosaurian 161 ictidosaurians 179 +ictidosaurs 1323 ictogenesis 1002 ictogenic 767 ictometer 340 @@ -327887,6 +331223,7 @@ idealogic 668 idealogical 21224 idealogue 6720 idealogues 9396 +idealogy 18416 ideals 22998347 ideamongers 193 ideaphoria 1326 @@ -327928,6 +331265,8 @@ identicality 14119 identically 2570590 identicalness 10418 identicals 28863 +identicard 1739 +identicards 427 identifiability 171271 identifiable 8057508 identifiableness 249 @@ -328042,6 +331381,7 @@ idioandrosporous 689 idiobiology 242 idiobiont 1731 idiobionts 1304 +idioblaptic 655 idioblast 4125 idioblastic 7267 idioblasts 19260 @@ -328481,11 +331821,13 @@ ikey 3284 ikeys 150 ikhshid 247 ikigai 10771 +ikmo 201 ikon 103521 ikona 2754 ikonas 236 ikonic 6971 ikonically 238 +ikonomatic 2222 ikons 78578 ikra 2393 ikt 12413 @@ -328685,6 +332027,7 @@ illimitedness 191 illing 83879 illinition 278 illipe 4524 +illipi 137 illiquid 298212 illiquidities 446 illiquidity 128548 @@ -328853,6 +332196,7 @@ ilot 56443 ilsemannite 6777 iluy 1529 ilvaite 10389 +im 18865594 ima 295280 imaam 1142 imaams 163 @@ -328877,6 +332221,7 @@ imageries 68252 imagers 199806 imagery 14746395 images 65076325 +imagescreen 129 imagesetter 35436 imagesetters 16792 imagesetting 5805 @@ -328900,6 +332245,8 @@ imaginations 2627085 imaginative 10473702 imaginatively 881701 imaginativeness 70615 +imaginator 1093 +imaginators 449 imagine 45968433 imagined 21566769 imagineer 4027 @@ -328953,6 +332300,7 @@ imatinib 190752 imaum 5606 imaums 1989 imazalil 11998 +imazamethabenz 7057 imazamox 12930 imazapyr 34945 imazaquin 40529 @@ -329043,6 +332391,7 @@ imbitters 3557 imbizo 600 imblaze 213 imblazed 469 +imbo 4431 imbodied 46057 imbodies 6041 imbody 16705 @@ -329052,6 +332401,7 @@ imboldened 7241 imboldening 317 imboldens 1066 imbongi 6574 +imbos 129 imbosom 900 imbosomed 6343 imbosoming 477 @@ -330821,6 +334171,8 @@ implications 44432230 implicative 75427 implicatively 1663 implicativeness 1678 +implicator 946 +implicators 1293 implicatory 4944 implicatum 9466 implicature 110588 @@ -331059,6 +334411,7 @@ impregnability 59759 impregnable 1577638 impregnableness 339 impregnably 34073 +impregnants 36484 impregnatable 552 impregnate 360911 impregnated 4359173 @@ -331232,6 +334585,8 @@ improvisated 654 improvisating 290 improvisation 1916292 improvisational 396520 +improvisationalist 378 +improvisationalists 302 improvisationally 10487 improvisations 530495 improvisator 12187 @@ -331709,7 +335064,6 @@ incalculability 12829 incalculable 2708345 incalculableness 1686 incalculably 247884 -incalescence 1345 incalescent 1651 incall 1314 incalls 476 @@ -332043,6 +335397,7 @@ inciting 1418753 incitingly 1037 incitive 5852 incivil 4627 +incivilisation 131 incivilities 38108 incivility 232997 incivilization 1008 @@ -332168,7 +335523,6 @@ incohesion 2406 incohesive 11561 incoincidence 664 incoincident 459 -incomber 554 incombered 83 incombinable 446 incombustibility 15115 @@ -332246,6 +335600,7 @@ incompetency 2120686 incompetent 11566773 incompetently 70041 incompetents 491706 +incompletability 2353 incompletable 3855 incomplete 23529936 incompleted 167177 @@ -332948,6 +336303,7 @@ indepthly 169 indepthness 133 inderborite 267 inderite 1872 +inderivable 114 inderivative 216 indescribabilities 163 indescribability 4875 @@ -333460,6 +336816,7 @@ indorses 328527 indorsing 598847 indorsor 7004 indorsors 1382 +indospicine 763 indotricarbocyanine 563 indowed 2889 indowing 256 @@ -334187,6 +337544,7 @@ infernalist 484 infernalities 429 infernality 1019 infernally 92084 +infernals 16975 inferno 601614 infernoes 436 infernos 32497 @@ -334570,6 +337928,7 @@ inforcements 26392 inforg 600 inform 33936264 informal 29664006 +informalisation 2606 informalism 9275 informalisms 263 informalist 2683 @@ -335039,6 +338398,7 @@ ingloriousness 2673 ingluvial 1787 ingluvies 4659 ingluvin 5151 +ingluviotomy 267 ingo 22772 ingoer 54 ingoers 182 @@ -335435,6 +338795,9 @@ injog 840 injoined 15527 injoining 4549 injoins 1492 +injoyed 7998 +injoying 5638 +injoys 894 injudicable 135 injudicial 39382 injudicious 928549 @@ -335858,6 +339221,9 @@ inoperculates 347 inopportune 539018 inopportunely 52568 inopportuneness 6703 +inopportunism 240 +inopportunist 871 +inopportunists 1392 inopportunity 4316 inoppressive 526 inoppugnable 159 @@ -336123,6 +339489,7 @@ insectarium 4337 insectariums 424 insectary 170539 insectdom 342 +insectian 51 insecticidal 612961 insecticidally 10316 insecticide 3699826 @@ -336229,6 +339596,7 @@ insertor 5386 insertors 2104 inserts 4688161 inservice 1886084 +inservices 29799 insession 3610 insessions 113 insessorial 3861 @@ -336398,6 +339766,7 @@ insoluble 11028602 insolubleness 448 insolubles 133691 insolubly 11253 +insolvability 3553 insolvable 68799 insolvably 131 insolvencies 229468 @@ -336512,6 +339881,8 @@ inspiringly 40401 inspirings 731 inspirit 67860 inspirited 75835 +inspiriter 246 +inspiriters 112 inspiriting 204087 inspiritingly 801 inspirits 11490 @@ -336572,6 +339943,7 @@ instantaneousness 27155 instanter 190629 instantiable 8378 instantial 11591 +instantially 761 instantiatable 563 instantiate 333291 instantiated 578326 @@ -336810,8 +340182,10 @@ insubstantiality 64939 insubstantially 11978 insubstantiated 655 insubstantive 929 +insubvertible 411 insuccess 2754 insuck 1981 +insucked 427 insucken 168 insucking 471 insudate 546 @@ -337540,6 +340914,7 @@ interception 2007267 interceptional 401 interceptions 343552 interceptive 29603 +interceptives 235 interceptor 1244811 interceptors 604008 intercepts 1440052 @@ -337874,6 +341249,7 @@ interdeltaic 8735 interden 444 interdendritic 59577 interdenominational 458238 +interdenominationalism 4384 interdenominationally 5899 interdental 244691 interdentalization 393 @@ -338259,6 +341635,7 @@ intergrain 28586 intergranular 960511 intergraven 110 intergrew 167 +intergrind 356 intergroup 1618037 intergroupal 463 intergrouping 388 @@ -338553,6 +341930,7 @@ interlocated 1223 interlocation 2503 interlock 1409346 interlockable 5210 +interlockably 539 interlocked 1245924 interlocker 38655 interlockers 63812 @@ -338674,6 +342052,7 @@ intermedium 156030 intermediums 542 intermedullary 7453 intermell 67 +intermember 12760 intermembral 6485 intermembranal 673 intermembrane 66124 @@ -338807,6 +342186,7 @@ intermunicipal 74155 intermunicipalities 449 intermunicipality 1690 intermural 16568 +intermurals 547 intermuscle 530 intermuscular 229798 intermuscularly 1702 @@ -339367,6 +342747,7 @@ interrers 44 interresearcher 168 interresidual 436 interresidue 5384 +interrespondent 596 interresponse 31876 interresponsibilities 139 interresponsibility 664 @@ -339621,6 +343002,7 @@ interstacking 387 interstadial 55065 interstadials 11901 interstage 206906 +interstages 7327 interstaminal 943 interstanzaic 561 interstapedial 426 @@ -340079,6 +343461,7 @@ inti 186073 intice 7298 inticed 3690 intices 491 +intichiuma 3707 inticing 4109 intifada 285483 intifadah 37898 @@ -340295,6 +343678,7 @@ intracavernosal 17721 intracavernous 39105 intracavernously 424 intracavital 739 +intracavitarily 720 intracavitary 165849 intracavity 194194 intracecal 3011 @@ -340393,6 +343777,7 @@ intracoronarily 432 intracoronary 128042 intracorporal 4036 intracorporally 355 +intracorporate 62679 intracorporeal 33951 intracorporeally 3967 intracorpuscular 16670 @@ -341798,6 +345183,7 @@ inveterately 65006 inveterateness 882 inveteration 280 invex 2746 +invexity 2581 inviability 25840 inviable 44386 invidiously 172418 @@ -341957,6 +345343,7 @@ involvements 818500 involver 3221 involvers 1105 involves 73358323 +involveth 1211 involving 94106098 invulnerabilities 706 invulnerability 310454 @@ -342251,6 +345638,7 @@ ionopause 15866 ionopauses 139 ionophore 285292 ionophores 119214 +ionophoresis 17801 ionophoretic 9537 ionophoretically 2223 ionophoric 8946 @@ -342552,6 +345940,7 @@ ironhanded 5820 ironhandedly 137 ironhandedness 86 ironhead 1063 +ironheads 1256 ironhearted 4536 ironic 6586214 ironical 1185375 @@ -342977,6 +346366,7 @@ irrupts 8920 irsogladine 238 irtal 511 iru 81612 +iruska 1435 is 19030756397 isabel 22598 isabella 34741 @@ -343122,7 +346512,6 @@ isleted 556 islets 1885557 isleward 164 islomania 373 -islot 760 ism 1938438 ismatic 2912 isms 596422 @@ -343427,6 +346816,7 @@ isoeffective 2973 isoeffects 345 isoelastic 12184 isoelastically 197 +isoelasticity 862 isoelectric 956186 isoelectrical 1675 isoelectrically 3959 @@ -343633,6 +347023,7 @@ isokinetically 15311 isokinetics 7539 isokite 145 isokont 549 +isolability 3686 isolable 91249 isolani 2280 isolant 6137 @@ -344068,7 +347459,6 @@ isospectral 25045 isospectrality 1451 isospin 359967 isospins 7540 -isospondylous 2621 isosporan 792 isospore 502 isospores 1717 @@ -344110,6 +347500,7 @@ isosyllabism 1240 isosymmetric 841 isosynchronous 915 isot 17405 +isotac 263 isotach 19315 isotachophoresis 21843 isotachophoretic 4763 @@ -344287,6 +347678,7 @@ ispravnik 9974 ispravniks 797 isradipine 20646 issa 31183 +issant 1837 issaron 3312 issei 41817 isseis 522 @@ -344298,6 +347690,7 @@ issuable 487940 issuably 10855 issuance 37529217 issuances 634163 +issuant 12446 issue 348305077 issued 221361699 issueless 19446 @@ -344461,6 +347854,7 @@ itinually 319 itis 590256 itises 1325 itive 159678 +itmo 1891 itness 54946 itoite 157 itongo 1731 @@ -344478,12 +347872,14 @@ ittnerite 75 ittria 523 ittrium 413 itty 70694 +iturite 93 itwu 296 itzeboos 109 itzebu 1229 itzebus 576 itzibus 447 iudgements 7481 +iudges 29247 iump 11359 iustices 6656 ivabradine 5520 @@ -344507,7 +347903,9 @@ ivorybills 3213 ivorylike 5265 ivorytype 1115 ivorytypes 498 +ivoryware 326 ivry 15210 +ivver 3970 ivy 3064293 ivyed 899 ivylike 1780 @@ -344566,6 +347964,7 @@ izzards 579 izzat 14233 j'accuse 3937 j'adoube 709 +jBPM 2563 ja 1153316 jaagsiekte 5472 jaali 201 @@ -344867,6 +348266,8 @@ jaghir 1098 jaghirdar 843 jaghirdars 439 jaghire 8768 +jaghiredar 504 +jaghiredars 1546 jaghires 10715 jaghirs 319 jagir 15169 @@ -344893,6 +348294,7 @@ jahiliya 2633 jahiliyyah 6844 jahilliya 159 jahrzeit 805 +jaidads 139 jail 28811896 jailable 5308 jailbait 14593 @@ -344980,6 +348382,7 @@ jalousied 5475 jalousies 48180 jalousing 557 jalpaite 1897 +jalt 728 jam 5261117 jamaat 4995 jamaats 1944 @@ -345078,7 +348481,10 @@ janes 14917 janeu 1135 jangada 11946 jangadas 3850 +jangadeiro 724 +jangadeiros 2697 janggi 405 +janggu 67 jangle 236671 jangled 281219 jangler 2361 @@ -345135,8 +348541,10 @@ jantu 1661 janty 2593 janusian 2848 jap 96295 +japa 28195 japaconine 233 japaconitine 1791 +japamala 298 japan 775384 japaned 1649 japaning 1478 @@ -345337,7 +348745,6 @@ jauhar 3311 jaun 13687 jaunce 992 jauncing 2107 -jaunders 735 jaundice 4030544 jaundiced 661810 jaundices 2787 @@ -345439,6 +348846,7 @@ jaywalks 1577 jaz 11991 jazerant 535 jazey 123 +jaziya 363 jazy 476 jazz 10731015 jazzbo 2449 @@ -345594,6 +349002,7 @@ jejunums 467 jel 41165 jelab 811 jelabs 527 +jelatong 437 jeli 11561 jelick 334 jelicks 263 @@ -345895,6 +349304,7 @@ jewellery 749302 jewelless 659 jewellike 25603 jewelling 4822 +jewelly 1682 jewelried 77 jewelries 6002 jewelry 11750299 @@ -345904,6 +349314,7 @@ jewelsmith 624 jewelsmiths 279 jewelweed 29732 jewelweeds 1177 +jewely 1225 jewfish 35111 jewfishes 542 jewies 135 @@ -345969,7 +349380,6 @@ jibberings 489 jibberish 7065 jibbers 1348 jibbing 10078 -jibboom 31941 jibbooms 2002 jibbs 426 jibe 401083 @@ -345981,6 +349391,8 @@ jibhead 176 jibing 41472 jibingly 445 jibs 91557 +jibsheet 4054 +jibsheets 1744 jibstay 8646 jicama 72552 jicamas 1846 @@ -346024,6 +349436,7 @@ jiggler 3652 jigglers 1937 jiggles 51289 jigglety 254 +jigglies 135 jiggliness 91 jiggling 229575 jigglings 779 @@ -346097,6 +349510,7 @@ jimcrack 2418 jimcrackery 499 jimcracks 5039 jimdandy 1683 +jiminy 11784 jimjam 726 jimjams 6316 jimmied 43362 @@ -346515,8 +349929,10 @@ joisted 25997 joisting 3112 joistings 217 joists 2120833 +jojo 5904 jojoba 142251 jojobas 1074 +jojos 449 jojutsu 399 joke 13377781 joked 1896339 @@ -346657,7 +350073,6 @@ joshing 79568 joshingly 2690 joskin 1025 joskins 470 -joso 1665 joss 152366 jossakeed 1140 jossakeeds 943 @@ -346858,6 +350273,7 @@ jpgs 1020 jpsi 638 jr 6325269 jth 796200 +jtly 53429 ju 1195746 juane 477 juanes 511 @@ -347055,6 +350471,7 @@ jugulation 2416 jugulodigastric 8937 jugulum 43361 jugum 49740 +jugware 995 juhar 63 juice 27473361 juiceable 120 @@ -347198,7 +350615,10 @@ jumprock 884 jumps 4782239 jumpseating 81 jumpseed 320 +jumpship 2339 +jumpships 691 jumpsome 447 +jumpspace 698 jumpstart 77319 jumpstarted 11779 jumpstarter 204 @@ -347336,6 +350756,8 @@ junkware 694 junky 88754 junkyard 333610 junkyards 164581 +junonia 4371 +junonias 101 junque 2834 junshi 18253 junta 1677944 @@ -347344,6 +350766,7 @@ junto 140805 juntoes 687 juntos 36570 junwang 277 +junzi 24493 jupati 478 jupe 14601 juped 486 @@ -347402,6 +350825,7 @@ jurisprudentialists 207 jurisprudentially 10843 jurisprudents 15702 jurisprudes 2821 +jurisprudists 324 jurist 2293682 juristic 460062 juristical 8095 @@ -347740,6 +351164,7 @@ kadkhodas 632 kadogo 700 kadogos 539 kadomatsu 1773 +kadsurenone 1613 kady 2435 kaemferol 414 kaempferia 157 @@ -347756,11 +351181,14 @@ kafal 408 kafala 4370 kafana 2678 kafanas 725 +kafeel 627 kafeneio 663 kafenio 1595 kafenion 2120 kafenions 245 kaferita 169 +kaffara 740 +kaffarah 368 kaffeeklatsch 5820 kaffeeklatsches 2140 kaffer 1247 p @@ -347887,6 +351315,7 @@ kaizened 324 kaizening 135 kaizens 2374 kaizo 1590 +kaizuka 780 kaj 25593 kajal 2462 kajari 207 @@ -348000,6 +351429,7 @@ kalif 7606 kalifate 1596 kalifs 1651 kaligenous 76 +kalij 2445 kalima 5083 kalimba 8163 kalimbas 1066 @@ -348116,6 +351546,7 @@ kamon 2542 kamora 107 kamote 1031 kamp 21405 +kampferol 488 kampong 56890 kampongs 23221 kamptozoan 81 @@ -348174,9 +351605,11 @@ kangarooish 142 kangaroolike 1943 kangaroos 349221 kangas 4864 +kanged 101 kangeroo 2986 kangeroos 902 kangha 1724 +kanging 167 kangkong 2687 kangling 438 kango 5532 @@ -348358,6 +351791,7 @@ karelinite 112 karen 49460 karengo 178 karesansui 2473 +karet 10599 karez 7934 karezes 1467 karezza 1933 @@ -348570,6 +352004,7 @@ katalyse 272 katalysis 1438 katalyst 103 katalytic 1839 +katamari 712 katamorphism 10419 katana 63192 katanas 3863 @@ -348637,6 +352072,7 @@ kathoey 8677 kathoeys 1586 katholikoi 533 katholikos 5988 +kathump 671 kati 18424 kation 16568 kations 16697 @@ -348670,6 +352106,7 @@ katties 527 katun 110038 katuns 43525 katurai 55 +katwa 50 p katydid 90526 katydids 118740 katyusha 2939 @@ -348819,6 +352256,7 @@ kebele 13265 kebeles 7328 kebelle 828 kebelles 1051 +kebero 311 keblah 387 kebob 6585 kebobbed 111 @@ -349066,6 +352504,7 @@ kelts 10268 kelvin 172667 kelvins 83432 kelyphite 2430 +kemanak 1249 kemancha 341 kemari 3656 kembed 838 @@ -349093,6 +352532,7 @@ kenaf 172544 kenas 1893 kench 5807 kenches 4300 +kencur 588 kendama 253 kendang 7607 kendhang 6577 @@ -349104,6 +352544,7 @@ kendra 6032 kendras 624 kendrin 696 kenim 197 +kenjutsu 6414 kenke 592 kenkey 5810 kenky 2528 @@ -349362,6 +352803,7 @@ kerfing 10312 kerflooey 1490 kerflop 1854 kerfluffle 211 +kerflumixed 111 kerflummoxed 348 kerflummoxes 134 kerfs 61976 @@ -349442,6 +352884,7 @@ kerseys 43908 kersies 3751 kerslap 764 kerslosh 430 +kersplash 1571 kersplat 437 kersplosh 52 kerthump 710 @@ -349684,7 +353127,6 @@ kevalin 1399 kevalins 203 kevel 22051 kevels 14223 -kevent 258 kevil 575 kevils 1327 kevlar 28162 @@ -349841,6 +353283,8 @@ keystrokes 523029 keystroking 11432 keyswitch 14055 keyswitches 6824 +keytainer 394 +keytainers 323 keytar 787 keytones 1141 keytop 6241 @@ -349987,9 +353431,11 @@ khedivate 1405 khedive 96450 khedives 4376 khedivial 5891 +khediviate 396 kheema 608 kheer 4930 khel 8209 +khelat 532 khelaut 254 khella 1989 khellin 12027 @@ -350114,6 +353560,7 @@ kiasi 1663 kiasu 1654 kiawe 23084 kiawes 332 +kibabs 345 kibanja 1778 kibbe 4372 kibbeh 10526 @@ -350583,7 +354030,6 @@ kimchee 15539 kimchees 224 kimchi 100105 kimchis 991 -kimes 790 kimkhab 89 kimmer 1981 kimmers 1730 @@ -350901,7 +354347,6 @@ kink 1001047 kinkable 1579 kinkajou 24620 kinkajous 10332 -kinkcough 62 kinked 282320 kinker 1736 kinkers 1214 @@ -351004,6 +354449,7 @@ kintsugi 703 kintsukuroi 173 kintype 2658 kintypes 3964 +kinyan 20870 kinzhal 411 kinzigite 2667 kioea 536 @@ -351095,6 +354541,7 @@ kirsch 79731 kirsches 101 kirschsteinite 1539 kirschwasser 16291 +kirsebaer 53 kirtan 24756 kirtankar 1180 kirtankars 1233 @@ -351253,6 +354700,7 @@ kitmagar 495 kitmutgar 613 kitmutgars 614 kitniyot 1531 +kito 6434 kiton 1787 kitons 159 kits 4779134 @@ -351440,6 +354888,7 @@ kliks 1516 klimp 68 kline 19552 klines 662 +klink 5807 klinker 3606 klinkers 1831 klinokinesis 3054 @@ -351517,6 +354966,7 @@ klutziness 3475 klutzy 23640 kly 40840 klydonograph 5477 +klydonographs 913 klystron 434489 klystrons 148750 klyukva 166 @@ -352053,6 +355503,7 @@ ko 1515327 koa 172260 koala 127763 koalas 65552 +koaliang 443 koan 199299 koanic 229 koanlike 678 @@ -352098,6 +355549,7 @@ kodakers 1084 kodaking 2817 kodakist 226 kodaks 30235 +kodama 1802 kodkod 897 kodo 11478 kodokushi 82 @@ -352113,6 +355565,7 @@ koelreuteria 552 koelreuterias 109 koels 1490 koenenite 616 +kofer 5349 koff 25565 koffs 344 kofia 1910 @@ -352132,6 +355585,7 @@ kogyaru 1390 koha 3161 kohai 7590 kohanim 25445 +kohein 3805 kohekohe 623 kohemp 103 kohen 38853 @@ -352341,6 +355795,8 @@ konked 3069 konking 520 konks 1432 konnyaku 7626 +konohiki 19468 +konohikis 2939 konpa 3872 konseal 748 konseals 1311 @@ -352419,6 +355875,7 @@ koranic 9214 koras 2577 korban 16471 korbanot 1769 +kordax 2608 kore 53436 korero 2320 kores 1029 @@ -352487,12 +355944,17 @@ koswite 442 kotal 1927 kotals 423 kotatsu 11186 +kotch 8199 +kotched 4381 +kotches 393 koteka 500 kotekan 3040 kothi 2638 kothis 1703 kothon 1556 kothons 590 +kothornoi 725 +kothornos 767 koti 11909 kotis 9012 kotlovina 2678 @@ -352518,6 +355980,7 @@ kotyle 12066 kotyles 192 kotyloi 119 kotylos 568 +koudou 334 koukoulion 435 koulak 603 koulaks 576 @@ -352558,6 +356021,7 @@ kovshi 412 kowari 862 kowhai 2591 kowliang 2657 +kowrie 1193 kowtow 107892 kowtowed 41224 kowtower 260 @@ -352567,6 +356031,7 @@ kowtowings 209 kowtows 12147 koyan 1482 koyang 386 +koyemshi 8082 kozachok 205 kpc 245175 kph 199588 @@ -352666,6 +356131,7 @@ kriging 187947 krill 570001 krills 911 krimmer 2845 +kringla 1067 kringle 29577 kringles 6859 krinovite 100 @@ -352778,6 +356244,7 @@ kuda 13008 kudas 69 kudlik 286 kudo 11171 +kudoed 51 kudos 244751 kudu 90442 kuduro 308 @@ -352908,6 +356375,7 @@ kunkur 1763 kunkurs 76 kunlangeta 275 kunoichi 1415 +kunshi 990 kunsthalle 1404 kunsthalles 231 kunstkammer 610 @@ -352966,6 +356434,7 @@ kushari 669 kushikatsu 241 kushiyaki 673 kushtaka 349 +kushti 1048 kusimanse 409 kuskus 2415 kuspuk 569 @@ -352975,6 +356444,7 @@ kut 64197 kutch 2060 kutcha 5804 kuti 12383 +kutnahorite 2917 kutnohorite 842 kutsavi 873 kutsinta 116 @@ -353005,6 +356475,7 @@ kvitel 418 kvitl 1085 kvitlach 431 kvitlech 197 +kvittel 1136 kwaai 279 kwacha 45803 kwachas 3805 @@ -353016,6 +356487,7 @@ kwans 2284 kwanza 13932 kwanzas 5433 kwashiorkor 227590 +kwazoku 519 kwd 2923 kwds 532 kwedini 83 @@ -353174,6 +356646,8 @@ labarum 28469 labarums 103 labba 3589 labbas 295 +labber 469 +labbers 215 labbie 107 labbies 489 labda 2711 @@ -353441,6 +356915,7 @@ laceman 2173 lacemen 1664 lacepod 205 lacer 32197 +lacerability 444 lacerable 4074 lacerant 1315 lacerate 231596 @@ -354010,6 +357485,7 @@ lagging 2926051 laggingly 4090 laggings 11714 laggy 1839 +laghman 724 laglast 53 lagna 6497 lagnappe 1112 @@ -354179,6 +357655,7 @@ lala 38142 lalaland 161 lalang 8789 lalapalooza 903 +laldy 193 lall 90489 lalla 5401 lallang 1986 @@ -354205,6 +357682,7 @@ laloplegia 402 lam 1432572 lama 610633 lamage 11933 +lamahood 375 lamaic 2036 lamaism 5427 lamaist 7132 @@ -354298,6 +357776,7 @@ lambswools 171 lamburger 1187 lamburgers 1161 lamby 3592 +lamdan 2150 lamdas 163 lamdoidal 419 lame 4527008 @@ -354584,6 +358063,7 @@ lampstand 127743 lampstands 56826 lampuka 85 lampuki 216 +lampware 2462 lampwork 4894 lampworked 4727 lampworker 896 @@ -354594,6 +358074,7 @@ lampyrid 4422 lampyrids 2443 lamrim 4708 lams 111332 +lamsiekte 1246 lamster 972 lamsters 517 lamziekte 3011 @@ -354826,6 +358307,7 @@ landscraper 253 landscrapers 195 landscrip 2274 landship 3895 +landships 2389 landsick 663 landsickness 263 landside 202347 @@ -354906,6 +358388,7 @@ languagelike 5766 languagers 2062 languages 45377683 languagescape 309 +languagey 142 languaging 31556 langue 601722 langued 9107 @@ -355068,6 +358551,7 @@ lanzknechts 6975 lanzon 1540 lanzones 2658 lanzoprazole 172 +laodicean 734 laogai 12636 laojiao 4068 laoshi 4629 @@ -355284,7 +358768,6 @@ lares 91281 larf 13219 larfed 4982 larfs 879 -largactil 5835 largando 219 large 790239948 large-scale 159 @@ -355434,6 +358917,7 @@ larvivorous 6846 laryngal 3744 laryngals 1311 laryngeal 3147986 +laryngealization 4937 laryngealized 5913 laryngeally 2519 laryngeals 30316 @@ -355624,6 +359108,7 @@ lastness 2818 lastol 237 lastrile 958 lasts 8361500 +lasya 1417 lat 3955972 lata 765727 latah 23051 @@ -355875,6 +359360,8 @@ latosol 9420 latosolic 3914 latosols 14635 latrappite 190 +latration 440 +latrations 105 latrepirdine 330 latreutic 1109 latria 22506 @@ -356125,6 +359612,7 @@ lavalike 6382 lavalliere 3605 lavallieres 1831 lavandin 8453 +lavandins 455 lavandulol 1002 lavandulyl 907 lavani 1007 @@ -356361,6 +359849,8 @@ laying 28167141 layings 32750 layins 810 layless 121 +layline 4072 +laylines 731 laylocks 2017 layman 4670464 laymanize 101 @@ -357081,6 +360571,8 @@ leetmen 1821 leetness 133 leets 19107 leetspeak 853 +leeuwendaalder 221 +leeuwendaalders 224 leeward 1357848 leewardly 1503 leewardmost 1721 @@ -357395,6 +360887,8 @@ legwear 5924 legwork 150682 leh 74057 lehanga 227 +lehavdil 1020 +lehavdl 521 lehayim 181 lehendakari 657 lehenga 710 @@ -357438,6 +360932,7 @@ leiopelmatid 298 leiopelmatids 350 leiothrix 639 leiotrichous 537 +leipoa 545 leis 176262 leish 3155 leishmania 37924 @@ -358179,6 +361674,8 @@ letterpress 858424 letterpressed 2021 letterpresses 10684 letters 138620680 +letterset 6081 +lettersets 188 lettersheet 2510 lettersheets 1691 letterspace 4182 @@ -358611,6 +362108,8 @@ levelments 121 levelness 58436 levels 232018174 levelwise 2608 +levened 640 +levening 1417 lever 22012783 leverage 8595925 leverageable 3972 @@ -358761,6 +362260,7 @@ lewisia 5145 lewisias 1795 lewisite 65598 lewk 434 +lewks 46 lews 136130 lewth 477 lex 1439002 @@ -358774,6 +362274,7 @@ lexer 17292 lexers 4305 lexes 7818 lexia 17208 +lexiarchs 254 lexias 9519 lexic 4480 lexica 31384 @@ -358843,6 +362344,7 @@ lexigraphically 498 lexigraphs 151 lexigraphy 831 lexing 4797 +lexipafant 674 lexiphanic 556 lexiphanicism 339 lexis 84016 @@ -359267,6 +362769,7 @@ lidlike 3781 lido 33302 lidocaine 1213240 lidocaines 103 +lidoderm 265 lidofenin 1214 lidoflazine 6914 lidol 266 @@ -359406,6 +362909,8 @@ lifesavers 62051 lifesaving 958112 lifescape 2400 lifescapes 628 +lifeship 2676 +lifeships 673 lifesize 112073 lifesized 25972 lifeskill 1051 @@ -359439,6 +362944,7 @@ lifetimes 2538215 lifeward 2488 lifeway 46880 lifeways 180437 +lifewide 2982 lifework 232031 lifeworks 1353 lifeworld 225156 @@ -359688,8 +363194,10 @@ lignanes 557 lignans 71986 lignase 563 lignases 360 +ligne 97936 lignel 62 ligneous 152303 +lignes 60663 lignicolous 11154 ligniferous 726 lignification 85173 @@ -359821,6 +363329,7 @@ lil 1123370 lila 54489 lilac 1944885 lilacin 382 +lilacine 17034 lilacky 107 lilacs 634954 lilangeni 5560 @@ -359831,6 +363340,10 @@ lilied 22271 lilies 3475185 liliform 873 lilikoi 4559 +lilim 1572 +lilims 168 +lilin 5363 +lilins 309 lilioid 543 lilith 10055 liliths 1053 @@ -359909,6 +363422,7 @@ limblines 1453 limbmeal 470 limbo 1282711 limboed 1246 +limboes 1219 limboing 408 limbolike 922 limbos 8887 @@ -360140,6 +363654,8 @@ linacs 81949 linage 217930 linages 9127 linagliptin 3805 +linaloe 7067 +linaloes 391 linalol 9504 linalool 72668 linalools 128 @@ -360369,6 +363885,8 @@ lingually 161008 linguals 10545 linguaphile 191 linguaphiles 130 +linguaphone 2467 +linguaphones 309 linguatuliasis 350 linguatulosis 290 linguica 5346 @@ -360379,6 +363897,7 @@ linguicist 304 linguiform 21353 linguine 121908 linguini 39970 +linguipotence 122 linguism 2003 linguist 1320848 linguister 2932 @@ -360566,6 +364085,7 @@ linustatin 848 linux 67926 linyphiid 3613 linyphiids 2112 +liocichla 106 lion 14758295 lioncel 431 lioncels 1885 @@ -360936,6 +364456,7 @@ lipreads 868 lips 51397819 lipsanotheca 243 lipscombite 827 +lipsing 162 lipslide 199 lipslides 142 lipsmack 969 @@ -360958,6 +364479,7 @@ lipsyncs 265 liptinite 14535 liptinites 2904 liptinitic 1189 +liptooth 162 lipuria 6267 lipwork 261 liquable 371 @@ -360971,6 +364493,7 @@ liquefacted 76 liquefaction 3096468 liquefactions 5961 liquefactive 14979 +liquefiability 641 liquefiable 89666 liquefication 22658 liquefied 2648352 @@ -361197,6 +364720,8 @@ listlike 2058 listmaker 1159 listmakers 1079 listmaking 2556 +listmaster 203 +listmembers 201 listric 43910 listrophorid 344 lists 54114837 @@ -361286,6 +364811,7 @@ literatures 1810454 literatus 49200 literose 235 literosity 468 +literotica 149 liters 4624414 lites 163081 litest 8049 @@ -361790,6 +365316,7 @@ lizard 2543240 lizardfish 12651 lizardfishes 3314 lizardfolk 2495 +lizardish 200 lizardite 25538 lizardites 1099 lizardless 206 @@ -361820,6 +365347,7 @@ llanero 14945 llaneros 23465 llano 59617 llanos 146781 +llareta 1080 llautu 2951 llautus 170 llyn 4500 @@ -362194,6 +365722,7 @@ locin 1024 lock 30818142 lockability 591 lockable 162605 +lockably 3624 lockage 306363 lockages 147253 lockaway 472 @@ -362282,6 +365811,8 @@ lockup 757468 lockups 152601 lockwork 3736 locky 8391 +locn 3088 +locns 985 loco 1413900 locodescriptive 1531 locoed 38205 @@ -362341,12 +365872,16 @@ locuses 6348 locust 2354635 locusta 15865 locustae 17091 +locustberry 148 locustella 542 locustid 1774 locustids 1075 locusting 215 locustlike 2241 locusts 1692524 +locute 551 +locuted 2589 +locuting 242 locution 225246 locutionary 34375 locutions 188472 @@ -362456,6 +365991,7 @@ logarithmetically 700 logarithmic 4082976 logarithmical 5584 logarithmically 313904 +logarithmics 469 logarithmization 401 logarithmized 833 logarithmizing 143 @@ -362484,6 +366020,7 @@ loggerhead 269825 loggerheaded 2063 loggerheads 324992 loggers 1091492 +logges 1414 loggia 378244 loggiaed 89 loggias 79312 @@ -362691,6 +366228,7 @@ logwood 425257 logwoods 1695 logy 397573 lohoch 380 +lohochs 222 loial 6576 loially 168 loialty 567 @@ -362703,7 +366241,6 @@ loike 53150 loiked 642 loikes 8431 loiking 190 -loimic 51 loin 1553921 loincloth 242094 loinclothed 2103 @@ -362730,9 +366267,11 @@ loiterings 6946 loiters 80638 lokao 491 loke 72328 +lokelani 416 lokes 9189 lokma 562 lokshen 2142 +lokum 2328 lokun 50 lol 391114 lola 116008 @@ -362902,6 +366441,7 @@ longeval 1069 longevities 21667 longevity 5211945 longevous 7269 +longfathers 211 longfin 34621 longfins 835 longform 32467 @@ -363125,7 +366665,6 @@ looking 184403100 lookings 7991 lookism 5376 lookist 751 -lookit 40771 lookless 1513 lookoff 468 lookout 4584720 @@ -363276,7 +366815,6 @@ lophiiform 944 lophiiforms 1368 lophine 4991 lophobranch 142 -lophobranchiate 729 lophobranchs 661 lophocerine 309 lophocyte 103 @@ -363328,6 +366866,7 @@ loquacities 370 loquacity 173230 loquat 58563 loquats 27757 +loquitur 889908 loquot 828 loquots 524 lor 12005490 @@ -364736,13 +368275,13 @@ lusk 4963 lusks 8111 lusophone 8672 lusophones 178 +lusorious 195 +lusory 8543 lusotropical 918 lusotropicalism 1343 lust 7360838 lusted 211883 luster 2534179 -lustered 23372 -lustering 7445 lusterless 128940 lusterlessly 107 lusterlessness 448 @@ -364766,11 +368305,11 @@ lustlessly 86 lustlessness 118 lustra 23606 lustral 51521 -lustrate 28938 lustrated 110752 lustrates 23416 lustrating 11555 lustration 147913 +lustrational 133 lustrations 90060 lustrative 8751 lustratory 528 @@ -364855,6 +368394,7 @@ lutestring 18359 lutestrings 3755 lutetium 81398 luteum 1153062 +lutfisk 3288 luth 54742 lutherie 11160 luthern 2095 @@ -365533,6 +369073,9 @@ m'lords 796 m'lud 5278 m'luds 447 m's 2322 +m'sieur 42432 +m'sieurs 659 +m'zuzah 372 mDNA 8474 mGal 30328 mM 8499350 @@ -365782,6 +369325,7 @@ machismo 413260 machismos 409 machloket 653 machmeter 1997 +machmir 443 macho 991444 machoism 3744 machoistic 293 @@ -366583,6 +370127,8 @@ macrosegregation 28629 macroseism 474 macroseismic 34669 macroseisms 695 +macrosequence 329 +macrosequences 235 macroseta 5566 macrosetae 27563 macroshock 3309 @@ -366614,6 +370160,7 @@ macrospheric 1576 macrospicule 228 macrospicules 2002 macrospin 1162 +macrosplanchnic 1634 macrosporange 513 macrosporangia 4330 macrosporangium 3703 @@ -366665,6 +370212,9 @@ macroteiids 609 macrotermitine 324 macrotetrolide 1154 macrotetrolides 1074 +macrotext 2739 +macrotexts 211 +macrotextual 1209 macrotexture 24688 macrotextures 833 macrotheoretical 1648 @@ -366735,7 +370285,6 @@ macrural 138 macruran 4280 macrurans 2094 macruroid 357 -macrurous 3539 macs 31811 mactation 1009 mactations 177 @@ -366776,6 +370325,7 @@ macutas 404 macute 784 mad 23048707 madake 910 +madal 1427 madala 582 madalas 352 madam 3715937 @@ -366798,6 +370348,7 @@ madcaps 15862 madd 14541 madda 6577 maddah 1618 +maddalam 718 madded 7657 madden 105955 maddened 754686 @@ -366827,7 +370378,6 @@ madds 88 made 1967808242 madecassic 758 madecassoside 713 -madefaction 400 madeira 82371 madeiras 4037 madeleine 57277 @@ -367018,6 +370568,7 @@ magazette 241 magazettes 213 magazinable 370 magazine 49181201 +magazineful 304 magazineland 208 magazineless 94 magazinelet 1382 @@ -367034,6 +370585,7 @@ magazinism 293 magazinist 11999 magazinists 5434 magaziny 788 +magenblase 2086 magendo 2573 magenstrasse 1099 magenta 1003275 @@ -367439,6 +370991,7 @@ magnification 5034775 magnifications 505779 magnificence 3100516 magnificences 13157 +magnificencies 267 magnificent 20882349 magnificently 1547510 magnified 4369385 @@ -367491,8 +371044,11 @@ magslip 1084 magslips 287 magsman 1061 magsmen 498 +magstripe 4807 +magstripes 133 magtape 7422 magtig 617 +magua 1589 maguari 2457 maguey 290138 magueys 8550 @@ -367548,6 +371104,7 @@ mahfils 309 mahi 84457 mahila 8048 mahimahi 49564 +mahiole 1626 mahjong 40241 mahjongg 7726 mahlab 1025 @@ -367559,6 +371116,7 @@ mahmals 379 mahmil 734 mahmudi 382 mahmudis 314 +mahobohobo 266 mahoe 8732 mahoes 121 mahoganies 28148 @@ -367614,6 +371172,7 @@ maidenry 145 maidens 2703365 maides 15586 maidhood 6926 +maidie 1230 maidish 27142 maidism 3280 maidless 3239 @@ -367623,6 +371182,7 @@ maidly 331 maids 3583357 maidservant 336527 maidservants 138948 +maidy 2977 maieusiophobia 398 maieutic 22248 maieutical 290 @@ -367638,6 +371198,7 @@ mailability 33745 mailable 268468 mailbag 78025 mailbags 51382 +mailbase 2106 mailboat 19397 mailboats 3206 mailbox 1761396 @@ -368268,6 +371829,7 @@ maledicted 741 maledicting 161 malediction 215807 maledictions 176840 +maledictive 1176 maledictory 7243 maledicts 53 maledom 1280 @@ -368388,6 +371950,7 @@ malignants 38347 maligned 823802 maligner 16538 maligners 22651 +malignes 7098 malignest 415 malignified 165 malignify 48 @@ -368418,8 +371981,9 @@ malingerers 121408 malingering 608065 malingers 7354 malingery 2165 -malinois 1370 malinstruction 97 +malintegration 8557 +malintegrations 125 malintent 1994 malinvested 361 malinvestment 6259 @@ -368932,6 +372496,7 @@ mamzelles 215 mamzer 35767 mamzerim 9394 mamzers 1846 +mamzerut 3515 man 963075087 mana 706392 manaca 9835 @@ -369144,6 +372709,7 @@ mandira 1199 mandirs 2463 mandlen 1412 mando 50639 +mandobass 212 mandocello 1927 mandocellos 524 mandola 10941 @@ -369189,6 +372755,7 @@ manducate 1580 manducated 372 manducating 313 manducation 12858 +manducator 3465 manducatory 3258 mandy 22034 mandyas 1304 @@ -369245,6 +372812,7 @@ manga 394793 mangaba 2184 mangabas 269 mangabeira 5501 +mangabeiras 192 mangabey 28910 mangabeys 29311 mangaby 418 @@ -369350,6 +372918,8 @@ mangy 300150 manhaden 1930 manhandle 63489 manhandled 168935 +manhandler 1040 +manhandlers 529 manhandles 6255 manhandling 88294 manhandlings 265 @@ -369903,6 +373473,7 @@ manubrial 12292 manubriosternal 8729 manubrium 293307 manubriums 96 +manucaptors 1777 manucode 914 manucodes 787 manuductor 403 @@ -369963,6 +373534,7 @@ manus 475574 manuscribe 125 manuscribing 135 manuscript 31099550 +manuscriptal 797 manuscripts 16410273 manuscriptural 276 manushya 823 @@ -370058,6 +373630,7 @@ maps 50772192 mapwise 633 mapwork 3005 maqam 34724 +maqama 8180 maqamat 13503 maqams 3465 maqluba 360 @@ -371424,6 +374997,7 @@ mastings 389 mastitic 20008 mastitides 619 mastitis 1147836 +mastives 1044 mastless 12364 mastlike 2884 mastlin 67 @@ -371488,7 +375062,7 @@ masturbationist 64 masturbations 3529 masturbator 38350 p masturbatorily 234 -masturbatorium 245 +masturbatorium 245 p masturbators 24982 masturbatory 158937 mastwood 542 @@ -371512,6 +375086,7 @@ matador 305910 matadora 1201 matadore 4138 matadores 12435 +matadoress 182 matadorial 154 matadors 80606 mataeology 165 @@ -371693,6 +375268,7 @@ mathematicise 48 mathematicised 351 mathematicising 150 mathematicism 3514 +mathematicist 398 mathematicity 497 mathematicization 4218 mathematicizations 121 @@ -371728,6 +375304,8 @@ mathnawi 2246 mathnawis 913 mathom 707 mathoms 456 +mathophobia 1278 +mathphobia 212 mathree 120 maths 221715 mathspeak 232 @@ -371765,6 +375343,7 @@ matlockite 1763 matmaker 1248 matmakers 919 matmaking 2933 +matmul 1015 matoke 4542 matoniaceous 265 matooke 1912 @@ -371972,6 +375551,8 @@ matterwave 288 matterwaves 158 mattes 176904 mattha 140 +mattie 9357 +matties 782 mattifying 484 matting 1251358 mattings 64524 @@ -372079,6 +375660,7 @@ maundered 13076 maunderer 781 maunderers 386 maundering 52208 +maunderingly 304 maunderings 24990 maunders 6075 maundies 124 @@ -372256,6 +375838,7 @@ maxing 25654 maxipad 913 maxipads 1708 maxiprep 531 +maxipreps 133 maxis 8398 maxiseries 565 maxiskirt 1201 @@ -372325,6 +375908,7 @@ mayorships 5287 mayory 261 mayos 1243 maypole 90622 +maypoled 93 maypoles 15865 maypoling 243 maypop 6533 @@ -372353,6 +375937,7 @@ mazama 6551 mazamas 228 mazamorra 4946 mazamorras 323 +mazapilite 222 mazard 2406 mazards 472 mazarinade 386 @@ -373046,6 +376631,7 @@ mediatrices 294 mediatrix 32219 mediatrixes 97 mediazation 1543 +medible 691 medic 758826 medicable 2949 medical 230269390 @@ -373167,6 +376753,7 @@ medioanterior 1942 medioapical 2684 mediobasal 26397 mediobasally 1479 +mediobrome 344 mediocarpal 1183 mediocaudal 1748 mediocaudally 645 @@ -373282,6 +376869,7 @@ medjidiehs 425 medjidies 1586 medkit 6341 medkits 1004 +medlab 888 medlar 55235 medlars 33684 medley 1134965 @@ -373450,6 +377038,7 @@ megabases 12704 megabat 624 megabats 3745 megabaud 3740 +megabecquerel 3816 megabenthic 2530 megabenthos 2300 megabillion 950 @@ -374162,6 +377751,7 @@ mejlis 4952 mejorana 2305 mejoranas 99 mejoranera 377 +meju 1818 mekabu 176 mekin 1705 mekometer 826 @@ -374170,6 +377760,7 @@ mekoro 320 mel 489901 mela 73516 melacacidin 494 +melachah 16114 melaconite 16489 melada 30369 melado 12574 @@ -374232,6 +377823,7 @@ melaniids 97 melaniline 459 melanin 1009409 melaninization 371 +melaninlike 2105 melaninogenesis 207 melanins 52251 melanisation 1000 @@ -374490,6 +378082,7 @@ melitzanosalata 534 melizitose 1819 melkhout 119 melktert 540 +mell 484824 mellate 628 mellates 237 mellays 403 @@ -374759,6 +378352,8 @@ memery 2359 memes 238680 memester 119 memetic 32347 +memeticist 242 +memeticists 947 memetics 12288 memex 15638 memey 261 @@ -375080,7 +378675,6 @@ menotropins 18053 menoxenia 462 menpachi 1353 menpo 523 -mens 1381465 mensa 154714 mensae 11807 mensal 10069 @@ -375096,6 +378690,7 @@ menseful 774 menseless 200 menservants 63244 menses 1192275 +mensh 3770 menshevism 2195 mensing 1072 mensiversary 272 @@ -375361,6 +378956,7 @@ mercaptophenyl 1105 mercaptopropionate 3981 mercaptopropionic 11501 mercaptopropyl 2949 +mercaptopropyltrimethoxysilane 1726 mercaptopurine 249403 mercaptopurines 1203 mercaptopyridine 3951 @@ -375778,6 +379374,7 @@ mersions 855 mertansine 674 merthiolate 58146 mertiatide 1204 +mertieite 235 merulioid 913 merus 177409 merveilleuse 14022 @@ -375882,6 +379479,8 @@ mesh 15944197 meshable 1706 meshblock 418 meshed 784308 +mesher 5259 +meshers 973 meshes 2494043 meshfree 6075 meshing 938548 @@ -375897,6 +379496,7 @@ meshugenah 619 meshugeneh 838 meshugener 981 meshugga 1531 +meshuggaas 255 meshuggah 1650 meshugge 3580 meshuggenah 262 @@ -376172,6 +379772,8 @@ mesolecithal 1500 mesolect 5446 mesolectal 6216 mesolects 896 +mesoleg 562 +mesolegs 1007 mesolevel 10502 mesolevels 597 mesolimbic 135978 @@ -376549,6 +380151,7 @@ metaanalysis 251985 metaanalytic 26438 metaarsenite 2086 metaarsenites 91 +metaawareness 917 metabacteria 313 metaball 3395 metaballs 4290 @@ -376941,6 +380544,7 @@ metahistory 15071 metahuman 4387 metahumans 2010 metaidoioplasty 232 +metaigneous 15810 metainformation 10702 metainformational 209 metaiodobenzylguanidine 16462 @@ -376959,6 +380563,7 @@ metalanguage 191709 metalanguages 14122 metalate 2275 metalates 1611 +metalating 2567 metalation 34239 metalations 1282 metalaw 2696 @@ -376973,7 +380578,9 @@ metaldehyde 41069 metalearner 289 metalearning 3435 metaled 30094 +metaleg 497 metalegal 2275 +metalegs 916 metalepses 1053 metalepsis 22146 metalepsy 374 @@ -377431,6 +381038,7 @@ metaphase 865284 metaphases 119276 metaphasic 4527 metaphasis 447 +metaphen 20347 metaphenomena 540 metaphenomenal 2941 metaphenomenon 439 @@ -377492,11 +381100,15 @@ metaphysical 8410216 metaphysicalities 81 metaphysicality 1937 metaphysically 381647 +metaphysicalness 93 metaphysician 459433 metaphysicianism 1039 metaphysicians 382194 metaphysicist 4676 metaphysicists 5100 +metaphysicize 436 +metaphysicized 583 +metaphysicizing 484 metaphysics 5469983 metaphysiological 699 metaphysiology 465 @@ -378040,6 +381652,7 @@ metes 897068 metest 2154 metestrus 19215 meteth 3830 +metethereal 88 metflurazon 435 metformin 312004 meth 1051341 @@ -378185,6 +381798,7 @@ methiodides 7941 methional 9084 methionate 1214 methionine 2490944 +methioninemia 337 methionines 10693 methioninol 246 methionyl 64857 @@ -378247,6 +381861,7 @@ methotrexate 1328004 methotrexates 287 methotrimeprazine 13429 methought 253411 +methoughts 2660 methoxamine 51481 methoxatin 1055 methoxetamine 677 @@ -378382,6 +381997,7 @@ methylcyclohexanol 12891 methylcyclohexanols 2055 methylcyclohexanone 17376 methylcyclohexanones 1520 +methylcyclohexenone 1461 methylcyclohexyl 10221 methylcyclopentadiene 4356 methylcyclopentadienes 725 @@ -378878,6 +382494,7 @@ mezquita 3116 mezquitas 720 mezquite 24725 mezquites 1701 +mezuman 455 mezuza 5378 mezuzah 75380 mezuzahs 7199 @@ -378906,6 +382523,7 @@ mezzotinto 23738 mezzotintoes 97 mezzotintos 725 mezzotints 73769 +mezzuzah 2614 mf 1678314 p mfVSG 553 mfd 133916 @@ -379022,12 +382640,14 @@ mich 431410 miched 244 michelada 956 micheladas 471 +michelia 494 michellamine 833 michenerite 764 micher 3189 michers 782 michiyuki 6928 michman 3094 +michtam 907 mici 8548 micin 2298 micing 2606 @@ -379292,6 +382912,7 @@ microbic 174549 microbicidal 88808 microbicide 41188 microbicides 41658 +microbikini 113 microbio 12667 microbiocenosis 844 microbiochemical 1429 @@ -380172,6 +383793,8 @@ microflake 2425 microflakes 3598 microflare 1501 microflares 4409 +microflash 3640 +microflashes 203 microflat 454 microflats 240 microfleece 1116 @@ -381578,6 +385201,8 @@ microservices 18467 microsessions 207 microseta 942 microsetae 15168 +microsheet 5678 +microsheets 773 microshell 2858 microshells 3324 microshock 8485 @@ -381698,6 +385323,7 @@ microspine 176 microspines 6288 microspinules 526 microspirometer 368 +microsplanchnic 2952 microsponge 1739 microsponges 1839 microsporange 543 @@ -381884,6 +385510,9 @@ microtesla 2774 microteslas 816 microtest 15004 microtests 1943 +microtext 24308 +microtexts 13610 +microtextual 1369 microtextural 3477 microtexture 29432 microtextured 2361 @@ -382318,6 +385947,8 @@ middlescent 2474 middlescents 634 middlesole 233 middlesome 89 +middletone 4025 +middletones 4138 middleware 464658 middlewares 3708 middleweight 176605 @@ -382552,8 +386183,11 @@ midrange 514476 midranges 9617 midranking 2321 midrapidity 5409 +midrash 360421 +midrashim 70582 midrashist 3816 midrashists 1429 +midrashot 1339 midrate 1202 midrates 343 midrats 964 @@ -382674,6 +386308,7 @@ midsummer 2436975 midsummers 2669 midsummery 445 midsurface 23678 +midsurfaces 744 midswallow 604 midswim 130 midswing 10513 @@ -382782,6 +386417,8 @@ mien 1269977 miened 952 miens 18382 mierda 15803 p +mierkat 642 +mierkats 200 miersite 628 miesies 323 mieskeit 306 @@ -382902,6 +386539,7 @@ miking 100577 miko 31379 mikos 1310 mikoshi 13716 +miktam 2750 mikva 7176 mikvah 51368 mikvahs 1966 @@ -383070,6 +386708,7 @@ militiamen 785974 militias 968051 militiawoman 1770 militiawomen 2937 +militocracy 1070 militsia 4967 militsiya 2252 milium 72040 @@ -383518,6 +387157,7 @@ milus 1665 milwell 141 milzbrand 2249 mim 369885 +mimated 462 mimation 3452 mimbar 5171 mimbars 506 @@ -383697,6 +387337,7 @@ mindeth 7358 mindfile 490 mindfiles 487 mindflow 295 +mindfood 114 mindframe 1592 mindframes 713 mindfuck 5392 p @@ -383719,8 +387360,13 @@ mindless 1260580 mindlessly 255261 mindlessness 98685 mindlike 3831 +mindlink 1985 mindlock 315 mindly 1113 +mindmeld 1417 +mindmelded 107 +mindmelding 196 +mindmelds 171 mindnumbing 17372 mindnumbingly 2074 mindpower 5360 @@ -383750,6 +387396,7 @@ mindtool 712 mindtools 2891 mindwandering 3916 mindware 4432 +mindwash 297 mindwipe 1245 mindwiped 564 mindwipes 136 @@ -384019,6 +387666,7 @@ minicolumns 10525 minicom 8986 minicomic 1599 minicomics 2447 +minicompact 2795 minicomputer 1060247 minicomputers 676626 minicomputing 1010 @@ -384251,6 +387899,7 @@ minimizer 118856 minimizers 58799 minimizes 3805108 minimizing 7545458 +minimod 347 minimodule 1287 minimodules 1763 minimoon 222 @@ -384331,6 +387980,8 @@ minireactors 459 minirebellion 435 minirebellions 109 minireceptor 225 +minirecession 3315 +minirecessions 161 minirefrigerator 2350 minirefrigerators 1603 minireplicon 500 @@ -384485,6 +388136,8 @@ minithoracotomies 135 minithoracotomy 4335 minitour 2465 minitours 1176 +minitrack 16705 +minitracks 1319 minitractor 618 minitractors 707 minitrampoline 3059 @@ -384739,6 +388392,7 @@ miraclemonger 483 miraclemongers 563 miracles 9033215 miracling 244 +miracular 314 miraculin 3741 miraculism 2128 miraculist 433 @@ -384778,6 +388432,7 @@ mireland 852 mirepoix 20907 mires 119487 mirex 151230 +mirey 5165 mirfentanil 442 mirid 19970 mirids 14161 @@ -385256,6 +388911,7 @@ mischiefmaker 9612 mischiefmakers 8437 mischiefmaking 8827 mischiefs 583136 +mischieve 720 mischieved 2042 mischieves 1259 mischieving 535 @@ -385419,6 +389075,7 @@ misconvergence 7020 misconverted 148 misconverting 67 misconvey 198 +misconveyance 288 misconveyed 342 misconveying 249 miscooked 224 @@ -385922,7 +389579,11 @@ mishmashing 305 mishmosh 1247 mishoon 165 mishoused 143 +mishpachah 1556 mishpocha 1732 +mishpoche 1333 +mishpocheh 2022 +mishpucha 412 mishuga 207 mishung 71 mishybridization 181 @@ -386239,6 +389900,7 @@ mismounted 519 mismounting 399 mismove 993 mismoves 582 +misnaged 883 misname 16986 misnamed 336143 misnamer 189 @@ -386271,6 +389933,7 @@ misobserved 243 misocapnic 148 misocapnist 146 misocyclone 1523 +misocyclones 1156 misogamic 385 misogamist 3745 misogamists 595 @@ -386560,6 +390223,7 @@ misquotes 52098 misquoting 66579 misr 17497 misraised 127 +misran 139 misranked 333 misranking 523 misrate 415 @@ -386578,6 +390242,7 @@ misreaders 1887 misreading 679352 misreadings 102734 misreads 104537 +misreared 90 misreason 285 misreasoned 152 misreasoning 808 @@ -386666,6 +390331,7 @@ misrepairing 45 misrepairs 229 misrepeat 164 misrepeated 532 +misreplicated 151 misreplication 1429 misreport 29479 misreported 92261 @@ -386685,7 +390351,15 @@ misrepresenters 1010 misrepresenting 822169 misrepresents 396812 misreputed 118 +misrespond 50 +misresponding 53 +misresponse 234 +misrestored 152 +misresults 247 +misreturn 149 misri 2937 +misring 261 +misrings 501 misroute 4724 misrouted 114460 misrouteing 802 @@ -386700,6 +390374,9 @@ misrulers 1367 misrules 2800 misruling 2646 misrulings 519 +misrun 5563 +misrunning 461 +misruns 10228 miss 25180119 missa 92853 missable 3997 @@ -386716,6 +390393,8 @@ misscanned 365 misschedule 42 misscheduled 789 misscheduling 409 +misscored 895 +misscoring 649 misseated 377 missed 27197233 missee 4803 @@ -386747,6 +390426,8 @@ misservice 651 misserving 215 misses 4747204 misseses 132 +missess 489 +missesses 279 missest 1504 misset 3013 misseth 4717 @@ -387135,6 +390816,7 @@ misvaluing 854 misventure 591 misventures 755 misvocalization 279 +misvocalized 229 misvote 229 misvoted 118 misvoting 75 @@ -387557,6 +391239,7 @@ moab 13452 moabi 420 moai 34686 moais 1874 +moales 200 moambe 613 moan 2615198 moaned 2604932 @@ -387710,8 +391393,6 @@ mockers 110465 mockery 3418028 mockest 9052 mocketh 22030 -mockheroic 12592 -mockheroics 877 mockie 1322 mockies 688 mocking 3117489 @@ -387763,6 +391444,7 @@ moddable 100 modded 13749 modder 7407 modders 4984 +moddies 1294 modding 17566 mode 89159268 moded 85876 @@ -387990,6 +391672,8 @@ moels 972 moenomycin 2507 moer 8202 moered 115 +moerithere 105 +moeritheres 1019 moers 1115 moesin 16526 moeurs 115643 @@ -388121,6 +391805,7 @@ moists 2649 moisture 48788293 moistured 1880 moistureless 4663 +moisturemeter 483 moistureproof 91775 moistureproofed 2530 moistureproofing 9464 @@ -388240,6 +391925,7 @@ moldy 788466 mole 10263428 molecatcher 2231 molecatchers 338 +molecatching 175 molecula 6584 moleculae 1910 molecular 42083010 @@ -388555,6 +392241,7 @@ monadicity 873 monadiform 946 monadism 9182 monadist 964 +monadistic 2689 monadists 577 monadnock 24825 monadnocks 42454 @@ -388742,6 +392429,7 @@ moneymakers 60026 p moneymaking 255964 moneyman 12735 moneymen 21287 +moneymonger 521 moneyness 18925 moneyocracy 1155 moneys 22316194 @@ -389401,6 +393089,7 @@ monoetherate 860 monoethers 9090 monoethnic 13393 monoethyl 57297 +monoethylene 4688 monoethylglycinexylidide 2540 monoetiological 436 monoexponential 26652 @@ -389702,6 +393391,7 @@ monolithologic 9388 monoliths 340258 monolobar 371 monolobate 68 +monolobular 2957 monolocular 4229 monolog 48392 monologic 83688 @@ -389988,6 +393678,7 @@ monophylum 452 monophyly 86968 monophyodont 3504 monophyodonts 417 +monophysism 775 monophysite 25474 monophysites 9259 monophysitic 2910 @@ -389998,6 +393689,7 @@ monopiles 3652 monopisthocotylean 156 monopisthocotyleans 319 monopitch 6300 +monopitched 479 monoplace 9472 monoplacophoran 5717 monoplacophorans 8529 @@ -390111,6 +393803,7 @@ monoptical 228 monoptically 487 monopulse 136963 monoquantal 281 +monoquaternary 4743 monorace 210 monoracial 30924 monoraciality 524 @@ -390260,6 +393953,7 @@ monostelic 2489 monostely 61 monostic 167 monostich 2131 +monostichic 241 monostichodont 209 monostichous 4892 monostichs 1438 @@ -390501,7 +394195,6 @@ monozygosity 5581 monozygotic 373145 monozygous 22944 monrolite 195 -mons 440389 monseigneur 195565 monseigneurs 770 monsieur 1711996 @@ -390522,6 +394215,7 @@ monstered 2887 monsterfest 43 monsterhood 923 monstering 1399 +monsterism 1039 monsterization 468 monsterize 242 monsterized 520 @@ -390578,7 +394272,6 @@ montbretia 4358 montbretias 3265 monte 352797 montebrasite 4716 -monteith 3952 monteiths 868 montelukast 42320 montem 25977 @@ -390683,12 +394376,14 @@ mooching 35776 moocow 4627 moocows 231 mood 28479026 +moodboard 1553 moodier 13972 moodiest 3936 moodily 325860 moodiness 224841 moodinesses 195 moodir 561 +moodish 944 moodishness 388 moodle 1329 moodles 320 @@ -390760,6 +394455,7 @@ moondial 1343 moondials 147 moondoggle 788 moondoggles 93 +moondown 679 moondust 7500 mooned 59916 mooner 2241 @@ -390779,6 +394475,8 @@ moonful 540 moong 10535 moongate 2400 moongates 554 +moongazer 185 +moongazers 135 moongazing 721 moonglade 1993 moonglow 15971 @@ -390808,6 +394506,8 @@ moonlighty 215 moonlike 37187 moonlit 994856 moonly 921 +moonman 1797 +moonmen 2184 moonpath 2504 moonpaths 92 moonphase 2111 @@ -390843,6 +394543,8 @@ moonshiners 97769 moonshines 3410 moonshiney 286 moonshining 52756 +moonship 5481 +moonships 1420 moonsickle 249 moonsif 147 moonsiff 370 @@ -390859,6 +394561,8 @@ moonwalking 4566 moonwalks 3876 moonward 6352 moonwashed 1920 +moonwatcher 149 +moonwatchers 349 moonwatching 513 moonwise 694 moonwort 21147 @@ -390935,6 +394639,8 @@ mooted 861693 mooter 2859 mooters 1380 mootest 329 +moothill 204 +mootie 342 mooting 94402 mootings 6361 mootness 304044 @@ -391236,6 +394942,8 @@ morned 1215 mornes 7786 mornin' 5519 morning 201905271 +morninger 126 +morningers 161 morningful 50 morningless 1172 morningness 6015 @@ -391280,6 +394988,7 @@ morphability 181 morphable 4427 morphactin 8695 morphactins 3839 +morphadite 579 morphallactic 860 morphallaxis 3831 morphan 1365 @@ -391404,6 +395113,9 @@ morphologize 173 morphologized 2877 morphologizing 259 morphology 10854952 +morphomania 601 +morphomaniac 597 +morphomaniacs 462 morphome 1423 morphomes 1020 morphometric 373272 @@ -391631,7 +395343,6 @@ morulas 2936 morulation 328 moruloid 1292 moruti 682 -morwenings 87 morwong 1610 morwongs 347 mos 4115694 @@ -391802,6 +395513,7 @@ motherboards 137301 mothercraft 17612 motherdom 545 mothered 196697 +mothereffing 46 motherer 626 motherers 187 motherese 33064 @@ -391935,6 +395647,8 @@ motivos 16556 motley 1479418 motleyness 1097 motleys 1653 +motlier 6069 +motliest 2753 motmot 10968 motmots 13813 moto 217156 @@ -392371,6 +396085,7 @@ mouthable 751 mouthblown 1255 mouthbow 693 mouthbows 174 +mouthbreathe 182 mouthbreathing 11542 mouthbreeder 2386 mouthbreeders 2357 @@ -392390,6 +396105,7 @@ mouthful 1606169 mouthfuls 348191 mouthguard 20707 mouthguards 15544 +mouthie 153 mouthier 571 mouthiest 630 mouthily 238 @@ -392483,6 +396199,7 @@ moving 130412357 movingly 260328 movingness 1163 movings 48711 +movingui 154 movt 19132 movts 3389 mow 1371646 @@ -392567,6 +396284,7 @@ msec 2467009 msecs 32317 msg 333213 msgs 15902 +msngr 2546 mt 2115123 mtRNA 4719 mtRNAs 495 @@ -392584,6 +396302,8 @@ muadhin 164 muah 3129 muang 14285 muangs 555 +muazzin 648 +muazzins 121 mubah 2679 muban 2666 mubans 351 @@ -393523,6 +397243,7 @@ multicausative 225 multicavity 25159 multicell 84484 multicelled 52352 +multicells 2279 multicellular 798895 multicellularity 24240 multicellulars 659 @@ -393592,6 +397313,7 @@ multiclinical 407 multiclonal 5689 multiclonality 555 multiclone 7280 +multiclones 2960 multicloning 2367 multicloud 867 multicluster 6855 @@ -393627,6 +397349,7 @@ multicommittee 902 multicommodity 53549 multicommunal 2513 multicommutator 176 +multicompany 15971 multicomparison 931 multicompartment 34041 multicompartmental 13293 @@ -393935,7 +397658,9 @@ multifile 21050 multifilm 2519 multifilter 5719 multifilters 1191 +multifinality 9671 multifinger 5657 +multifirm 8408 multiflagellar 115 multiflagellate 2856 multiflagellated 1303 @@ -393950,7 +397675,9 @@ multiflora 199966 multifloral 2441 multifloras 2732 multiflorous 3021 +multiflow 4707 multiflowered 4441 +multiflows 415 multiflue 1001 multiflued 65 multifluid 13593 @@ -394159,6 +397886,7 @@ multikinase 5824 multikingdom 61 multilabel 5131 multilaboratory 23727 +multilacunar 2989 multilamellar 52520 multilamellarity 125 multilamellate 937 @@ -394572,7 +398300,9 @@ multiperpetrator 79 multiperson 41848 multipersonal 3649 multipersonality 934 +multiperspectivalism 730 multiperspective 11953 +multiperspectivism 1813 multiperspectivity 1581 multipetabyte 146 multipetaled 2055 @@ -394775,6 +398505,7 @@ multipunctate 504 multipuncture 2326 multipurpose 1940051 multipurposed 3886 +multipurposeful 237 multipurposeness 185 multiquadratic 1578 multiquadric 9183 @@ -394844,6 +398575,7 @@ multiresolutional 5314 multiresonance 1635 multiresonant 3580 multiresonator 3259 +multirespondent 372 multiresponse 15761 multiresponsive 683 multirestaurant 285 @@ -395229,6 +398961,7 @@ multitrip 1879 multitrophic 4656 multitrunked 5355 multitube 26582 +multitubercular 1031 multituberculate 18215 multituberculated 98 multituberculates 32281 @@ -395374,6 +399107,7 @@ multiword 47003 multiworded 322 multiworkstation 621 multiworld 950 +multiwriter 778 multixenobiotic 1711 multiyear 1138652 multizillionaire 137 @@ -395666,6 +399400,7 @@ muratina 254 muray 201 murchisoniid 79 murchisoniids 153 +murdabad 431 murdah 462 murder 51313519 murder'd 57612 @@ -396004,6 +399739,7 @@ musette 61035 musettes 9171 musetto 295 museum 24882908 +museumed 957 museumesque 106 museumgoer 3991 museumgoers 10828 @@ -396012,6 +399748,7 @@ museumification 2851 museumified 929 museumify 193 museumifying 104 +museuming 357 museumization 2318 museumize 562 museumized 2357 @@ -396049,6 +399786,7 @@ mushmelon 2452 mushmelons 1939 mushmouth 1417 mushmouths 159 +mushquash 212 mushrat 2155 mushrats 1455 mushrik 2386 @@ -396146,6 +399884,7 @@ musjid 860 musjids 217 musk 1439352 muskadel 194 +muskadine 703 muskball 137 musked 2684 muskeg 183171 @@ -396213,6 +399952,8 @@ musquash 36197 musquashes 1707 musquaw 301 musqueteers 11113 +musquetoes 8438 +musquetos 310 musquets 12538 musquito 23556 musquitoes 53257 @@ -396424,6 +400165,8 @@ muthmannite 739 muti 45105 mutic 9983 muticous 14314 +mutie 3875 +muties 3888 mutilate 507727 mutilated 3236191 mutilater 109 @@ -396534,6 +400277,7 @@ mutuum 24710 muumuu 34165 muumuued 56 muumuus 13507 +muvule 75 muvver 8764 muvvers 229 muwahhid 475 @@ -396587,7 +400331,10 @@ mvule 1338 mwa 15006 mwah 5514 mwalimu 4038 +mwami 15554 +mwamis 332 mwenge 845 +mxd 2981 mxn 22531 my 1810081010 myBP 2284 @@ -396942,6 +400689,7 @@ myelosclerotic 687 myelosupportive 156 myelosuppress 65 myelosuppressant 814 +myelosuppressants 467 myelosuppressed 6191 myelosuppressing 375 myelosuppression 222168 @@ -396989,6 +400737,8 @@ mylohyoideus 10445 mylonite 89848 mylonites 42835 mylonitic 75684 +mylonitization 22504 +mylonitized 17137 mymarid 4086 mymarids 1109 myna 26690 @@ -397425,6 +401175,7 @@ myrmecophagy 1039 myrmecophile 2659 myrmecophiles 8405 myrmecophilic 666 +myrmecophilism 417 myrmecophilous 21730 myrmecophily 6208 myrmecophobia 60 @@ -397789,6 +401540,7 @@ mzees 193 mzungu 10121 mzungus 987 n' 71127 +n's 2444 n't 7994266 n-dimensional 181 n-type 167 @@ -397906,10 +401658,12 @@ nafenopin 6811 naff 20611 naffer 1368 naffest 146 +naffing 182 naffness 248 nafimidone 643 nafoxidine 8796 nafronyl 553 +nafs 48190 naftidrofuryl 3658 naftifine 9833 naftopidil 634 @@ -397987,6 +401741,7 @@ naib 10946 naibors 308 naibours 433 naibs 2575 +naice 2305 naidid 3206 naidids 2675 naifly 139 @@ -397995,6 +401750,7 @@ naigs 1331 naik 7540 naiks 1277 nail 11611604 +nailability 3047 nailable 24562 nailbed 20003 nailbeds 17608 @@ -398088,6 +401844,7 @@ nakie 126 naking 41591 nakir 593 nakirs 395 +nakoda 868 nakodo 5972 nakong 794 nakongs 121 @@ -398133,6 +401890,7 @@ namazi 413 namazlik 305 namba 2776 nambas 1076 +namby 89731 name 503024528 nameability 1624 nameboard 9264 @@ -398242,6 +402000,7 @@ nanisms 2586 nanite 7137 nanites 24370 nanization 177 +nanja 1322 nank 6132 nankeen 92074 nankeens 28389 @@ -398863,6 +402622,7 @@ nanoreactors 4106 nanoregime 360 nanoregion 117 nanoregions 863 +nanoremediation 480 nanoreplicators 211 nanoresonator 350 nanoresonators 554 @@ -399544,9 +403304,12 @@ nasendoscopic 831 nasendoscopy 3615 nases 4627 nash 36335 +nashed 945 nasheed 956 nasheeds 812 +nashes 456 nashi 21716 +nashing 1121 nasho 204 nasi 278398 nasial 268 @@ -400305,6 +404068,8 @@ neckgear 997 neckhold 415 necking 393004 neckings 2518 +neckkerchief 1424 +neckkerchiefs 259 necklace 3572251 necklaced 9365 necklacelike 1155 @@ -401035,6 +404800,7 @@ nemourids 401 nems 6331 nen 333661 nenadkevichite 710 +nenbutsu 21802 nene 54001 neneleau 215 nenes 5479 @@ -401123,8 +404889,10 @@ neocolonialists 9353 neocolonialization 206 neocolonialized 409 neocolonies 2940 +neocolonisation 50 neocolonist 281 neocolonists 192 +neocolonization 2905 neocolonize 108 neocolonized 2059 neocolonizing 713 @@ -401361,6 +405129,7 @@ neomercantilism 10995 neomercantilist 14999 neomercantilistic 1328 neomercantilists 2217 +neomineralization 2833 neominimalist 60 neomodal 249 neomodality 179 @@ -401383,6 +405152,8 @@ neomutations 135 neomycin 878411 neomycine 969 neomycins 5267 +neomythological 418 +neomythology 143 neon 3090765 neonatal 4962998 neonatality 376 @@ -401519,6 +405290,7 @@ neorealism 106256 neorealisms 180 neorealist 91164 neorealistic 8701 +neorealistically 87 neorealists 26045 neoreality 275 neorectal 745 @@ -401896,6 +405668,7 @@ neptunates 256 neptunian 6888 neptunians 160 neptunic 1547 +neptunism 2537 neptunite 5975 neptunium 302693 nequinate 1527 @@ -401923,6 +405696,7 @@ nerdishness 380 nerdism 425 nerdistans 386 nerditude 100 +nerdity 245 nerdlike 560 nerdling 165 nerdly 899 @@ -402063,6 +405837,8 @@ nesters 202238 nesteth 76 nestful 17775 nestfuls 779 +nesthole 1071 +nestholes 635 nesticid 508 nesticids 414 nestin 36310 @@ -402805,6 +406581,7 @@ neurolinguistic 36736 neurolinguistically 324 neurolinguistics 23182 neurolinguists 1844 +neurolink 193 neurolipidoses 1124 neurolipidosis 912 neurolite 86 @@ -403464,6 +407241,7 @@ neutrinoless 20606 neutrinos 888150 neutrinosphere 3118 neutrinospheres 183 +neutrite 80 neutrocclusion 554 neutroclusion 6093 neutrocyte 339 @@ -403820,6 +407598,7 @@ niacinate 1093 niacytin 767 nialamide 28753 nialamides 141 +nianfo 3629 niaouli 5697 niaprazine 150 nib 362048 @@ -404027,6 +407806,7 @@ niddering 1877 nidderings 171 nidders 139 niddick 52 +niddui 2385 nide 32107 nidering 1244 nides 8618 @@ -404187,6 +407967,9 @@ niggress 92 niggro 1615 p nigguh 9113 p nigguhs 5253 p +niggun 8707 +niggunim 5141 +nigguns 201 niggy 195 p nigh 6300467 nighabout 178 @@ -404377,6 +408160,7 @@ nigua 3261 niguas 1941 niguldipine 463 nigun 5489 +nigunim 5279 nihari 335 nihil 682894 nihilate 5964 @@ -404462,6 +408246,7 @@ nimbleness 137461 nimbler 47135 nimbles 656 nimblest 25324 +nimblewill 3629 nimbling 732 nimbly 504289 nimbo 6392 @@ -405401,6 +409186,7 @@ nohows 1166 noibwood 635 noice 18131 noicer 50 +noid 49598 noight 6958 noights 432 noil 115739 @@ -405740,6 +409526,7 @@ nonachievers 8483 nonachlazine 758 nonachlorobiphenyl 288 nonachlorobiphenyls 261 +nonachromatic 1054 nonacicular 395 nonacid 90271 nonacidemic 263 @@ -405997,6 +409784,7 @@ nonairline 9923 nonairport 6919 nonairtight 1966 nonaketide 529 +nonal 12044 nonalarm 911 nonalarmed 164 nonalarming 595 @@ -406821,6 +410609,7 @@ nonbowel 153 nonboxing 303 nonboycotted 413 nonbraced 806 +nonbrachiating 343 nonbracketed 1055 nonbrackish 569 nonbraille 220 @@ -406916,6 +410705,8 @@ nonbuyer 2404 nonbuyers 9671 nonbuying 2747 nonbylined 122 +nonbypassable 7892 +nonbypassed 1425 nonbyte 53 noncabinet 3064 noncable 47304 @@ -407047,6 +410838,7 @@ noncarotenoid 563 noncarotid 672 noncarrier 449851 noncarriers 47356 +noncarrying 7661 noncartelized 561 noncartilaginous 3934 noncartographic 1299 @@ -407447,6 +411239,7 @@ noncollapsing 3375 noncollateralized 3116 noncolleagues 129 noncollectable 1748 +noncollectible 5994 noncollecting 2791 noncollection 14835 noncollective 17781 @@ -407636,6 +411429,7 @@ noncompounders 107 noncompounds 400 noncomprehenders 160 noncomprehending 2229 +noncomprehensible 431 noncomprehension 10904 noncomprehensive 10868 noncompressed 11995 @@ -407866,6 +411660,7 @@ nonconstraints 1056 nonconstricted 2861 nonconstricting 3467 nonconstructed 1144 +nonconstructible 1517 nonconstruction 169329 nonconstructive 31368 nonconsular 680 @@ -408421,6 +412216,7 @@ nondelinquent 102835 nondelinquents 92803 nondeliquescent 1375 nondelirious 1517 +nondeliverable 10021 nondeliverance 375 nondelivered 4822 nondeliveries 2995 @@ -408460,6 +412256,7 @@ nondenial 3093 nondenials 159 nondenitrifying 585 nondenom 537 +nondenominated 2068 nondenominational 272152 nondenominationalism 2107 nondenominationalist 67 @@ -408803,6 +412600,7 @@ nondispersion 4008 nondispersive 109107 nondisplaceable 3500 nondisplaced 79894 +nondisplacement 15330 nondisplayable 1261 nondisplayed 2950 nondisposable 22320 @@ -409994,6 +413792,7 @@ nonfranchised 15178 nonfranchisee 58 nonfranchisees 223 nonfrat 260 +nonfraternal 2412 nonfraternity 14549 nonfraternization 7625 nonfrats 116 @@ -411580,6 +415379,7 @@ nonmagical 10980 nonmagically 172 nonmagician 136 nonmagicians 380 +nonmagmatic 3136 nonmagnesium 579 nonmagnet 5535 nonmagnetic 621257 @@ -411676,6 +415476,7 @@ nonmarxist 796 nonmarxists 183 nonmasculine 6809 nonmasculinizing 139 +nonmaser 209 nonmasing 178 nonmaskable 17086 nonmasked 2948 @@ -411947,6 +415748,7 @@ nonmodernity 990 nonmoderns 439 nonmodifiable 29478 nonmodified 19082 +nonmodifying 1107 nonmodular 16353 nonmodulated 4937 nonmoisturizing 88 @@ -412133,7 +415935,9 @@ nonmythic 1552 nonmythical 3808 nonmythological 3943 nonna 25721 +nonname 1573 nonnamed 3347 +nonnames 231 nonnarcissistic 1371 nonnarcotic 118918 nonnarcotics 4724 @@ -412190,6 +415994,7 @@ nonnervous 12334 nonnested 16404 nonnesting 4181 nonnetwork 75509 +nonnetworkable 143 nonnetworked 3433 nonneural 37232 nonneurogenic 6624 @@ -412244,6 +416049,7 @@ nonnotable 172 nonnotarized 374 nonnotification 6400 nonnovel 2006 +nonnovelist 47 nonnovels 115 nonnoxious 11411 nonnuclear 643390 @@ -412791,6 +416597,7 @@ nonperiodically 1842 nonperiodontal 431 nonperipheral 5882 nonperiphrastic 415 +nonperipteral 243 nonperishable 154801 nonperishables 15165 nonperishing 193 @@ -412843,6 +416650,7 @@ nonpesticidal 3654 nonpesticide 5396 nonpesticides 287 nonpests 394 +nonpetaloid 379 nonpetechial 123 nonpetrified 465 nonpetrochemical 843 @@ -412873,6 +416681,7 @@ nonphilatelic 681 nonphilological 673 nonphilosopher 4766 nonphilosophers 13654 +nonphilosophic 4050 nonphilosophical 25935 nonphilosophically 398 nonphilosophy 3956 @@ -412901,6 +416710,7 @@ nonphoto 2761 nonphotoactive 1744 nonphotochemical 11765 nonphotochromic 483 +nonphotochromogen 904 nonphotographer 457 nonphotographers 637 nonphotographic 16507 @@ -413694,6 +417504,7 @@ nonreadable 2434 nonreader 26082 nonreaders 71817 nonreading 30605 +nonreaginic 2288 nonreal 99526 nonrealism 5813 nonrealist 11662 @@ -413966,6 +417777,7 @@ nonrepaid 113 nonrepair 10397 nonrepairable 39958 nonrepaired 1956 +nonrepatriable 3558 nonrepayable 30567 nonrepaying 495 nonrepayment 11116 @@ -414164,6 +417976,7 @@ nonretribution 211 nonretributive 1663 nonretroactive 27788 nonretroactivity 26945 +nonretrofitted 662 nonretroflex 521 nonretrograde 496 nonretroreflective 481 @@ -414626,6 +418439,8 @@ nonsettlable 143 nonsettleable 6500 nonsettled 7727 nonsettlement 8166 +nonsettler 2428 +nonsettlers 2000 nonsettling 92107 nonseverance 903 nonsevere 23667 @@ -414727,7 +418542,9 @@ nonsilence 548 nonsilenced 462 nonsilencing 1177 nonsilent 2488 +nonsilicate 13469 nonsilicated 903 +nonsilicates 1975 nonsiliceous 8753 nonsilicified 1237 nonsilicon 4351 @@ -414793,6 +418610,7 @@ nonskilled 40886 nonskin 3746 nonskipping 196 nonslack 823 +nonslash 378 nonslave 25029 nonslaveholder 6006 nonslaveholders 35025 @@ -415683,6 +419501,8 @@ nontitular 2746 nontoasted 136 nontobacco 16502 nontoilet 588 +nontoken 1174 +nontokens 604 nontolerance 1880 nontolerant 29923 nontolerated 864 @@ -416281,6 +420101,7 @@ nonwaived 3113 nonwaiver 45796 nonwalking 3665 nonwalled 384 +nonwandering 11317 nonwar 76405 nonwarehouse 6757 nonwarlike 2018 @@ -416420,6 +420241,8 @@ nonylic 3958 nonylphenol 55773 nonylphenols 4032 nonyls 65 +nonymity 663 +nonymous 10235 nonyne 1122 nonyoga 134 nonyogic 128 @@ -416542,6 +420365,8 @@ nopal 60410 nopaleries 503 nopales 16601 nopaline 36029 +nopalito 863 +nopalitos 7491 nopalries 353 nopalry 220 nopals 4330 @@ -416659,6 +420484,7 @@ norisoprenoids 1877 norite 187945 norites 46000 noritic 31483 +norito 10384 nork 12021 norketamine 3383 norketobemidone 330 @@ -416822,6 +420648,7 @@ normosmics 916 normosomatic 143 normospermia 779 normospermic 3472 +normosplanchnic 1030 normotension 19581 normotensive 386531 normotensives 32875 @@ -416895,6 +420722,7 @@ northbound 1077551 northbridge 1320 northcentral 225730 northeast 22435699 +northeastbound 2382 northeaster 75693 northeasterlies 8504 northeasterly 1898477 @@ -416950,6 +420778,7 @@ northward 11063959 northwardly 259495 northwards 679282 northwest 24626117 +northwestbound 1730 northwester 31677 northwesterlies 10825 northwesterly 1866594 @@ -417308,6 +421137,8 @@ nothingy 336 nothink 46256 nothogenera 52 nothogenus 227 +nothomorph 196 +nothomorphs 215 nothosaur 2314 nothosaurian 308 nothosaurs 6244 @@ -417354,6 +421185,7 @@ notionist 564 notionists 578 notionless 1216 notions 17853490 +notiony 319 notitia 38632 notitiae 4567 notname 77 @@ -417565,6 +421397,10 @@ noviciates 2742 novid 77 novillada 2782 novilladas 2701 +novillero 5376 +novilleros 2723 +novillo 2019 +novillos 4007 novis 33643 novitiate 532181 novitiates 65268 @@ -417630,6 +421466,7 @@ noyau 34137 noyaus 138 noyeau 3089 noyed 12563 +noyers 1700 noying 7910 noyl 397 noyls 140 @@ -417652,14 +421489,17 @@ nr 2275064 nrDNA 3986 nrg 5180 nritta 1253 +nrml 356 nrn 45614 nroff 39580 +ns 8263090 nshima 2608 nsibidi 2757 nsima 3588 nsutite 3135 ntama 799 nth 2845098 +nthn 376 nths 66655 nu 2224952 nuance 1102388 @@ -417948,6 +421788,8 @@ nugatory 731157 nugg 344 nuggar 1575 nuggars 934 +nugger 667 +nuggers 472 nugget 576998 nuggetlike 600 nuggets 884771 @@ -418200,7 +422042,6 @@ nunchakus 5556 nuncheon 9322 nuncheons 347 nunchi 2778 -nunchion 839 nunchions 233 nunchuck 1240 nunchucks 5425 @@ -418241,6 +422082,7 @@ nunus 746 nunya 448 nuocytes 321 nup 28555 +nupercaine 16019 nupharamine 111 nuplex 2218 nuplexes 570 @@ -418868,6 +422710,8 @@ obelizing 438 obelus 11843 obento 4336 obentos 539 +oberek 2618 +obereks 915 obes 18690 obese 3769810 obesely 2749 @@ -419047,7 +422891,9 @@ oblations 242232 oblative 2729 oblatory 1700 oblatum 8257 +obleege 6044 obleeged 39445 +obleeging 1311 oblig'd 124427 obligable 1206 obligant 3290 @@ -419123,7 +422969,6 @@ obliterative 157383 obliteratively 1142 obliterator 3145 obliterators 1470 -obliterature 141 oblivescence 2425 oblivial 126 obliviate 1985 @@ -419293,8 +423138,10 @@ observationality 1756 observationally 98677 observations 86926078 observative 3217 +observatoria 360 observatorial 435 observatories 1190017 +observatorium 1463 observatory 3178182 observaunces 2299 observe 49238042 @@ -419420,6 +423267,7 @@ obstructs 944867 obstruency 544 obstruent 89659 obstruents 104918 +obstruse 5814 obtainability 4456 obtainable 10152755 obtainal 676 @@ -419557,7 +423405,6 @@ occasioneth 2016 occasioning 459604 occasionless 457 occasions 40076122 -occasive 204 occhio 21312 occident 57467 occidental 447072 @@ -419700,6 +423547,7 @@ occurrences 9939425 occurrent 87511 occurrently 4703 occurrents 15984 +occurres 1681 occurring 47174813 occurrings 678 occurs 126635743 @@ -420227,6 +424075,7 @@ octyls 138 octyne 7592 octynes 297 ocular 5854790 +ocularcentric 4832 ocularcentrism 6545 ocularia 1709 ocularist 7826 @@ -420475,6 +424324,8 @@ odorful 462 odoriferous 335828 odoriferously 1621 odoriferousness 1322 +odorimeter 942 +odorimeters 93 odorimetry 686 odorise 44 odorised 189 @@ -420534,6 +424385,7 @@ oeconomies 932 oeconomus 17629 oecophorid 1421 oecophorids 720 +oecumene 4944 oecumenic 1675 oecumenical 93686 oecumenicalism 143 @@ -421114,6 +424966,7 @@ oilery 730 oilfish 2252 oilfishes 637 oilhouse 7762 +oilhouses 896 oilier 297577 oilies 2304 oiliest 9360 @@ -421349,6 +425202,7 @@ olefinic 308046 olefins 1159021 oleh 25176 oleic 1117149 +oleiculture 318 oleiferous 5561 olein 122054 oleine 33721 @@ -421798,7 +425652,6 @@ olistostrome 14942 olistostromes 15005 olistostromic 235 olitoriside 177 -olitory 452 oliva 25481 olivaceous 340828 olivacine 1319 @@ -421809,7 +425662,6 @@ olive 16584342 oliveback 943 olivebacks 195 olived 942 -olivegreen 42296 olivegrowers 179 olivegrowing 945 oliveless 110 @@ -421948,6 +425800,8 @@ ombudspersons 11600 ombudswoman 1811 ombudswomen 256 ombus 1068 +omdeh 1720 +omdehs 805 ome 1234971 omee 8671 omees 1105 @@ -422108,6 +425962,7 @@ omnipause 4126 omnipercipience 403 omnipercipient 768 omniperfect 139 +omniphibious 189 omniphobic 333 omniplane 851 omnipolar 168 @@ -422116,6 +425971,7 @@ omnipotences 719 omnipotencies 237 omnipotency 19618 omnipotent 1900619 +omnipotential 1607 omnipotentiality 2599 omnipotently 14430 omnipotents 1204 @@ -422459,6 +426315,7 @@ onery 15779 ones 129340094 onescore 324 oneself 11081812 +oneselves 1015 oneship 1052 oneshot 47538 oneshots 1733 @@ -422831,6 +426688,7 @@ oohs 56894 ooid 53002 ooidal 1774 ooids 96287 +ooja 172 oojah 251 ook 683119 ooked 47117 @@ -422839,6 +426697,7 @@ ookinetes 8617 ooking 74129 ookpik 127 ooks 146447 +ool 330463 oolachan 1413 oolachans 355 oolak 225 @@ -422864,6 +426723,7 @@ oology 29171 oolong 49802 oolongs 4752 oom 185310 +oomancy 171 oometer 56 oomf 719 oomfie 133 @@ -423207,6 +427067,7 @@ operculigerous 1670 operculitis 211 operculoinsular 372 operculum 721593 +operculums 1892 opere 256908 operetta 683067 operettas 318831 @@ -423434,8 +427295,6 @@ opisthaptors 163 opisthenar 211 opisthion 13053 opisthobranch 23922 -opisthobranchiate 2490 -opisthobranchiates 163 opisthobranchs 29964 opisthocline 4449 opisthocoelian 2104 @@ -423621,6 +427480,7 @@ oprichnina 21339 opries 475 opry 10027 ops 2392280 +opsiblastic 338 opsigamy 76 opsimath 549 opsimaths 241 @@ -423753,6 +427613,7 @@ optionals 18149 optionary 2169 optioned 208967 optionee 237351 +optioneering 257 optionees 39109 optioner 6516 optioners 1109 @@ -424076,6 +427937,7 @@ orchardmen 2927 orchards 8011365 orchardy 201 orchats 191 +orchel 254 orchella 1759 orchesis 1321 orchesography 262 @@ -424141,6 +428003,7 @@ orchidophile 476 orchidophiles 531 orchidotomy 612 orchids 1873145 +orchie 68 orchiectomies 1275 orchiectomized 8226 orchiectomy 162980 @@ -424267,6 +428130,7 @@ oread 13300 oreades 13552 oreads 5533 oreboat 730 +oreboats 918 orebodies 369805 orebody 486645 orecchiette 14855 @@ -424401,6 +428265,8 @@ organizers 5906549 organizes 2368319 organizing 24523068 organizings 685 +organlegger 514 +organleggers 537 organless 3991 organlessness 139 organlike 8200 @@ -424686,6 +428552,7 @@ orguinettes 305 orgulous 6197 orgulously 83 orgy 1033171 +orh 15659 orhni 473 oribatid 34545 oribatids 9469 @@ -425173,6 +429040,7 @@ orthoceratoid 64 orthocerid 1278 orthocerids 1407 orthochamosite 97 +orthocharmonium 360 orthochoanitic 5623 orthochromatic 136182 orthochromatism 2220 @@ -425633,6 +429501,7 @@ oscillators 2016729 oscillatory 2324418 oscillaxanthin 559 oscilloclast 3528 +oscilloclasts 267 oscillogram 192837 oscillograms 268268 oscillograph 662321 @@ -425688,8 +429557,10 @@ osh 41348 osha 51773 oshaku 182 oshana 275 +oshanas 410 oshibori 1745 oshidashi 67 +oshinko 331 oshizushi 152 osier 228117 osiered 2681 @@ -425950,6 +429821,10 @@ ostein 5261 osteitic 4797 osteitides 101 osteitis 408246 +ostend 2352 +ostended 1851 +ostending 842 +ostends 426 ostensibility 1112 ostensible 1792248 ostensibly 4829011 @@ -425970,6 +429845,7 @@ ostentations 12386 ostentatious 1122967 ostentatiously 605358 ostentatiousness 13220 +ostentative 336 ostentator 1001 ostents 2773 osteo 228882 @@ -426273,6 +430149,7 @@ osthol 860 ostia 189557 ostial 62793 ostially 109 +ostiariate 171 ostiaries 835 ostiarii 2480 ostiarius 4516 @@ -426331,8 +430208,6 @@ ostracoderms 33614 ostracodes 180403 ostracodologists 274 ostracods 212748 -ostracoid 595 -ostracoids 713 ostracon 33414 ostraculture 274 ostracum 7728 @@ -426642,9 +430517,12 @@ oughtnesses 124 oughts 88571 oughtst 2065 oughtta 43369 +ougiya 412 +ougiyas 135 ouguiya 7300 ouguiyas 5187 oui 429772 +ouid 8602 ouija 63415 ouijas 109 ouistiti 1621 @@ -426756,6 +430634,8 @@ outbargains 129 outbark 348 outbars 98 outbase 190 +outbasket 676 +outbaskets 185 outbattle 166 outbattled 427 outbawl 550 @@ -427188,6 +431068,7 @@ outercoats 5471 outercourse 5035 outering 2017 outerings 183 +outerly 1643 outermore 64 outermost 2219352 outermosts 2140 @@ -427195,6 +431076,8 @@ outerness 3737 outerplanar 11637 outerplanarity 399 outers 98327 +outershell 6437 +outershells 275 outerwear 862079 outexecute 303 outface 35525 @@ -428218,6 +432101,7 @@ outsmoke 453 outsmoked 218 outsmoking 94 outsmoothed 109 +outsnob 128 outsnore 115 outsoar 5353 outsoared 7653 @@ -428267,6 +432151,8 @@ outspending 25296 outspends 7677 outspent 80694 outspew 69 +outspied 341 +outspies 295 outspin 463 outspinning 119 outspit 283 @@ -428422,6 +432308,7 @@ outswum 359 outswung 1561 outta 896520 outtake 39971 +outtaken 194 outtakes 97999 outtaking 106 outtalk 14422 @@ -428617,6 +432504,7 @@ outyields 14254 ouvarovite 957 ouvert 37258 ouverts 11219 +ouvertures 4863 ouvrier 52546 ouvrierism 225 ouvrierist 307 @@ -429006,6 +432894,7 @@ overbeaten 3113 overbeating 2961 overbed 35095 overbeetling 105 +overbelief 3515 overbend 7845 overbending 6216 overbends 1511 @@ -429265,6 +433154,7 @@ overcare 4918 overcared 237 overcareful 10410 overcarefully 1083 +overcarefulness 1159 overcareless 386 overcarelessness 98 overcaring 1227 @@ -429278,6 +433168,7 @@ overcarved 977 overcarving 454 overcast 1708069 overcasted 1457 +overcaster 62 overcasting 40170 overcastings 215 overcasts 50086 @@ -429308,6 +433199,8 @@ overcentralized 24684 overcentralizes 117 overcentralizing 1040 overcerebral 579 +overcertification 5346 +overcertifications 527 overcertified 727 overcertifies 44 overcertify 484 @@ -429346,6 +433239,7 @@ overchlorination 1775 overchoice 4254 overchoreographed 253 overchurched 8515 +overchurching 4743 overcirculation 10565 overcitation 268 overcite 286 @@ -429633,6 +433527,7 @@ overcramming 259 overcrank 1584 overcranked 1047 overcranking 1671 +overcreative 242 overcredulity 889 overcredulous 5823 overcreep 58 @@ -429906,6 +433801,7 @@ overdraining 1129 overdrains 226 overdramatic 28862 overdramatically 2635 +overdramatics 155 overdramatisation 177 overdramatise 382 overdramatised 467 @@ -429917,6 +433813,10 @@ overdramatized 20816 overdramatizes 2762 overdramatizing 10819 overdrank 1646 +overdrape 1745 +overdraped 1163 +overdrapes 3192 +overdraping 400 overdraught 2184 overdraughts 549 overdraw 110407 @@ -430463,6 +434363,8 @@ overgenerously 2623 overgenial 160 overgentle 834 overgently 372 +overgesture 53 +overgesturing 146 overget 779 overgetting 118 overgild 170 @@ -430493,6 +434395,8 @@ overglorifies 111 overglorify 618 overglorifying 327 overglorious 137 +overgloss 452 +overglossed 513 overglow 674 overglowed 88 overglowing 211 @@ -430666,6 +434570,9 @@ overhomogenize 192 overhomogenized 103 overhomogenizing 42 overhonest 468 +overhook 822 +overhooked 175 +overhooking 63 overhope 66 overhopped 51 overhot 3399 @@ -430784,6 +434691,7 @@ overinfluences 63 overinfluencing 286 overinfluential 147 overinform 463 +overinformative 402 overinformed 1835 overinforming 599 overinfusion 2149 @@ -430911,6 +434819,9 @@ overlabour 284 overlaboured 1860 overlabouring 230 overlabours 82 +overlace 447 +overlaced 1248 +overlacing 469 overlactation 579 overlade 1207 overladed 250 @@ -431035,6 +434946,7 @@ overlip 512 overliquidity 754 overlit 10467 overliteral 4198 +overliterally 583 overliterary 1210 overlitigate 211 overlitigated 404 @@ -431296,7 +435208,10 @@ overnourished 10649 overnourishes 42 overnourishing 484 overnourishment 2881 +overnumber 391 overnumbered 245 +overnumbering 236 +overnumbers 84 overnumerous 2341 overnursed 199 overnursing 367 @@ -431708,6 +435623,7 @@ overpronounce 386 overpronounced 1429 overpronounces 140 overpronouncing 455 +overpronunciation 471 overproof 8542 overproofed 1069 overproofing 578 @@ -431733,7 +435649,11 @@ overprotects 4537 overprotracted 113 overproud 7048 overprove 1005 +overproved 787 +overproven 119 +overproves 105 overprovident 159 +overproving 357 overprovision 8157 overprovisioned 2031 overprovisioning 5031 @@ -431875,6 +435795,7 @@ overrecruit 766 overrecruited 579 overrecruiting 723 overrecruitment 1798 +overred 1024 overreduced 3367 overreduction 7846 overreference 108 @@ -432024,6 +435945,9 @@ overromanticize 1613 overromanticized 2755 overromanticizes 205 overromanticizing 994 +overroof 268 +overroofed 594 +overroofing 806 overrotate 987 overrotated 1977 overrotates 132 @@ -432080,6 +436004,7 @@ oversanded 5015 oversanding 1599 oversang 240 oversanguine 18398 +oversat 2587 oversated 1143 oversatisfied 2087 oversatisfies 53 @@ -432115,7 +436040,9 @@ overschedule 7217 overscheduled 22348 overschedules 260 overscheduling 18393 +overschool 76 overschooled 1185 +overschooling 532 overscore 5236 overscored 7725 overscores 728 @@ -432703,7 +436630,6 @@ oversubsidize 493 oversubsidized 1807 oversubsidizing 840 oversubstitution 140 -oversubtile 106 oversubtle 10222 oversubtleties 221 oversubtlety 1980 @@ -433176,6 +437102,7 @@ overweight 3741137 overweighted 99283 overweightedness 265 overweighting 33646 +overweightness 1962 overweights 43366 overwell 4461 overwelled 193 @@ -433278,6 +437205,7 @@ overzealously 17122 overzealousness 50701 ovest 2640 ovhd 6059 +ovibos 5963 ovibovine 568 ovibovines 350 ovicaprid 1961 @@ -433339,6 +437267,7 @@ oviraptors 1002 ovisac 46896 ovisacs 28271 oviscape 1203 +oviscapt 897 oviscapte 51 ovism 1607 ovist 4154 @@ -433669,6 +437598,7 @@ oxbows 62403 oxcarbazepine 54850 oxcart 112120 oxcarts 71979 +oxdrawn 5072 oxdriver 800 oxdrivers 602 oxea 6372 @@ -433908,6 +437838,7 @@ oxothiazolidine 2947 oxotremorine 38241 oxovanadate 408 oxovanadium 9534 +oxozone 511 oxpecker 4924 oxpeckers 5585 oxprenolol 28216 @@ -434185,6 +438116,7 @@ oyakata 8571 oyakodon 254 oyamel 3359 oyamels 163 +oyan 1410 oyer 727116 oyez 14283 oyinbo 1784 @@ -434209,6 +438141,7 @@ oysterhood 312 oysteries 143 oystering 59420 oysterish 727 +oysterleaf 159 oysterless 345 oysterlike 3182 oysterling 126 @@ -434216,6 +438149,8 @@ oysterlings 121 oysterman 42733 oystermen 120348 oysters 6368342 +oystershell 52961 +oystershells 18140 oysterwoman 509 oysterwomen 423 oystery 2003 @@ -434233,6 +438168,8 @@ ozenbrigs 4837 ozier 11209 oziers 3420 ozmazome 1091 +ozobrome 2892 +ozobromes 147 ozocerite 28925 ozocerites 500 ozoena 5807 @@ -434274,6 +438211,7 @@ ozoniser 2296 ozonisers 1081 ozonises 53 ozonising 1427 +ozonium 1822 ozonization 62008 ozonizations 605 ozonize 2679 @@ -434308,6 +438246,7 @@ p'r'aps 19803 p'raps 51411 p'rhaps 8520 p's 937 +p'shat 2070 p'simmons 1322 p'tater 290 p'taters 1058 @@ -434341,6 +438280,7 @@ pabula 5592 pabulary 113 pabulum 247140 pabulums 280 +pac 205921 paca 50361 pacara 248 pacarana 1584 @@ -434518,7 +438458,9 @@ packboards 3860 packcloth 1726 packed 28898602 packer 3246425 +packeries 4108 packers 4400583 +packery 3008 packet 12839303 packeted 11605 packetful 350 @@ -434587,6 +438529,7 @@ pacos 12551 pacotille 1607 pacotilles 474 pacquets 4708 +pacs 31794 pact 5353135 pactamycin 9160 pacted 42348 @@ -434683,6 +438626,7 @@ padeye 11533 padeyes 11571 padfolio 709 padfolios 275 +padfoot 2150 padge 827 padges 155 padi 113110 @@ -434849,6 +438793,7 @@ pagans 1521095 pagari 321 pagaris 123 pagasts 1014 +pagat 1356 pagati 1372 pagatpat 884 pagdi 265 @@ -435085,10 +439030,13 @@ pairbonding 5139 pairbreaking 2765 paired 8207786 pairedness 799 +pairer 4595 +pairers 4726 paires 8285 pairforming 263 pairing 3174422 pairings 605667 +pairle 1009 pairs 35418200 pairwise 1003145 pairwisely 620 @@ -435688,6 +439636,7 @@ paleogeographic 181998 paleogeographical 16728 paleogeographically 2101 paleogeography 241658 +paleogeologic 16052 paleogeological 1340 paleogeologist 259 paleogeologists 292 @@ -436161,6 +440110,7 @@ pallier 903 pallies 1078 palliness 320 palling 50757 +pallingly 705 palliobranchiate 72 pallisades 7974 pallisadoed 2731 @@ -436466,6 +440416,7 @@ palytoxin 15858 palytoxins 830 pam 461086 pamabrom 3461 +pamakani 3724 pamaquine 17206 pamatolol 119 pambasileia 1764 @@ -436840,6 +440791,8 @@ panela 29635 panelak 276 panelboard 159695 panelboards 97280 +paneler 908 +panelers 445 paneless 9772 paneling 1227832 panelings 13765 @@ -436984,6 +440937,7 @@ panim 17303 panin 2485 panine 140 paning 2753 +panings 166 panini 60046 paninis 6142 panino 8563 @@ -437344,6 +441298,8 @@ pantons 145 pantophagist 176 pantophagous 426 pantophagy 189 +pantophle 109 +pantophles 150 pantophobia 1537 pantophobic 56 pantopods 524 @@ -437362,6 +441318,10 @@ pantothere 1474 pantotheres 3443 pantotherian 506 pantotherians 451 +pantouffle 151 +pantouffles 578 +pantoufle 3150 +pantoufles 5905 pantoum 8690 pantoums 2074 pantoyllactone 210 @@ -437681,6 +441641,7 @@ pappiferous 469 pappiform 242 pappiness 211 papping 434 +papple 456 papponymy 838 pappoose 22887 pappooses 16167 @@ -437723,22 +441684,20 @@ papulovesicles 6357 papulovesicular 22719 papyraceous 18023 papyral 328 -papyrean 101 papyri 617389 -papyrian 108 +papyric 290 papyriform 2559 -papyrine 254 papyrocentric 144 papyrograph 2598 papyrographed 122 papyrographic 436 papyrographs 101 -papyrography 572 papyrological 15321 papyrologist 5200 papyrologists 5519 papyrology 16823 papyrophobia 135 +papyrotype 217 papyrus 1479771 papyruses 5197 paquebot 4692 @@ -437817,6 +441776,7 @@ parabomb 127 paraboson 480 parabosonic 239 parabosons 625 +parabotulism 311 parabrachial 48403 parabrake 1012 parabrakes 171 @@ -437862,6 +441822,7 @@ paracervix 725 paracetaldehyde 2246 paracetamol 127821 paracetamols 446 +paracharmonium 404 parachloralose 327 parachlorophenylalanine 10036 parachor 25693 @@ -437931,6 +441892,8 @@ paracones 2116 paraconformable 1342 paraconformities 1695 paraconformity 4892 +paraconglomerate 1815 +paraconglomerates 1064 paraconid 62797 paraconids 6284 paraconine 219 @@ -437994,6 +441957,7 @@ paradest 64 paradiapophyses 476 paradiapophysis 167 paradiastole 1623 +paradiazine 125 paradichlorobenzene 80481 paradichlorobenzenes 150 paradiddle 8026 @@ -438065,6 +442029,8 @@ paradoxographer 551 paradoxographers 629 paradoxographical 764 paradoxography 1471 +paradoxologist 247 +paradoxologists 87 paradoxure 760 paradoxures 427 paradoxurine 170 @@ -438104,6 +442070,8 @@ paraffinate 596 paraffinated 697 paraffine 393598 paraffined 147816 +paraffiner 947 +paraffiners 97 paraffines 14588 paraffinic 246480 paraffining 24957 @@ -438139,6 +442107,7 @@ paraformaldehyde 256860 paraformaldehydes 196 paraformalin 207 parafossette 1073 +parafoulbrood 1290 parafovea 9492 parafoveal 41452 parafoveally 2046 @@ -438166,6 +442135,7 @@ paragenetic 77804 paragenetically 8179 paragenic 869 paragenital 6481 +parageosynclinal 846 parageosyncline 867 parageosynclines 931 parages 6702 @@ -438267,6 +442237,7 @@ parahumans 676 parahydrogen 52761 parahypnosis 265 parahypoglossal 394 +parai 9052 paraimmunoblasts 1622 parainesis 1277 parainfection 98 @@ -438484,6 +442455,9 @@ paramagnetisms 150 paramagnets 15457 paramagnon 5150 paramagnons 3457 +paramahamsa 3279 +paramahamsas 972 +paramahansa 274 paramalignant 1137 paramania 156 paramasticatory 203 @@ -438500,6 +442474,7 @@ paramedially 1152 paramedian 171764 paramedic 556871 paramedical 390415 +paramedically 457 paramedicals 7622 paramedicine 4894 paramedics 761774 @@ -438577,6 +442552,7 @@ paramilitarists 672 paramilitarization 1491 paramilitarized 532 paramilitary 1301479 +paraminophenol 3729 paramita 29529 paramitas 18932 paramitome 565 @@ -438649,6 +442625,7 @@ paranatrolite 703 paranatural 2070 paranda 2194 parandas 172 +parandja 323 paranematic 598 paranemic 3181 paranemically 176 @@ -438665,6 +442642,8 @@ parangi 1974 parangs 5282 paranigral 847 paranja 1884 +paranjas 491 +paranji 5390 paranodal 31093 paranodally 227 paranode 3518 @@ -438719,6 +442698,8 @@ paranursing 387 paranym 129 paranymph 3470 paranymphs 1646 +paranzella 7740 +paranzellas 243 parao 3972 paraoccipital 4928 paraoccipitals 213 @@ -439020,6 +443001,7 @@ parashah 26456 parashahs 187 parashiot 282 parashioth 225 +parashiyos 586 parashiyot 1698 parashot 1024 parashoth 269 @@ -439260,8 +443242,10 @@ paratransit 354409 paratrigeminal 6445 paratrochlear 99 paratroop 113683 +paratrooped 140 paratrooper 215139 paratroopers 552237 +paratrooping 1478 paratroops 125537 paratropical 2372 paratubal 3627 @@ -439381,7 +443365,6 @@ parcens 1183 parch 106911 parched 1986308 parchedness 2049 -parcheesi 7851 parcher 2734 parchers 980 parches 30081 @@ -439391,6 +443374,7 @@ parchingly 825 parchings 520 parchisi 790 parchment 3844709 +parchmented 2392 parchmentization 1125 parchmentize 529 parchmentized 9107 @@ -439509,6 +443493,7 @@ parentcraft 1346 parentectomies 109 parentectomy 2631 parented 77485 +parentelic 2875 parenter 1834 parenteral 2760348 parenterally 450297 @@ -439691,6 +443676,7 @@ parisite 9077 parisology 205 parison 473347 parisons 89512 +parisosis 780 paristhmia 133 paristhmitis 79 parisyllabic 1565 @@ -439832,6 +443818,8 @@ parnassians 2216 parnassias 187 paroccipital 64323 paroches 779 +parochet 1487 +parocheth 258 parochial 5151921 parochialise 123 parochialised 145 @@ -439980,6 +443968,7 @@ parquette 22706 parquetted 1966 parquettes 218 parquetting 331 +parquisites 582 parr 214535 parrakeet 19923 parrakeets 30163 @@ -440057,6 +444046,7 @@ parser 694951 parsers 139405 parses 162653 parsettensite 344 +parshioth 516 parsimonies 1245 parsimonious 761307 parsimoniously 70706 @@ -440176,6 +444166,7 @@ partibus 149424 partic'lar 27252 participability 301 participable 2276 +participal 14175 participance 1551 participancy 11580 participant 22777194 @@ -440221,7 +444212,6 @@ particularist 133702 particularistic 423322 particularistically 4719 particularists 21720 -particularities 543457 particularization 126650 particularizations 14199 particularize 372827 @@ -440304,6 +444294,7 @@ partlessness 1254 partlet 7502 partlets 2521 partly 66324871 +partn 15350 partner 60584871 partnered 624246 partnerial 394 @@ -440314,6 +444305,7 @@ partnerly 161 partners 42893685 partnership 65398461 partnerships 12619254 +partns 217 partocracy 4153 partocrat 468 partocratic 1393 @@ -440336,6 +444328,7 @@ partridges 674973 parts 298538323 partscore 2216 partscores 406 +partula 524 partulid 518 partulids 263 parturial 832 @@ -440406,6 +444399,8 @@ parvenuess 83 parvenuism 1239 parvenus 86988 parvicellular 16093 +parvin 1882 +parvins 573 parvis 65446 parviscient 113 parvise 2140 @@ -440430,9 +444425,11 @@ pasan 18511 pasanda 1209 pasandas 161 pasang 4578 +pasanggrahan 723 pasans 1241 pascal 141212 pascals 68215 +pasch 16265 paschal 364542 pascichnia 612 pascoite 3555 @@ -440466,6 +444463,7 @@ pasher 241 pashes 1265 pashing 1492 pashiuba 296 +pashm 3115 pashmina 19993 pashminas 2441 pashta 1255 @@ -440481,6 +444479,7 @@ pasimology 338 pasiphaeid 359 pasireotide 2857 paska 2488 +pasken 389 paskha 4114 paskhas 122 paskudnyak 823 @@ -440561,6 +444560,7 @@ passement 2355 passementerie 46223 passementeries 5129 passements 1360 +passemezzo 219 passenger 54903215 passengered 653 passengering 538 @@ -440718,6 +444718,8 @@ pastellist 6280 pastellists 2287 pastelly 374 pastels 627286 +pastepot 5697 +pastepots 1037 paster 109702 pasters 82930 pastes 1151399 @@ -440802,6 +444804,7 @@ pastoralisms 477 pastoralist 105550 pastoralists 405909 pastorality 1474 +pastoralization 5434 pastoralize 1515 pastoralized 2620 pastoralizes 243 @@ -440894,6 +444897,7 @@ patater 136 patatin 9558 patatins 281 patavinity 565 +patawa 417 patball 444 patch 15379017 patchability 205 @@ -440972,6 +444976,7 @@ patent 70214288 patentability 985390 patentable 1621838 patentably 85223 +patentcy 571 patented 11295287 patentee 3543210 patentees 817713 @@ -441072,6 +445077,7 @@ pathoanatomist 208 pathoanatomists 159 pathoanatomy 12454 pathobiochemical 1399 +pathobiochemistry 920 pathobiologic 5399 pathobiological 9259 pathobiologically 360 @@ -441237,6 +445243,7 @@ patiently 6787441 patientness 426 patients 254571229 patiki 440 +patimokkha 1516 patina 670982 patinae 826 patinaed 5867 @@ -441303,6 +445310,7 @@ patriarchates 50140 patriarchdom 125 patriarchess 202 patriarchial 24966 +patriarchialism 911 patriarchic 7419 patriarchical 19940 patriarchically 2019 @@ -441377,6 +445385,7 @@ patriotesses 257 patriotic 13605573 patriotical 1085 patriotically 294916 +patriotics 2805 patriotism 11324214 patriotisms 19400 patriotist 251 @@ -441517,6 +445526,7 @@ patternmaker 98639 patternmakers 90128 patternmaking 66824 patterns 93221608 +patterny 217 patterroller 407 patterrollers 1948 patters 95939 @@ -441676,6 +445686,7 @@ paved 9534487 pavee 9377 pavees 1428 pavement 16978141 +pavemental 158 pavemented 1869 pavementing 2135 pavementless 142 @@ -441785,6 +445796,8 @@ pawner 17144 pawners 6504 pawnes 1408 pawneth 101 +pawnie 1438 +pawnies 297 pawning 137632 pawnings 1153 pawnless 140 @@ -441930,6 +445943,7 @@ payslip 2425 payslips 2027 paystreak 20719 paystreaks 4482 +paytan 2450 paythrough 1799 paythroughs 101 paytine 280 @@ -441939,6 +445953,7 @@ paywall 5096 paywalled 292 paywalls 3506 payware 305 +payyetan 1023 pazazz 561 pazopanib 12655 pazufloxacin 226 @@ -441953,6 +445968,7 @@ pcDNA 9889 pce 18883 pclk 255 pcm 32690 +pcpn 388 pcs 126303 pct 1460206 pdf 1104967 @@ -442087,6 +446103,7 @@ pealings 3434 peals 763420 peameal 3182 peameals 265 +peamouth 3503 pean 300032 peaned 2037 peaness 88 @@ -442136,6 +446153,8 @@ pearlized 14133 pearlless 45 pearllike 5608 pearls 5022054 +pearlscale 611 +pearlscales 259 pearlstone 2291 pearlware 22073 pearlwares 2304 @@ -442200,6 +446219,7 @@ peatlike 3027 peatman 364 peatmen 127 peats 302762 +peatsmoke 823 peatstack 593 peatstacks 182 peatswamp 1317 @@ -442238,6 +446258,7 @@ peccan 2126 peccancies 893 peccancy 2781 peccans 5541 +peccant 61925 peccantly 151 peccaries 129836 peccary 181150 @@ -442332,6 +446353,7 @@ pectizing 401 pectocellulosic 507 pectolite 25199 pectolites 236 +pectolitic 480 pectolyase 1030 pectolytic 31344 pectopah 193 @@ -442912,6 +446934,7 @@ peincted 77 peine 160378 peined 1923 peining 2180 +peins 3183 peirastic 2321 peisant 56 peishwa 4629 @@ -442981,7 +447004,6 @@ pelerine 19727 pelerines 5372 peletons 308 pelf 168278 -pelfish 170 pelfs 353 pelham 5131 pelhams 415 @@ -443012,7 +447034,6 @@ pellagroid 2085 pellagrous 57761 pellar 1303 pellars 459 -pelled 245051 pellegrina 2849 pellet 3437946 pelletable 3103 @@ -443042,7 +447063,6 @@ pellicular 37401 pelliculate 174 pellicule 4084 pellicules 1804 -pelling 67492 pellistor 1517 pellistors 851 pellitories 309 @@ -443554,6 +447574,7 @@ penopubic 2004 penorcon 330 penoscrotal 22310 penovaginal 637 +penpersonship 120 penpoint 8616 penpoints 2941 penpusher 1483 @@ -443562,6 +447583,7 @@ penrack 1286 penracks 3184 penroseite 706 pens 7552479 +pensels 300 pensful 310 pensile 38647 pensileness 259 @@ -445202,6 +449224,7 @@ peridotites 212002 peridotitic 26469 peridots 10769 peridrome 232 +peridromos 67 periductal 44303 periductular 4238 periduodenal 6028 @@ -445670,7 +449693,7 @@ periploi 1830 periplous 2626 periplus 11081 peripluses 543 -peripneumonic 2506 +peripneustic 1767 peripodia 1005 peripodial 2759 peripodium 285 @@ -445811,6 +449834,9 @@ peristriate 7407 peristylar 2997 peristyle 245939 peristyles 25129 +peristylia 825 +peristylium 7081 +peristylum 1068 perisulcal 173 perisurgical 1886 perisutural 716 @@ -446185,6 +450211,7 @@ permutites 3866 permutohedra 195 permutohedron 1191 pern 60965 +pernambuco 5139 pernancy 6286 perne 4405 pernicious 5510218 @@ -446471,6 +450498,8 @@ perseverator 742 perseverators 1624 persevered 1143977 perseverent 1845 +perseverer 1187 +perseverers 518 perseveres 174677 persevering 1532961 perseveringly 241644 @@ -446575,6 +450604,7 @@ personifiable 807 personification 1661184 personifications 388814 personificative 269 +personificator 177 personified 1869745 personifier 2281 personifiers 892 @@ -446598,6 +450628,8 @@ personly 2809 personnel 147740516 personnelist 3257 personnelists 10089 +personnelman 2625 +personnelmen 1437 personnels 36108 personness 2896 personological 19483 @@ -446608,9 +450640,11 @@ personology 19060 personpower 6019 persons 351532680 personship 417 +persp 12003 perspection 2534 perspections 392 perspectival 217041 +perspectivalism 14404 perspectivation 526 perspective 60508296 perspectiveless 5581 @@ -446817,6 +450851,7 @@ perusal 3299927 perusals 20787 peruse 1023739 perused 935598 +perusement 175 peruser 16167 perusers 5725 peruses 78864 @@ -446853,6 +450888,7 @@ pervention 1172 perverb 158 perverbs 211 perverse 3575441 +perversed 749 perversely 573002 perverseness 254730 perversenesses 565 @@ -446918,6 +450954,7 @@ pes 851469 pesade 1035 pesades 161 pesage 3703 +pesak 2987 pesante 12663 pesants 2282 pescatarian 1786 @@ -447326,6 +451363,8 @@ petted 723757 pettedness 275 petter 28048 petters 3131 +pettiauger 1912 +pettiaugers 1937 pettichaps 276 petticoat 1014691 petticoated 26276 @@ -447365,6 +451404,8 @@ pettled 292 pettles 449 petto 58088 petty 11935270 +pettyauger 389 +pettyaugers 375 pettychaps 345 pettyfogger 721 pettyfoggers 621 @@ -447556,6 +451597,7 @@ phagic 1998 phagism 129 phagocytable 2661 phagocytal 441 +phagocytary 203 phagocyte 218054 phagocyted 11297 phagocytes 776021 @@ -448171,6 +452213,8 @@ phenacodontids 2577 phenacodonts 976 phenacyl 27076 phenadoxone 1070 +phenagle 226 +phenagling 559 phenaglycodol 7266 phenakism 93 phenakistiscope 2048 @@ -448271,6 +452315,7 @@ phenobarbitol 15968 phenobarbitone 64490 phenobarbs 415 phenoconversion 350 +phenocopic 415 phenocopied 2386 phenocopies 31339 phenocopy 30513 @@ -448654,6 +452699,7 @@ phfft 1669 phht 784 phi 884653 phial 350923 +phiala 1802 phialai 6456 phiale 28339 phiales 398 @@ -449158,6 +453204,7 @@ phoneless 4083 phonelessness 225 phonemaker 300 phonemakers 440 +phonemal 259 phonematic 8827 phonematically 291 phonematics 825 @@ -449251,6 +453298,7 @@ phonofiddle 213 phonogenic 1221 phonogram 82261 phonogramic 537 +phonogrammatic 177 phonogramme 90 phonogrammes 448 phonogrammic 523 @@ -449870,6 +453918,7 @@ photically 8331 photics 452 photid 146 photids 245 +photie 220 photinia 9079 photinias 1271 photino 16810 @@ -450008,6 +454057,7 @@ photobooks 3317 photocaged 431 photocall 1399 photocalls 285 +photocapacitance 17391 photocapture 923 photocarcinogen 243 photocarcinogenesis 13860 @@ -450413,6 +454463,7 @@ photogain 370 photogalvanic 27297 photogalvanographic 111 photogalvanography 235 +photogastroscope 111 photogate 7359 photogates 2307 photogating 180 @@ -450482,6 +454533,9 @@ photogravures 167711 photogs 330614 photoguide 2299 photoguides 208 +photohardenable 2598 +photohardened 432 +photohardening 942 photoheating 536 photoheliograph 12130 photoheliographic 942 @@ -450594,6 +454648,7 @@ photokilling 1482 photokinesis 6827 photokinetic 6602 photokinetics 1143 +photolab 5162 photolabel 3620 photolabeled 8775 photolabeling 12004 @@ -450602,6 +454657,7 @@ photolabelling 1167 photolabels 1191 photolabile 20905 photolability 2738 +photolabs 665 photolesion 576 photolesions 1860 photoless 332 @@ -450820,6 +454876,8 @@ photophiles 115 photophilia 298 photophilic 1954 photophilous 1613 +photophobe 506 +photophobes 167 photophobia 540007 photophobias 211 photophobic 20594 @@ -451385,7 +455443,6 @@ phrenicoexeresis 504 phrenicolienal 1278 phrenicosplenic 901 phrenics 15431 -phrenitic 2187 phrenitis 25295 phrenocostal 290 phrenograph 496 @@ -451490,6 +455547,7 @@ phugoids 682 phulkari 1007 phulkaris 497 phum 4144 +phumphering 52 phums 167 phun 6672 phunky 186 @@ -451553,6 +455611,7 @@ phylacogens 5269 phylactered 46 phylacteric 392 phylacterical 159 +phylacteried 813 phylacteries 152027 phylactery 37584 phylactic 11347 @@ -452290,6 +456349,7 @@ piaffer 2069 piaffes 263 piaffing 373 piai 8296 +piaie 584 piaies 449 piaiman 615 pial 196624 @@ -452482,6 +456542,7 @@ picketh 1638 picketing 5196720 picketings 3855 pickets 3019676 +pickfork 126 pickguard 44723 pickguards 3290 pickier 9565 @@ -452550,6 +456611,7 @@ pickwickian 8139 picky 371496 piclamilast 233 picloram 218723 +picni 1428 picnic 7490061 picnicked 61026 picnicker 16328 @@ -452560,6 +456622,7 @@ picnicky 1706 picniclike 741 picnics 1367465 picnicware 648 +picnis 284 picnotic 1482 picoalgae 416 picoammeter 12269 @@ -452752,6 +456815,7 @@ picturality 159 picture 146300239 pictureable 697 pictured 8489410 +picturedom 1231 picturedrome 107 picturedromes 95 picturegoer 632 @@ -453031,6 +457095,7 @@ pigeage 1207 pigeon 4341959 pigeonberries 106 pigeonberry 1747 +pigeondom 655 pigeoned 2662 pigeoneer 2126 pigeoneers 1809 @@ -453136,6 +457201,7 @@ pigmentational 639 pigmentations 38143 pigmented 2419670 pigmenting 30349 +pigmentized 514 pigmentless 9897 pigmentlike 559 pigmentocracies 215 @@ -453182,6 +457248,7 @@ pigswill 1558 pigtail 372594 pigtailed 69657 pigtails 320221 +pigtoe 16854 pigwash 808 pigweed 268674 pigweeds 19783 @@ -453235,11 +457302,14 @@ pilaff 10592 pilaffs 989 pilafs 11764 pilage 1483 +pilao 1259 +pilaos 139 pilar 28101 pilargid 187 pilary 7014 pilaster 256292 pilastered 23125 +pilasterlike 529 pilasters 949028 pilastres 1531 pilastric 994 @@ -453342,7 +457412,10 @@ piling 5089154 pilings 570404 pilins 5952 pilis 72100 +pilk 1777 pill 5307437 +pillaf 339 +pillaff 162 pillage 1212665 pillageable 160 pillaged 773285 @@ -453372,6 +457445,8 @@ pillarlike 9427 pillars 7812829 pillau 5077 pillaus 1123 +pillaw 1778 +pillaws 635 pillbox 206244 pillboxes 166885 pilled 29428 @@ -454300,7 +458375,6 @@ pirately 106 pirater 534 piraters 503 pirates 4616716 -pirateships 185 piratess 761 piratey 724 piratic 22157 @@ -454424,6 +458498,7 @@ piscinal 54 piscinas 3667 piscine 58311 piscines 1851 +piscinity 139 piscivore 11904 piscivores 27502 piscivorous 82776 @@ -454495,6 +458570,7 @@ pissless 1199 p pisslike 46 p pissmire 815 pissmires 359 +pissoff 332 p pissoir 9968 pissoirs 4496 pisspants 124 p @@ -454544,6 +458620,7 @@ pistolette 286 pistolettes 387 pistolgraph 167 pistolier 201 +pistoliers 704 pistoling 2083 pistolled 4253 pistollike 1072 @@ -454646,6 +458723,7 @@ pitchwomen 334 pitchwork 95 pitchy 221085 pitcoal 4396 +piteira 1555 piteously 517285 piteousness 10987 pitfall 775485 @@ -454891,6 +458969,7 @@ pizze 1849 pizzel 64 pizzella 133 pizzelle 4026 +pizzelles 1677 pizzer 182 pizzeria 142961 pizzerias 39073 @@ -454911,6 +458990,8 @@ pizzo 3403 pj's 224 pk 418789 pkg 467081 +pkge 6077 +pkges 1430 pkgs 215947 pkhali 252 pks 14669 @@ -455113,7 +459194,6 @@ plagiosaurids 170 plagiosere 173 plagiostome 1080 plagiostomes 7830 -plagiostomous 656 plagiotropic 10157 plagiotropically 390 plagiotropism 1581 @@ -455156,6 +459236,7 @@ plainclothesman 31173 plainclothesmen 57057 plainclotheswoman 133 plainer 1047817 +plainers 1180 plainest 888202 plainfin 4786 plainful 825 @@ -455291,6 +459372,7 @@ planetic 847 planetless 902 planetlike 4003 planetocentric 25532 +planetographers 149 planetographic 4736 planetography 353 planetoid 58310 @@ -455782,6 +459864,7 @@ plastination 3862 plastins 436 plastique 53346 plastiques 22511 +plastiskin 654 plastisol 109705 plastisols 63801 plastochron 14170 @@ -456165,7 +460248,7 @@ playground 6031195 playgrounds 3105685 playgroup 53099 playgroups 30681 -playhouses 284444 +playhouse 858206 playin' 582 playing 64655147 playingly 446 @@ -456248,7 +460331,6 @@ playstyle 740 playstyles 539 playsuit 14359 playsuits 18775 -playte 228 playtes 195 playtest 4418 playtested 961 @@ -456643,6 +460725,7 @@ plessimeter 3798 plessimeters 149 plessite 17259 plessites 93 +plessitic 463 plethodontid 24349 plethodontids 13018 plethora 2032030 @@ -457024,6 +461107,7 @@ ploughing 1186119 ploughings 22115 ploughland 23239 ploughlands 14339 +ploughless 458 ploughlike 157 ploughman 316767 ploughmanship 123 @@ -457073,6 +461157,7 @@ plowing 5171077 plowings 39614 plowland 44989 plowlands 10446 +plowless 3868 plowlike 1596 plowman 217553 plowmanship 288 @@ -457364,6 +461449,7 @@ pluricentric 2462 pluricolumnal 1301 pluricontinental 394 pluricultural 9051 +pluriculturalism 1314 pluridimensional 2673 pluridimensionality 679 pluridisciplinarity 752 @@ -457397,6 +461483,7 @@ plurimetabolic 279 plurimetric 100 plurimodal 819 plurinational 9349 +plurinationalism 851 plurinationality 578 plurinominal 2540 plurinucleate 1923 @@ -457874,6 +461961,7 @@ podley 340 podleys 355 podlike 19491 podmate 417 +podmates 1126 podner 7105 podners 982 podo 8408 @@ -458544,6 +462632,8 @@ polishing 5980438 polishings 67858 polishment 468 polishments 409 +polisman 3201 +polismen 653 polissoir 544 polissoirs 316 polistine 5079 @@ -458610,6 +462700,7 @@ politickers 1173 politicking 253399 politickings 159 politicly 7232 +politicness 121 politico 1100573 politicocommercial 762 politicoeconomic 44853 @@ -458843,6 +462934,8 @@ poltroonism 131 poltroons 40865 polts 3350 poluria 156 +polushka 204 +polushkas 109 polverine 237 polwar 1259 poly 6271939 @@ -459577,6 +463670,7 @@ polygonally 16407 polygonation 258 polygonboden 190 polygoneutic 292 +polygonia 1676 polygonic 2047 polygonise 72 polygonised 519 @@ -459608,6 +463702,7 @@ polygraphist 9983 polygraphists 3609 polygraphs 106243 polygraphy 30150 +polygroove 1224 polygrooved 372 polyguanine 202 polyguanosine 163 @@ -459701,6 +463796,7 @@ polyhydroxyethylmethacrylate 902 polyhydroxylated 9334 polyhydroxyphenol 305 polyhydroxyphenols 1466 +polyhydroxyvalerate 364 polyiamonds 521 polyideic 743 polyimide 678286 @@ -460311,6 +464407,7 @@ polypyrrole 105059 polypyrroles 4549 polypyrrolidone 1393 polyquat 112 +polyquaternary 1738 polyquaternium 1978 polyquats 213 polyquinane 424 @@ -460452,6 +464549,7 @@ polyspecific 21935 polyspecificity 1279 polyspectra 3937 polyspectrum 1285 +polyspeed 246 polysperm 525 polyspermia 2435 polyspermic 10385 @@ -460632,6 +464730,7 @@ polytomous 45664 polytomously 4049 polytomy 10198 polytonal 32869 +polytonalism 439 polytonalist 202 polytonalities 766 polytonality 36695 @@ -461151,10 +465250,10 @@ pookah 867 pookahs 265 pookas 3007 pookawns 111 -pookoo 188 pool 48905489 poolability 1413 poolable 2349 +poolboy 438 pooled 4714184 pooler 20327 poolers 35503 @@ -461180,6 +465279,8 @@ poomse 969 poon 41217 poonac 2810 poonam 68 +pooner 1677 +pooners 239 poonghie 142 poons 9163 poontang 10109 p @@ -461334,6 +465435,7 @@ poppadums 1551 poppas 2128 popped 4191095 popper 151458 +poppered 115 poppers 119132 poppet 453564 poppets 42481 @@ -461369,6 +465471,7 @@ poppyworts 202 pops 1502764 popsicle 98494 popsicles 58213 +popsie 1644 popsies 1740 popskull 2844 popster 1457 @@ -461481,6 +465584,7 @@ porchlike 2829 porchway 5437 porchways 447 porcine 1224797 +porcinely 302 porcini 97154 porcinis 3403 porcino 1749 @@ -461598,6 +465702,7 @@ pornographization 261 pornographize 90 pornographized 453 pornographizing 278 +pornographomania 223 pornographs 317 pornography 3867094 pornological 750 @@ -461791,6 +465896,8 @@ portajohn 237 portajohns 370 portal 8650729 portaled 2640 +portaledge 2790 +portaledges 1036 portalet 233 portaling 613 portalization 476 @@ -461915,6 +466022,8 @@ portmantles 848 portmantuas 123 portmapper 8019 portmappers 159 +portmaster 3541 +portmasters 354 portmen 2116 porto 68621 portobello 60023 @@ -461992,6 +466101,7 @@ posable 27952 posaconazole 28801 posada 65731 posadas 25180 +posadero 1144 posadnik 5557 posadniks 1161 posca 4018 @@ -462000,6 +466110,7 @@ poseable 3652 posedness 77922 posedown 539 posek 7646 +poseq 467 poser 191995 posers 71072 poses 9297663 @@ -462102,6 +466213,7 @@ posologist 229 posology 15718 posolutely 906 pospolite 2078 +posqim 274 poss 328710 possa 23696 posse 1561289 @@ -462166,6 +466278,7 @@ possibly 88035069 possie 7842 possies 604 possing 12601 +possul 197 possum 548333 possumed 365 possumhaw 3082 @@ -462384,6 +466497,7 @@ postcastration 7694 postcataclysmic 410 postcataract 4912 postcatastrophic 1193 +postcatheterization 4666 postcaucus 305 postcava 28835 postcavae 206 @@ -462547,6 +466661,7 @@ postcristid 1809 postcritical 27343 postcritically 1593 postcruciate 3608 +postcrystallization 4878 postcubital 3187 postcubitus 987 postcue 902 @@ -462625,6 +466740,7 @@ postdilution 3114 postdiluvial 1793 postdiluvian 22029 postdiluvians 1450 +postdinner 4300 postdiphtherial 199 postdiphtheric 1671 postdiphtheritic 11368 @@ -462676,8 +466792,10 @@ postedited 1393 postediting 5930 posteditor 2552 posteditors 787 +postee 460 posteen 292 posteens 188 +postees 262 postehaste 98 postejaculatory 6195 postejection 534 @@ -462711,6 +466829,7 @@ postengagement 647 postengraftment 2113 postentry 30826 postenvenomation 192 +postepidural 321 postepileptic 6492 postepisode 996 postepistemological 557 @@ -462818,6 +466937,7 @@ posters 6967283 posteruption 5545 posteruptive 10318 posteruptively 1105 +postery 1828 postesophageal 2130 postest 2937 postestimation 3620 @@ -463034,6 +467154,7 @@ posthurricane 3945 posthybridization 4675 posthydration 1333 posthyoid 478 +posthyperventilation 2653 posthypnosis 2622 posthypnotic 105950 posthypnotically 3242 @@ -463092,8 +467213,10 @@ postincubation 5841 postindependence 150684 postindian 2255 postindians 141 +postindictment 25962 postinduction 14086 postindustrial 467674 +postindustrialisation 113 postindustrialization 5679 postinfarct 9906 postinfarcted 905 @@ -463297,7 +467420,9 @@ postmillennial 26526 postmillennialism 21496 postmillennialist 5507 postmillennialists 8462 +postmillennials 218 postmillennium 1058 +postmineralization 4989 postminimal 1144 postminimalism 1912 postminimalist 2491 @@ -463519,6 +467644,8 @@ postposition 74362 postpositional 27211 postpositionally 313 postpositionals 147 +postpositioned 909 +postpositioning 685 postpositions 69284 postpositive 23687 postpositively 680 @@ -463554,6 +467681,7 @@ postprocess 18113 postprocessed 18239 postprocesses 1255 postprocessing 197352 +postprocessings 181 postprocessor 68196 postprocessors 16928 postprocessual 12271 @@ -463587,6 +467715,7 @@ postpublication 10759 postpuerperal 3387 postpulse 3034 postpump 2410 +postpuncture 3605 postpunk 12411 postpunkers 161 postpunks 343 @@ -463786,6 +467915,7 @@ poststudio 963 poststudy 6527 poststyloid 2811 postsubiculum 2773 +postsubject 442 postsuborbital 243 postsuicidal 400 postsuicide 1140 @@ -464168,6 +468298,7 @@ potholed 59286 potholer 812 potholers 1051 potholes 681854 +potholey 106 potholing 8878 pothook 9117 pothooks 25368 @@ -464453,7 +468584,6 @@ poursued 154 poursuivant 3938 poursuivants 1472 pourtraicts 1676 -pourtray 23089 pourtrayed 41461 pourtraying 6198 pourtrays 5855 @@ -464485,7 +468615,6 @@ poutingly 8769 poutings 4701 pouts 107927 pouty 107243 -pov 115520 povertician 46 poverticians 435 poverties 15443 @@ -464539,6 +468668,8 @@ powellizing 52 powen 13473 powens 883 power 785601331 +powerball 1980 +powerballs 134 powerband 5359 powerbands 348 powerboat 125192 @@ -464603,6 +468734,7 @@ powerwalk 614 powerwalked 321 powerwalking 850 powerwalks 49 +powerwash 612 powerwasher 148 powi 7718 powiat 5979 @@ -464659,6 +468791,7 @@ pozzolan 158445 pozzolana 43359 pozzolanas 6677 pozzolanic 139584 +pozzolanicity 823 pozzolans 78979 pozzolona 317 pozzuolana 19002 @@ -464728,6 +468861,7 @@ practised 7803445 practisedly 117 practiser 24941 practisers 21227 +practises 557732 practisest 729 practiseth 6727 practising 2230852 @@ -464764,6 +468898,8 @@ praefect 65021 praefects 13785 praefericulum 403 praefloration 612 +praelector 4362 +praelectors 195 praemaxilla 369 praemaxillae 303 praemorse 2755 @@ -464878,6 +469014,8 @@ praizes 62 prajmaline 210 prajna 64073 prajnaparamita 7534 +prakarana 4235 +prakaranas 894 pralatrexate 2807 pralaya 15933 pralayas 1585 @@ -464931,6 +469069,7 @@ pranked 21341 prankee 67 prankful 740 prankier 108 +prankiness 127 pranking 17532 prankings 177 prankish 51831 @@ -465094,8 +469233,8 @@ praysing 3417 prazepam 20495 praziquantel 81975 prazosin 195457 -prdna 6482 -prdnas 604 +prchst 56 +prcht 153 pre 81719431 preNewtonian 906 preabdomen 13695 @@ -465499,6 +469638,7 @@ prebasic 13058 prebatch 363 prebatched 376 prebatching 491 +prebath 1445 prebattle 7961 prebedtime 2369 prebeginner 62 @@ -465935,6 +470075,8 @@ precipitins 160979 precipitous 2571814 precipitously 851202 precipitousness 9884 +precipitron 2994 +precipitrons 959 precips 146 precise 41221393 precisely 49057844 @@ -466167,10 +470309,12 @@ preconcentration 136923 preconcentrations 1137 preconcentrator 8925 preconcentrators 1280 +preconcept 4056 preconception 333522 preconceptional 26093 preconceptionally 2266 preconceptions 1033621 +preconcepts 3513 preconceptual 64638 preconceptually 2501 preconcert 29917 @@ -466315,6 +470459,7 @@ precordially 683 precordium 129389 precore 16053 precorneal 23431 +precornu 411 precoronal 1274 precoronation 919 precoronoid 1113 @@ -466448,6 +470593,7 @@ predated 591860 predates 578688 predating 274522 predations 48350 +predatism 4867 predative 797 predator 3577598 predatorial 5196 @@ -466594,6 +470740,7 @@ predeterminations 15955 predeterminative 1257 predetermine 291445 predetermined 11197208 +predeterminedly 5967 predeterminedness 678 predeterminer 1896 predeterminers 1364 @@ -466837,6 +470984,8 @@ predoses 351 predosing 3087 predough 238 predraft 6995 +predrafted 2147 +predrafting 1375 predrainage 5383 predreadnought 5699 predreadnoughts 5045 @@ -466899,6 +471048,7 @@ preemie 40664 preemies 40345 preeminence 1307902 preeminences 6808 +preeminency 1450 preeminent 1889936 preeminently 854178 preeming 382 @@ -467387,6 +471537,7 @@ prehab 914 prehabilitation 6153 prehabilitative 117 prehallux 3873 +prehand 194 prehard 365 preharden 265 prehardened 7349 @@ -467410,7 +471561,6 @@ preheaters 136269 preheating 966969 preheats 39710 prehellenic 1556 -preheminence 8068 prehemiplegic 727 prehemorrhagic 1030 prehendable 220 @@ -467629,6 +471779,8 @@ preinvention 2341 preinventory 2241 preinvestigation 8583 preinvestigations 2598 +preinvestigative 761 +preinvestigatory 287 preinvolvement 532 preionization 55071 preionize 1734 @@ -468108,6 +472260,7 @@ premonocyte 220 premonocytes 185 premonocytic 219 premonopoly 1203 +premonotheistic 736 premonsoon 10143 premonstrate 147 premonstrated 90 @@ -468402,6 +472555,8 @@ prep 2933630 prepack 27144 prepackage 13736 prepackaged 624350 +prepackager 2947 +prepackagers 4744 prepackages 2887 prepackaging 95880 prepacked 64369 @@ -468494,6 +472649,7 @@ prepaying 102850 prepayment 3232325 prepayments 810686 prepays 47842 +prepd 194514 prepectoral 14303 prepelvic 8000 prepend 17537 @@ -468568,9 +472724,6 @@ preplay 7779 preplayed 178 preplaying 199 preplays 416 -preplied 845 -preplies 59 -preply 334 prepolarization 3270 prepolice 194 prepolitical 38542 @@ -468588,6 +472741,7 @@ prepolymerize 185 prepolymerized 8514 prepolymerizing 500 prepolymers 65889 +preponder 27676 preponderances 4652 preponderancy 14844 preponderant 847404 @@ -468600,9 +472754,11 @@ preponderating 423550 preponderatingly 24950 preponderation 5168 preponderations 105 +prepondered 178 prepondering 4830 preponderous 2515 preponderously 823 +preponders 121 prepone 471 preponed 442 preponement 225 @@ -468616,10 +472772,14 @@ prepopulation 563 prepopulist 82 prepore 6317 prepores 1040 +preport 1359 +preported 783 +preporting 108 preportion 9389 preportioned 5991 preportioning 377 preportions 2326 +preports 308 prepose 8469 preposed 90443 preposes 4345 @@ -469353,6 +473513,7 @@ preshrinking 7944 preshrinks 717 preshrunk 34055 preshrunken 230 +preshus 1485 preside 4608088 presided 8455728 presidencies 289575 @@ -469452,6 +473613,8 @@ presorting 34341 presorts 2677 presos 8714 presowing 16366 +prespace 1700 +prespaced 931 prespawning 30228 prespecific 356 prespecification 8192 @@ -469514,7 +473677,7 @@ pressiometer 467 pressiometric 403 pression 778437 pressions 142698 -pressirostral 66 +pressless 478 pressman 371247 pressmanship 1628 pressmark 9295 @@ -469685,6 +473848,7 @@ prestudy 25774 prestyloid 6518 presubicular 2727 presubiculum 11770 +presubject 1613 presubmission 21458 presubocular 258 presuburban 444 @@ -469722,6 +473886,7 @@ presunrise 51337 presunto 3629 presuntos 711 presupernova 9869 +presupervisory 1867 presupplemental 692 presupplementary 2950 presupplied 995 @@ -469947,6 +474112,7 @@ pretextual 472255 pretextuality 4193 pretextually 4129 pretextuous 7995 +pretextured 301 prethalamic 1705 prethalamus 1051 prethcamide 734 @@ -470127,6 +474293,7 @@ prevail 19563430 prevailed 22493067 prevailer 1157 prevailers 582 +prevailes 2137 prevailest 2911 prevaileth 15552 prevailing 31132664 @@ -470518,6 +474685,8 @@ priestish 389 priestism 1439 priestless 13374 priestlessness 151 +priestlet 304 +priestlets 270 priestlier 61 priestliest 245 priestlike 17581 @@ -471035,6 +475204,7 @@ prizegiving 4181 prizegivings 452 prizeless 937 prizelist 679 +prizelists 257 prizeman 17770 prizemen 5066 prizen 362 @@ -471167,6 +475337,7 @@ probe 19563825 probeable 1466 probed 2044310 probehead 2306 +probeheads 700 probelike 747 probenazole 1050 probenecid 298725 @@ -471295,9 +475466,12 @@ procathepsin 7243 procathepsins 142 procaviids 318 procced 12407 +proceded 83684 procedendo 91541 procedendos 167 +procedes 28243 procedeth 3294 +procedings 67566 procedural 15811903 proceduralise 100 proceduralism 26719 @@ -471442,6 +475616,7 @@ proclames 563 proclaming 2920 proclinate 26155 proclination 4960 +procline 2302 proclisis 7087 proclitic 43063 proclitically 645 @@ -471592,6 +475767,7 @@ proctotrupids 292 proctours 358 procumbency 3977 procumbent 147362 +procurability 3020 procurable 546389 procuracies 5322 procuracy 78243 @@ -471692,6 +475868,7 @@ prodisarmament 613 prodissoconch 17624 prodissoconchs 1313 prodnose 97 +prodom 1180 prodomain 10244 prodomains 2374 prodorsal 3510 @@ -471923,6 +476100,7 @@ profibrinolytic 4234 profibroblasts 239 profibrogenic 3075 profibrotic 11869 +profic 2048 profichi 13895 proficience 8050 proficiences 1234 @@ -471931,6 +476109,7 @@ proficiency 8347615 proficient 3941592 proficiently 106028 proficients 50717 +profics 290 proficuous 740 profilable 1089 profilaggrin 6595 @@ -472385,6 +476564,7 @@ proletarianized 46859 proletarianizes 611 proletarianizing 5383 proletarianly 146 +proletarianness 43 proletarians 409579 proletariat 4780361 proletariate 39327 @@ -472718,6 +476898,7 @@ pronaoi 704 pronaos 58032 pronasale 1920 pronase 113058 +pronatal 7277 pronatalism 19975 pronatalist 69421 pronatalists 2408 @@ -472908,6 +477089,7 @@ propaedeutics 7164 propaedia 45663 propafenone 72494 propafol 225 +propagability 801 propagable 6285 propagand 5492 propaganda 19120934 @@ -473387,6 +477569,7 @@ propranolol 1174224 propranolols 330 propreties 2159 propretor 2110 +propretors 612 proprial 2499 proprietarial 2340 proprietarian 2643 @@ -474273,6 +478456,7 @@ proto 1802413 protoJupiter 276 protoactinium 14134 protoalkaloid 266 +protoalkaloids 674 protoanalysis 192 protoandrous 118 protoanemonin 5615 @@ -474398,6 +478582,7 @@ protodiastole 1501 protodiastolic 12901 protodioscin 839 protodolomite 7381 +protodolomites 838 protodoric 261 protodramatic 318 protodynastic 2892 @@ -474632,6 +478817,8 @@ protoporphyria 42230 protoporphyrin 277308 protoporphyrinogen 18074 protoporphyrins 7777 +protopresbyter 1576 +protopresbyters 304 protopriest 441 protopriests 167 protoproletarian 186 @@ -474714,6 +478901,7 @@ protosulphide 6531 protosulphides 439 protosun 11918 protosuns 195 +protosyllables 173 protosynaptic 291 protosyncellus 1024 protosyntactical 1051 @@ -474823,6 +479011,7 @@ protruberances 7411 protrudable 1246 protrude 1176324 protruded 1324162 +protrudent 5395 protruder 858 protruders 301 protrudes 729367 @@ -474895,6 +479084,7 @@ provang 230 provascular 6416 provasopressin 981 prove 112511942 +proveability 157 proveable 19867 proveably 1741 provection 2020 @@ -474958,6 +479148,10 @@ providence 4485315 providences 206427 provident 731748 providential 1469937 +providentialism 16205 +providentialist 9882 +providentialistic 320 +providentialists 699 providentially 442461 providently 66108 providentness 160 @@ -475311,6 +479505,7 @@ prytanis 9348 prytany 41531 prythee 19389 ps 2734853 +psak 3122 psalm 2510634 psalmbook 4851 psalmbooks 2449 @@ -475663,6 +479858,8 @@ pseudoconformity 247 pseudocongruence 315 pseudoconic 506 pseudoconical 255 +pseudoconscience 123 +pseudoconsciousness 300 pseudoconsensus 527 pseudoconservative 1837 pseudocontact 9585 @@ -475773,6 +479970,7 @@ pseudoembryos 129 pseudoemotional 232 pseudoenergies 149 pseudoenergy 1774 +pseudoenlightenment 190 pseudoenophthalmos 127 pseudoenvironmentalists 118 pseudoenzymatic 137 @@ -475807,6 +480005,8 @@ pseudoexfoliative 2044 pseudoexon 681 pseudoexons 363 pseudoexophthalmos 531 +pseudoexperience 416 +pseudoexperiences 141 pseudoextinction 1963 pseudoextinctions 521 pseudofact 510 @@ -475858,6 +480058,7 @@ pseudofusion 2189 pseudogalena 181 pseudogame 456 pseudogames 216 +pseudogamic 571 pseudogamous 3346 pseudogamy 3958 pseudoganglion 548 @@ -475898,6 +480099,7 @@ pseudographics 218 pseudographs 2113 pseudography 564 pseudograsserie 180 +pseudogravitational 898 pseudogravity 3815 pseudogroup 15450 pseudogroups 8798 @@ -475953,6 +480155,7 @@ pseudohuman 760 pseudohumans 279 pseudohyperaldosteronism 1010 pseudohyperbolic 1226 +pseudohypericin 5283 pseudohyperkalaemia 265 pseudohyperkalemia 5019 pseudohypertelorism 934 @@ -476092,6 +480295,7 @@ pseudomartyrs 224 pseudomasculine 1475 pseudomasculinity 711 pseudomass 4057 +pseudomasses 1258 pseudomathematical 1888 pseudomathematics 593 pseudomauveine 308 @@ -476129,6 +480333,7 @@ pseudomicelles 194 pseudomilitary 2700 pseudomineral 117 pseudomiraculous 101 +pseudomnesia 337 pseudomodel 568 pseudomodels 226 pseudomodern 1028 @@ -476199,7 +480404,6 @@ pseudoneglect 643 pseudoneonatal 186 pseudoneuritis 2662 pseudoneurological 4815 -pseudoneuropterous 239 pseudoneutral 355 pseudoneutropenia 797 pseudonodular 717 @@ -476214,6 +480418,7 @@ pseudonormalized 732 pseudonuclei 600 pseudonull 149 pseudonumber 579 +pseudonumbers 513 pseudonutrition 114 pseudonym 1928021 pseudonymic 2245 @@ -476401,6 +480606,7 @@ pseudopupil 3536 pseudopupils 947 pseudopyloric 1905 pseudoquantitative 800 +pseudoquaternary 1071 pseudoquotient 127 pseudorabies 226450 pseudoracemate 450 @@ -476443,6 +480649,8 @@ pseudoreligion 3897 pseudoreligions 1358 pseudoreligious 13371 pseudoremainder 160 +pseudoreminiscence 290 +pseudoreminiscences 705 pseudoreplicate 1051 pseudoreplicated 867 pseudoreplicates 1707 @@ -476470,6 +480678,7 @@ pseudoring 484 pseudorings 353 pseudoriparian 1020 pseudoromantic 1996 +pseudoroot 175 pseudorosette 4267 pseudorosettes 14404 pseudorotate 440 @@ -476572,6 +480781,8 @@ pseudostar 566 pseudostarchy 434 pseudostars 204 pseudostate 10957 +pseudostatement 1626 +pseudostatements 1635 pseudostates 8072 pseudostatistical 856 pseudostem 12041 @@ -476599,6 +480810,8 @@ pseudosuchians 4740 pseudosucker 1208 pseudosuckers 1911 pseudosugar 152 +pseudosuicidal 276 +pseudosuicide 332 pseudosulcus 690 pseudosurface 3018 pseudosurfaces 261 @@ -476647,6 +480860,7 @@ pseudothrombocytopenia 3842 pseudothrombophlebitis 1427 pseudotime 7160 pseudotimes 222 +pseudotolerance 1980 pseudotraditional 648 pseudotrained 242 pseudotrajectories 327 @@ -476731,6 +480945,7 @@ pseuds 13268 pseudy 155 psha 6389 pshah 374 +pshat 2397 pshaw 101075 pshawed 5889 pshawing 1575 @@ -476821,7 +481036,6 @@ psoriasin 2161 psoriasis 1560706 psoriatic 324895 psoriatics 9490 -psoric 26095 psorophthalmia 973 psorophthalmy 211 psoroptic 17834 @@ -476888,6 +481102,7 @@ psychicism 752 psychicist 474 psychicists 573 psychicly 502 +psychicness 266 psychid 1931 psychids 1172 psyching 35655 @@ -477343,6 +481558,7 @@ psychotic 4406383 psychotically 26875 psychoticism 47498 psychotics 315576 +psychotization 120 psychotogenesis 182 psychotogenic 11937 psychotoid 162 @@ -477410,6 +481626,7 @@ ptarmic 264 ptarmigan 321534 ptarmigans 31425 ptarmus 205 +ptbl 311 ptenoglossate 365 pteranodon 4940 pteranodons 1757 @@ -477979,6 +482196,8 @@ pulaskis 1710 pulaskite 8646 pulaskites 1354 pulaskitic 288 +pulau 3577 +pulaus 65 pulcherrimin 692 pulchritude 64388 pulchritudes 419 @@ -477997,6 +482216,7 @@ pulghere 87 puli 14167 pulicicide 98 pulicid 299 +pulicidal 204 pulicide 904 pulicides 268 pulicine 61 @@ -478536,6 +482756,7 @@ punitively 60226 punitiveness 79986 punitory 50099 punity 10269 +punja 882 punjam 60 punjee 125 punji 19509 @@ -478630,6 +482851,7 @@ pupa 1554563 pupae 1608732 pupahood 135 pupal 1000212 +pupally 226 puparia 159102 puparial 9304 pupariate 1509 @@ -478688,6 +482910,8 @@ pupilometric 189 pupilometry 517 pupils 57106420 pupilship 1060 +pupinization 202 +pupinized 330 pupiparous 2255 pupivorous 133 puplet 136 @@ -478740,8 +482964,10 @@ puquios 2944 pur 4844144 puraque 748 purblind 151336 +purblinded 716 purblindly 1702 purblindness 6214 +purblinds 47 purchasability 2095 purchasable 306356 purchase 163388735 @@ -479151,6 +483377,7 @@ pushily 822 pushiness 20735 pushing 19380904 pushingly 432 +pushingness 189 pushings 8289 pushki 540 pushmepullyou 131 @@ -479166,6 +483393,7 @@ pushpinned 1304 pushpins 32260 pushpit 829 pushrim 5115 +pushrims 1266 pushrod 128896 pushrods 57148 pushstick 787 @@ -479230,6 +483458,7 @@ pustulent 1790 pustules 1087271 pustuliform 2115 pustulocrustaceous 620 +pustulose 27948 pustulosis 21954 pustulous 10663 pusy 1658 @@ -479286,6 +483515,8 @@ putrefiers 401 putrefies 26907 putrefy 112842 putrefying 213508 +putresce 925 +putresced 131 putrescence 64150 putrescences 850 putrescency 6438 @@ -479296,6 +483527,7 @@ putrescible 128017 putrescin 7206 putrescine 172350 putrescines 791 +putrescing 721 putrid 1369614 putridities 1064 putridity 48852 @@ -479382,6 +483614,8 @@ puzzleheaded 1254 puzzleheadedness 291 puzzleheads 165 puzzlelike 2518 +puzzlemaster 1298 +puzzlemasters 312 puzzlement 675358 puzzlements 15985 puzzler 71261 @@ -479597,6 +483831,8 @@ pyloruses 154 pyment 2581 pyments 681 pymetrozine 3236 +pymt 4008 +pymts 75993 pyned 2750 pynes 1240 pyning 1325 @@ -479674,6 +483910,8 @@ pyralids 3486 pyralis 17605 pyraloid 712 pyraloids 645 +pyralspite 1784 +pyralspites 431 pyram 4919 pyramid 6472448 pyramidal 3130586 @@ -480432,6 +484670,7 @@ qiblah 12193 qiblahs 215 qiblas 648 qibli 352 +qiddush 2013 qigong 126816 qila 951 qilin 5647 @@ -480477,11 +484716,16 @@ qorban 5021 qorbanot 248 qorma 359 qr 335898 +qrly 555 qrs 116225 +qrtly 1906 qt 1045071 qties 282 +qtly 4047 qto 6680 qtr 210124 +qtrly 42416 +qtrs 15475 qts 234219 qty 78817 qu 1040703 @@ -480530,6 +484774,8 @@ quadcopter 5182 quadcopters 1626 quadcore 654 quadded 11475 +quadder 3061 +quadders 787 quaddie 2615 quaddies 3291 quadding 7730 @@ -480615,6 +484861,7 @@ quadratomandibular 1067 quadratrices 684 quadratrix 14413 quadrats 339965 +quadratting 474 quadrature 1474196 quadratures 146382 quadraturist 106 @@ -480663,8 +484910,10 @@ quadridentate 14914 quadridigitate 152 quadridimensional 518 quadridirectional 58 +quadriennia 150 quadriennial 5823 quadriennially 2732 +quadriennium 2361 quadrifarious 941 quadrifid 12291 quadrified 411 @@ -480914,7 +485163,6 @@ quaffingly 83 quaffings 657 quaffle 293 quaffs 25071 -quagga 71897 quaggas 9595 quaggy 8361 quaghas 125 @@ -481250,8 +485498,6 @@ quarterlands 271 quarterless 573 quarterlies 183262 quarterlife 2462 -quarterlight 416 -quarterlights 393 quarterly 27070155 quarterman 24004 quartermaster 3914478 @@ -481447,6 +485693,7 @@ quasijudicial 118338 quasilattice 5119 quasilattices 1244 quasilegal 11696 +quasilegislative 22588 quasilikelihood 4560 quasilinear 219260 quasilinearisation 237 @@ -481556,6 +485803,7 @@ quasispherical 6741 quasispin 4913 quasisplit 2236 quasisquare 969 +quasistability 1295 quasistable 11739 quasistars 62 quasistate 2296 @@ -481566,6 +485814,7 @@ quasistationarity 2365 quasistationary 104678 quasistellar 13275 quasistochastic 798 +quasistoichiometric 265 quasistraight 154 quasistructured 77 quasisymmetric 9578 @@ -481884,6 +486133,7 @@ queriers 1678 queries 6453497 queriest 888 queriman 297 +querimana 414 querimonious 1088 querimony 211 querist 51825 @@ -481956,6 +486206,7 @@ questionize 113 questionless 28173 questionlessly 201 questionlessness 234 +questionmaster 168 questionnaire 19032528 questionnaired 3302 questionnaires 8386166 @@ -482258,6 +486509,7 @@ quincentenaries 105 quincentenary 36584 quincentennial 23904 quinces 303901 +quincha 2895 quincidence 341 quincite 254 quinclorac 17968 @@ -482402,6 +486654,7 @@ quinonimines 1846 quinonoid 54885 quinonoids 481 quinonoxime 566 +quinophan 61 quinoprotein 3827 quinoproteins 1871 quinotoxine 3338 @@ -482489,6 +486742,8 @@ quintale 754 quintals 539053 quintan 3107 quintans 801 +quintant 652 +quintants 283 quintar 548 quintars 242 quintary 1269 @@ -482887,6 +487142,7 @@ raash 675 rabab 9278 rababs 284 rabadi 407 +rabak 84 rabanna 146 rabannas 552 rabat 8899 @@ -482937,6 +487193,7 @@ rabbited 5470 rabbiter 2852 rabbiters 1307 rabbiteye 29940 +rabbiteyes 790 rabbitfish 8320 rabbitfishes 2182 rabbithood 1378 @@ -482971,6 +487228,8 @@ rabdomancy 261 rabe 58122 rabeprazole 17683 rabes 1476 +rabfak 3228 +rabfaks 1195 rabi 96036 rabiate 165 rabiator 116 @@ -483258,7 +487517,6 @@ raddled 35945 raddles 2353 raddling 1711 raddlings 109 -raddock 2353 radeau 5513 radeaus 155 radeaux 1047 @@ -483621,6 +487879,7 @@ radioimmunodiffusion 3217 radioimmunoelectrophoresis 5735 radioimmunoelectrophoretic 897 radioimmunoimaging 2013 +radioimmunolabeling 385 radioimmunological 15830 radioimmunologically 1628 radioimmunology 1580 @@ -484263,6 +488522,7 @@ raiders 1603492 raiding 1905975 raidings 3164 raids 5860119 +raigned 13921 raignes 5695 raigns 2019 raik 3340 @@ -484500,6 +488760,8 @@ raiyatwari 2344 raj 160725 raja 189292 rajadhiraja 140 +rajadom 255 +rajadoms 289 rajah 233729 rajahs 67092 rajahship 1301 @@ -484549,6 +488811,7 @@ raki 47291 rakia 7018 rakija 5792 raking 1479219 +rakingly 349 rakings 16936 rakis 2067 rakish 307012 @@ -484695,6 +488958,7 @@ rammy 2431 ramogen 132 ramollescence 301 ramollissement 12885 +ramontchi 1005 ramoon 196 ramoplanin 1833 ramose 75191 @@ -484960,6 +489224,7 @@ rango 48895 rangoli 2911 rangolis 272 rangoon 3173 +rangoons 510 rangos 5187 rangpur 504 rangy 240110 @@ -485270,6 +489535,7 @@ rarish 2084 rarissima 5772 rarities 555119 rarity 3121050 +rark 8151 rarted 381 ras 1182915 rasa 412804 @@ -485309,6 +489575,7 @@ rasgado 1207 rasgados 443 rasgueado 4476 rasgueados 555 +rasgueo 388 rasgulla 484 rash 9106964 rashed 6403 @@ -485316,6 +489583,7 @@ rasher 58194 rashers 45293 rashes 865513 rashest 16132 +rashful 109 rashguard 209 rashing 4620 rashless 133 @@ -485922,13 +490190,14 @@ razzmatazz 19829 rbd 3177 rbds 188 rcpt 19273 +rcvr 3023 +rcvrs 560 rd 2730713 rdf 25666 rdfs 11877 rdna 895 rds 361436 re 194424348 -rea 2445951 reaaal 55 reaal 648 reabandon 185 @@ -486049,6 +490318,7 @@ reachabilities 309 reachability 220179 reachable 657695 reachables 208 +reachably 128 reacharound 165 reachback 24577 reached 188603434 @@ -486184,6 +490454,7 @@ readding 1305 readdition 16035 readditions 543 readdress 38026 +readdressal 658 readdressed 35623 readdresses 2977 readdressing 13081 @@ -486452,6 +490723,7 @@ realleged 24332 realleges 38944 realleging 4378 realler 3525 +reallest 1205 realliance 1331 realliances 333 reallied 866 @@ -486476,6 +490748,9 @@ reallow 4161 reallowed 5033 reallowing 473 reallows 302 +realloy 74 +realloyed 351 +realloying 431 really 269696302 reallying 168 realm 23715526 @@ -486802,7 +491077,6 @@ rearward 1237330 rearwardly 912905 rearwardmost 2702 rearwards 23431 -reas 860439 reascend 40282 reascendance 751 reascendancy 1198 @@ -486879,6 +491153,8 @@ reasseveration 167 reassign 561621 reassignable 3249 reassigned 1664908 +reassignee 957 +reassignees 303 reassigning 212851 reassignment 1719082 reassignments 246059 @@ -487084,6 +491360,7 @@ reballoting 3542 reballots 530 rebamipide 1083 reban 403 +rebana 3661 reband 2603 rebandage 3275 rebandaged 9016 @@ -487125,6 +491402,7 @@ rebarrel 659 rebarreled 1938 rebarreling 1192 rebarrelled 1148 +rebarricaded 233 rebarring 1229 rebars 97517 rebarter 47 @@ -487554,6 +491832,8 @@ reburn 34106 reburned 19741 reburning 86601 reburnish 4392 +reburnished 3411 +reburnishes 111 reburnishing 1719 reburns 3650 reburnt 1932 @@ -487643,6 +491923,8 @@ recalculates 62041 recalculating 135249 recalculation 426026 recalculations 64755 +recalendered 148 +recalendering 389 recalesce 639 recalesced 314 recalescence 46783 @@ -487858,6 +492140,7 @@ recatheterized 1815 recathexis 1896 recatholicization 906 recatholization 229 +recation 4819 recaught 6741 recaulk 3634 recaulked 9882 @@ -487879,7 +492162,9 @@ reccies 183 reccing 616 reccs 296 reccy 1742 +receaved 38450 receaves 1120 +receaving 2846 recede 4143003 receded 2662474 receder 1894 @@ -487970,6 +492255,7 @@ recentrifuge 6218 recentrifuged 37446 recentrifuging 3719 recentring 2063 +recents 24694 recept 63899 receptacle 7342814 receptacles 2944766 @@ -488855,6 +493141,7 @@ reconds 1548 reconduct 14331 reconducted 25065 reconducting 4160 +reconduction 7045 reconductor 1515 reconductored 1194 reconductoring 8751 @@ -489190,6 +493477,7 @@ recordest 629 recordeth 5284 recordholder 11759 recordholders 5295 +recordholding 1079 recording 53938011 recordings 11304359 recordist 53890 @@ -489924,6 +494212,8 @@ redemptions 1165558 redemptive 1339843 redemptively 21305 redemptiveness 1525 +redemptor 15565 +redemptors 587 redemptory 7582 redemptress 1828 redemptrix 6074 @@ -491525,6 +495815,7 @@ refloored 8020 reflooring 12509 refloorings 299 reflorescence 1420 +reflorescent 58 reflotation 3754 reflour 515 refloured 86 @@ -491995,10 +496286,13 @@ regalls 1728 regally 165385 regalness 2055 regals 11536 +regalvanize 1139 +regalvanized 3185 +regalvanizes 99 +regalvanizing 1768 regard 194274322 regardable 2089 regardant 31622 -regarded 91090315 regarder 41155 regarders 3286 regardes 4785 @@ -492112,6 +496406,7 @@ reggeization 1421 reggeized 2848 reggeon 16794 reggeons 4609 +reggiano 9420 reggie 9854 regible 155 regicidal 10217 @@ -492789,7 +497084,6 @@ rehypothecated 4843 rehypothecates 399 rehypothecating 1290 rehypothecation 9606 -rei 799064 reichsmark 43480 reichsmarks 145692 reidentifiability 465 @@ -492973,6 +497267,7 @@ reinaugurated 8143 reinaugurates 499 reinaugurating 1261 reinauguration 6439 +reinback 218 reincarcerate 3285 reincarcerated 24309 reincarcerating 881 @@ -493535,6 +497830,7 @@ rejail 159 rejailed 444 rejailing 75 rejapanned 167 +rejar 187 reject 25232313 rejectability 3692 rejectable 46534 @@ -493680,6 +497976,7 @@ rekindles 47621 rekindling 191434 rekindlings 407 rekit 212 +reknew 220 reknit 14872 reknits 705 reknitted 1533 @@ -493688,6 +497985,9 @@ reknot 861 reknots 292 reknotted 3707 reknotting 1593 +reknow 1422 +reknowing 765 +reknows 257 rekt 2949 rel 14063188 relabel 81845 @@ -493789,6 +498089,7 @@ relations 171578298 relationship 209620496 relationshipless 196 relationshipper 105 +relationshipping 343 relationshippy 55 relationships 97508170 relationshit 362 p @@ -493884,6 +498185,7 @@ relayered 519 relayering 559 relayers 11259 relaying 1108474 +relayings 699 relays 4160728 relbun 291 relead 724 @@ -493914,6 +498216,7 @@ releasers 65858 releases 16084131 releasest 505 releaseth 4657 +releasible 1822 releasing 10736234 releasings 1060 releasor 58716 @@ -494090,6 +498393,9 @@ relights 13977 religieuse 177506 religieuses 90300 religieux 112007 +religification 315 +religified 134 +religify 54 religiocultural 12318 religiohistorical 2993 religiologists 233 @@ -494130,6 +498436,7 @@ religiose 42732 religiosities 6296 religiosity 1300305 religiospiritual 477 +religiotheological 214 religious 164516319 religiouses 739 religiously 2836149 @@ -494846,6 +499153,7 @@ remodified 7309 remodifies 121 remodify 2208 remodifying 934 +remodularization 1210 remodulate 2602 remodulated 4426 remodulates 1063 @@ -495081,6 +499389,7 @@ renarrates 1349 renarrating 2198 renarration 3949 renarrations 765 +renarrative 401 renarrow 220 renarrowing 3077 renarrows 47 @@ -495433,6 +499742,7 @@ renucleated 1461 renucleates 59 renucleating 132 renucleation 5385 +renued 3770 renule 194 renules 242 renumb 1980 @@ -495457,6 +499767,7 @@ renunciations 133123 renunciative 3352 renunciatory 29308 renutrition 1714 +renverse 7363 renversement 8833 renversements 795 renverses 781 @@ -495900,6 +500211,7 @@ repeater 1524875 repeatered 17668 repeaterless 9104 repeaters 1068261 +repeates 2183 repeatest 1303 repeateth 8050 repeating 11889170 @@ -495992,6 +500304,7 @@ repercussional 162 repercussionary 311 repercussions 3018449 repercussively 109 +reperesentatives 887 reperforate 4332 reperforated 7456 reperforates 709 @@ -496145,6 +500458,7 @@ repitch 1672 repitched 2852 repitches 61 repitching 2769 +repititions 4585 repivot 71 repivoted 106 repivoting 331 @@ -496996,6 +501310,7 @@ repudiation 3151630 repudiationist 1949 repudiationists 3162 repudiations 53998 +repudiative 2843 repudiator 20255 repudiators 18556 repudiatory 3271 @@ -497388,6 +501703,10 @@ rereports 2168 rerequest 2562 rerequests 781 reres 6554 +reresearch 3490 +reresearched 192 +reresearches 106 +reresearching 127 reresection 2485 reresolve 597 reresolved 889 @@ -497398,6 +501717,7 @@ rerestore 115 rerestored 477 rerestoring 110 reretreat 143 +reretreats 111 rereturn 2339 rereturns 1012 rereview 15878 @@ -498067,6 +502387,9 @@ residuosity 3434 residuous 1090 residuum 1333788 residuums 27536 +resieve 884 +resieved 2684 +resieving 1037 resift 5681 resifted 4672 resifting 2892 @@ -498185,6 +502508,9 @@ resinous 1596326 resinously 3440 resinousness 209 resins 7936336 +resinter 564 +resintered 4297 +resintering 6168 resiny 10197 resip 308 resipiscence 1495 @@ -499014,7 +503340,9 @@ restrategizing 683 restratification 13035 restratifications 212 restratified 5873 +restratifies 465 restratify 2317 +restratifying 903 restreak 1062 restreaked 4796 restreaking 2539 @@ -499267,6 +503595,8 @@ resurge 20591 resurged 21886 resurgence 2195416 resurgences 21015 +resurgencies 340 +resurgency 4187 resurgent 472136 resurgents 1143 resurges 7711 @@ -499292,6 +503622,10 @@ resurrective 3825 resurrector 2658 resurrectors 895 resurrects 99086 +resurrender 3479 +resurrendered 410 +resurrendering 97 +resurrenders 46 resurvey 617839 resurveyed 161006 resurveying 31367 @@ -499349,6 +503683,12 @@ resyllabified 2230 resyllabifies 269 resyllabify 733 resyllabifying 187 +resymbolization 4913 +resymbolizations 377 +resymbolize 1662 +resymbolized 1542 +resymbolizes 328 +resymbolizing 903 resync 11543 resynced 316 resynch 1814 @@ -499385,6 +503725,7 @@ resystematize 509 resystematized 468 resystematizing 361 ret 1379448 +ret'd 176394 retable 110703 retabled 13900 retables 27278 @@ -499438,7 +503779,6 @@ retaining 18729759 retainings 1110 retainment 25482 retainments 222 -retains 12519608 retakaful 877 retake 933049 retaken 630678 @@ -499544,6 +503884,8 @@ retaxes 1742 retaxing 8258 retch 129635 retched 124321 +retcher 444 +retchers 230 retches 17156 retching 427748 retchings 12700 @@ -499692,6 +504034,8 @@ rethreadings 119 rethreads 1381 rethrew 178 rethrombosis 10910 +rethrone 247 +rethroned 604 rethrow 10039 rethrowing 3934 rethrown 5048 @@ -500186,6 +504530,7 @@ retreaded 98357 retreading 217167 retreads 63681 retreat 21085109 +retreatal 7277 retreatant 18100 retreatants 30059 retreated 5988155 @@ -500335,6 +504680,7 @@ retrochoanitic 1090 retrochoir 8058 retrochoirs 175 retroclination 1511 +retrocline 99 retroclival 967 retroclusion 319 retrocochlear 36870 @@ -500951,6 +505297,7 @@ revealest 5488 revealeth 37582 revealing 13892517 revealingly 104898 +revealingness 1227 revealings 26171 revealment 32077 revealments 10673 @@ -501244,6 +505591,7 @@ revirgination 491 revirginization 440 revirginize 201 revirginized 511 +revis'd 3246 revisability 8689 revisable 64526 revisal 122949 @@ -501355,6 +505703,7 @@ revoicing 9923 revoicings 718 revokability 283 revokable 33188 +revoke 7356982 revokement 2158 revoker 1760 revokers 190 @@ -501708,6 +506057,7 @@ rezzies 118 rezzing 993 rezzy 57 rgds 303 +rgr 6654 rhGH 29434 rhabarbarin 354 rhabarbarine 55 @@ -502085,6 +506435,7 @@ rhinolaryngologic 407 rhinolaryngological 450 rhinolaryngology 4884 rhinolaryngoscope 480 +rhinolike 776 rhinolith 7010 rhinolithiasis 392 rhinoliths 4196 @@ -502898,6 +507249,7 @@ ricrac 1021 rictal 34179 rictus 101951 rictuses 384 +ridability 2970 ridable 10639 ridaforolimus 944 riddance 332155 @@ -503030,6 +507382,7 @@ riempies 154 riems 1810 riesling 29406 rieslings 5708 +rietbok 446 rieve 3615 rieved 4896 riever 3916 @@ -503524,15 +507877,18 @@ rinning 5645 rinpoche 5273 rinpoches 1790 rins 47181 +rinsability 4407 rinsable 4582 rinsate 43816 rinsates 8196 rinse 3809189 +rinseability 441 rinseable 1041 rinsed 2859557 rinser 17512 rinsers 8512 rinses 480781 +rinsibility 935 rinsible 241 rinsing 1762094 rinsings 117461 @@ -503874,6 +508230,7 @@ riverfront 435471 riverfronts 9672 riverful 906 rivergoing 823 +riverhemp 221 riverhood 394 riverian 702 riverine 747874 @@ -503971,6 +508328,8 @@ rmv 7214 rnd 262007 rng 47020 rngs 3670 +rnwy 19441 +rnwys 459 roach 696779 roached 35506 roaches 550630 @@ -504116,6 +508475,7 @@ roasties 341 roastin' 405 roastiness 947 roasting 3635244 +roastingly 244 roastings 19281 roastmaster 1680 roastmasters 270 @@ -504233,6 +508593,7 @@ robotlike 22763 robotness 93 robotology 548 robotripping 347 +robotrix 165 robotry 2499 robots 3686553 roboviruses 183 @@ -504283,6 +508644,7 @@ rockabillys 177 rockable 47235 rockably 25822 rockabye 2124 +rockahominy 1093 rockallite 598 rockathon 103 rockaway 21033 @@ -504324,6 +508686,8 @@ rocketless 207 rocketlike 6758 rocketman 1062 rocketmen 2232 +rocketport 599 +rocketports 113 rocketry 259185 rockets 4705202 rocketship 17123 @@ -504719,6 +509083,7 @@ rollography 503 rollout 495178 rollouts 37792 rollovers 270783 +rollrim 116 rolls 26333115 rolltop 68028 rollunder 169 @@ -504798,6 +509163,7 @@ romanticizer 1068 romanticizers 1809 romanticizes 39793 romanticizing 144127 +romanticizings 189 romanticly 445 romanticness 452 romantics 478073 @@ -504908,6 +509274,12 @@ roof 50383132 roofball 194 roofbeam 3260 roofbeams 5597 +roofbolt 1272 +roofbolted 230 +roofbolter 983 +roofbolters 471 +roofbolting 2237 +roofbolts 851 roofbox 433 roofed 1929987 roofer 177379 @@ -504956,6 +509328,7 @@ rookie 1053560 rookies 243288 rookiest 103 rooking 16070 +rookings 1929 rookish 119 rooklet 274 rooklike 148 @@ -505095,6 +509468,7 @@ rootworms 53274 rooty 24400 rootzone 21617 rootzones 2025 +rooved 2845 rooves 10680 ropable 344 ropalic 106 @@ -505175,7 +509549,6 @@ rorters 145 rorting 660 rorts 2124 rorty 7549 -rosa 374433 rosacea 249892 rosaceal 153 rosacealike 601 @@ -505296,6 +509669,7 @@ roshis 2831 rosickyite 181 rosid 1416 rosids 1529 +rosie 34510 rosied 1830 rosier 119082 rosiers 1902 @@ -505332,7 +509706,7 @@ rossed 27558 rosses 5643 rossing 22267 rossite 1750 -rost 132111 +rosted 20131 rostel 989 rostella 1407 rostellar 9308 @@ -505345,6 +509719,7 @@ rostering 17015 rosters 691461 rosticceria 2529 rosticcerias 135 +rosting 5751 rostra 88866 rostrad 14127 rostral 1172909 @@ -505415,6 +509790,8 @@ rotatably 1440891 rotate 7167166 rotateable 647 rotated 7452560 +rotatee 385 +rotatees 538 rotates 3194881 rotating 16919846 rotatingly 4943 @@ -505459,6 +509836,7 @@ rotelike 604 rotella 2480 rotelle 7014 rotely 7507 +roteness 701 rotenoid 4855 rotenoids 12660 rotenolone 1869 @@ -505487,6 +509865,7 @@ rotisseried 1608 rotisseries 14677 rotl 6766 rotls 3138 +rotn 5454 roto 133794 rotodome 5843 rotodomes 284 @@ -505809,6 +510188,7 @@ rousest 318 rouseth 2725 rousette 1815 rousettes 541 +rousie 57 rousing 1870571 rousingly 12115 rousings 1117 @@ -505816,6 +510196,7 @@ roussette 1017 roussettes 394 roust 137139 roustabout 124461 +roustabouted 147 roustabouting 1198 roustabouts 110042 rousted 67162 @@ -505886,6 +510267,7 @@ roux 187333 rouzed 6417 rouzes 1699 rouzing 2563 +rov 107416 roval 122113 rovals 2099 rove 777257 @@ -505952,6 +510334,7 @@ rowies 200 rowing 2330397 rowings 11191 rowless 208 +rowlike 641 rowling 18058 rowlock 47503 rowlocks 63758 @@ -505996,6 +510379,7 @@ royalness 879 royals 239023 royalties 8495371 royalty 13013529 +royd 9374 roysh 52 roystered 1060 roysterings 551 @@ -506083,6 +510467,7 @@ rubberneckers 13626 rubbernecking 22873 rubbernecks 7167 rubberoid 15711 +rubberous 223 rubbers 1435322 rubberwear 492 rubberwood 4578 @@ -506297,8 +510682,6 @@ ruddled 4121 ruddleman 59 ruddles 217 ruddling 282 -ruddock 4996 -ruddocks 831 rudds 380 ruddy 2045016 ruddying 1205 @@ -506508,6 +510891,8 @@ ruled 33108005 ruleful 415 ruleless 4900 rulelessness 2194 +rulemaker 11023 +rulemakers 28834 rulemaking 7554715 rulemakings 283023 ruler 14057464 @@ -506651,6 +511036,7 @@ rumplessness 6410 rumpling 43607 rumplings 388 rumply 2164 +rumpo 2875 rumpot 1611 rumpots 517 rumps 129608 @@ -507073,6 +511459,7 @@ ruxolitinib 4638 rvalue 26977 rvalues 9580 rvv 3341 +rx 312041 rxn 15332 rxns 1193 rya 25035 @@ -507620,6 +512007,7 @@ sadded 3451 sadden 192638 sadden'd 9867 saddened 1732084 +saddener 84 saddenest 149 saddeneth 306 saddening 230900 @@ -507757,6 +512145,7 @@ safeguards 11792386 safehouse 29902 safehouses 12613 safeish 127 +safek 3049 safekeep 7336 safekeeper 4673 safekeepers 3353 @@ -507853,6 +512242,7 @@ sagari 2725 sagas 671991 sagathies 225 sagathy 1443 +sagbend 2397 sagbut 431 sagbuts 294 sagdid 477 @@ -507947,7 +512337,6 @@ sahibdom 134 sahibs 47127 sahih 7425 sahlinite 76 -sahlite 5931 sahme 192 sahoor 178 sahuaro 22078 @@ -507956,6 +512345,7 @@ sahui 66 sahukar 1504 sahukars 969 sahur 993 +sahwa 2435 sai 658815 saibara 3145 saibling 7483 @@ -508273,7 +512663,6 @@ salets 615 saleworthy 43 saleyard 2697 saleyards 2336 -saliant 5467 salicaceous 947 salices 2887 salicet 236 @@ -508367,7 +512756,6 @@ salinosporamide 1084 saliretin 2533 salisburia 796 salisburias 185 -salite 12389 salitral 358 salitrose 197 saliuresis 442 @@ -508483,6 +512871,8 @@ salonlike 1128 salonnier 462 salons 1219945 saloon 6500997 +saloonatic 206 +saloonatics 261 saloonist 6317 saloonists 7037 saloonkeeper 125429 @@ -508575,7 +512965,6 @@ saltations 17683 saltative 760 saltato 2364 saltator 20630 -saltatorial 17885 saltatorian 100 saltatoric 315 saltatorious 49 @@ -508778,7 +513167,10 @@ samaan 1528 samadh 869 samadhi 223431 samadhis 7045 +samagon 248 samaj 11078 +samaja 1099 +samajas 281 samajes 479 saman 31459 samana 10513 @@ -509188,6 +513580,7 @@ sandplay 16059 sandproof 807 sandr 3435 sandrac 1474 +sandragon 300 sandre 2660 sandres 198 sandridge 2775 @@ -509257,6 +513650,7 @@ sangaree 12704 sangarees 1048 sangars 5362 sangas 979 +sangdragon 281 sangeet 1925 sangen 4680 sangens 59 @@ -509641,6 +514035,7 @@ sapphite 235 sapphites 87 sapphyrin 2192 sapphyrins 747 +sappie 244 sappily 1962 sappiness 6767 sapping 453050 @@ -509753,6 +514148,8 @@ sarapatel 528 sarape 24029 sarapes 20694 saraphan 263 +saratoga 5803 +saratogas 237 sarbacane 688 sarbacanes 544 sarcalumenin 161 @@ -509799,6 +514196,7 @@ sarcoglycanopathy 868 sarcoglycans 4063 sarcoid 224575 sarcoidal 8020 +sarcoidlike 2025 sarcoidoses 297 sarcoidosis 948903 sarcoidotic 249 @@ -509935,6 +514333,7 @@ saried 1528 sarigue 459 sarigues 44 sarilumab 203 +sarim 5011 sarin 192008 sarinda 1197 saringosterol 225 @@ -509997,7 +514396,6 @@ sarons 1117 saros 16821 saroses 414 sarothra 942 -sarouk 122 sarpagandha 341 sarpanch 8963 sarpanches 1487 @@ -510383,6 +514781,8 @@ saucerized 4087 saucerizing 436 saucerless 1288 saucerlike 23655 +saucerman 284 +saucermen 397 saucers 1038249 saucersful 234 saucery 1299 @@ -510700,6 +515100,7 @@ sawsharks 1450 sawsmith 1029 sawsmiths 1108 sawt 6940 +sawtail 469 sawteeth 32733 sawtimber 758315 sawtimbers 220 @@ -510762,8 +515163,10 @@ sayables 1572 sayang 2948 sayas 4062 sayee 1394 +sayeing 2368 sayer 60433 sayers 74476 +sayes 106666 sayest 434884 sayeth 184905 sayette 566 @@ -511352,6 +515755,7 @@ scari 4890 scarid 2610 scarids 6409 scarier 137907 +scaries 826 scariest 153089 scarification 331458 scarifications 50997 @@ -511397,6 +515801,7 @@ scarper 7283 scarpered 9156 scarpering 1327 scarpers 743 +scarpes 158 scarph 8359 scarphed 4429 scarphing 1349 @@ -511702,6 +516107,7 @@ scharm 154 schatchen 2646 schatchens 161 schav 1594 +schechina 291 schechinah 205 schechita 527 sched 337651 @@ -511852,6 +516258,7 @@ schismatizing 882 schismic 303 schismless 188 schismogenesis 11996 +schismogenetic 971 schismogenic 2191 schisms 431673 schist 3194623 @@ -512040,6 +516447,7 @@ schlocky 12138 schlong 8503 p schlonged 135 schlongs 803 p +schloomp 159 schloop 923 schlooped 373 schlooping 285 @@ -512361,7 +516769,6 @@ schrecklichkeit 2021 schreibersite 48398 schreibersites 1942 schrod 1142 -schrode 151 schroff 1088 schroffs 487 schrund 5579 @@ -513312,9 +517719,13 @@ scraggiest 1262 scraggily 4002 scragginess 1549 scragging 3979 +scraggle 4027 +scraggled 2137 +scraggles 523 scragglier 705 scraggliest 749 scraggliness 437 +scraggling 2259 scraggly 318964 scraggy 149839 scragly 694 @@ -513361,6 +517772,7 @@ scrapbooker 3100 scrapbookers 5175 scrapbooking 48262 scrapbooks 522391 +scrapbox 804 scrape 3194702 scrapeable 107 scrapeage 444 @@ -513597,6 +518009,7 @@ screenwashing 1640 screenwise 328 screenwork 4068 screenworks 132 +screenworthy 140 screenwrite 190 screenwriter 635132 screenwriters 215942 @@ -513804,8 +518217,10 @@ scrive 15032 scrived 921 scriveners 65381 scrivenership 153 +scrivenery 689 scrivening 6477 scrivenings 459 +scrivenry 156 scrives 152 scriving 1069 scroat 402 @@ -513878,8 +518293,10 @@ scrootched 325 scrootches 307 scrootching 109 scrophulariaceous 1883 +scrophulous 9914 scrota 8303 scrotal 655251 +scrotally 673 scrote 1672 scrotectomy 804 scrotes 785 @@ -514746,6 +519163,7 @@ seaweeded 263 seaweedlike 1226 seaweeds 513436 seaweedy 5275 +seawife 413 seawolf 2985 seawolves 1991 seawoman 1456 @@ -515392,6 +519810,7 @@ seekest 100647 seeketh 303167 seekh 1347 seeking 77671172 +seekingly 1457 seekings 15918 seekini 419 seeks 36872779 @@ -515419,6 +519838,7 @@ seemliness 47740 seemly 472762 seems 296465381 seen 391251748 +seenness 218 seens 91102 seent 5045 seep 1110066 @@ -515892,6 +520312,7 @@ selenoperoxidase 180 selenoperoxidases 196 selenophene 10822 selenophenes 1102 +selenophobia 331 selenophosphate 3521 selenophosphates 359 selenophysical 298 @@ -515955,6 +520376,7 @@ selfhoods 5363 selfie 56429 selfied 94 selfies 43725 +selfindulgence 82851 selfing 154694 selfings 4015 selfinjective 2935 @@ -516250,6 +520672,8 @@ semiaquatic 86148 semiarboreal 8263 semiarborescent 215 semiarc 1201 +semiarch 844 +semiarches 423 semiarchitectural 376 semiarcs 402 semiarid 1147893 @@ -516340,6 +520764,8 @@ semicatatonic 1029 semicelebrities 368 semicelebrity 901 semicelestial 250 +semicell 20912 +semicells 37624 semicellulose 486 semicensorship 107 semicentenarian 94 @@ -516349,6 +520775,7 @@ semicentennials 345 semicentral 2101 semicentralized 2076 semicentury 137 +semiceremonial 483 semichaotic 1011 semicharacteristic 1021 semicharacteristics 183 @@ -516481,6 +520908,7 @@ semicreative 545 semicrescent 263 semicrescentic 326 semicriminal 5810 +semicrisp 206 semicritical 9776 semicroma 451 semicrome 302 @@ -516604,6 +521032,7 @@ semiductile 1882 semidull 3601 semiduplex 2123 semidurable 17753 +semidurables 4342 semidwarf 55844 semidwarfism 1036 semidwarfs 6393 @@ -516633,6 +521062,7 @@ semiexternal 427 semiextinct 250 semifabulous 1051 semifacetious 1769 +semifactorial 61 semifactual 1568 semifactuals 823 semifamiliar 999 @@ -516727,6 +521157,7 @@ semigraphical 8727 semigraphics 1000 semigraphitic 410 semigratuitous 195 +semigregarious 705 semigroup 592741 semigroupoid 884 semigroupoids 542 @@ -516774,6 +521205,7 @@ semijoins 6015 semijudicial 17626 semijuridical 147 semiketal 60 +semikhah 4508 semikilled 24027 semilaminar 225 semilanceolate 433 @@ -516892,6 +521324,7 @@ semimodular 7904 semimodule 3486 semimodules 2372 semimoist 19405 +semimolten 8941 semimonastic 5967 semimonocoque 14830 semimonopolies 1847 @@ -516975,6 +521408,7 @@ seminvariants 12641 semioblivious 138 semiobscure 775 semiobscurity 5061 +semiobsolete 1991 semioccasional 2169 semioccasionally 2477 semioccluded 619 @@ -517129,6 +521563,7 @@ semipractical 1194 semiprecious 351096 semiprecocial 2239 semipredictable 533 +semipremium 101 semipreparative 10745 semipresidential 10335 semipresidentialism 2550 @@ -517668,8 +522103,6 @@ senology 230 senone 1311 senones 1270 senopia 538 -senores 32395 -senors 11318 senpai 8328 sens 642471 sensate 190514 @@ -517700,6 +522133,9 @@ sensationalizes 7487 sensationalizing 33191 sensationally 156510 sensationary 195 +sensationism 7596 +sensationist 7996 +sensationists 1973 sensationless 4633 sensations 10041771 sensative 15702 @@ -517719,6 +522155,8 @@ sensels 360 sensely 284 sensemaking 108006 sensemilla 546 +senser 7132 +sensers 2931 senses 23599580 sensest 125 senseth 338 @@ -517749,6 +522187,7 @@ sensillary 1700 sensillum 47190 sensimilla 1646 sensimillia 114 +sensimotor 827 sensing 12892571 sensings 13489 sensism 11467 @@ -518350,6 +522789,7 @@ serenely 1043139 sereneness 7070 serener 67438 serenes 2589 +sereness 976 serenest 45586 serening 804 serenities 9848 @@ -518797,6 +523237,8 @@ serrefile 210 serrefiles 157 serrefine 2976 serrefines 1603 +serret 1381 +serrette 65 serricorn 1030 serricornin 624 serricorns 115 @@ -518830,6 +523272,7 @@ serumless 3597 serums 1012423 serumuria 183 serv 1949408 +servable 20135 serval 29923 servaline 636 servals 5202 @@ -518980,7 +523423,6 @@ seshes 229 sesiid 2165 sesiids 1826 sesma 378 -sesquialter 5834 sesquialtera 11616 sesquialteral 1883 sesquialteras 267 @@ -519173,8 +523615,10 @@ setteth 142937 settin' 6333 setting 121190806 settings 28945798 +settlability 559 settlable 2866 settle 36776588 +settleability 32587 settleable 174259 settleables 631 settled 83905292 @@ -519273,6 +523717,7 @@ severed 6773691 severely 27953555 severeness 9185 severer 764134 +severers 1079 severest 2116588 severeth 2783 severies 2560 @@ -519424,6 +523869,7 @@ sexpartite 15616 sexpect 46 sexpectations 253 sexpected 478 +sexpedition 167 sexperience 613 sexperiences 151 sexperiment 188 @@ -519580,12 +524026,15 @@ sforzandos 5893 sforzati 1738 sforzato 5473 sforzatos 534 +sftwd 114 sfumato 22664 sfx 7225 sg 449194 sgACC 1694 sgRNA 9018 sgRNAs 3536 +sgabelli 253 +sgabello 1594 sgraffiato 3437 sgraffiti 3298 sgraffito 57367 @@ -519808,6 +524257,7 @@ shahadah 10743 shahadas 109 shahadat 2807 shahanshah 3506 +shahbanu 149 shahdom 385 shaheed 7083 shaheeds 1570 @@ -519822,9 +524272,15 @@ shahnai 1195 shahs 36972 shahtoosh 3383 shahy 162 +shahzada 1432 +shahzadeh 166 shaik 1754 +shaikdom 99 +shaikdoms 149 shaikh 59663 shaikha 573 +shaikhdom 3651 +shaikhdoms 5932 shaikhs 29481 shaiks 474 shaitan 5205 @@ -520018,6 +524474,7 @@ shamings 1871 shamisen 69893 shamisens 1070 shamla 339 +shamma 5868 shammas 5132 shammash 8070 shammashim 284 @@ -520075,6 +524532,7 @@ shandygaffs 129 shanghaed 161 shanghaeing 245 shanghai 45304 +shanghai'd 268 shanghaied 70358 shanghaier 817 shanghaiers 1214 @@ -520092,6 +524550,7 @@ shanking 12213 shankings 341 shankless 7108 shanks 1080130 +shanna 4889 shannies 354 shannonite 315 shanny 4334 @@ -520120,8 +524579,11 @@ shaomai 241 shapable 3903 shape 110581379 shapeable 5264 +shapechange 2084 +shapechanged 504 shapechanger 6236 shapechangers 3131 +shapechanges 200 shapechanging 4239 shaped 56445458 shapedly 234 @@ -520224,6 +524686,8 @@ shareouts 139 shareowner 30087 shareowners 99067 shareowning 1290 +sharepusher 123 +sharepushers 113 sharer 303084 sharers 331347 shares 97073331 @@ -520420,7 +524884,6 @@ shawnee 4487 shaws 17793 shawties 129 shawty 6454 -shax 451 shay 160961 shaya 3365 shayak 280 @@ -520493,6 +524956,8 @@ shearography 23635 shearpole 123 shearpoles 275 shears 2527812 +shearsman 1554 +shearsmen 484 sheartail 254 shearwall 23387 shearwalls 21349 @@ -520652,6 +525117,7 @@ sheepstealers 896 sheepstealing 3238 sheepswool 11413 sheeptrack 713 +sheeptracks 417 sheepwalk 5320 sheepwalks 8016 sheepwash 577 @@ -521026,6 +525492,7 @@ shibboleths 203344 shibe 773 shibilant 638 shibilants 344 +shibire 4637 shibori 12174 shibuichi 8588 shicer 422 @@ -521080,6 +525547,7 @@ shiest 4779 shife 458 shift 72068879 shifta 12247 +shiftability 12669 shiftable 330090 shiftage 111 shiftas 3691 @@ -521286,6 +525754,7 @@ shinning 69851 shinny 93664 shinnying 11512 shinobi 8216 +shinobu 2842 shinogi 1584 shinplaster 10485 shinplasters 28484 @@ -521356,6 +525825,7 @@ shipmates 515033 shipmen 54192 shipment 33470250 shipments 42941887 +shipmind 1360 shipowner 1502867 shipowners 1168036 shipowning 40745 @@ -521495,8 +525965,6 @@ shists 4422 shit 10325630 p shitake 8938 shitakes 740 -shitass 4875 p -shitasses 611 p shitbag 6270 p shitbags 2079 p shitball 792 p @@ -521671,6 +526139,7 @@ shloshim 2343 shlub 1675 shlubby 372 shlubs 545 +shluchim 1891 shlump 1586 shlumped 247 shlumping 158 @@ -521875,6 +526344,7 @@ shoeshine 213404 shoeshiner 2802 shoeshiners 2884 shoeshines 6726 +shoesies 305 shoesmith 764 shoesmiths 244 shoesole 1060 @@ -522027,6 +526497,7 @@ shopbreaker 784 shopbreakers 1848 shopbreaking 5266 shopette 705 +shopettes 467 shopfitter 349 shopfitters 728 shopfitting 1501 @@ -522110,6 +526581,7 @@ shopworker 2897 shopworkers 10941 shopworn 140521 shorage 2369 +shorba 800 shore 55033945 shorebird 131771 shorebirds 488806 @@ -522139,6 +526611,7 @@ shorepower 2204 shorer 3011 shorers 4265 shores 15743756 +shoresh 2363 shoreside 278029 shoreward 479126 shorewards 18615 @@ -522294,6 +526767,7 @@ shoshonitic 9911 shot 76650262 shota 2377 shotai 7448 +shotas 144 shotblast 4027 shotblasted 3199 shotblasting 8919 @@ -522394,6 +526868,7 @@ shoutingly 1748 shoutings 87150 shouts 5582982 shouty 4245 +shovavim 74 shove 2332833 shoveboard 99 shoved 5404903 @@ -522647,6 +527122,7 @@ shrifts 2567 shrike 183247 shrikebill 211 shrikelike 617 +shriker 141 shrikes 99290 shrikhand 1650 shrill 3692275 @@ -522737,6 +527213,7 @@ shroomer 149 shroomers 275 shrooming 791 shrooms 15262 +shroomy 108 shroud 2478533 shrouded 2193008 shrouder 435 @@ -522876,6 +527353,7 @@ shufty 445 shugga 347 shuggle 56 shugoshin 405 +shuk 11589 shuka 4490 shukas 1023 shukumei 141 @@ -523020,6 +527498,7 @@ shysters 62795 si 10940088 siRNA 362063 siRNAs 97486 +sia 613704 siafu 1885 siah 26337 sial 84316 @@ -523193,6 +527672,7 @@ siccing 6600 siccity 1876 sices 12573 sich 1505083 +sichah 780 sichel 2523 siches 461 sichs 1691 @@ -524067,6 +528547,7 @@ silex 227375 silexes 380 silexite 6592 silflay 1096 +silfs 87 silhouet 1508 silhouets 239 silhouette 2411495 @@ -524223,6 +528704,7 @@ silktail 171 silktails 127 silktassel 5158 silktassels 210 +silkvine 1079 silkware 142 silkwares 110 silkwear 119 @@ -524960,6 +529442,7 @@ sinkproof 199 sinkroom 1335 sinkrooms 169 sinks 6201838 +sinkware 212 sinkwater 334 sinky 1113 sinless 582648 @@ -525030,6 +529513,7 @@ sinterability 32844 sinterable 20354 sintered 2131116 sintering 2697666 +sinterings 3644 sinters 84985 sintery 1416 sinthomosexual 796 @@ -525096,6 +529580,7 @@ siphilis 715 siphlonurid 310 siphoid 278 siphon 2133385 +siphonable 683 siphonaceous 3588 siphonage 106874 siphonages 189 @@ -525115,6 +529600,7 @@ siphoners 281 siphonia 1565 siphonic 21171 siphoning 367053 +siphonings 2499 siphonium 301 siphonless 199 siphonlike 981 @@ -525556,6 +530042,7 @@ sizescale 396 sizescales 259 sizewise 2398 sizey 737 +sizhu 4892 siziness 370 sizing 4106585 sizings 42359 @@ -525687,6 +530174,7 @@ skedules 169 skeed 491 skeeing 3997 skeel 3903 +skeeling 60 skeels 859 skeely 3138 skeer 21945 @@ -525773,6 +530261,7 @@ skeletonless 1460 skeletonlike 7312 skeletons 3408712 skeletonweed 9166 +skeletony 195 skell 5669 skelled 48 skellies 674 @@ -526229,6 +530718,7 @@ skivvied 209 skivvies 46054 skivvy 18139 skivvying 961 +skiway 8983 skiwear 13581 sklodowskite 2667 skoal 7327 @@ -526276,9 +530766,20 @@ skouts 1373 skpo 873 skraight 61 skran 292 +skreak 937 +skreaked 241 +skreaking 775 +skreaks 108 +skreek 2049 +skreeked 575 +skreeking 1239 +skreeks 801 skreened 1395 skreening 769 skreens 1984 +skreich 210 +skriegh 441 +skrieghed 189 skriek 335 skrieks 243 skrik 842 @@ -526881,6 +531382,7 @@ slavemakers 1739 slavemaking 3078 slavemaster 30192 slavemasters 24994 +slavemistress 434 slavemonger 495 slavemongers 1196 slaveocracies 117 @@ -527478,6 +531980,7 @@ slitlet 806 slitlets 1359 slitlike 90141 slitmask 546 +slitmouth 239 slits 2524998 slittable 158 slitted 186450 @@ -527739,6 +532242,8 @@ sloyd 108469 sloyds 62 slph 237 slpm 8152 +slsmgr 1707 +slsmn 55872 slub 23835 slubbed 4636 slubber 22178 @@ -528065,6 +532570,7 @@ smaltine 1271 smaltite 30202 smalto 3878 smalts 9741 +smaltz 905 smaragdine 1471 smaragdite 4732 smark 1920 @@ -528408,6 +532914,8 @@ smokeproof 23213 smoker 2338252 smokerette 347 smokeries 886 +smokeroom 6173 +smokerooms 472 smokers 5662611 smokery 2376 smokes 1403697 @@ -528546,6 +533054,7 @@ smouting 337 smouts 166 smriti 10221 smritis 1637 +smstrs 5717 smth 15171 smthng 153 smtn 182 @@ -529451,6 +533960,7 @@ snowless 34649 snowlessness 141 snowlight 3587 snowlike 9995 +snowlit 741 snowmachine 22106 snowmachiner 241 snowmachiners 918 @@ -529519,8 +534029,6 @@ snowslips 142 snowsport 285 snowsports 1427 snowspout 107 -snowsquall 1133 -snowsqualls 1381 snowstorm 1027713 snowstorms 299165 snowstormy 140 @@ -529658,6 +534166,7 @@ soapboxers 2867 soapboxes 17534 soapboxing 2827 soapboxy 63 +soapbush 484 soapdom 272 soaped 158576 soapen 59 @@ -529788,6 +534297,7 @@ soccer 4775382 soccered 147 soccerlike 550 soccers 534 +socdolager 347 socdologer 96 sociabilities 9694 sociability 1263264 @@ -529864,6 +534374,7 @@ sociobiologies 99 sociobiologist 15662 sociobiologists 64657 sociobiology 247410 +sociobiomedical 266 sociocentric 35902 sociocentrism 5362 sociochemical 234 @@ -530016,6 +534527,7 @@ sociophysics 1806 sociophysiology 821 sociopoetic 755 sociopolitical 1599163 +sociopoliticaleconomic 196 sociopolitically 14673 sociopolitics 7460 sociopositive 182 @@ -530321,6 +534833,7 @@ softwoods 629791 softworks 122 softy 56217 sofy 10924 +sofys 545 sog 43837 sogdianite 244 soger 13428 @@ -530351,6 +534864,7 @@ soiler 22230 soilers 57867 soiling 1016283 soilings 3349 +soilish 132 soilless 77385 soillike 3180 soilproof 2454 @@ -530681,6 +535195,7 @@ solidungulate 662 solidungulates 309 solidungulous 203 solidus 427690 +solifaction 381 solifenacin 8409 solifidian 1988 solifidianism 1569 @@ -530708,6 +535223,7 @@ soliloquizer 2263 soliloquizers 517 soliloquizes 36883 soliloquizing 60392 +soliloquizingly 373 soliloquizings 483 soliloquy 929512 solilunar 331 @@ -531126,6 +535642,7 @@ somethinged 749 somethingness 9985 somethings 196106 somethingth 1524 +somethink 25241 sometime 11630269 someting 34845 someway 174446 @@ -531150,6 +535667,7 @@ somitocoel 99 somitogenesis 9013 somitomere 2087 somitomeres 8718 +somm 5227 somma 20181 sommas 249 sommat 5318 @@ -531157,6 +535675,7 @@ sommelier 85574 sommeliers 23499 sommersets 229 sommit 1033 +somms 1135 sommy 162 somnambulance 3460 somnambulancy 187 @@ -531354,6 +535873,7 @@ sonifies 1125 sonify 2162 sonifying 1637 soninlaw 2232 +soniscope 6256 sonker 416 sonkers 125 sonlaw 92 @@ -531384,6 +535904,10 @@ sonnetlike 1173 sonnetry 1230 sonnets 2196258 sonnetted 238 +sonnetteer 5412 +sonnetteered 101 +sonnetteering 2893 +sonnetteers 5860 sonnetting 1146 sonnies 3426 sonning 320 @@ -531982,7 +536506,6 @@ soucouyant 2780 soucouyants 403 soucriants 199 soudanian 1193 -souerayne 4869 sougan 566 sougans 715 sough 107459 @@ -532057,6 +536580,7 @@ sounder 1929296 sounders 190915 soundest 812582 soundeth 32215 +soundex 23426 soundfront 484 soundful 1088 soundie 1090 @@ -532226,6 +536750,7 @@ southbound 1095907 southbridge 2029 southcentral 243109 southeast 21329576 +southeastbound 1597 southeaster 35301 southeasterlies 7406 southeasterly 1842557 @@ -532288,6 +536813,7 @@ southward 10600090 southwardly 239635 southwards 568530 southwest 22260589 +southwestbound 1765 southwester 26397 southwesterlies 12808 southwesterly 1832637 @@ -532374,6 +536900,7 @@ sowed 1562879 sowedst 3021 sowei 1773 sowens 4111 +sower 446425 sowers 102433 sowest 43326 soweth 187657 @@ -532439,12 +536966,17 @@ space-time 224 spaceband 14165 spacebands 18082 spacebased 48629 +spaceboat 3522 +spaceboats 373 +spaceboot 44 +spaceboots 369 spaceborne 255863 spacecraft 10493193 spacecrafts 64277 spaced 19086292 spacedock 3906 spacedocks 571 +spacedog 301 spacedrive 793 spacedrives 50 spacefarer 2894 @@ -532457,9 +536989,12 @@ spaceflown 671 spaceforce 198 spacegirl 322 spacegoing 2881 +spacegram 685 spacehand 516 spacehands 323 spacehead 157 +spacehound 212 +spacehounds 153 spaceless 51196 spacelessly 434 spacelessness 7427 @@ -532474,6 +537009,7 @@ spaceling 1742 spacelings 1000 spacely 429 spaceman 73503 +spacemanship 971 spacemen 69269 spacenik 122 spaceniks 115 @@ -532514,10 +537050,11 @@ spacewoman 1698 spacewomen 491 spaceworthiness 1077 spaceworthy 4647 +spacewreck 143 +spacewrecked 61 spacey 60837 spacial 267834 spaciality 1369 -spacially 30359 spacier 1256 spaciest 398 spaciness 7594 @@ -532965,7 +537502,6 @@ spathic 41782 spathiform 1201 spathiphyllum 2926 spathiphyllums 663 -spathose 4089 spaths 555 spathulate 41413 spathulenol 778 @@ -533090,6 +537626,7 @@ speakeasies 135064 speakeasy 180974 speakeasys 1312 speaked 2061 +speakeing 2211 speaker 36052386 speakeress 219 speakerine 418 @@ -533102,6 +537639,7 @@ speakerphones 11411 speakers 23500428 speakership 138983 speakerships 1964 +speakes 36008 speakest 188032 speaketh 592687 speakie 828 @@ -533116,6 +537654,7 @@ speakos 113 speakout 6622 speakouts 2932 speaks 33885388 +speal 19988 spean 2746 speaned 149 speaning 258 @@ -533725,6 +538264,7 @@ spellingwise 74 spellmaker 519 spellmakers 141 spellmaking 580 +spellmaster 269 spello 393 spellout 6386 spellouts 558 @@ -533785,6 +538325,7 @@ spendthrifty 1891 spendy 5485 spense 6008 spenses 3503 +spensive 2649 spent 129935101 spentest 111 speoi 1356 @@ -534548,6 +539089,9 @@ spincoat 300 spincoated 4099 spincoating 3867 spindalis 1997 +spindel 2778 +spindizzies 1317 +spindizzy 2365 spindle 11357248 spindled 84526 spindleful 495 @@ -535091,6 +539635,8 @@ spitful 433 spithame 307 spiting 17711 spitish 346 +spitkit 412 +spitkits 413 spitless 10450 spitoon 4834 spitoons 3915 @@ -535134,6 +539680,8 @@ spivvish 175 spivvy 396 spizzerinctum 874 spk 7042 +spkr 15951 +spkrs 5354 splain 14391 splained 3528 splaining 2713 @@ -535223,6 +539771,7 @@ spleen 10090377 spleened 741 spleenful 6622 spleenfully 205 +spleenic 3734 spleening 180 spleenish 1607 spleenishly 131 @@ -535505,6 +540054,7 @@ spoke 86527730 spoked 117430 spokeless 4447 spoken 48945074 +spokenness 9615 spokes 1920648 spokesbear 279 spokesbeing 223 @@ -536018,6 +540568,7 @@ sports 34299281 sportsaholic 769 sportsball 235 sportsboat 239 +sportsboats 148 sportsbook 3965 sportsbooks 1829 sportscape 603 @@ -536139,6 +540690,7 @@ spouseless 7505 spouselessness 165 spousely 321 spouses 8283607 +spousification 889 spousing 1139 spout 2610439 spouted 425884 @@ -536504,7 +541056,7 @@ spueing 1223 spues 3529 spuggies 201 spuing 1622 -spulzie 1250 +spule 1704 spumante 12807 spumantes 647 spumaretrovirus 1056 @@ -537336,6 +541888,7 @@ stablish 105660 stablished 163540 stablishes 8458 stablishing 26251 +stablishments 23049 stably 589810 stabproof 187 stabs 613040 @@ -537983,6 +542536,8 @@ staphylectomy 1241 staphyline 830 staphylinid 18879 staphylinids 9097 +staphylinoid 695 +staphylinoids 237 staphylocidal 1565 staphylocoagulase 6141 staphylococcal 858077 @@ -538026,7 +542581,6 @@ stapping 661 staps 3045 star 45431382 starbase 11857 -starbases 2151 starbeam 2948 starbeams 4792 starbirth 1950 @@ -538092,6 +542646,8 @@ starets 25758 staretz 6791 starey 4247 starfall 1160 +starfarer 395 +starfarers 1574 starfaring 4077 starfield 20600 starfields 4367 @@ -538103,6 +542659,8 @@ starfished 976 starfishes 98066 starfishing 274 starfishlike 623 +starfleet 1661 +starfleets 143 starflower 11905 starflowers 5091 starforming 5192 @@ -538272,6 +542830,8 @@ starvingly 1473 starvings 2360 starward 11224 starwards 620 +starway 573 +starways 1161 starweed 455 starwheel 13430 starwheels 2865 @@ -538493,6 +543053,7 @@ statting 4120 statto 1128 statty 707 statua 35948 +statuae 3847 statuaries 26344 statuary 1596287 statuas 7828 @@ -539405,6 +543966,9 @@ stereodescriptor 366 stereodescriptors 449 stereodiagram 825 stereodiagrams 288 +stereodirected 305 +stereodirecting 728 +stereodirection 191 stereodisparity 117 stereodissecting 122 stereodivergent 336 @@ -539763,6 +544327,9 @@ stertorous 166755 stertorously 20294 stertorousness 567 stertors 109 +sterved 1431 +sterves 529 +sterving 485 steryl 20246 stet 54040 stetefeldtite 1698 @@ -539979,6 +544546,7 @@ stickups 14301 stickwater 13044 stickweed 2522 stickweeds 241 +stickwoman 192 stickwork 7841 sticky 6243942 stickyback 1396 @@ -540133,6 +544701,7 @@ stillers 2904 stillest 60340 stilleth 9709 stillhead 4943 +stillheads 403 stillhouse 9337 stillhouses 1195 stilliard 252 @@ -540493,6 +545062,7 @@ stockage 138841 stockages 5822 stockateers 233 stockbook 10928 +stockbooks 5080 stockboy 12853 stockboys 5239 stockbreeder 6183 @@ -541105,8 +545675,6 @@ stormable 543 stormbird 967 stormbirds 1075 stormbound 10300 -stormcloud 13889 -stormclouds 16007 stormcock 735 stormed 2572639 stormer 10825 @@ -541263,6 +545831,7 @@ stoves 4453888 stoveside 691 stovetop 131309 stovetops 4777 +stoveware 409 stovewood 23765 stovies 955 stoving 28463 @@ -541363,6 +545932,7 @@ straightlaced 18673 straightline 242711 straightlining 1875 straightly 84797 +straightneck 4673 straightness 489924 straightnesses 667 straights 265519 @@ -541410,6 +545980,7 @@ straitnesses 940 straits 2775244 straitwaistcoat 2814 straitwaistcoats 525 +strake 215953 strakes 156397 strale 2381 strales 194 @@ -541440,7 +546011,6 @@ strandloper 181 strandlopers 286 strands 8376698 strang 44716 -strange 66832623 strangelet 3515 strangelets 4729 strangeling 791 @@ -541635,6 +546205,7 @@ stratum 6923805 stratums 9558 stratus 358227 straughted 443 +straungers 17111 stravage 58 stravaging 815 stravaig 396 @@ -542289,6 +546860,7 @@ striploin 1197 striploins 418 strippable 144647 stripped 11186848 +strippedness 948 stripper 1462897 strippergram 310 strippers 516931 @@ -542969,6 +547541,7 @@ stupidass 849 p stupider 90932 stupidest 221789 stupidhead 732 +stupidheads 97 stupidification 832 stupidified 212 stupidify 112 @@ -543046,6 +547619,7 @@ styelid 387 styelids 354 styen 194 styes 54010 +styfsiekte 366 styful 154 stygian 32211 stygiophobia 323 @@ -543192,6 +547766,7 @@ stymieing 15131 stymies 36590 stymy 1453 stymying 4563 +stynten 1571 stypes 885 styphnate 24050 styphnates 844 @@ -543363,6 +547938,8 @@ subalternates 1377 subalternating 1590 subalternation 9054 subalternism 925 +subalternities 287 +subalternity 25494 subalterns 307538 subalternship 213 subalveolar 410 @@ -543700,6 +548277,7 @@ subcharacteristics 3649 subcharacterized 83 subcharacters 1994 subchart 2044 +subcharts 1892 subchaser 20532 subchasers 24429 subchelate 25050 @@ -543804,6 +548382,11 @@ subclusters 30473 subcoalition 2653 subcoalitions 3661 subcoastal 3932 +subcoat 4582 +subcoated 379 +subcoating 4127 +subcoatings 303 +subcoats 1085 subcode 47204 subcodes 25703 subcoelomic 509 @@ -544084,6 +548667,7 @@ subcuticularly 1474 subcutis 102464 subcycle 27413 subcycles 22350 +subcyclic 1696 subcycling 5717 subcylinder 467 subcylinders 325 @@ -544342,6 +548926,7 @@ subduplicate 5996 subdurally 17766 subdwarf 17822 subdwarfs 26623 +subdynamic 432 subdynamics 3778 subdynasties 171 subdynasty 129 @@ -544476,6 +549061,7 @@ subestimates 813 subestimation 189 subestuaries 2259 subestuary 4066 +subether 490 subetheric 767 subethnic 15450 subethnicities 313 @@ -544979,6 +549565,7 @@ subjectile 3021 subjectiles 153 subjecting 4623974 subjection 3733726 +subjectional 247 subjections 10634 subjectist 51 subjectival 3473 @@ -545167,6 +549754,8 @@ sublevel 188248 sublevels 216762 sublexical 19461 sublexically 250 +sublexicon 429 +sublexicons 281 sublibrarian 4565 sublibrarians 493 sublibraries 7044 @@ -545420,6 +550009,7 @@ submeridional 18783 submerse 7140 submersed 209540 submerses 571 +submersibility 1157 submersible 971023 submersibles 283039 submersing 6225 @@ -545469,6 +550059,7 @@ submicrosecond 15636 submicrovillar 504 submiliary 7642 submillennial 572 +submilliarcsecond 468 submillikelvin 435 submillimeter 254143 submillimetre 15605 @@ -545478,6 +550069,11 @@ submillisecond 9152 submind 1778 subminds 1617 subminiature 160796 +subminiatures 6092 +subminiaturization 4744 +subminiaturize 116 +subminiaturized 2679 +subminiaturizing 111 subminima 375 subminimal 21915 subminimally 136 @@ -545959,6 +550555,7 @@ subplanes 12055 subplanetary 1050 subplans 20239 subplantar 2215 +subplantigrade 1044 subplanulate 1647 subplasma 1041 subplasmalemmal 6283 @@ -546039,6 +550636,8 @@ subprinciple 2911 subprinciples 4667 subprior 14913 subprioress 4177 +subpriorities 3056 +subpriority 6576 subpriors 378 subprismatic 2964 subprison 107 @@ -546087,6 +550686,7 @@ subprovinces 35568 subprovincial 13070 subpruinose 3341 subpseudopodia 447 +subpubescent 4429 subpubic 30234 subpulmonary 25089 subpulmonic 14862 @@ -546420,6 +551020,7 @@ subsentences 2533 subsentential 4892 subsept 159 subsepta 110 +subseptate 2135 subseptic 127 subsequence 351672 subsequences 121220 @@ -546634,6 +551235,7 @@ subspheroid 1216 subspheroidal 4604 subspheroids 643 subspinal 1393 +subspiniform 2483 subspinous 8967 subspiracular 10068 subspiral 7577 @@ -547057,6 +551659,8 @@ subtiers 2266 subtilase 1299 subtilases 1036 subtileness 933 +subtiler 5308 +subtilest 9395 subtilin 24341 subtilisation 619 subtilisations 135 @@ -547076,6 +551680,7 @@ subtilized 20775 subtilizer 537 subtilizes 3611 subtilizing 8529 +subtill 22943 subtilopeptidase 1255 subtilosin 387 subtilties 59796 @@ -547235,6 +551840,7 @@ subultimate 719 subulurid 169 subumbel 196 subumbellate 11015 +subumbels 172 subumbilical 9107 subumbonal 5414 subumbonate 7199 @@ -547376,6 +551982,8 @@ subvisual 13688 subvital 3841 subvitalized 105 subvitreous 6810 +subvocabularies 715 +subvocabulary 722 subvocal 40427 subvocalization 15374 subvocalizations 1769 @@ -547420,6 +552028,7 @@ subworld 9634 subworlds 5866 subwriters 245 subxeric 1649 +subxerophilous 141 subxerophytic 684 subxiphoid 31021 subxiphoidal 250 @@ -547691,6 +552300,8 @@ suctorious 306 sucuruju 521 sud 591038 sudachi 1253 +sudadero 489 +sudaderos 321 sudamen 1349 sudamina 19371 sudaminal 880 @@ -547940,6 +552551,7 @@ sugarpie 1317 sugarplum 19229 sugarplums 30680 sugars 6560358 +sugarstick 1041 sugartime 149 sugartits 221 sugary 710809 @@ -549022,7 +553634,9 @@ sunfast 14809 sunfastness 590 sunfilled 6764 sunfish 745110 +sunfished 1838 sunfishes 82851 +sunfishing 2804 sunfleck 4546 sunflecks 11695 sunflower 2350258 @@ -549159,6 +553773,7 @@ sunshined 1116 sunshineless 101 sunshines 7292 sunshiney 2809 +sunshininess 149 sunshiny 296977 sunshot 4577 sunspace 75047 @@ -549383,6 +553998,7 @@ superbloc 418 superblock 56823 superblocks 29685 superblocs 527 +superbloom 162 superbly 1548281 superbness 3613 superbo 8985 @@ -549466,6 +554082,7 @@ supercatastrophe 167 supercategories 2810 supercategory 3377 supercautious 5454 +supercavitated 604 supercavitating 37462 supercavitation 4432 superceded 325709 @@ -549780,6 +554397,7 @@ superdiagonal 12136 superdiagonals 1558 superdialects 151 superdiamagnetic 371 +superdictionary 100 superdiet 221 superdifferentiable 209 superdifficult 323 @@ -549816,6 +554434,7 @@ superdrainage 122 superdramatic 701 superdreadnought 10133 superdreadnoughts 12355 +superdry 1918 superduct 256 superduper 11762 superdupervenience 130 @@ -549953,6 +554572,7 @@ superfact 596 superfactor 2536 superfactors 4419 superfacts 127 +superfake 54 superfamilial 2520 superfamilies 84568 superfamily 565336 @@ -550153,6 +554773,7 @@ supergoodness 273 supergovernment 25721 supergovernmental 1163 supergovernments 1557 +supergrade 101759 supergradient 2222 supergrain 830 supergrains 277 @@ -550235,6 +554856,7 @@ superhet 31451 superheterodyne 207920 superheterodynes 6664 superhets 3173 +superhierarchy 131 superhigh 72898 superhighway 452230 superhighways 182793 @@ -550521,6 +555143,7 @@ supermanifold 6964 supermanifolds 7336 supermanliness 263 supermanly 602 +supermannish 252 supermanship 223 supermarginal 4112 supermarine 1956 @@ -550939,6 +555562,7 @@ superprocess 3811 superprocesses 3960 superproducer 1449 superproducers 824 +superproductive 1609 superprofessional 950 superprofessionals 542 superprofit 2091 @@ -551483,6 +556107,7 @@ supertruth 601 supertube 1049 supertubes 494 supertunic 1506 +supertunica 550 supertunics 389 supertwist 10397 supertwisted 6170 @@ -551899,6 +556524,7 @@ supraclypeal 39229 supracoeliac 340 supracolic 2301 supracollicular 1919 +supracolloidal 1393 supracommissural 2285 supracomplex 144 supraconducting 2318 @@ -552282,6 +556908,7 @@ surculose 2025 surculus 23112 surcurrent 899 surd 157438 +surdo 8137 surds 53410 sure 231734461 surefire 213198 @@ -552301,6 +556928,8 @@ surest 2431182 sureties 8368379 suretiship 6841 suretiships 181 +suretor 800 +suretors 957 surety 16563131 suretyship 593222 suretyships 10976 @@ -552318,6 +556947,7 @@ surfacers 34894 surfaces 58313571 surfaceward 4739 surfacewards 363 +surfacial 6005 surfacic 1650 surfacing 2869606 surfacings 58093 @@ -552725,6 +557355,7 @@ susceptometry 1327 susceptor 103987 susceptors 13332 suscepts 8017 +suscitability 263 sush 16962 sushi 660848 sushilike 50 @@ -553220,7 +557851,6 @@ swashplates 1949 swashway 298 swashways 235 swashy 1919 -swastica 2413 swasticas 320 swastika 476370 swastikaed 921 @@ -553421,6 +558051,7 @@ sweetkins 311 sweetleaf 3856 sweetless 2377 sweetlier 1375 +sweetliest 491 sweetling 10833 sweetlings 527 sweetlips 3601 @@ -553716,6 +558347,8 @@ swipple 361 swires 226 swirl 2150721 swirled 1481571 +swirler 51551 +swirlers 17005 swirlie 691 swirlier 58 swirlies 1305 @@ -553932,6 +558565,7 @@ swordproof 112 swords 6193641 swordsman 319082 swordsmanship 84585 +swordsmaster 407 swordsmen 153298 swordsmith 16800 swordsmithing 411 @@ -554371,6 +559005,8 @@ symphorophilia 213 symphronistic 249 symphylan 9918 symphylans 11634 +symphylid 4004 +symphylids 5344 symphynote 1024 symphyogenetic 65 symphyseal 71678 @@ -554963,12 +559599,15 @@ synizesis 25824 synizetic 996 synkaryon 8548 synkaryons 1218 +synkinematic 19161 synkineses 1547 synkinesia 4395 synkinesias 1705 synkinesis 27971 synkinetic 8267 synkinetically 343 +synmagmatic 821 +synmetamorphic 6903 synnema 2841 synnemata 6435 synnes 31284 @@ -555093,6 +559732,8 @@ synpharyngitic 552 synphase 3279 synphilin 1687 synpolydactyly 1856 +synrhabdosome 1009 +synrift 17049 syns 22694 synsacra 372 synsacral 1938 @@ -555266,6 +559907,7 @@ synucleinopathy 4631 synucleins 2478 synucleopathies 234 synurophytes 271 +synvolcanic 6101 synzoochory 195 synzyme 386 synzymes 768 @@ -555312,6 +559954,7 @@ syphon 410441 syphonage 16514 syphoned 39426 syphoning 35628 +syphonings 509 syphons 88746 syrah 27531 syrahs 2109 @@ -555822,6 +560465,7 @@ tachyarrhythmias 204954 tachyarrhythmic 1569 tachyarrythmias 2293 tachyauxesis 440 +tachyblastic 257 tachycardia 4287102 tachycardiac 6590 tachycardias 187132 @@ -556315,6 +560959,7 @@ tailrace 251476 tailraces 13381 tails 7300405 tailshaft 25309 +tailshafts 6337 tailsitter 457 tailsitters 183 tailskid 5476 @@ -556656,6 +561301,7 @@ tallgrass 163074 tallgrasses 3643 talliable 233 tallianine 348 +tallica 2345 tallie 2895 tallied 892801 tallier 3100 @@ -556708,6 +561354,7 @@ tallywoman 315 talma 6937 talmas 4261 talmessite 140 +talmid 24247 talmouse 119 talnakhite 1559 talocalcaneal 53221 @@ -556827,6 +561474,7 @@ tamboo 2980 tambookie 442 tambora 7095 tamboras 586 +tambori 250 tamborim 1583 tamborims 119 tambou 1327 @@ -557096,6 +561744,8 @@ tankas 10304 tankbuster 568 tankbusters 263 tankbusting 263 +tankdozer 1335 +tankdozers 949 tanked 132284 tanker 4211432 tankered 9039 @@ -557339,6 +561989,8 @@ tapemaking 351 tapenade 37439 tapenades 1745 tapentadol 5357 +tapeout 2677 +tapeouts 149 taper 4584425 tapered 5134340 taperer 379 @@ -557379,6 +562031,7 @@ taphoflora 442 taphold 91 taphole 63253 tapholes 22077 +taphon 961 taphonomic 80999 taphonomical 1355 taphonomically 2198 @@ -557540,6 +562193,7 @@ tarbushes 2113 tarbuttite 909 tard 119744 p tardeada 657 +tardeadas 631 tardier 14205 tardies 21977 tardiest 5908 @@ -558457,6 +563111,7 @@ tazz 3158 tazza 20874 tazzas 5886 tazze 4618 +tbch 63 tbf 42966 tbh 2827 tbl 102284 @@ -558518,6 +563173,7 @@ teacherage 25122 teacherages 12282 teachercentric 189 teacherdom 509 +teachered 630 teacherese 302 teacheress 1757 teacheresses 193 @@ -558597,6 +563253,7 @@ teamships 773 teamster 840737 teamsters 1138740 teamup 1170 +teamups 205 teamwide 1344 teamwise 371 teamwork 2879614 @@ -558772,6 +563429,8 @@ technicalness 373 technicals 41111 technician 7908786 technicians 12840884 +technicism 15652 +technicisms 454 technicist 19196 technicists 11315 technicities 475 @@ -558901,7 +563560,6 @@ technomania 1216 technomaniac 131 technomaniacs 197 technomedicine 830 -technomusic 542 technonerd 339 technonerds 415 technonomy 144 @@ -559024,6 +563682,8 @@ tectonites 22998 tectonization 1217 tectonized 14629 tectonomagmatic 14504 +tectonometamorphic 3268 +tectonometamorphism 283 tectonophysical 2857 tectonophysicist 320 tectonophysicists 522 @@ -559066,6 +563726,7 @@ tedding 14285 teddys 817 tedge 1695 tedges 131 +tedia 1855 tedious 7904257 tediously 239227 tediousness 224546 @@ -559217,6 +563878,7 @@ tefah 526 tefahim 604 teff 57546 teffs 181 +tefila 1143 tefilla 2749 tefillah 25526 tefillin 137176 @@ -559573,6 +564235,7 @@ telekineses 311 telekinesis 66334 telekinetic 51673 telekinetically 7382 +telekineticist 191 telekinetics 2557 telekiosks 461 telekung 186 @@ -559660,6 +564323,9 @@ telemotor 19558 telemotors 2383 telemovie 2596 telemovies 1269 +telempath 453 +telempathic 496 +telempathy 501 telencephala 296 telencephalic 80852 telencephalization 1728 @@ -559850,7 +564516,9 @@ telepuppets 391 teleputer 1204 teleputers 496 telera 1346 +teleradio 3419 teleradiogram 151 +teleradiograms 179 teleradiograph 339 teleradiographic 686 teleradiographs 755 @@ -559859,6 +564527,7 @@ teleradiological 246 teleradiologist 366 teleradiologists 163 teleradiology 38077 +teleradios 297 teleradiotherapy 1176 teleradium 6135 teleras 1020 @@ -559882,6 +564551,7 @@ telesales 15643 telesalesperson 87 telesatellite 139 telesatellites 153 +telescanner 435 telescience 20107 telescopable 1729 telescope 10357409 @@ -559948,6 +564618,7 @@ telestics 282 telestration 193 telestrator 1596 telestrators 155 +telestroke 2586 telesupervision 575 telesupport 343 telesurgery 9339 @@ -560284,6 +564955,7 @@ temocillin 1624 temoporfin 409 temozolomide 62291 temp 3505907 +tempe 68282 temped 8445 tempeh 174309 tempehs 545 @@ -560327,6 +564999,7 @@ temperless 2607 temperments 2801 tempers 1689622 tempersome 536 +tempes 5518 tempest 3415080 tempestarii 529 tempested 2656 @@ -560508,6 +565181,7 @@ tenaille 8554 tenailles 3257 tenaillon 362 tenaillons 417 +tenaim 1515 tenamfetamine 71 tenancies 437145 tenancy 5168078 @@ -560546,6 +565220,7 @@ tendentious 308466 tendentiously 32993 tendentiousness 32202 tender 44707357 +tenderability 12183 tenderable 31397 tendered 8627756 tenderee 3622 @@ -560600,6 +565275,8 @@ tenders 3786939 tendersome 103 tendest 2195 tendeth 55499 +tendido 4757 +tendidos 1547 tendie 44 tendies 116 tendinal 7721 @@ -560667,6 +565344,7 @@ tenectomy 5712 tenement 4280386 tenemental 2035 tenementary 141 +tenemented 1201 tenementlike 410 tenements 3515325 tenendum 16054 @@ -560766,6 +565444,7 @@ tenorial 1202 tenorist 15236 tenorists 3111 tenorite 18915 +tenorless 275 tenoroon 1272 tenoroons 367 tenorrhaphies 351 @@ -560918,6 +565597,7 @@ tenthmeters 839 tenthmetres 255 tenthousandfold 562 tenthousandth 15127 +tenthousandths 13130 tenthredinid 2980 tenthredinids 845 tenths 7362662 @@ -561070,6 +565750,7 @@ tequileros 1020 tequilla 3590 ter 11767016 terabases 49 +terabecquerel 368 terabit 16135 terabits 8598 terabyte 51535 @@ -561105,7 +565786,6 @@ teras 27379 terascale 7515 terasi 992 terata 17655 -terated 17063 teratism 3318 teratisms 1239 teratoblastoma 1642 @@ -561507,6 +566187,7 @@ terrazzos 663 terreen 240 terreens 131 terrella 21152 +terrellae 195 terrellas 487 terrene 73888 terrenes 7407 @@ -562698,7 +567379,6 @@ tets 16929 tetter 159802 tettered 1263 tettering 374 -tetterous 91 tetters 45744 tetterwort 939 tettery 1590 @@ -562846,6 +567526,7 @@ tezkeres 355 tezontle 8349 tezosentan 1291 tfb 3874 +tfillin 1530 tformer 25478 tfui 801 tfw 15147 @@ -563106,7 +567787,6 @@ thats 300506 thatta 2475 thaub 1057 thaubs 164 -thaught 4972 thaughts 518 thaumasite 14848 thaumatin 19063 @@ -563247,6 +567927,7 @@ thecaphore 276 thecas 1193 thecasporous 146 thecate 11663 +thecated 684 thecia 1418 theciferous 407 thecitis 2265 @@ -563513,6 +568194,7 @@ theopathic 2925 theopathies 161 theopaths 85 theopathy 4246 +theophagic 142 theophagy 2003 theophanic 32347 theophanies 55734 @@ -563719,6 +568401,7 @@ therevid 730 therevids 539 therewith 13679401 therewithal 84918 +therewithall 16930 therewithin 54185 therewithout 531 theriac 23309 @@ -563918,6 +568601,7 @@ thermodenuders 189 thermodes 8680 thermodesorption 8887 thermodestruction 1460 +thermodetection 209 thermodifferential 911 thermodiffusion 16002 thermodilatometric 378 @@ -563957,6 +568641,7 @@ thermoelectrons 2277 thermoelement 90771 thermoelements 84758 thermoenergetic 468 +thermoesthesia 305 thermofield 1373 thermofluctuational 676 thermofluid 7952 @@ -564203,6 +568888,7 @@ thermoset 253843 thermosets 117855 thermosettable 3822 thermosetting 611478 +thermosful 267 thermosiphon 47386 thermosiphons 4751 thermosolutal 7695 @@ -564544,6 +569230,7 @@ thighless 453 thighplates 89 thighs 6144198 thighward 52 +thigmatropic 104 thigmokinesis 293 thigmokinetic 161 thigmomorphogenesis 2116 @@ -564556,6 +569243,7 @@ thigmotactically 177 thigmotaxic 639 thigmotaxis 10175 thigmothermic 257 +thigmotherms 115 thigmothermy 86 thigmotropic 4545 thigmotropically 182 @@ -564597,6 +569285,7 @@ thincoat 238 thine 9902056 thineself 340 thing 325579544 +thingabob 112 thingal 106 thingamabob 6231 thingamabobs 3502 @@ -564771,6 +569460,7 @@ thiocarbazides 183 thiocarbazone 2514 thiocarbazones 607 thiocarbohydrazide 7007 +thiocarbon 60 thiocarbonate 11239 thiocarbonates 4493 thiocarbonic 2399 @@ -565055,7 +569745,9 @@ thirds 34724606 thirdspace 5104 thirdy 1312 thirlage 2928 +thirling 1945 thirlings 557 +thirls 1005 thirst 8797920 thirsted 259104 thirster 2318 @@ -565198,7 +569890,6 @@ thonself 379 thonzonium 5094 thonzylamine 4352 thoo 38512 -thooid 425 thor 602044 thoracal 4826 thoracalgia 314 @@ -565530,6 +570221,7 @@ three-dimensional 354 threeawn 36007 threeawns 5824 threedimensional 1142522 +threedy 455 threefin 166 threefold 3331733 threefolded 303 @@ -565572,6 +570264,7 @@ threespine 32197 threeteen 280 threeth 229 threetooth 479 +threevee 86 threeway 101413 threeways 1669 threitol 5247 @@ -566066,6 +570759,8 @@ thugocracy 812 thugs 1210634 thugz 253 thuja 35758 +thujaplicin 3207 +thujaplicins 2115 thujas 1810 thujene 3221 thujenes 125 @@ -566077,6 +570772,7 @@ thukpa 795 thula 21720 thulas 1114 thulia 2151 +thulite 7237 thulium 111595 thulr 788 thuluth 4092 @@ -566108,6 +570804,9 @@ thumbnut 4881 thumbnuts 1677 thumbpad 1431 thumbpads 433 +thumbpick 1674 +thumbpicking 247 +thumbpicks 399 thumbpiece 22173 thumbpieces 1758 thumbpots 380 @@ -566263,6 +570962,7 @@ thwack 111766 thwacked 26233 thwacker 262 thwackers 234 +thwacketh 145 thwacking 23996 thwackingly 95 thwackings 1973 @@ -566493,7 +571193,6 @@ thysanopterous 617 thysanuran 4161 thysanurans 3356 thysanuriform 1772 -thysanurous 358 thyself 4115189 thyselves 2979 thysen 4606 @@ -566598,6 +571297,7 @@ tickets 17650454 ticketyboo 345 tickicide 732 tickicides 865 +tickier 146 tickies 308 ticking 1750591 tickings 38406 @@ -566629,6 +571329,8 @@ ticktack 4301 ticktacks 532 ticktacktoe 8965 ticktock 20464 +ticktocked 1077 +ticktocking 1880 ticktocks 1251 ticky 49126 ticlike 4724 @@ -566847,6 +571549,7 @@ tightlacing 2542 tightlier 63 tightlipped 35634 tightly 18328809 +tightner 1162 tightness 2194785 tightnesses 1324 tightrope 476239 @@ -566985,6 +571688,8 @@ tillowing 103 tillows 139 tills 770762 tilly 16323 +tilma 20806 +tilmas 1572 tilmatli 4125 tilmatlis 89 tilmicosin 12295 @@ -567906,9 +572611,12 @@ tmeses 323 tmesis 12163 tmetic 211 tmg 11100 +tmkpr 2128 tmr 12516 tmrw 675 tn 3447212 +tnoyim 295 +tnpk 260 tnx 30136 to 45602086036 to've 49178 @@ -568175,8 +572883,10 @@ toeplates 645 toeprint 1919 toeprinting 530 toeprints 1501 +toer 10317 toerag 1187 toerags 414 +toers 1279 toes 11175716 toesa 267 toeses 2276 @@ -568694,6 +573404,9 @@ tomtomming 384 tomtoms 28141 ton 62678019 tona 69163 +tonable 1158 +tonada 4212 +tonadas 2805 tonal 3174403 tonalamatl 17246 tonalamatls 2407 @@ -568707,6 +573420,7 @@ tonalities 190958 tonality 897509 tonalization 990 tonally 130018 +tonalpohualli 11113 tonals 5967 toname 2504 tonames 154 @@ -568778,6 +573492,8 @@ tonguelessness 591 tonguelet 625 tonguelets 215 tonguelike 32279 +tonguer 1146 +tonguers 632 tongues 8463966 tonguester 484 tonguesters 1307 @@ -569000,6 +573716,9 @@ toolrooms 18076 tools 87263439 toolset 106679 toolsets 21627 +toolsetter 1966 +toolsetters 1556 +toolsetting 1348 toolshed 79559 toolsheds 5631 toolsmith 5163 @@ -569541,6 +574260,7 @@ torero 58522 toreros 31245 tores 75098 torest 18324 +torets 463 toreutic 4477 toreutics 1705 torfer 339 @@ -569612,6 +574332,7 @@ tornus 44796 toro 90393 toroid 244257 toroidal 1349721 +toroidality 1537 toroidally 29667 toroids 88611 toros 48952 @@ -569833,6 +574554,7 @@ torulus 6850 torus 1369604 toruses 11603 tory 3612446 +toryfied 182 torymid 901 torymids 688 tosa 10941 @@ -569881,6 +574603,7 @@ tostados 5532 tosticated 338 tostone 817 tostones 12564 +tosts 21988 tosudite 1025 tosufloxacin 1015 tosy 1498 @@ -570139,6 +574862,7 @@ touristic 148239 touristically 4497 touristification 1587 touristified 432 +touristing 2072 touristlike 565 touristry 2478 tourists 10010814 @@ -570176,6 +574900,7 @@ tourns 4620 tournsol 139 tournure 21325 tournures 3040 +tourons 637 tours 10112634 tousche 231 touse 108838 @@ -570201,7 +574926,6 @@ touters 14511 touting 395227 toutings 270 touts 229675 -touze 952 touzed 197 touzing 69 touzle 1804 @@ -570307,6 +575031,7 @@ townhouse 655003 townhouses 392308 townie 27621 townies 40014 +townified 615 towniness 492 townishness 342 townland 58550 @@ -570407,6 +575132,7 @@ toxicogenic 14064 toxicogenicity 1154 toxicogenomic 10481 toxicogenomics 23365 +toxicognaths 479 toxicoid 137 toxicoinfection 996 toxicoinfections 347 @@ -570730,6 +575456,7 @@ trachichthyids 506 traching 989 trachinids 477 trachinoid 1294 +trachinoids 557 trachipterid 200 trachipterids 250 trachitis 5329 @@ -570920,6 +575647,7 @@ trademarked 414786 trademarker 140 trademarking 13591 trademarks 5823567 +tradent 6818 tradeoff 1428986 tradeoffs 1430034 tradepost 115 @@ -571276,6 +576004,7 @@ tramlined 181 tramlines 20970 tramload 870 tramloads 467 +trammage 317 tramman 193 trammed 84357 trammel 236331 @@ -571307,6 +576036,8 @@ trampiest 48 tramping 932449 trampings 4712 trampish 3087 +tramplate 137 +tramplates 273 trample 1272302 trampled 2638864 trampler 7644 @@ -571366,6 +576097,8 @@ trandolapril 15547 trandolaprilat 1619 tranduce 242 tranduced 474 +tranduces 301 +tranducing 722 tranexamic 43702 tranfection 789 trangenic 2092 @@ -572159,6 +576892,7 @@ transhumanism 16172 transhumanist 11986 transhumanistic 427 transhumanists 9367 +transhumanity 570 transhumanize 326 transhumanized 1160 transhumanizing 603 @@ -572283,6 +577017,7 @@ transjejunal 790 transjovian 58 transjugular 46746 transjunctional 5827 +transjurisdictional 1510 transketolase 70711 transketolases 1021 transketolation 1148 @@ -572482,6 +577217,8 @@ transmissibilities 19605 transmissibility 451954 transmissible 946682 transmissing 673 +transmissiometer 968 +transmissiometers 186 transmission 74237152 transmissional 10448 transmissioned 308 @@ -572496,6 +577233,8 @@ transmissivities 55399 transmissivity 507840 transmissometer 69100 transmissometers 14551 +transmissometric 119 +transmissometry 2315 transmissory 323 transmit 22050036 transmitivity 1375 @@ -572517,6 +577256,7 @@ transmittivity 10322 transmodal 4835 transmodality 327 transmodern 2964 +transmodernity 1476 transmodulation 1580 transmogrification 38567 transmogrifications 6971 @@ -572572,6 +577312,7 @@ transmyocardial 12818 transnasal 44428 transnasally 7538 transnatal 231 +transnation 4308 transnational 4233834 transnationalism 175074 transnationalisms 1445 @@ -572579,6 +577320,7 @@ transnationalities 265 transnationality 23013 transnationally 58872 transnationals 65762 +transnations 691 transneptunian 2964 transness 2003 transneural 1029 @@ -573055,6 +577797,7 @@ transvesicular 599 transvest 788 transvested 1556 transvestic 20624 +transvesticism 835 transvesting 469 transvestism 159984 transvestisms 269 @@ -573326,6 +578069,7 @@ travoprost 6508 travoy 1413 travoys 397 trawl 1728769 +trawlability 165 trawlable 7954 trawlboat 106 trawled 75593 @@ -573459,6 +578203,7 @@ treatizes 223 treatless 795 treatment 359614976 treatments 28757561 +treato 980 treats 12129973 treatsome 48 treaty 66678882 @@ -573522,6 +578267,7 @@ treehopper 12910 treehoppers 14394 treehouse 76553 treehouses 9867 +treehunters 201 treeified 281 treeing 83665 treeings 149 @@ -573550,6 +578296,8 @@ treenware 2217 treeology 131 treepie 312 treepies 313 +treerunner 147 +treerunners 205 trees 144279258 treescape 1706 treescapes 690 @@ -573599,8 +578347,11 @@ trekboers 6966 trekked 281735 trekker 19884 trekkers 85435 +trekkie 1192 +trekkies 1515 trekking 339183 trekkings 275 +trekky 58 treks 238824 trekschuit 2205 trekschuits 267 @@ -574279,6 +579030,7 @@ tribulated 5200 tribulating 354 tribulation 1301164 tribulations 1232743 +tribulin 936 tribulosis 312 tribunal 12853123 tribunals 5137250 @@ -574791,6 +579543,7 @@ tricyclist 1389 tricyclists 1512 tricyclo 19850 tricyclohexylammonium 597 +tricycloquinazoline 424 tridacna 7497 tridacnas 448 tridacnid 4450 @@ -574819,6 +579572,8 @@ tridecapeptides 370 tridecaphobia 140 tridecyl 13912 tridecylic 1202 +tridee 1403 +tridees 122 tridem 9958 tridemorph 4518 trident 376816 @@ -574828,6 +579583,7 @@ tridentated 365 tridented 409 tridentlike 655 tridents 36921 +trideo 1078 tridepside 488 tridermic 438 trideuterium 77 @@ -574837,6 +579593,7 @@ tridiagonalization 7153 tridigital 459 tridigitate 1479 tridihexethyl 8614 +tridim 379 tridimensional 80446 tridimensionality 5497 tridimensionally 1096 @@ -575100,6 +579857,7 @@ triglycoside 883 triglycosylated 151 triglyme 3100 triglyph 41763 +triglyphed 354 triglyphic 581 triglyphs 77823 trigness 1102 @@ -575345,6 +580103,7 @@ trimecaine 908 trimedoxime 1031 trimegestone 386 trimembral 176 +trimensional 1090 trimensual 59 trimeperidine 2437 trimeprazine 16868 @@ -575486,6 +580245,7 @@ trimotor 29078 trimotors 5690 trimount 537 trimoxazole 51954 +trimpot 7938 trims 543497 trimuon 4063 trimuons 1423 @@ -575606,6 +580366,8 @@ triolein 79988 trioles 812 triolet 27201 triolets 13385 +triologies 151 +triology 11970 triols 19364 triomino 419 triominoes 554 @@ -576059,7 +580821,6 @@ trispermous 142 trisphosphate 125502 trisphosphates 1680 trispiral 1914 -trisplanchnic 1608 trispyrazolylborate 315 trissyllable 1000 trissyllables 297 @@ -576072,6 +580833,7 @@ triste 208218 tristearate 15445 tristearates 229 tristearin 29311 +tristeful 139 tristeness 175 tristes 45880 tristesse 33954 @@ -576336,6 +581098,7 @@ triynes 651 trizonal 8907 trizygotic 1089 trnas 755 +tro 424402 troat 8530 troated 4234 troating 1395 @@ -576468,6 +581231,7 @@ troilite 131414 troilites 1781 trojan 34550 trojaned 987 +trojanized 493 trojans 8919 troke 9190 troked 177 @@ -576569,6 +581333,7 @@ troo 104711 troodontid 3552 troodontids 4721 troon 4209 p +trooned 226 troons 5679 troop 8376970 trooped 360712 @@ -576611,6 +581376,7 @@ tropein 1410 tropeine 2340 tropeines 3931 tropeins 677 +tropeless 127 tropeolin 5299 tropeptic 125 tropepts 205 @@ -576811,6 +581577,7 @@ troublement 539 troublements 113 troublemonger 90 troublemongers 300 +troubleproof 5479 troubler 31797 troublers 20019 troubles 19370943 @@ -576953,6 +581720,7 @@ trucco 821 truce 4406313 trucebreaker 179 trucebreakers 4621 +trucel 383 truceless 7563 trucemaker 109 trucer 42 @@ -577089,6 +581857,8 @@ trumperies 7012 trumpery 219699 trumpet 6529752 trumpeted 439974 +trumpeteer 1771 +trumpeteers 1978 trumpeter 813945 trumpeters 359067 trumpetfish 6211 @@ -577173,6 +581943,7 @@ trunnion 546517 trunnioned 17724 trunnionless 600 trunnions 529629 +trup 7883 trupial 295 trupials 143 truscottite 2198 @@ -577277,6 +582048,7 @@ truxillines 691 truxinate 141 trve 12790 try 154956244 +try'na 2166 tryable 4200 tryalls 8066 tryals 17693 @@ -577452,6 +582224,7 @@ tschernosem 283 tschk 209 tse 350857 tsebe 177 +tsedakah 4657 tselina 1404 tseliny 121 tses 5666 @@ -577486,6 +582259,7 @@ tsks 7591 tsktsked 407 tsktsking 395 tsktsks 97 +tsoo 11641 tsooris 158 tsores 3159 tsoris 869 @@ -577501,6 +582275,7 @@ tsuba 22150 tsubas 1029 tsubo 34334 tsubos 3622 +tsuchigumo 521 tsuga 3857 tsugas 162 tsuica 699 @@ -578700,6 +583475,7 @@ turquoised 457 turquoiselike 48 turquoises 110651 turquoisey 45 +turquoisine 198 turra 1017 turrah 81 turras 145 @@ -578753,6 +583529,7 @@ turtlets 374 turtling 12507 turtlings 161 turts 1526 +turul 1254 turuma 291 turumagi 631 turuq 8052 @@ -579328,7 +584105,6 @@ twitching 1852674 twitchingly 1045 twitchings 264300 twitchy 111729 -twite 10110 twites 1809 twitling 59 twits 38225 @@ -579367,6 +584143,7 @@ twoad 617 twoc 1578 twock 412 twocking 67 +twoddle 574 twodimensional 884970 twoer 789 twoers 284 @@ -579407,6 +584184,7 @@ twt 29199 twted 314 twting 410 twts 984 +twttr 330 twunk 173 twunt 90 p twyer 17800 @@ -579523,6 +584301,7 @@ tympanics 2045 tympanicum 20922 tympanies 4922 tympaniform 3355 +tympaning 84 tympanis 1823 tympanism 2311 tympanist 8413 @@ -579655,6 +584434,7 @@ typewritten 2967603 typewrote 2973 typey 12013 typhasterol 474 +typhic 2677 typhinia 237 typhlenteritis 202 typhlitic 1535 @@ -579668,6 +584448,7 @@ typhlophiles 137 typhlopid 915 typhlopids 2415 typhlosis 281 +typhlosolar 852 typhlosole 18512 typhlosoles 2145 typhogenic 240 @@ -579693,6 +584474,7 @@ typhous 30292 typhus 2675481 typhuses 544 typic 97595 +typica 156166 typical 92248342 typicalities 2957 typicality 240195 @@ -579700,6 +584482,7 @@ typically 51565844 typicalness 9446 typicals 9151 typicity 3222 +typicon 2158 typier 607 typiest 1211 typification 78064 @@ -579712,6 +584495,7 @@ typify 839380 typifying 269684 typika 4984 typikon 12818 +typiness 1119 typing 7773155 typings 20680 typist 1572433 @@ -579876,9 +584660,7 @@ tyrosyl 121209 tyrosyls 2613 tyrothricin 58971 tyrothricine 127 -tyrotoxicon 21745 tyrotoxin 400 -tyrotoxine 154 tyrotoxism 206 tyrphostin 6343 tyrphostins 2568 @@ -579920,6 +584702,7 @@ tzars 4341 tzatziki 15123 tzedaka 5066 tzedakah 51280 +tzenius 107 tzeniut 561 tzetse 224 tzetze 1193 @@ -579933,6 +584716,7 @@ tzitzis 13223 tzitzit 25628 tzitzith 1486 tzitzits 307 +tznius 2174 tzniut 2400 tzolkin 18349 tzolkins 1011 @@ -580023,6 +584807,7 @@ uchiage 213 uchigatana 452 uchikake 2995 uchronia 1293 +uchronian 249 uchronic 861 uck 76359 ucker 15354 @@ -580072,6 +584857,7 @@ ufology 13783 ufonaut 263 ufonauts 1153 ufos 3691 +ufra 1453 ufufunyane 187 ugal 26038 ugali 12008 @@ -580106,6 +584892,8 @@ uglying 454 uglyish 121 uglyism 169 ugmo 113 +ugrandite 970 +ugrandites 189 ugruk 5252 ugruks 472 ugsome 2666 @@ -580194,6 +584982,7 @@ ulema 145787 ulemas 20936 ulemorrhagia 107 ulerythema 3273 +uletic 69 ulexite 46101 ulicon 94 uliginose 534 @@ -580385,6 +585174,7 @@ ultradistribution 807 ultradistributions 2979 ultradogmatic 201 ultradolichocephalic 318 +ultradrive 1385 ultradry 1817 ultradurable 697 ultraearly 419 @@ -580523,12 +585313,14 @@ ultrametric 27526 ultrametricity 1789 ultrametrics 2128 ultramicro 28904 +ultramicroanalysis 3225 ultramicrobacteria 1951 ultramicrobacterium 255 ultramicrobalance 1467 ultramicrobalances 526 ultramicrochemical 3667 ultramicrochemistry 1026 +ultramicrodetermination 881 ultramicroelectrode 4070 ultramicroelectrodes 6290 ultramicrofiche 3160 @@ -580546,6 +585338,7 @@ ultramicroscopic 97131 ultramicroscopical 3118 ultramicroscopically 3908 ultramicroscopy 7499 +ultramicrosize 7271 ultramicrospectrophotometer 252 ultramicrostructural 102 ultramicrostructure 778 @@ -580610,6 +585403,7 @@ ultraperfect 256 ultraperformance 1711 ultraperipheral 299 ultrapersonal 840 +ultraphone 991 ultraphysical 939 ultraphytoplankton 977 ultrapious 807 @@ -580620,6 +585414,7 @@ ultrapolished 237 ultrapoor 2051 ultraportable 8568 ultraportables 2430 +ultraposh 950 ultrapotassic 6641 ultrapotent 2341 ultrapoverty 465 @@ -580630,12 +585425,14 @@ ultrapractical 1035 ultraprecise 10061 ultraprecision 14775 ultrapredictable 145 +ultrapremium 3642 ultraprestigious 287 ultraprimitive 596 ultraprocessed 1011 ultraproduct 6019 ultraproducts 7262 ultraprofessional 1071 +ultraprofound 174 ultraprogressive 2169 ultraprogressives 325 ultraprotective 589 @@ -580785,6 +585582,7 @@ ultraterrestrial 1480 ultrathick 1972 ultrathin 321697 ultratight 1725 +ultratiny 874 ultratome 2734 ultratough 632 ultratraditional 1796 @@ -580805,6 +585603,7 @@ ultraviscous 247 ultravisible 2907 ultravulnerable 183 ultrawarm 155 +ultrawave 1219 ultraweak 9668 ultraweakly 1861 ultrawealthy 3159 @@ -580962,6 +585761,7 @@ umbriferous 292 umbril 1887 umbrine 264 umbrinous 4563 +umbrose 142 umbrous 2060 umburana 128 umdah 1966 @@ -580971,6 +585771,8 @@ umeboshi 21495 umeclidinium 837 umes 186955 umeshu 403 +umfaan 497 +umfaans 293 umfundisi 10105 umgang 373 umiacs 86 @@ -581090,6 +585892,7 @@ unabrupt 361 unabsolute 494 unabsolvable 323 unabsolved 8716 +unabsorbability 193 unabsorbable 24148 unabsorbed 379237 unabsorbent 2151 @@ -581210,6 +586013,7 @@ unactioned 42 unactivatable 175 unactivated 73144 unactive 18851 +unactivity 365 unactorish 323 unactual 2513 unactualizable 639 @@ -581225,6 +586029,7 @@ unadapted 142428 unadaptedness 1268 unadapting 320 unadaptive 20533 +unadaptiveness 833 unadd 80 unaddable 138 unadded 1158 @@ -581321,6 +586126,7 @@ unaestheticized 345 unafeared 387 unaffable 856 unaffect 3382 +unaffectability 98 unaffectable 1111 unaffected 8707567 unaffectedly 110756 @@ -581351,10 +586157,12 @@ unaffordable 235792 unaffordably 2195 unafforded 291 unafforested 253 +unaffricated 494 unaffrighted 7808 unaffronted 1135 unaflow 14153 unafraid 762895 +unafraidness 520 unaged 80102 unageing 5513 unagglutinated 8634 @@ -581466,6 +586274,7 @@ unalterably 593288 unaltered 3106923 unaltering 13643 unalteringly 855 +unalternating 310 unalternative 86 unaltruistic 1179 unaluminized 1055 @@ -581561,6 +586370,7 @@ unanimistic 1073 unanimists 721 unanimities 2446 unanimity 3646891 +unanimosity 46 unanimous 32532398 unanimously 14660314 unanimousness 456 @@ -581765,6 +586575,7 @@ unascertainably 92 unascertained 220982 unascetic 1651 unascribed 7667 +unasgd 180 unashamed 297387 unashamedly 245701 unashamedness 684 @@ -581775,6 +586586,7 @@ unasked 348442 unasking 2937 unasks 46 unasleep 353 +unaspected 4318 unaspersed 104 unasphalted 506 unaspirate 1181 @@ -581924,6 +586736,7 @@ unattuned 8437 unau 25175 unauctioned 2322 unaudacious 191 +unaudible 639 unaudienced 98 unauditable 7813 unaudited 491016 @@ -582230,6 +587043,7 @@ unbelieving 904355 unbelievingly 65014 unbelievingness 1019 unbelittled 205 +unbelled 647 unbellicose 673 unbelligerent 1978 unbelligerently 90 @@ -582774,6 +587588,7 @@ unburnished 19755 unburns 266 unburnt 192727 unburped 46 +unburred 369 unburrow 233 unburrowed 2320 unburst 8714 @@ -582783,9 +587598,11 @@ unburthening 2947 unburthens 857 unbury 10211 unburying 3737 +unbushed 1839 unbusied 1392 unbusinesslike 164502 unbuskined 87 +unbussed 302 unbusted 687 unbustling 306 unbusy 5885 @@ -582802,6 +587619,7 @@ unbuyable 2716 unbuying 435 unbuzzed 41 unbylined 1849 +unbypassable 185 unbypassed 14948 unc 469267 unca 8047 @@ -582879,6 +587697,7 @@ uncanniness 55160 uncanninesses 52 uncanning 409 uncanny 2543154 +uncannyness 191 uncanonic 531 uncanonical 61591 uncanonically 5077 @@ -582910,6 +587729,7 @@ uncapped 229647 uncapper 3188 uncappers 1221 uncapping 69291 +uncappings 209 uncapricious 979 uncaps 7805 uncapsizable 1574 @@ -583010,6 +587830,7 @@ uncaulked 2522 uncausal 286 uncause 422 uncaused 135439 +uncausedness 361 uncauterised 127 uncauterized 744 uncautioned 1161 @@ -583163,6 +587984,7 @@ unchastity 238031 unchatty 115 unchauffeured 179 unchauvinistic 845 +unchauvinistically 171 uncheatable 746 uncheated 565 uncheck 108810 @@ -583250,6 +588072,8 @@ unchristianlike 7846 unchristianly 5260 unchristianness 225 unchristlike 2223 +unchristlikeness 192 +unchristliness 102 unchromed 2909 unchronicled 23688 unchronological 5107 @@ -583261,6 +588085,7 @@ unchurched 211884 unchurches 2079 unchurching 5487 unchurchlike 1200 +unchurchliness 477 unchurchly 11201 unchurnable 130 unchurned 1481 @@ -583316,6 +588141,7 @@ uncitizenly 168 uncitizens 66 uncivil 335503 uncivilisable 203 +uncivilisation 396 uncivilised 81762 uncivilities 89 uncivility 2108 @@ -583376,6 +588202,7 @@ unclean 3961595 uncleanable 4088 uncleaned 147948 uncleaner 607 +uncleaness 2213 uncleanest 1859 uncleanliest 112 uncleanliness 225123 @@ -583680,6 +588507,7 @@ uncommodious 657 uncommon 16100295 uncommonable 273 uncommoner 393 +uncommoness 304 uncommonest 600 uncommonly 2058839 uncommonness 16736 @@ -583711,6 +588539,7 @@ uncompanioned 8723 uncomparable 8431 uncompared 13369 uncompartmentalized 1029 +uncompartmented 1810 uncompassable 400 uncompassed 1739 uncompassion 113 @@ -583744,6 +588573,7 @@ uncomplemented 16388 uncompletable 1914 uncompleted 1261672 uncompletedness 275 +uncompleteness 555 uncompletion 243 uncomplex 16905 uncomplexed 70850 @@ -583831,6 +588661,7 @@ unconcertedly 120 unconciliated 1041 unconciliating 4459 unconciliatory 15576 +unconciousness 4622 unconcise 84 unconcludable 89 unconcluded 11075 @@ -584123,6 +588954,7 @@ uncontrived 31608 uncontrivedly 163 uncontriving 210 uncontrol 23692 +uncontrolability 354 uncontrollability 55389 uncontrollable 3431451 uncontrollableness 1555 @@ -584238,6 +589070,7 @@ uncorniced 207 uncorny 179 uncoroneted 403 uncorporeal 2352 +uncorporeality 119 uncorpselike 96 uncorpulent 49 uncorraled 50 @@ -584246,6 +589079,7 @@ uncorrectable 57433 uncorrected 1424324 uncorrectible 4341 uncorrectly 766 +uncorrectness 590 uncorrelatable 1062 uncorrelate 939 uncorrelated 1007961 @@ -584327,6 +589161,7 @@ uncovenanted 34371 uncover 4191028 uncoverable 2594 uncovered 9607535 +uncoveredness 3294 uncoverer 1304 uncoverers 427 uncoverest 161 @@ -584492,7 +589327,6 @@ unction 1084517 unctional 34560 unctionless 1297 unctions 217011 -unctiousness 1040 unctorium 1086 uncts 1682 unctuosities 99 @@ -584518,6 +589352,7 @@ uncultivable 30697 uncultivatable 5823 uncultivate 1074 uncultivated 1539300 +uncultivatedness 204 uncultivating 49 uncultivation 1923 unculturability 185 @@ -584643,6 +589478,7 @@ undean 480 undeaned 252 undear 2101 undeath 7680 +undeathliness 115 undebarred 473 undebased 8247 undebatable 58348 @@ -584744,6 +589580,7 @@ undeclined 5065 undeclining 1237 undecodable 2361 undecoded 4863 +undecomposability 122 undecomposable 15453 undecomposed 262747 undecompounded 3211 @@ -584792,6 +589629,7 @@ undefecated 1228 undefective 926 undefendable 8497 undefended 436826 +undefendedness 135 undefensible 3169 undefensive 3764 undefensively 1734 @@ -584866,6 +589704,7 @@ undeletion 1025 undeliberate 7883 undeliberated 2596 undeliberately 2227 +undeliberateness 482 undeliberating 431 undeliberative 1356 undelicate 868 @@ -584912,6 +589751,7 @@ undemolishable 318 undemolished 4693 undemonic 488 undemonized 191 +undemonstrability 588 undemonstrable 44934 undemonstrably 534 undemonstratable 445 @@ -585192,6 +590032,7 @@ underbrew 139 underbrewed 43 underbridge 3451 underbridges 792 +underbright 104 underbrim 3126 underbrims 380 underbritches 404 @@ -585721,8 +590562,10 @@ underfootmen 384 underforest 487 underfortified 76 underframe 300483 +underframed 1307 underframes 82748 underframework 179 +underframing 22885 underfrequency 16849 underfringe 44 underfrock 112 @@ -585869,6 +590712,8 @@ underhonest 48 underhood 41715 underhoof 637 underhook 2072 +underhooked 59 +underhooking 62 underhooks 465 underhorsed 177 underhose 326 @@ -585916,6 +590761,7 @@ underinsured 491877 underinsureds 164 underinsures 318 underinsuring 1855 +underinterpretation 1289 underinventoried 87 underinvest 30921 underinvested 13991 @@ -585932,6 +590778,7 @@ underirrigation 1644 underissue 1825 underissued 5030 underissues 341 +underivability 1679 underivable 8706 underivatised 896 underivative 4138 @@ -586189,6 +591036,8 @@ underorganization 1335 underorganized 6716 underossified 407 underoxidized 1944 +underoxygenated 693 +underoxygenation 524 underpackaged 79 underpackaging 429 underpacking 1855 @@ -586200,6 +591049,7 @@ underpaid 1069873 underpainting 78631 underpaintings 3402 underpair 380 +underpant 843 underpanties 1172 underpants 393008 underparameterization 297 @@ -586512,6 +591362,7 @@ undersample 5983 undersampled 38531 undersamples 1619 undersampling 43634 +undersanded 2335 undersang 56 undersash 669 undersatisfaction 276 @@ -586764,6 +591615,7 @@ understockings 877 understocks 23208 understood 112388998 understoodest 328 +understoodness 148 understored 1800 understorey 39732 understoreys 667 @@ -586814,6 +591666,7 @@ undersweep 214 underswell 2217 underswells 151 undertail 51033 +undertails 303 undertakable 117 undertaker 1378141 undertaker's 191 @@ -586919,6 +591772,7 @@ undertricks 1929 undertrodden 532 undertrousers 793 undertrump 104 +undertubulation 1293 undertunic 9556 undertunics 809 underturnkey 159 @@ -586957,6 +591811,7 @@ undervaluing 165648 undervaluings 113 undervascularized 315 undervegetation 468 +underventilate 418 underventilated 12684 underventilation 11001 undervest 13374 @@ -587073,6 +591928,8 @@ undeserting 43 undeserved 1044264 undeservedly 168382 undeservedness 2196 +undeserver 1932 +undeservers 3297 undeserving 598541 undeservingly 5216 undeservingness 3015 @@ -587111,6 +591968,8 @@ undestroy 83 undestroyable 2111 undestroyed 67285 undestroying 128 +undestructable 209 +undestructible 1097 undestructive 2143 undestructively 212 undetachable 6793 @@ -587134,6 +591993,7 @@ undeterminateness 391 undetermination 1045 undetermine 1732 undetermined 3574259 +undeterminedness 600 undetermines 399 undetermining 865 undeterministic 1514 @@ -587159,6 +592019,7 @@ undevelopment 15402 undeviated 33168 undeviating 315896 undeviatingly 52658 +undeviatingness 105 undevil 73 undeviled 171 undevilish 187 @@ -587208,6 +592069,7 @@ undifferential 936 undifferentially 629 undifferentiatable 416 undifferentiated 2698090 +undifferentiatedness 3072 undifferentiating 7098 undifferentiation 31227 undiffering 61 @@ -587220,6 +592082,7 @@ undiffusible 407 undig 2312 undigestable 2152 undigested 820512 +undigestedness 41 undigestibility 225 undigestible 31287 undigesting 336 @@ -587233,6 +592096,7 @@ undignifiedly 2045 undignifies 175 undignify 1503 undignifying 999 +undignity 213 undiked 9097 undilapidated 381 undilatable 9768 @@ -587501,6 +592365,7 @@ undivinable 812 undivine 12411 undivined 7284 undivinely 647 +undivineness 209 undivining 318 undivisible 2432 undivisive 298 @@ -587647,6 +592512,7 @@ undrenched 1436 undress 1161980 undressable 223 undressed 1612797 +undressedness 164 undresser 674 undressers 255 undresses 69397 @@ -587712,6 +592578,7 @@ undulationists 358 undulations 1085303 undulative 767 undulator 182280 +undulatoriness 357 undulators 42497 undulatory 338798 undulatus 160495 @@ -587791,6 +592658,7 @@ uneasiness 4073344 uneasinesses 13687 uneasing 472 uneasy 7916018 +uneasyness 2857 uneat 1405 uneatable 54223 uneatableness 269 @@ -587825,6 +592693,7 @@ unedit 1395 uneditable 5880 unedited 346286 unediting 767 +uneducability 1500 uneducable 37372 uneducatable 1246 uneducate 1835 @@ -588130,6 +592999,7 @@ unenthusiastic 249914 unenthusiastically 57886 unenticed 985 unenticing 3759 +unenticingly 203 unentire 217 unentitled 16569 unentombed 695 @@ -588169,7 +593039,11 @@ unequable 3669 unequal 12002085 unequaled 1059646 unequality 8813 +unequalization 874 +unequalize 890 unequalized 23494 +unequalizes 197 +unequalizing 5733 unequalled 1332971 unequally 1312745 unequalness 3541 @@ -588244,6 +593118,7 @@ unessence 361 unessential 406374 unessentiality 725 unessentially 2843 +unessentialness 138 unessentials 27977 unestablish 211 unestablishable 277 @@ -588274,6 +593149,7 @@ uneuphonious 4210 uneuphoniously 282 unevacuated 5833 unevadable 2940 +unevadably 51 unevaded 145 unevadible 231 unevaluable 6485 @@ -588281,12 +593157,15 @@ unevaluatable 294 unevaluated 106346 unevangelic 1120 unevangelical 17086 +unevangelised 1683 unevangelized 63543 unevaporated 24129 unevasive 4396 uneven 8559640 unevened 403 +uneveness 27504 unevenest 49 +unevenhandedness 509 unevening 138 unevenly 1608161 unevenness 731738 @@ -588315,6 +593194,7 @@ unexact 2059 unexacted 1961 unexacting 23735 unexactingly 278 +unexactingness 188 unexactness 227 unexaggerable 95 unexaggerated 43787 @@ -588443,6 +593323,7 @@ unexperiential 217 unexperimental 1711 unexperimented 659 unexpert 6965 +unexpertness 89 unexpiable 557 unexpiated 13661 unexpire 2427 @@ -588459,6 +593340,7 @@ unexplaining 751 unexplanatory 2326 unexplicated 12468 unexplicit 3240 +unexplicitly 529 unexplode 230 unexploded 303218 unexploding 350 @@ -588567,11 +593449,13 @@ unfairer 1268 unfairest 4685 unfairly 3496419 unfairminded 97 +unfairmindedness 169 unfairness 2128302 unfairnesses 8646 unfairylike 358 unfaith 51241 unfaithful 1713485 +unfaithfullness 581 unfaithfully 34892 unfaithfulness 501497 unfaithfulnesses 563 @@ -588700,6 +593584,7 @@ unfearing 16469 unfearingly 1107 unfeasibility 24459 unfeasible 501049 +unfeasibleness 106 unfeasibly 5677 unfeasted 307 unfeather 3885 @@ -588801,6 +593686,7 @@ unfile 1742 unfiled 126883 unfiles 283 unfilial 80709 +unfiliality 1500 unfilially 1639 unfilialness 311 unfiling 1447 @@ -588905,6 +593791,7 @@ unflappability 8937 unflappable 159588 unflappableness 73 unflappably 4439 +unflapped 4761 unflapping 579 unflared 5575 unflaring 338 @@ -588939,6 +593826,7 @@ unfletched 957 unflex 1483 unflexed 12252 unflexes 332 +unflexibility 311 unflexible 5137 unflexing 4435 unflicked 150 @@ -589106,6 +593994,7 @@ unforgeable 9842 unforgeably 100 unforged 6586 unforget 4363 +unforgetableness 107 unforgetful 8146 unforgetfulness 1618 unforgettability 443 @@ -589248,6 +594137,7 @@ unfrenzied 1579 unfrequent 231552 unfrequented 287476 unfrequently 1558472 +unfrescoed 240 unfresh 5449 unfreshened 1071 unfreshness 241 @@ -589301,6 +594191,7 @@ unfructuous 335 unfrugal 1289 unfruited 1053 unfruitful 469282 +unfruitfullness 54 unfruitfully 4379 unfruitfulness 37947 unfruiting 137 @@ -589324,6 +594215,7 @@ unfulfil 365 unfulfill 443 unfulfillable 29226 unfulfilled 1655068 +unfulfilledness 311 unfulfilling 86538 unfulfillment 32490 unfulfillments 640 @@ -589432,6 +594324,7 @@ ungarlanded 3430 ungarlanding 46 ungarmented 1230 ungarnered 6962 +ungarnishable 105 ungarnished 19794 ungarrisoned 15801 ungarrulous 319 @@ -589609,6 +594502,7 @@ ungodding 119 ungodlier 210 ungodliest 2303 ungodlike 8925 +ungodlikeness 76 ungodlily 790 ungodliness 224583 ungodlinesses 549 @@ -589779,7 +594673,6 @@ unguent 125202 unguentaria 6786 unguentarium 5599 unguentary 334 -unguentous 525 unguents 127869 unguerdoned 313 ungues 34908 @@ -589834,6 +594727,7 @@ ungyved 1688 ungzip 121 unh 52331 unhabilitated 121 +unhabitableness 99 unhabited 3038 unhabitual 5523 unhabitually 123 @@ -589893,6 +594787,7 @@ unhandsomeness 1324 unhandsomest 594 unhandy 79779 unhang 4038 +unhangable 177 unhanged 18058 unhanging 1990 unhangs 111 @@ -589908,6 +594803,7 @@ unhappily 2077085 unhappiness 2856511 unhappinesses 9245 unhappy 17153821 +unhappyness 704 unharassed 17769 unharbor 306 unharbored 1257 @@ -589992,6 +594888,7 @@ unhealthiness 104530 unhealthinesses 95 unhealthsome 63 unhealthy 4877435 +unhealthyness 247 unheaped 567 unhear 2778 unhearable 4349 @@ -590113,6 +595010,7 @@ unhissed 224 unhistoric 29521 unhistorical 240733 unhistorically 12469 +unhistoricity 1197 unhistoried 1681 unhistory 707 unhistrionic 1405 @@ -590154,10 +595052,14 @@ unholstered 21985 unholstering 3330 unholsters 1133 unholy 1562141 +unhome 1100 +unhomed 2903 unhomelike 9444 unhomelikeness 427 unhomeliness 4361 unhomely 20248 +unhomes 69 +unhoming 638 unhomogeneity 2430 unhomogeneous 13836 unhomogeneously 311 @@ -590448,6 +595350,7 @@ unidentified 4692260 unidentifying 429 unideological 6375 unideologically 206 +unidexterity 1220 unidigitate 163 unidimensional 343163 unidimensionality 49112 @@ -590576,6 +595479,7 @@ unijunctions 1072 unike 2235 unikonts 757 unilabiate 869 +unilacunar 5992 unilamellar 73492 unilamellate 199 unilaminar 6981 @@ -590742,6 +595646,7 @@ unimpressable 312 unimpressed 630078 unimpressibility 1049 unimpressible 17066 +unimpressibleness 161 unimpressibly 111 unimpressing 58 unimpression 63 @@ -591017,6 +595922,7 @@ uninsured 4112178 uninsureds 4244 unintegral 1169 unintegrated 169748 +unintegration 2876 unintellectual 70175 unintellectualism 213 unintellectuality 1141 @@ -591067,6 +595973,7 @@ unintermingled 115 unintermitted 36863 unintermittedly 1440 unintermittent 18929 +unintermittently 5781 unintermitting 26134 unintermittingly 6089 unintermixed 139 @@ -591084,6 +595991,7 @@ uninterruptably 271 uninterrupted 5574771 uninterruptedly 821844 uninterruptedness 4581 +uninterruptibility 574 uninterruptible 140424 uninterruptibly 339 uninterrupting 393 @@ -591183,6 +596091,8 @@ unionbuster 712 unionbusters 1327 unionbusting 11457 unioned 7122 +unioneer 861 +unioneers 3128 unionic 145 unionid 29076 unionids 19330 @@ -591227,6 +596137,7 @@ unipartisan 281 unipartite 5521 uniparty 1041 unipartyism 363 +unipectinate 2523 uniped 2950 unipedal 1912 unipedicular 928 @@ -591456,6 +596367,7 @@ univariate 870327 univariated 113 univariately 2979 univariates 1050 +univarsity 1401 univectorial 1256 univentricular 22572 univerbal 241 @@ -591490,6 +596402,7 @@ universally 15052463 universalness 1905 universals 1283683 universanimous 377 +universatility 763 universe 37100597 universeful 92 universes 939624 @@ -591551,6 +596464,7 @@ unjazzed 157 unjazzy 229 unjealous 3830 unjealously 349 +unjelled 1003 unjellied 163 unjeopardized 474 unjesting 106 @@ -591628,7 +596542,6 @@ unjustifying 227 unjustly 4250385 unjustness 29349 unjuvenile 112 -unkard 697 unke 3204 unked 4200 unkeeled 6789 @@ -591680,6 +596593,7 @@ unkingdom 132 unkinged 3659 unkinging 405 unkinglike 1327 +unkingliness 324 unkingly 17835 unkings 515 unkink 6465 @@ -591821,6 +596735,7 @@ unlavish 471 unlavished 310 unlawed 987 unlawful 32058812 +unlawfullness 631 unlawfully 7188244 unlawfulness 277638 unlaws 971 @@ -591880,6 +596795,7 @@ unleavable 203 unleave 217 unleaved 2618 unleavened 595198 +unleavenedness 91 unleaves 128 unleaving 4135 unlecherous 83 @@ -591951,6 +596867,7 @@ unlids 239 unlienable 233 unlife 6948 unlifelike 8229 +unlifelikeness 164 unliftable 1620 unlifted 17977 unlifting 3269 @@ -592054,6 +596971,7 @@ unlittered 6161 unlittle 381 unliturgical 2961 unlivable 80494 +unlivableness 186 unlivably 303 unlive 3219 unliveable 6849 @@ -592063,6 +596981,7 @@ unlivened 259 unliveried 1194 unlives 763 unliving 17450 +unlivingness 239 unload 3496108 unloadable 1886 unloaded 5292800 @@ -592211,6 +597130,7 @@ unmail 414 unmailable 59983 unmailed 38606 unmaimed 7706 +unmaintainability 335 unmaintainable 12848 unmaintained 42242 unmajestic 1699 @@ -592497,7 +597417,6 @@ unmerchantlike 279 unmerciful 241644 unmercifully 484939 unmercifulness 8734 -unmerciless 213 unmercurial 213 unmercy 349 unmeretricious 317 @@ -592550,6 +597469,7 @@ unmethod 313 unmethodical 39080 unmethodically 4709 unmethodicalness 128 +unmethodized 1383 unmethodological 445 unmethods 108 unmethylated 83676 @@ -592685,6 +597605,7 @@ unmodernity 455 unmodernize 184 unmodernized 11233 unmodest 906 +unmodifiability 1462 unmodifiable 34519 unmodifiableness 226 unmodifiably 210 @@ -592885,11 +597806,13 @@ unnamed 3564089 unnames 794 unnaming 5365 unnapped 2031 +unnarcotized 1349 unnarratable 3243 unnarrated 6080 unnarrowed 1777 unnational 7009 unnationalistic 531 +unnationality 127 unnationalized 695 unnative 958 unnatural 7362324 @@ -592969,6 +597892,7 @@ unneurotic 3981 unneutered 7287 unneutral 125465 unneutralised 1339 +unneutrality 10615 unneutralized 62735 unneutrally 766 unnewsworthy 3167 @@ -593144,6 +598068,7 @@ unoffending 310767 unoffendingly 531 unoffensive 9119 unoffensively 943 +unoffensiveness 147 unoffered 22915 unofficed 123 unofficered 2977 @@ -593202,6 +598127,7 @@ unorderable 1269 unordered 399270 unorderedness 227 unordering 527 +unorderliness 184 unorderly 7374 unorders 265 unordinarily 319 @@ -593422,6 +598348,7 @@ unpartaken 638 unpartaking 517 unparted 19880 unpartial 3397 +unpartiality 238 unpartially 630 unparticipated 8033 unparticipating 3167 @@ -593583,8 +598510,10 @@ unperfectness 1945 unperfidious 163 unperforate 330 unperforated 74706 +unperform 209 unperformable 7714 unperformed 202138 +unperforming 3129 unperfumed 9842 unperfused 13784 unperiled 55 @@ -593850,6 +598779,7 @@ unpleasing 333605 unpleasingly 5692 unpleasingness 381 unpleasurable 42409 +unpleasurableness 238 unpleasurably 1121 unpleasure 90048 unpleat 434 @@ -593861,6 +598791,7 @@ unpled 3936 unpledged 202112 unplenished 89 unplentiful 705 +unpliability 364 unpliable 9651 unpliableness 299 unpliancy 593 @@ -593944,6 +598875,7 @@ unpollinated 17777 unpollutable 743 unpollute 994 unpolluted 447534 +unpollutedness 119 unpolluting 1291 unpolyadenylated 318 unpolymerised 1177 @@ -593974,6 +598906,7 @@ unpopulous 3715 unpornographic 231 unporous 759 unport 1217 +unportability 117 unportable 2797 unported 2921 unportended 50 @@ -593992,11 +598925,14 @@ unpossessed 39768 unpossessive 3826 unpossibility 1112 unpossible 12760 +unpost 1367 unposted 50930 +unposting 399 unpostmarked 1289 unpostmodern 545 unpostponable 4275 unpostponed 574 +unposts 997 unpostulated 279 unpot 1064 unpotable 11583 @@ -594012,10 +598948,13 @@ unpowdered 29681 unpower 1444 unpowered 108081 unpowerful 2352 +unpracticability 922 unpracticable 11421 +unpracticableness 104 unpractical 268161 unpracticality 2556 unpractically 8447 +unpracticalness 1525 unpracticed 133490 unpractised 150088 unpragmatic 5823 @@ -594046,6 +598985,7 @@ unprecious 1179 unprecipitate 303 unprecipitated 20429 unprecise 19022 +unpreciseness 447 unprecluded 154 unprecocious 859 unpredated 119 @@ -594143,6 +599083,7 @@ unpretentiously 41023 unpretentiousness 36396 unpretreated 2959 unprettied 235 +unprettiest 113 unprettified 1535 unprettily 946 unprettiness 351 @@ -594267,6 +599208,7 @@ unprojected 11452 unprojecting 595 unproliferated 237 unprolific 13954 +unprolificness 131 unprolonged 1050 unpromiscuous 251 unpromise 502 @@ -594276,7 +599218,9 @@ unpromisingly 7930 unpromotable 3671 unpromoted 20529 unprompted 74316 +unpromptness 43 unpromulgated 4690 +unpronged 323 unpronounceable 142733 unpronounceables 607 unpronounceably 691 @@ -594385,6 +599329,7 @@ unprovoked 824982 unprovokedly 2903 unprovokes 2770 unprovoking 1795 +unprovokingly 136 unprudish 798 unpruned 142690 unprurient 200 @@ -594465,6 +599410,7 @@ unpurposes 48 unpurposing 118 unpurposive 1812 unpurposively 150 +unpurposiveness 82 unpurse 573 unpursed 1567 unpurses 136 @@ -594644,8 +599590,10 @@ unrates 90 unratifiable 617 unratified 137262 unrating 77 +unrational 7224 unrationalised 919 unrationalistic 275 +unrationality 234 unrationalizable 975 unrationalized 21895 unrationed 36767 @@ -594686,6 +599634,7 @@ unreactable 301 unreacted 590097 unreactivated 336 unreactive 243901 +unreactiveness 383 unreactivity 7051 unread 542237 unreadability 17574 @@ -594703,9 +599652,11 @@ unreading 3949 unreads 220 unready 230813 unreal 3339504 +unrealisability 169 unrealisable 15588 unrealise 257 unrealised 49174 +unrealisedness 119 unrealises 41 unrealising 427 unrealism 32005 @@ -594722,6 +599673,7 @@ unrealizable 191768 unrealizably 489 unrealize 2033 unrealized 2184061 +unrealizedness 85 unrealizes 798 unrealizing 3629 unreally 4819 @@ -594787,11 +599739,13 @@ unreclaimably 162 unreclaimed 139105 unreclaiming 517 unreclined 60 +unrecognisability 382 unrecognisable 63818 unrecognisably 2493 unrecognised 112179 unrecognising 1402 unrecognition 4259 +unrecognizability 9018 unrecognizable 850905 unrecognizableness 759 unrecognizably 27282 @@ -595279,6 +600233,7 @@ unrespited 1218 unresplendent 289 unresponded 4755 unresponding 9109 +unresponsibility 641 unresponsible 10611 unresponsive 1988259 unresponsively 6547 @@ -595332,7 +600287,7 @@ unretained 23212 unretaliated 550 unretaliating 497 unretaliatory 91 -unretarded 25367 +unretarded 25367 p unretentive 5556 unreticent 2687 unreticulated 786 @@ -595351,6 +600306,7 @@ unretreating 982 unretrenched 172 unretrievable 5818 unretrieved 13731 +unretrofitted 3847 unretted 4705 unreturnable 8860 unreturnably 141 @@ -595510,6 +600466,7 @@ unrobes 774 unrobing 4789 unrobotic 197 unrobust 1775 +unrobustness 133 unrocked 1884 unrodded 9044 unroll 316163 @@ -595528,6 +600485,7 @@ unromantical 347 unromantically 15491 unromanticised 206 unromanticized 7240 +unromanticizing 45 unroof 12471 unroofed 160748 unroofing 47225 @@ -595603,6 +600561,7 @@ unruliest 1768 unrulily 320 unruliness 105929 unruly 2388941 +unrulyness 98 unruminated 155 unrummaged 595 unrumored 289 @@ -595730,6 +600689,7 @@ unsanitated 3242 unsanitation 1241 unsanitised 221 unsanitized 20916 +unsanity 2179 unsaponifiable 185879 unsaponifiables 16006 unsaponified 23776 @@ -595920,6 +600880,7 @@ unscrunched 601 unscrunching 112 unscrupled 515 unscrupling 120 +unscrupulosity 2085 unscrupulous 3723159 unscrupulously 145604 unscrupulousness 114406 @@ -595960,6 +600921,7 @@ unseasonably 344849 unseasonal 49618 unseasonally 8705 unseat 417181 +unseatable 507 unseatbelted 140 unseated 374447 unseater 46 @@ -596014,12 +600976,14 @@ unseemliness 41065 unseemlinesses 297 unseemly 1437045 unseen 6834297 +unseenness 232 unseens 1847 unsees 279 unsegmented 148048 unsegregable 1147 unsegregated 102592 unseizable 17434 +unseizableness 122 unseize 239 unseized 7243 unseizing 102 @@ -596043,6 +601007,7 @@ unselfish 2845822 unselfishly 514612 unselfishness 739345 unselfishnesses 418 +unselfpitying 404 unselfs 588 unsell 8629 unsellable 12645 @@ -596059,6 +601024,7 @@ unsensationalist 82 unsensationalized 1069 unsense 796 unsensed 13347 +unsensibility 91 unsensible 7773 unsensibly 438 unsensing 627 @@ -596218,6 +601184,7 @@ unshapes 1502 unshaping 833 unshar 561 unsharable 8807 +unsharded 62 unshare 5187 unshareable 7326 unshared 314994 @@ -596263,6 +601230,7 @@ unshelling 483 unshells 48 unshelterable 117 unsheltered 157082 +unshelteredness 125 unsheltering 1678 unshelve 685 unshelved 3776 @@ -596390,6 +601358,7 @@ unsight 7576 unsightable 93 unsighted 13762 unsighting 156 +unsightlessness 42 unsightliness 82570 unsightlinesses 349 unsightly 2010563 @@ -596446,6 +601415,7 @@ unsinister 1037 unsinkability 2946 unsinkable 122632 unsinkableness 150 +unsinkables 201 unsinkably 239 unsinking 1127 unsinned 359 @@ -596474,12 +601444,14 @@ unskewing 203 unskiable 801 unskied 377 unskilful 325629 +unskilfullness 864 unskilfully 89116 unskilfulness 79670 unskill 5551 unskilled 7159295 unskilledness 86 unskillful 279879 +unskillfullness 1441 unskillfully 84638 unskillfulness 86216 unskimmed 28412 @@ -596650,6 +601622,7 @@ unsoftened 39336 unsoftening 576 unsoftly 186 unsoggy 213 +unsoil 152 unsoilable 491 unsoiled 78991 unsoiling 102 @@ -596661,6 +601634,7 @@ unsoldered 27701 unsoldering 13964 unsolders 2759 unsoldierlike 8839 +unsoldierliness 61 unsoldierly 32958 unsoled 1293 unsolemn 4628 @@ -596865,12 +601839,14 @@ unsplitting 1054 unspoil 1336 unspoilable 3124 unspoiled 954672 +unspoiledness 531 unspoiling 591 unspoilt 77339 unspoke 4165 unspoked 144 unspoken 2292971 unspokenly 1903 +unspokenness 787 unsponged 493 unsponsored 65474 unspontaneity 269 @@ -596888,6 +601864,8 @@ unsporting 31281 unsportingly 1847 unsportive 443 unsportsmanlike 111798 +unsportsmanlikeness 44 +unsportsmanliness 103 unsportsmanly 1257 unsporty 440 unsporulated 7519 @@ -596992,6 +601970,7 @@ unstammering 195 unstamp 286 unstamped 244520 unstampeded 273 +unstan 1507 unstanchable 1649 unstanchably 44 unstanched 4157 @@ -597086,6 +602065,7 @@ unstickered 386 unsticking 9142 unsticks 2274 unsticky 1981 +unstiff 912 unstiffen 2450 unstiffened 76176 unstiffening 1177 @@ -597184,6 +602164,7 @@ unstrand 460 unstranded 4035 unstranding 2449 unstrange 1527 +unstrangeness 89 unstrangle 144 unstrangled 1191 unstrangulated 445 @@ -597440,6 +602421,7 @@ unsuperable 1776 unsupercharged 19652 unsuperficial 415 unsuperfluous 2248 +unsuperfluousness 277 unsuperintended 573 unsuperior 186 unsupernatural 883 @@ -597495,6 +602477,7 @@ unsurmised 3545 unsurmountable 150849 unsurmountably 555 unsurmounted 5846 +unsurpassability 2458 unsurpassable 190158 unsurpassably 11344 unsurpassed 2701195 @@ -597648,6 +602631,7 @@ unsyndicated 1605 unsynergized 493 unsyntactic 207 unsyntactical 851 +unsyntactically 182 unsynthesised 345 unsynthesizable 1009 unsynthesized 7209 @@ -597713,6 +602697,7 @@ untamable 111167 untamableness 1271 untamably 1214 untame 2965 +untameability 308 untameable 41614 untameableness 423 untameably 363 @@ -597751,8 +602736,10 @@ untar 7501 untared 1679 untargetable 1427 untargeted 45651 +untargetted 415 untaring 45 untarmacked 108 +untarnishability 102 untarnishable 6897 untarnished 295219 untarnisht 184 @@ -597797,10 +602784,12 @@ unteaching 3243 unteam 77 unteamed 251 untearable 3986 +untearful 1120 unteasable 155 unteased 955 unteasing 77 untechnical 105968 +untechnicality 155 untechnically 5385 untedious 197 unteethed 276 @@ -597912,6 +602901,7 @@ untheatricalized 89 untheatrically 880 untheistic 447 unthematic 8095 +unthematically 2445 unthematizable 1186 unthematized 6554 unthemed 727 @@ -598007,6 +602997,7 @@ untidiness 153868 untidinesses 674 untidy 1054383 untidying 774 +untidyness 2627 untie 677342 untieable 401 untied 1248912 @@ -598081,6 +603072,7 @@ untoiling 1793 untoilsome 53 untokenized 220 untold 2853325 +untoleranced 1061 untolerated 2050 untolerized 176 untolled 4093 @@ -598169,6 +603161,7 @@ untragically 439 untrailed 2290 untrain 3299 untrainable 23053 +untrainableness 161 untrained 2984842 untrainedness 106 untraining 1581 @@ -598285,6 +603278,7 @@ untribal 213 untrickable 121 untricked 495 untried 1823752 +untriedness 48 untrifling 147 untriggered 6676 untrilled 2769 @@ -598338,6 +603332,7 @@ untrust 8806 untrustable 1744 untrusted 110431 untrustful 2925 +untrustfulness 193 untrustiness 208 untrusting 40183 untrustingly 684 @@ -598489,6 +603484,7 @@ unusuals 5102 unusurious 93 unusurped 337 unutilised 8759 +unutility 134 unutilizable 4902 unutilized 261423 unutterabilities 844 @@ -598925,7 +603921,9 @@ unwieldiest 529 unwieldily 2199 unwieldiness 56631 unwielding 2353 +unwieldliness 788 unwieldly 137853 +unwieldyness 118 unwifed 807 unwifelike 325 unwifeliness 126 @@ -599003,8 +604001,10 @@ unwithering 10906 unwithheld 2480 unwithstandable 362 unwithstood 2251 +unwitness 76 unwitnessable 857 unwitnessed 72973 +unwitnessing 459 unwitted 1958 unwittily 536 unwitting 795644 @@ -599056,9 +604056,11 @@ unworking 8429 unworkmanlike 33527 unworkmanly 76 unworks 1083 +unworldiness 912 unworldliest 100 unworldliness 66985 unworldly 285955 +unworldy 740 unwormed 839 unworn 185281 unworried 68933 @@ -599079,8 +604081,10 @@ unworthiest 14580 unworthily 229343 unworthiness 642254 unworthinesses 761 +unworthness 114 unworthwhile 2009 unworthy 7780290 +unworthyness 608 unwotting 243 unwound 550664 unwoundable 328 @@ -599469,6 +604473,7 @@ upheaval 3127279 upheavals 1433798 upheave 24430 upheaved 146152 +upheavement 428 upheaver 280 upheavers 239 upheaves 11250 @@ -599490,6 +604495,7 @@ upholdeth 27476 upholding 4490667 upholdings 847 upholds 1202751 +upholdster 132 uphole 34332 upholster 40270 upholstered 1645333 @@ -599683,6 +604689,9 @@ upregulations 600 upregulator 524 upregulators 404 upregulatory 922 +uprend 318 +uprending 123 +uprent 197 upride 62 upridge 433 upridging 126 @@ -599820,6 +604829,8 @@ upsizing 19271 upskill 1665 upskilled 1173 upskilling 8580 +upskip 194 +upskips 94 upskirt 1289 upskirting 642 upskirts 119 @@ -599926,6 +604937,7 @@ upsuck 504 upsun 662 upsurge 1468529 upsurged 1013 +upsurgence 5721 upsurges 44848 upsurging 19438 upsurgings 1467 @@ -600128,6 +605140,7 @@ uranite 10822 uranites 484 uranitic 124 uranium 21352629 +uraniumaires 133 uraniums 2632 uranoan 2466 uranocene 4319 @@ -600534,6 +605547,7 @@ urnfield 6635 urnfields 4576 urnful 1051 urnfuls 121 +urniform 642 urnless 468 urnlike 3062 urns 1142345 @@ -600766,7 +605780,6 @@ urotropine 19293 urovaginal 477 urovirulence 557 uroxanate 428 -uroxanic 848 urp 13230 urrhodin 569 urries 1332 @@ -600883,6 +605896,7 @@ userless 163 userlist 2041 usermode 2305 username 773339 +usernamed 241 usernames 105018 users 68756596 usership 7974 @@ -601190,7 +606204,6 @@ utters 1393612 utu 27067 utukku 1749 utz 11461 -uu 373244 uudecode 7211 uudecoded 227 uudecoding 466 @@ -601199,7 +606212,6 @@ uuencoded 4600 uuencoding 1569 uuid 13034 uuids 333 -uus 20792 uv 1347611 uva 124422 uvae 10848 @@ -601283,6 +606295,7 @@ vPFC 767 vPs 1464 vRNA 17705 vRNAs 1805 +vaad 2916 vaalite 460 vaastu 288 vab 16454 @@ -601396,6 +606409,8 @@ vacillatory 4733 vacked 284 vacking 125 vacoufs 208 +vacreation 1754 +vacreator 932 vacs 18564 vacua 152648 vacual 172 @@ -601762,6 +606777,7 @@ valiha 2984 valihas 125 valinamide 506 valine 721557 +valinemia 398 valines 5291 valinomycin 119136 valis 8305 @@ -601995,6 +607011,7 @@ vampirizing 1501 vampirologist 323 vampirologists 216 vampirology 575 +vampiry 129 vampish 8397 vampishly 658 vampishness 287 @@ -602482,10 +607499,14 @@ various 456329535 variously 7066005 variousness 25372 variphone 335 +variphones 273 varis 7594 variscite 42716 variscites 66 varisized 1372 +varispeed 4564 +varispeeded 191 +varispeeding 152 varistor 83661 varistors 68147 varitron 204 @@ -602783,6 +607804,7 @@ vassalage 372103 vassalages 1032 vassaldom 4217 vassaldoms 187 +vassaled 437 vassaless 256 vassalhood 411 vassalic 3714 @@ -602870,6 +607892,7 @@ vaudevillians 42440 vaudevillist 2928 vaudevillists 1367 vaudoo 216 +vaughanite 2388 vault 8119192 vaulted 2034679 vaulter 77885 @@ -602924,6 +607947,7 @@ vayvodes 187 vazir 5939 vazirs 992 vb 488634 +vbg 675 vblogs 146 vbs 21281 vcRNA 449 @@ -602936,6 +607960,7 @@ vealed 131765 vealer 5724 vealers 42062 veales 555 +vealiness 349 vealing 19931 veallike 96 veals 60321 @@ -603056,6 +608081,7 @@ vegans 114464 vegas 36389 vegecultural 684 vegeculture 3037 +veged 249 vegemite 2592 veges 2542 vegetability 1016 @@ -603105,6 +608131,7 @@ veggo 2221 veghar 81 vegie 1732 vegies 4217 +veging 181 vego 1624 vegs 5694 vehemence 1681331 @@ -603352,7 +608379,6 @@ venalization 230 venalized 191 venally 3980 venanzite 543 -venary 769 venatic 2288 venatica 971 venatical 216 @@ -603394,6 +608420,9 @@ vendor 18987170 vendored 3685 vendoring 2137 vendors 10725219 +vendorship 2827 +vendorships 109 +vendours 60 vendress 304 vends 37558 vendue 209667 @@ -604020,6 +609049,8 @@ verificationistic 171 verificationists 2619 verifications 485761 verificative 998 +verificator 742 +verificators 229 verificatory 4375 verified 19146367 verifieds 49 @@ -604037,6 +609068,7 @@ verisimilarly 646 verisimilitude 654748 verisimilitudes 5630 verisimilitudinous 3396 +verisimilous 194 verism 9589 verismo 51734 verist 3108 @@ -604854,6 +609886,7 @@ vibrative 6469 vibrato 558654 vibratoless 4360 vibratome 11700 +vibratone 311 vibrator 1269144 vibrators 439283 vibratory 1767336 @@ -604881,6 +609914,8 @@ vibrissal 21631 vibroacoustic 23656 vibroarthrographic 443 vibroarthrography 107 +vibroblade 3418 +vibroblades 695 vibrocompaction 3127 vibroflot 3185 vibroflotation 7031 @@ -604893,6 +609928,7 @@ vibrograph 8539 vibrographs 2041 vibroid 682 vibroimpact 2045 +vibroknife 353 vibromassage 515 vibromechanical 273 vibrometer 46533 @@ -605148,7 +610184,6 @@ videobook 173 videobooks 187 videobronchoscope 203 videobronchoscopy 304 -videocall 195 videocam 7520 videocams 3015 videocapillaroscopy 623 @@ -605158,9 +610193,6 @@ videocast 2485 videocasting 1024 videocasts 2471 videocentric 407 -videochat 962 -videochats 156 -videochatting 82 videoclips 5353 videocon 1039 videocracy 432 @@ -605360,6 +610392,8 @@ viewlets 632 viewly 530 viewphone 1369 viewphones 103 +viewplate 3225 +viewplates 756 viewpoint 16442834 viewpointless 111 viewpoints 4898633 @@ -605748,6 +610782,7 @@ vinified 17241 vinifies 1207 vinify 3407 vinifying 1888 +vininess 302 vining 67052 vinings 213 vinney 283 @@ -605922,6 +610957,7 @@ violins 1770818 violist 116029 violists 21749 violle 1370 +violles 425 viologen 81898 viologens 9267 violoncelli 3849 @@ -605960,6 +610996,7 @@ viperous 30107 viperously 332 vipers 498272 vipery 228 +vipper 600 viprostol 677 viqualine 508 vira 38847 @@ -606018,6 +611055,7 @@ virgaters 2105 virgates 18241 virger 622 virgers 243 +virges 444 virgie 658 virgil 21293 virgilite 144 @@ -606399,6 +611437,12 @@ visionphone 259 visionproof 56 visions 11158514 visiospatial 701 +visiphone 4369 +visiphones 121 +visiplate 4257 +visiplates 1139 +visiscreen 1391 +visiscreens 163 visit 112108122 visitability 5866 visitable 13869 @@ -606416,7 +611460,6 @@ visited 55325381 visitedst 511 visitee 2565 visitees 1103 -visiter 177408 visiters 216695 visites 13103 visitest 41483 @@ -607108,6 +612151,8 @@ voken 69 vol 104988864 vola 65344 volador 7716 +voladora 1361 +voladoras 623 voladors 96 volae 2263 volaemia 130 @@ -607415,6 +612460,8 @@ volvoxes 403 volvular 256 volvulated 200 volvuli 1113 +volvulize 112 +volvulized 108 volvulus 447621 volyer 101 volynskite 215 @@ -607759,6 +612806,7 @@ vrykolaka 94 vrykolakas 3482 vs 11098504 vsby 2074 +vsed 97131 vt 880274 vta 10900 vtable 10816 @@ -607766,7 +612814,6 @@ vtables 1910 vtbl 3003 vtbls 432 vti 34419 -vts 10733 vude 293 vug 60404 vugg 584 @@ -607919,6 +612966,8 @@ vurp 62 vushka 119 vuvuzela 1556 vuvuzelas 1340 +vw 104567 +vws 2638 vyakarana 1727 vyaz 200 vyed 1027 @@ -608126,6 +613175,7 @@ waggonette 9446 waggonettes 1443 waggoning 1925 waggonload 1109 +waggonloads 1045 waggonry 107 waggons 471788 waggy 2696 @@ -608208,6 +613258,7 @@ waifs 272464 waifts 130 waifu 224 waify 674 +waights 3534 waikavirus 218 wail 2417695 wailed 1367358 @@ -608330,7 +613381,6 @@ waivers 3723897 waivery 52 waivode 536 waivodes 85 -waivure 675 waiwode 898 waiwodes 565 waiwodeship 97 @@ -608477,12 +613527,15 @@ wallaba 5131 wallabas 239 wallabies 70155 wallaby 102063 +wallah 39302 +wallahi 553 wallahs 21818 wallaroo 8791 wallaroos 3539 wallas 6964 wallball 358 wallbanger 689 +wallbanging 65 wallboard 612963 wallboards 34363 wallbox 2283 @@ -608609,6 +613662,7 @@ wames 2190 wammus 800 wamp 8290 wampee 2395 +wampi 1201 wampishes 112 wampishing 147 wamps 2055 @@ -608778,7 +613832,6 @@ wantwits 131 wanty 1542 wany 8165 wanze 159 -wap 45074 wapato 10753 wapatoes 551 wapatoo 1250 @@ -608900,7 +613953,6 @@ wardsmen 1937 wardswoman 753 wardswomen 247 ware 8893817 -wared 10930 warefully 121 warehou 6794 warehousable 567 @@ -608973,7 +614025,6 @@ warine 795 warines 418 wariness 578853 warinesses 91 -waring 39557 waringin 2637 waringins 347 warism 1618 @@ -609000,6 +614051,8 @@ warmable 275 warmaker 3340 warmakers 19933 warman 1456 +warmaster 3590 +warmasters 327 warmate 184 warmblood 7940 warmblooded 89889 @@ -609105,6 +614158,7 @@ warrantable 126837 warrantableness 1346 warrantably 21853 warranted 16129128 +warrantedly 4337 warrantedness 655 warrantee 115804 warrantees 31231 @@ -609566,9 +614620,12 @@ waterbombers 155 waterbombing 85 waterbombs 167 waterborne 1175311 +waterbougets 235 waterbreak 4864 waterbreaks 3281 waterbuck 41783 +waterbucket 3879 +waterbuckets 1949 waterbucks 5560 waterchamber 5197 waterchambers 974 @@ -609884,6 +614941,7 @@ wavelets 629272 wavelike 230189 wavellite 25797 wavellites 131 +wavellitic 173 wavemaker 26805 wavemakers 4298 wavemark 198 @@ -609909,6 +614967,7 @@ waveringly 25915 waveringness 222 waverings 36638 wavers 329906 +waverunner 1435 wavery 33085 waves 58875489 waveshape 114565 @@ -610126,6 +615185,7 @@ weakhanded 971 weakheaded 1645 weakhearted 5420 weakheartedness 263 +weakie 510 weakiness 295 weakish 7856 weaklier 2333 @@ -610206,11 +615266,14 @@ weaponlike 2612 weaponmaker 544 weaponmakers 770 weaponmaking 803 +weaponmaster 320 weaponproof 45 weaponries 889 weaponry 1682539 weapons 58693397 weaponshaw 172 +weaponsmaster 985 +weaponsmasters 67 weaponsmen 779 weaponsmith 1800 weaponsmithing 50 @@ -610370,6 +615433,7 @@ weazels 1807 weazen 15860 weazened 29203 weazeny 195 +weazles 723 web 28844433 webbased 49491 webbed 697276 @@ -610418,6 +615482,8 @@ webhead 326 webheads 419 webhook 714 webhooks 397 +webhost 709 +webhosts 233 webification 250 webified 338 webify 296 @@ -610530,6 +615596,7 @@ wedgers 662 wedges 3011332 wedgetail 468 wedgetails 121 +wedgewire 3560 wedgewise 1009 wedgie 15444 wedgied 291 @@ -610933,6 +616000,8 @@ wellposedness 5363 wellpowered 1090 wellrested 3033 wells 41052648 +wellscreen 1961 +wellscreens 386 wellside 1900 wellsites 7678 wellspring 331915 @@ -611578,7 +616647,9 @@ wheelslide 2950 wheelslip 2378 wheelsman 44644 wheelsmen 7680 +wheelspan 50 wheelspin 8659 +wheelspinning 2706 wheelstand 754 wheelstanding 81 wheelstands 331 @@ -611641,6 +616712,7 @@ whelps 155645 when 2368151580 when'd 3307 when'll 1972 +when're 3148 when's 93 whenabout 83 whenabouts 701 @@ -611840,6 +616912,7 @@ whimpling 261 whims 1814060 whimsey 45438 whimseys 11322 +whimsic 572 whimsical 2070487 whimsicalist 112 whimsicalities 35351 @@ -612020,6 +617093,8 @@ whirlpooled 1865 whirlpooling 3098 whirlpools 355801 whirls 623721 +whirlstorm 321 +whirlstorms 64 whirlwig 226 whirlwind 2157782 whirlwindish 122 @@ -612554,6 +617629,7 @@ wht 62769 whts 656 whuff 6147 whuffed 4211 +whuffie 3009 whuffing 2127 whuffle 1077 whuffled 2247 @@ -612782,6 +617858,7 @@ wifeliness 4575 wifeling 149 wifelkin 317 wifely 298759 +wifery 17996 wifes 57514 wifeship 623 wifeswapping 1878 @@ -613372,6 +618449,8 @@ winelike 4861 winemaker 262962 winemakers 210697 winemaking 305186 +winemaster 4035 +winemasters 533 winemerchant 6351 winemerchants 1520 winepot 1031 @@ -613876,6 +618955,7 @@ witcha 3603 witchcamps 217 witchcraft 3746497 witchcrafts 35270 +witchcrafty 150 witchdom 790 witched 44705 witcher 10528 @@ -614620,6 +619700,7 @@ woodiness 23419 wooding 29707 woodkern 286 woodland 6977175 +woodlanded 96 woodlander 4300 woodlanders 7457 woodlands 2767172 @@ -615227,6 +620308,7 @@ worldhouse 637 worldie 206 worlding 25277 worldish 2445 +worldizing 603 worldkin 318 worldless 16057 worldlessly 377 @@ -615460,6 +620542,9 @@ wouldnae 19268 woulds 8400 wouldst 1242837 wouldya 1849 +wouled 449 +wouling 179 +wouls 5345 wound 43072261 woundability 301 woundable 1614 @@ -615588,6 +620673,7 @@ wreader 396 wreaders 243 wreak 938489 wreaked 445148 +wreaker 1546 wreakers 729 wreakes 1191 wreakest 264 @@ -615598,7 +620684,6 @@ wreaks 129801 wreath 3340077 wreathe 119150 wreathed 834014 -wreathen 14347 wreather 3648 wreathers 96 wreathes 79538 @@ -615933,6 +621018,7 @@ wulfenites 741 wull 50633 wullah 194 wulst 2897 +wulver 174 wumph 501 wumpus 2269 wunch 271 @@ -616350,6 +621436,7 @@ xenolites 702 xenolith 58798 xenolithic 12574 xenoliths 292988 +xenological 1157 xenologist 2334 xenologists 1665 xenologous 414 @@ -616867,6 +621954,8 @@ yacal 3530 yacals 323 yacare 5468 yacares 161 +yacata 1105 +yacatas 1410 yacca 2641 yaccas 175 yacht 4986588 @@ -616926,6 +622015,7 @@ yagnya 174 yagona 1294 yagouaroundi 4332 yagouarundi 51 +yagua 5120 yaguarondi 1278 yaguarundi 1518 yagura 2507 @@ -617009,6 +622099,7 @@ yamen 158668 yamens 12057 yamilke 161 yamlike 570 +yammed 211 yammer 25312 yammered 21777 yammerer 192 @@ -617016,6 +622107,7 @@ yammerers 321 yammering 73661 yammerings 1355 yammers 3305 +yamming 289 yamogenin 1062 yamp 1751 yampa 4322 @@ -617124,6 +622216,8 @@ yardarms 31345 yardbird 4353 yardbirds 2810 yarded 96912 +yarden 1416 +yardens 109 yarder 96138 yarders 26519 yardfowl 187 @@ -617468,6 +622562,7 @@ yeggmen 10162 yeggs 16282 yegs 395 yeh 370482 +yehu 955 yekke 1068 yekkes 1129 yeld 19255 @@ -617527,6 +622622,7 @@ yellowleg 2779 yellowlegs 79782 yellowly 6995 yellowmouth 3001 +yellowness 153082 yellownose 184 yellowred 5799 yellowreds 259 @@ -617552,6 +622648,7 @@ yellowwoods 1135 yellowwort 57 yellowy 36478 yells 1951051 +yelly 1565 yelm 319 yelms 154 yelp 479445 @@ -617574,6 +622671,7 @@ yender 5168 yenite 1048 yenned 474 yenning 412 +yenny 242 yens 47144 yenta 12776 yentas 4164 @@ -617644,6 +622742,7 @@ yeshivah 106527 yeshivahs 3014 yeshivas 46231 yeshivish 683 +yeshivos 10388 yeshivot 61887 yeshivoth 6243 yesk 184 @@ -617710,6 +622809,8 @@ yey 11564 yeyo 2482 yh 48233 yi 1611232 +yibbum 2652 +yibum 21180 yichud 5221 yichus 4663 yickers 91 @@ -618188,7 +623289,6 @@ yrneh 59 yron 68316 yrs 5806328 ys 906168 -yt 1059667 ytd 3045 ytf 3494 ythe 29514 @@ -618419,6 +623519,7 @@ zain 4627 zains 787 zaire 15975 zaires 15840 +zaisan 1265 zaitech 1168 zajal 10211 zak 16173 @@ -618602,6 +623703,7 @@ zazen 158021 zazz 1778 zazzy 212 ze 1152814 +zea 231642 zeacarotene 1677 zeagonite 120 zeal 15128719 @@ -618625,6 +623727,7 @@ zeamatin 695 zean 1176 zearalenone 79017 zearalenones 678 +zeas 1473 zeatin 40299 zeatins 48 zeawant 2754 @@ -619030,6 +624133,7 @@ zimmi 2996 zimmis 2171 zimocca 1465 zimrah 1957 +zimun 2415 zimzum 5932 zin 80134 zina 26403 @@ -619082,6 +624186,7 @@ zincwork 47 zincworkers 159 zincy 3039 zindabad 1958 +zindan 302 zindik 155 zindiq 1630 zindiqs 511 @@ -619447,6 +624552,7 @@ zonkers 1100 zonkey 482 zonkeys 190 zonking 1271 +zonko 151 zonks 1329 zonky 242 zonobiome 421 @@ -619813,6 +624919,7 @@ zorbamycin 231 zorbing 527 zorch 1534 zorched 340 +zorching 184 zorgite 802 zori 12110 zoril 484 @@ -620024,6 +625131,7 @@ zygospore 55900 zygospores 66407 zygosporic 2628 zygotactic 224 +zygotaxis 497 zygote 750608 zygotene 33949 zygotes 280025 diff --git a/data/dicts/v0~draft1/words_es.fldic b/data/dicts/v0~draft1/words_es.fldic index e4fe6d6..ef367c5 100644 --- a/data/dicts/v0~draft1/words_es.fldic +++ b/data/dicts/v0~draft1/words_es.fldic @@ -50,11 +50,13 @@ Abadón 3723 Abanto 37971 Abarca 530205 Abascal 406735 +Abdiel 8844 Abdías 33190 Abdón 175755 Abel 1649054 Abelardo 1012620 Abelito 6256 +Abellano 1465 Abello 58018 Abendaño 31373 Abeyta 2177 @@ -214,15 +216,17 @@ Aldaba 16433 Aldaco 16109 Aldama 405599 Aldana 495663 +Alday 73651 Aldebarán 45035 Alderete 265367 Aldo 623213 Ale 322918 Alegre 1098544 -Alegria 36724 +Alegría 877060 Aleixandre 395458 Aleja 33378 Alejandra 758316 +Alejandrina 101690 Alejandrino 167271 Alejandro 9640056 Alejandría 1041639 @@ -233,6 +237,8 @@ Alemania 15928207 Alemán 1859888 Alentejo 71206 Alepo 112487 +Alessandro 269212 +Alexander 1183092 Alexandrescu 1413 Alfaro 1668095 Alfonso 16061973 @@ -240,6 +246,7 @@ Alfredo 6158920 Alférez 803877 Alfónsez 828 Algeciras 585080 +Algete 17822 Algol 10982 Alguer 48555 Alhambra 833209 @@ -249,6 +256,7 @@ Alicia 2256970 Alipio 74089 Alirio 83467 Alita 6857 +Aljovín 12662 Allende 2386457 Alma 2069891 Almagro 1641316 @@ -260,6 +268,7 @@ Almazán 323750 Almeda 16403 Almeida 591647 Almendares 116079 +Almendra 64173 Almendras 97453 Almendárez 7854 Almería 1797922 @@ -275,6 +284,7 @@ Alpes 845134 Alpízar 23622 Alquízar 27053 Alsacia 254304 +Alsasua 33542 Altagracia 312138 Altamira 820341 Altamirano 1047192 @@ -294,6 +304,7 @@ Amado 1432543 Amador 1045714 Amalfitano 7379 Amalia 1128012 +Amancio 138721 Amanda 687076 Amarilla 287457 Amarillo 391062 @@ -310,9 +321,11 @@ Amezcua 58601 Amigo 1348797 Ammán 29297 Amor 4170907 +Amorebieta 31412 Amparo 1965436 Amritsar 6321 Amsterdam 1096304 +Amur 28115 Amán 66525 América 61246657 Américas 2533538 @@ -324,10 +337,14 @@ Amón 165376 Amós 126616 Ana 10008929 Anabel 81791 +Anacleto 257277 Anahí 20794 Analía 42460 +Anampa 743 Ananké 7601 Anapa 1888 +Anastasia 196787 +Anastasio 696748 Anatolia 129239 Anaximandro 74047 Anaxágoras 95776 @@ -344,7 +361,9 @@ Andorra 280116 Andrada 208156 Andrade 1983602 Andrea 1682256 +André 1276050 Andrés 13611116 +Andrómaca 76739 Andrómeda 115789 Anfitrión 51105 Angat 4840 @@ -360,9 +379,11 @@ Angón 7125 Aniceto 448254 Anita 788401 Ankara 63355 +Ansaldo 81147 Anselmo 1478649 Anta 143509 Antananarivo 3089 +Antauro 6360 Antequera 841836 Antero 153537 Antigua 1663524 @@ -374,6 +395,7 @@ Antioquia 2721717 Antioquía 429509 Antlia 1287 Antofagasta 1055352 +Antonela 1494 Antonia 2369274 Antonieta 376473 Antonio 53866837 @@ -388,6 +410,7 @@ Anzaldo 16893 Anzoátegui 423844 Aníbal 1477408 Apalaches 42501 +Apaza 52789 Apeninos 70985 Apia 44549 Apocalipsis 771502 @@ -409,6 +432,7 @@ Aquerón 10076 Aquila 125497 Aquiles 1301847 Aquino 1041595 +Aquise 1808 Aquisgrán 102912 Aquitania 288856 Ara 510909 @@ -462,6 +486,7 @@ Argentina 33854107 Argo 47890 Argos 573252 Argote 312380 +Argueta 81652 Argólide 7054 Argüelles 371927 Arias 3897062 @@ -481,6 +506,7 @@ Armando 2778579 Armendáriz 221876 Armenia 657596 Arnaiz 69183 +Arnoldo 174647 Aro 128467 Arquelao 41680 Arquíloco 36737 @@ -491,6 +517,7 @@ Arrieta 603537 Arriola 191655 Arroyo 2414693 Arteaga 1009537 +Artemio 275237 Artemisa 217069 Artiaga 27621 Artigas 2672963 @@ -499,8 +526,11 @@ Aruba 141137 Arvayo 677 Arzadun 13981 Arzaga 1249 +Arzate 17752 Arzuaga 17517 +Arámbulo 4231 Arámburo 12308 +Arámburu 36906 Aránzazu 70246 Aréchiga 34474 Arévalo 1116535 @@ -511,11 +541,13 @@ Asdi 2302 Asdrúbal 150445 Asebedo 857 Aser 49933 +Ashjabad 1307 Asia 5899699 Asiago 5353 Asiria 178723 Asjabad 1711 Asmara 9129 +Aspilcueta 2673 Assam 28308 Astaná 583 Astorga 964180 @@ -561,7 +593,9 @@ Austrasia 31639 Austria 5290849 Auvernia 82342 Avelina 63146 +Avelino 401710 Avellaneda 1841556 +Avellano 32734 Avellino 12246 Avempace 31481 Avendaño 527856 @@ -579,6 +613,7 @@ Ayuso 168434 Azawad 623 Azaña 821740 Azcapotzalco 274865 +Azcoitia 86618 Azerbaiyán 40864 Aznar 914852 Azores 305376 @@ -662,6 +697,7 @@ Barajas 338818 Barbados 442992 Barbanegra 9980 Barbarán 14193 +Barbosa 494222 Barbuda 81587 Barcelona 30962502 Barcino 87440 @@ -674,11 +710,14 @@ Barnaúl 135 Barquilla 11913 Barquisimeto 742487 Barrabás 160736 +Barrameda 261564 Barranca 437986 Barraza 187956 +Barreda 564062 Barreiro 490526 Barrera 1305311 Barrientos 537948 +Barrionuevo 266842 Barrios 1995647 Barroso 357440 Barrundia 107635 @@ -700,6 +739,7 @@ Bastardo 113522 Bastilla 209572 Bataglia 6830 Batangas 40688 +Batavia 76264 Bataán 7633 Bathoniense 3719 Batista 926035 @@ -716,7 +756,9 @@ Bayón 102163 Baz 192073 Bazaldúa 2060 Bazán 886567 +Bañolas 51162 Bea 208752 +Beasáin 2341 Beatles 212657 Beato 530983 Beatriz 3144337 @@ -745,6 +787,7 @@ Beltrán 1961101 Beluchistán 10110 Belén 1506229 Benalmádena 22838 +Benasque 61804 Benavides 1243202 Benedicto 1031962 Beneharo 1599 @@ -783,6 +826,7 @@ Bernárdez 121418 Berroya 1121 Berta 765082 Bertrán 205468 +Besada 50878 Besanzón 16421 Besarabia 36744 Bestia 179744 @@ -843,6 +887,7 @@ Bombay 208185 Bondi 14163 Bongará 12703 Bonifacio 968498 +Bonifaz 207886 Bonilla 1303268 Bonita 180323 Boquerón 226190 @@ -892,6 +937,7 @@ Brizuela 215328 Broussard 6523 Brujas 354083 Brujilda 420 +Brunete 71388 Brunilda 53927 Bruno 1934330 Brunéi 3524 @@ -1073,11 +1119,14 @@ Canas 118457 Canberra 40837 Cancio 100999 Cancún 248833 +Candamo 169764 Candela 221004 Candelaria 1142277 Candelarias 2962 Candelario 150423 +Canela 194020 Canelones 560234 +Canelón 35104 Cangallo 196534 Cangas 276687 Caniedo 141 @@ -1098,9 +1147,11 @@ Capadocia 129018 Capazo 1059 Capcha 6951 Capellán 485849 +Capiatá 11065 Capitolio 537483 Capricornio 185487 Capuchino 82614 +Capuñay 4789 Caquetá 370739 Caraballo 113796 Carabobo 872597 @@ -1115,6 +1166,7 @@ Carcasona 83678 Carchi 158374 Cardeña 178372 Cardona 1109166 +Cardoso 695097 Careaga 115226 Carelia 14408 Carhuaz 25252 @@ -1224,11 +1276,13 @@ Ceilán 183086 Cela 487917 Celaya 562144 Celia 1091371 +Celina 233008 Celsius 45857 Cenicienta 172893 Cenobio 46557 Cenomaniano 23653 Cenomaniense 16582 +Cenozoico 45714 Centeno 669499 Central 19875740 Centroamérica 2828022 @@ -1238,6 +1292,7 @@ Cereceres 1942 Ceres 296533 Cerrón 54915 Cervantes 7940509 +Cerón 147844 Cesar 912982 Cesarea 164377 Cetus 3625 @@ -1269,6 +1324,7 @@ Chaparro 226402 Chapultepec 761636 Charo 146411 Chattiense 906 +Chauca 11768 Chavarria 34657 Chavarría 207360 Chavena 1403 @@ -1297,6 +1353,7 @@ Chepén 22183 Chequia 10527 Chernóbil 13266 Chernóbyl 289 +Chetumal 163761 Chiapas 3505539 Chiba 10199 Chicago 2524879 @@ -1307,6 +1364,7 @@ Chile 39426082 Chiloé 706312 Chilpancingo 294795 Chimaltenango 148431 +Chimayó 1819 Chimbarongo 29334 Chimborazo 370549 China 7482849 @@ -1315,6 +1373,7 @@ Chincha 328062 Chinchero 34664 Chinchilla 345964 Chinchón 181066 +Chinesca 3589 Chipre 676032 Chiquimula 167820 Chirino 105264 @@ -1338,6 +1397,7 @@ Chronos 7001 Chubut 793534 Chucho 172467 Chukotka 2099 +Chumpitaz 7533 Chuquisaca 859826 Churubusco 144388 Chus 48166 @@ -1350,10 +1410,12 @@ Chío 25221 Cibeles 171967 Cicerón 1342329 Cid 3084282 +Cienfuegos 866083 Cilicia 122099 Cincel 40140 Cintia 103422 Cipolletti 40416 +Cipriano 1327906 Circasia 24088 Circe 246925 Circinus 1003 @@ -1375,6 +1437,7 @@ Cleopatra 401704 Cleotilde 12064 Cleveland 312132 Clitemnestra 87272 +Clotilda 1903 Clotilde 375530 Cloto 24890 Clásico 482295 @@ -1400,6 +1463,8 @@ Colima 1460725 Coliseo 402330 Collado 491367 Collantes 256851 +Colmenares 407185 +Colmenero 60758 Colofón 160541 Coloma 631930 Colombia 25762507 @@ -1474,6 +1539,7 @@ Correos 2847483 Corrientes 3985273 Corro 274820 Cortes 10598250 +Cortez 202143 Cortina 630861 Cortizo 12330 Cortázar 1230987 @@ -1500,7 +1566,7 @@ Criado 405189 Crimea 241033 Crisanta 18328 Crisanto 168882 -Crispulo 6461 +Crismes 53 Crispín 170749 Cristiada 48038 Cristina 2899868 @@ -1516,8 +1582,10 @@ Cruces 650991 Crux 24189 Cruz 21268831 Cruzat 91355 +Críspulo 41163 Cs 246447 Ctesifonte 13402 +Cuajinicuilapa 10353 Cuaresma 452112 Cuartero 58165 Cuaternario 206961 @@ -1588,6 +1656,7 @@ DLE 15977 DNA 457750 DNI 188993 DNIs 239 +DNS 58403 DPN 18725 DRAE 436547 DT 234258 @@ -1598,6 +1667,7 @@ Daca 30788 Dacia 98201 Dacosta 17468 Daguestán 7057 +Daisy 280344 Dakar 122676 Dalia 102600 Dalila 110531 @@ -1665,7 +1735,9 @@ Dionisio 1878699 Dioniso 132304 Dios 124385519 Diosdado 77572 +Dipólog 953 Disneylandia 40533 +Disnomia 204 Divisaderos 5040 Diéguez 207051 Dodecaneso 7929 @@ -1679,6 +1751,8 @@ Dominica 379524 Domodédovo 157 Domínguez 2907076 Don 57976271 +Donaire 37185 +Donayre 20535 Donbás 409 Dones 92970 Donetsk 2821 @@ -1734,6 +1808,7 @@ EOI 12570 EPD 7211 EPI 66395 EPOC 73490 +EPP 15614 ERC 94732 ERE 39390 ERTE 2675 @@ -1766,6 +1841,7 @@ Edmundo 1135986 Eduardo 11952168 Eduviges 60617 Eduvigis 60500 +Edwin 390231 Edén 445617 Efesios 167050 Efialtes 12013 @@ -1777,6 +1853,7 @@ Eguía 170544 Ehpaña 175 Eibar 109601 Eifeliense 3370 +Eileen 78546 Eizaguirre 59560 Ekaterimburgo 3861 Elam 41839 @@ -1791,6 +1868,7 @@ Eliseo 606984 Elizaga 15989 Elizalde 542790 Elizondo 510994 +Elián 27128 Eljas 8479 Elorriaga 75166 Eloy 1017816 @@ -1799,12 +1877,14 @@ Elqui 104792 Elsa 748335 Elsinor 17377 Elvira 2013837 +Elvis 134743 Elías 1671106 Elíseo 255795 Emanuel 145804 Emelda 1245 Emeterio 316465 Emilia 1383524 +Emiliano 1047170 Emilio 7137625 Empédocles 115471 Emsiense 5966 @@ -1844,6 +1924,7 @@ Eros 416406 Errejón 5149 Ertzaintza 24337 Erzurum 2871 +Erídano 10207 Esauira 1435 Esaú 148665 Escalante 857077 @@ -1892,6 +1973,7 @@ Espinar 231254 Espindola 10270 Espinosa 3241256 Espinoza 796578 +Espíndola 72452 Esquel 74011 Esquivel 637146 Esquivias 78240 @@ -1904,6 +1986,7 @@ Estefanía 288564 Estegui 195 Esteguy 350 Estela 854677 +Estella 724119 Estelí 91611 Ester 519651 Estevan 345787 @@ -1919,6 +2002,7 @@ Estrada 3350326 Estrasburgo 369485 Estrella 1771655 Estrómboli 1786 +Estupiñán 42066 Estévez 398838 Etcheverry 129595 Etiopía 487546 @@ -1945,13 +2029,17 @@ Eurozona 16684 Eurídice 116444 Eusebio 1815558 Euskadi 375220 +Eutimia 4080 Eva 2862757 +Evaristo 871996 +Evelio 119217 Everardo 139765 Everest 110937 Evita 508956 Excel 261239 Excmo 4906238 Excálibur 1448 +Expósito 109284 Extremadura 1770574 Ezequiel 1378845 Eón 15290 @@ -1999,6 +2087,7 @@ Farfán 235877 Farré 46705 Fatah 29868 Fati 5713 +Faustino 1042165 Fausto 1322717 Fdez 4463 Fede 149924 @@ -2033,7 +2122,6 @@ Figueroa 3374866 Filadelfia 1022851 Filemón 136660 Filipenses 92176 -Filipinas 3586662 Filipo 511626 Filomena 342854 Filpo 4211 @@ -2045,6 +2133,7 @@ Fito 100501 Fiyi 7256 Flandes 2506298 Flavia 171174 +Flavio 496871 Flegetonte 6636 Flesinga 12030 Flora 1573620 @@ -2053,9 +2142,11 @@ Florentino 852325 Flores 8118556 Floria 41855 Florida 3518293 +Florinda 203137 Florio 27139 Florita 53799 Floro 239249 +Flumencio 364 Flórez 811215 Fobos 8963 Fogán 6437 @@ -2140,6 +2231,8 @@ Gabriela 1544094 Gabás 6038 Gabón 108542 Gad 78058 +Gael 54158 +Gagó 268 Galacia 58739 Galarza 270213 Galdámez 12964 @@ -2160,6 +2253,7 @@ Galván 675425 Galán 872521 Galápagos 322497 Galíndez 187338 +Gamaliel 70949 Gamarra 822985 Gamba 103899 Gambia 80073 @@ -2176,6 +2270,7 @@ Garay 1230847 Garca 25350 Garchitorena 3268 Garcilazo 51055 +Garcés 703601 García 31997194 Garona 116069 Garrido 1411479 @@ -2232,6 +2327,8 @@ Gironda 79543 Girón 952789 Gisel 4603 Gispert 52168 +Gizeh 20465 +Gladys 358531 Glasgow 244585 Glez 13723 Gloria 2938702 @@ -2248,15 +2345,20 @@ Gondwana 60574 Gonzaga 516328 Gonzales 350539 Gonzalo 7395379 +Gonzalves 7986 González 22080728 +Gonzálvez 26265 Gorbea 116420 Gorgias 122823 Gorospe 13229 +Gorriarán 14830 Gorski 8156 +Gortázar 28556 Gotemburgo 56685 Govern 30548 Goy 35427 Goya 1562214 +Goyo 156717 Gracia 3207082 Graciano 311078 Gracias 7253585 @@ -2266,7 +2368,9 @@ Grajales 125006 Granada 14376705 Granados 695199 Granda 220679 +Grande 7223518 Graneros 72399 +Granma 199806 Grau 902952 Graz 75065 Grecia 4832706 @@ -2310,6 +2414,7 @@ Guernica 377127 Guernsey 24813 Guerra 20100041 Guerrero 5312956 +Guetaria 76021 Guevara 2820163 Guevarra 1621 Guille 57961 @@ -2320,6 +2425,7 @@ Guimba 859 Guinea 1531479 Guipúzcoa 1390632 Guisa 244292 +Guisona 12197 Guiza 16740 Gujarat 13567 Gusmán 18334 @@ -2389,6 +2495,7 @@ Henao 269601 Henares 1118707 Hendaya 105513 Henoch 39874 +Henrique 657388 Henry 2765687 Henríquez 1134075 Hera 218909 @@ -2398,6 +2505,7 @@ Herculano 150679 Heredia 2331310 Heriberto 390713 Hermafrodito 7198 +Hermelinda 34684 Hermes 510899 Hermosa 516685 Hermosilla 271783 @@ -2423,12 +2531,16 @@ Hesíodo 173674 Hetangiano 183 Hettangiense 2261 Hezbolá 17772 +Hiciano 477 Hidalgo 5083622 Hidra 52870 Hierro 1703197 +Higinio 284384 Higuchi 10157 Higía 1352 +Higüey 63084 Hilario 992291 +Hilarión 196020 Hilda 385866 Hildegarda 33458 Himalaya 188609 @@ -2462,6 +2574,7 @@ Horologium 4378 Hortensia 415440 Horus 113557 Houston 459452 +Huacco 466 Hualañé 5741 Hualien 365 Huallaga 265079 @@ -2475,8 +2588,11 @@ Huante 1377 Huaracha 2967 Huaral 46656 Huaraz 195266 +Huarcaya 8496 Huasco 140899 +Huatay 1700 Huaura 121616 +Huayta 6778 Huberto 113846 Huehuetenango 189542 Huelva 1321926 @@ -2486,6 +2602,7 @@ Hugo 4842719 Huila 369912 Huique 4556 Humahuaca 204302 +Humala 37352 Humberto 2051370 Hungría 1945688 Huánuco 517193 @@ -2537,6 +2654,7 @@ IU 257653 IVA 1189773 IVE 14248 Iago 32814 +Ibagué 355184 Ibarlucea 10672 Ibarra 2167164 Iberia 685077 @@ -2545,6 +2663,8 @@ Ibiza 453736 Ibáñez 1663553 Ica 302328 Idaho 74735 +Idrogo 2497 +Idumea 36349 Ifigenia 214027 Iglesia 36386760 Iglesias 3716508 @@ -2586,6 +2706,7 @@ Internacional 17116895 Inti 185766 Intibucá 39769 Inés 3493592 +Ione 19388 Iowa 186867 Iquique 764091 Iquitos 518959 @@ -2597,6 +2718,7 @@ Irene 1288457 Irenea 2901 Ireneo 255233 Irigoyen 798746 +Irina 130236 Iris 732919 Irizarry 30442 Irlanda 2126009 @@ -2605,6 +2727,7 @@ Irán 1026385 Isa 226186 Isaac 1723568 Isabel 11445477 +Isabela 536873 Isacar 23012 Isaí 28155 Isaías 1180600 @@ -2668,6 +2791,7 @@ Jalapa 787983 Jalisco 3094464 Jamaica 1738564 Jamestown 22101 +Janampa 3254 Jandro 6797 Janeth 14610 Janina 23437 @@ -2684,6 +2808,7 @@ Java 472277 Javi 89319 Javier 7009793 Javiera 116274 +Jayo 11468 Jazaria 1525 Jazmín 92262 Jaén 1961880 @@ -2691,14 +2816,17 @@ Jedi 15019 Jefferson 444534 Jehovah 100347 Jehová 1512684 +Jennifer 259489 Jenofonte 188023 Jenócrates 9394 Jenófanes 40714 Jeremías 795223 Jerez 1722066 +Jerezano 7822 Jericó 265395 Jerjes 109154 Jersey 707847 +Jerson 4717 Jersón 2903 Jerusalén 2635680 Jerónimo 4213463 @@ -2713,10 +2841,12 @@ Jimki 207 Jiménez 6773825 Jinotega 85250 Jipijapa 40164 +Jirón 100789 Jiva 4736 Joaquina 414417 Joaquín 9657891 Job 1463026 +Jocelyn 77928 Joel 487566 Johannesburgo 63944 Johnson 1374999 @@ -2737,6 +2867,7 @@ Josefina 1394767 Joselito 119474 Josema 4623 Josemari 6412 +Joshua 170861 Josué 644114 José 99042226 Jovanni 183 @@ -2898,8 +3029,8 @@ Lamentaciones 87200 Landa 603444 Landas 36959 Landerico 998 -Landron 608 Landry 30859 +Landrón 10524 Langhiense 2793 Lanuza 268175 Lanzarote 380731 @@ -2913,6 +3044,7 @@ Lapointe 8327 Laponia 60124 Laporte 51656 Lara 3724961 +Larco 143346 Lardizabal 41264 Lardizábal 88654 Laredo 806252 @@ -2921,6 +3053,8 @@ Largo 1639936 Larrazabal 35675 Larrañaga 344776 Larreta 496451 +Larry 286121 +Lasarte 108016 Lascano 156038 Latam 2519 Latinoamérica 2461109 @@ -2930,6 +3064,7 @@ Laurier 11619 Lausana 130549 Lavalle 1332260 Lavalleja 488633 +Lavandera 63916 Lavapiés 69541 Lazarte 50101 Lazcano 234291 @@ -2951,6 +3086,7 @@ Legaspi 43392 Legazpi 107452 Legrand 109810 Leguizamo 17983 +Leila 135004 Leire 87463 Leiva 745686 Lemery 21934 @@ -2959,6 +3095,7 @@ Lengrand 2153 Leningrado 220739 Leo 1529470 Leonardo 2758082 +Leoncio 498296 Leonor 2748533 Leopoldo 2926674 Lepe 140461 @@ -2990,6 +3127,7 @@ Libra 323996 Libreville 11337 Licantén 8445 Liceo 1523860 +Licerio 4365 Licha 24998 Licia 58407 Lidia 559850 @@ -3010,6 +3148,7 @@ Liorna 117856 Liorno 2719 Lipá 149 Lira 894165 +Lisandro 491791 Lisboa 3408712 Liscano 108440 Liselotte 5591 @@ -3027,8 +3166,10 @@ Llamas 290117 Llanes 223792 Llanquihue 181622 Llerena 366112 +Llerenas 5213 Llobregat 389739 Llodio 49693 +Llorach 61712 Llorente 647499 Llosa 839252 Loa 515805 @@ -3047,6 +3188,7 @@ Lolita 261309 Lolol 8376 Lomba 53967 Lombardía 318263 +Lompoc 1796 Lomé 67231 Londres 12060633 Longoria 58930 @@ -3054,22 +3196,26 @@ Lope 7035565 Lopesierra 277 Lorca 2307713 Lorena 874102 +Lorente 239437 Lorenza 275791 Lorenzana 306037 Lorenzo 8082842 Loreto 1311539 Losada 1149925 +Losano 10312 Lot 259421 Lourdes 806232 Lovaina 350221 Lozada 388933 Lozano 2146883 +Luan 23339 Luanda 53663 Lubao 2813 Lubiano 3247 Lucanas 75692 Lucano 292738 Lucas 4842315 +Lucena 526806 Lucerna 137872 Lucero 635456 Lucha 1021871 @@ -3078,6 +3224,7 @@ Luciana 171304 Luciano 1617698 Lucifer 448685 Lucio 1931162 +Lucrecia 757983 Lucía 2809893 Luengas 19021 Lugo 2277178 @@ -3088,6 +3235,7 @@ Luisito 154357 Luiña 7256 Luján 777334 Lula 238177 +Lulo 14490 Lumbreras 144946 Luna 6442393 Lupe 452991 @@ -3117,6 +3265,7 @@ López 22179473 M 15303292 MANA 22937 MC 327717 +MCI 35808 MDP 46920 MDQ 640 MEH 5191 @@ -3126,6 +3275,7 @@ MIR 443064 ML 224361 MPR 13225 MX 117356 +Mabel 274441 Maca 62607 Macarena 199596 Macario 305142 @@ -3133,6 +3283,7 @@ Macati 1873 Macau 23860 Maceda 85819 Macedonia 580420 +Machado 3095534 Machalí 10061 Macias 99968 Macu 7277 @@ -3176,6 +3327,7 @@ Malena 139226 Mali 81250 Malibú 24228 Malinao 1906 +Malinas 145918 Malleco 109994 Malloa 18450 Mallorca 2906331 @@ -3197,6 +3349,7 @@ Mandriotti 379 Manicaragua 19903 Manila 1864074 Manitoba 45449 +Manlio 141010 Manola 33245 Manoli 13366 Manolo 911105 @@ -3230,6 +3383,7 @@ Marcelo 2059523 Marchigüe 3541 Marchihue 1247 Marcial 1384289 +Marciano 213427 Marción 28108 Marco 4627229 Marcos 6697376 @@ -3248,6 +3402,7 @@ Mariela 123016 Marina 9185059 Marinaleda 6316 Marinduque 9666 +Marinero 179411 Marino 886042 Mario 7443538 Mariscal 2070743 @@ -3264,6 +3419,7 @@ Marruecos 3077048 Marsella 890983 Marta 4900865 Marte 1692633 +Martel 311343 Martell 59780 Martina 549857 Martinica 310587 @@ -3291,6 +3447,7 @@ Matamoros 1053544 Matanzas 1051420 Mataró 242586 Mateo 4657509 +Matilda 76804 Matilde 1620970 Matos 726341 Matsumoto 16327 @@ -3309,12 +3466,14 @@ Maximato 12783 Maximiliano 1881659 Mayagüez 265885 Maynas 206576 +Mayra 88824 Mayte 24554 Mazatlán 597277 Mañueco 9707 Mañungo 9425 Mc 609308 Mecayapan 11193 +Medardo 208793 Medellín 3131321 Media 7127485 MediaWiki 459 @@ -3325,6 +3484,7 @@ Medrano 790530 Medusa 183663 Mefistófeles 139223 Mejía 2006303 +Melania 79674 Melbourne 141286 Melchor 1982306 Melchîsedec 583 @@ -3370,6 +3530,7 @@ Meta 720267 Metatrón 7971 Mexicali 588189 Meycauayan 1582 +Meza 581984 Miami 1481810 Micaela 651757 Micenas 80828 @@ -3402,6 +3563,7 @@ Minsk 46445 Miqueas 64297 Miranda 5448142 Mireia 30795 +Mireles 37026 Mirella 27042 Mireya 146232 Mirian 23047 @@ -3433,6 +3595,7 @@ Moldavia 107139 Molina 5941891 Molinero 105142 Mollendo 177050 +Mombuey 10625 Monagas 642905 Moncada 718914 Monchi 6462 @@ -3440,6 +3603,7 @@ Moncloa 275884 Mondragón 352349 Monge 751771 Mongolia 169412 +Monja 198581 Monjaraz 22090 Monje 288988 Monreal 276525 @@ -3479,14 +3643,18 @@ Moquegua 454443 Mora 3684380 Morada 130402 Morales 7098222 +Morante 145780 Morato 99473 Moravia 207673 Morazán 613773 +Morelia 1050958 Morelos 2964145 Moreno 8672687 Morfeo 67739 Mori 163092 +Morikawa 840 Morioka 3032 +Morán 495508 Morás 3896 Morón 809516 Mosa 121663 @@ -3548,12 +3716,14 @@ Nacho 310616 Nacianzo 10592 Naco 98719 Nacor 19558 +Nagua 14285 Nahúm 9987 Nairobi 136591 Najasa 12543 Najicheván 748 Najodka 1129 Nakamura 26334 +Nalvarte 4336 Namibia 144254 Namur 122468 Nancagua 17285 @@ -3598,6 +3768,7 @@ Neftalí 97649 Negrete 498580 Negrette 9475 Nehemías 131072 +Nelson 1246296 Nemrod 40419 Neolítico 180233 Nepal 154218 @@ -3708,6 +3879,7 @@ Odilón 39147 Odisea 399071 Odiseo 213026 Odín 67331 +Oeste 4904364 Ofelia 494892 Ofiuco 4064 Ogawa 8874 @@ -3751,6 +3923,7 @@ Orellana 755630 Orellano 17720 Oremburgo 5059 Orendain 21992 +Orensanz 7784 Orense 1158533 Orfeo 560793 Orgullo 124772 @@ -3762,6 +3935,7 @@ Orión 135083 Ormoc 1543 Ormuz 85680 Oropesa 324234 +Oropeza 228816 Orozco 1988557 Orrantia 60743 Orrego 347815 @@ -3790,6 +3964,7 @@ Otón 181636 Ovando 555709 Ovidio 997651 Oviedo 4988664 +Owen 503249 Oyonarte 1677 Oyón 59895 Ozaeta 23134 @@ -3963,9 +4138,11 @@ Paulette 51162 Paulina 656050 Paulino 722729 Paulito 3384 +Paulo 3491478 Pavía 452305 Paysandú 592883 Paz 17417971 +Pazmiño 24990 Paín 1334 Paños 99374 Peces 287335 @@ -3999,6 +4176,7 @@ Peralta 1747896 Perdiguero 25934 Perdomo 368903 Pereda 842241 +Peregrina 162639 Pereira 1885928 Perera 162931 Perfecto 539161 @@ -4010,6 +4188,7 @@ Perpiñán 194484 Perseo 214381 Persia 1054016 Perséfone 69712 +Persépolis 38262 Perth 50852 Perusa 68472 Perón 3570858 @@ -4017,6 +4196,7 @@ Perú 34750335 Pesaj 9515 Petorca 86742 Petrarca 620104 +Petro 194943 Petén 308249 Peumo 33867 Peña 5649133 @@ -4028,6 +4208,7 @@ Peñaranda 360799 Philipps 17596 Phoenix 153469 Piamonte 345961 +Pica 209562 Picardía 114908 Picasso 1218283 Pichidegua 9238 @@ -4111,9 +4292,11 @@ Porcayo 8514 Porciúncula 37844 Porfirio 1988232 Porras 1017074 +Portalatín 10334 Portocarrero 574100 Portugal 10705834 Portuguesa 527893 +Portuondo 207534 Porón 1084 Posada 1246928 Posadas 704769 @@ -4125,6 +4308,7 @@ Prado 3852520 Praga 1000879 Prepuna 4021 Pretoria 74766 +Prialé 27533 Priene 10264 Prieto 2885804 Pristina 3769 @@ -4152,6 +4336,7 @@ Puig 1197061 Pulgarcito 51090 Pulido 478872 Pulla 102638 +Pumacahua 57803 Pumanque 6135 Punilla 69908 Puno 1165482 @@ -4167,6 +4352,7 @@ Python 29715 Páez 2028975 Pánuco 322620 Pásig 4584 +Páucar 14915 Pérez 18937418 Pésaj 8725 Píndaro 227969 @@ -4187,6 +4373,7 @@ Quetzalcóatl 386501 Quetzaltenango 119329 Quevedo 3158629 Quezada 290116 +Quibdó 129468 Quica 20465 Quiché 274386 Quico 87891 @@ -4247,6 +4434,7 @@ Rafi 22199 Raimunda 43767 Raimundo 1459780 Rajastán 5880 +Rajoy 123891 Rallo 24400 Ramira 8335 Ramiro 2313450 @@ -4265,6 +4453,7 @@ Ratisbona 147820 Rauco 14525 Rave 15920 Rayastán 223 +Raymundo 443500 Rayo 354508 Razon 251797 Raúl 5163164 @@ -4272,11 +4461,13 @@ Rea 307813 Reaño 8687 Rebeca 584629 Rebolledo 340395 +Recalde 208208 Recio 307177 Recoleta 341884 Reconquista 804158 Red 2157380 Redondo 607874 +Reich 734748 Reikiavik 13106 Reina 7265695 Reinaldo 496779 @@ -4293,7 +4484,9 @@ Rendón 404740 Renfe 76494 Rengo 125993 Renzo 114758 +René 1786771 Requínoa 5834 +Resistencia 1126299 Retalhuleu 87657 Reunión 3641605 Reus 621327 @@ -4313,7 +4506,9 @@ Ribagorza 186990 Ricarda 42959 Ricardo 10520460 Ricarte 29242 +Richard 2817278 Rico 11073817 +Ridruejo 156206 Riga 119288 Rin 340672 Rincon 127439 @@ -4371,6 +4566,7 @@ Rosalina 55297 Rosalía 930839 Rosario 7682446 Rosaura 408102 +Rosauro 25092 Rosendo 719432 Rosete 50687 Rosi 68543 @@ -4382,6 +4578,7 @@ Rothschild 153080 Rousseau 1726611 Roxana 124637 Roxas 241507 +Ruan 93866 Ruanda 141761 Rubenia 2631 Rubio 2597582 @@ -4413,6 +4610,7 @@ Róterdam 7676 S 24400642 SAG 91805 SAI 49805 +SAIH 586 SAMU 2843 SAP 170257 SAR 120930 @@ -4467,10 +4665,12 @@ Salazar 4396178 Salceda 67678 Salcedo 1252513 Saldaña 585993 +Saldívar 116710 Salerno 198964 Sales 720258 Salgado 800557 Salinas 4026159 +Salma 41418 Salmos 682267 Salomón 1715854 Salta 3575382 @@ -4500,7 +4700,9 @@ Sandoval 1935424 Sandra 642696 Sangley 6324 Sanguineti 19333 +Sangüesa 214153 Sanjurjo 231644 +Sansón 405950 Santa 53389217 Santana 883661 Santander 6406517 @@ -4573,6 +4775,7 @@ Senegal 354741 Septuaginta 28547 Sepúlveda 1099434 Serafina 334449 +Serapio 232753 Serbia 212421 Sereno 138094 Sergio 3138079 @@ -4581,6 +4784,7 @@ Serna 1282592 Serpens 5302 Serrano 3595224 Serravalliense 1326 +Servia 205658 Sesma 98893 Seve 23571 Sevilla 18131066 @@ -4593,8 +4797,10 @@ Señores 5822496 Señorita 699548 Seúl 100335 Shanghái 29652 +Sheila 113658 Sheremétievo 303 Shimabukuro 1032 +Shirley 145707 Shizuko 1604 Shota 3407 Siam 215852 @@ -4635,6 +4841,7 @@ Smolensk 15794 Soberano 2144326 Sochi 6687 Sodoma 252905 +Sofi 35650 Sofonías 45772 Sofía 1672845 Sogdiana 8577 @@ -4696,6 +4903,7 @@ Suez 375854 Suiza 3651753 Sujumi 1766 Sulawesi 4553 +Sullón 2233 Sumatera 227 Sumatra 149660 Sumeria 20714 @@ -4742,6 +4950,7 @@ TMA 19175 TOC 52230 TQ 8116 TQM 11370 +TRD 4443 TRIFE 4054 TSE 54870 TU 620196 @@ -4791,8 +5000,10 @@ Tandil 314246 Tanganica 18751 Tania 205912 Tanzania 208810 +Tapachula 207891 Tapia 1469316 Tapullima 1081 +Tarache 1178 Tarantini 4129 Tarantino 32526 Tarapacá 714825 @@ -4814,6 +5025,7 @@ Tasquillo 13779 Tasso 306864 Tato 128510 Tauro 270244 +Tavira 123389 Tayabas 32730 Tayacaja 40695 Tayikistán 27052 @@ -4826,10 +5038,12 @@ Tehuantepec 607039 Tejada 1248055 Tejas 377012 Tejeda 345781 +Telangana 312 Telesforo 118951 Tellería 100467 Telémaco 175303 Tenerife 1630622 +Tenesí 2674 Tennessee 239762 Teno 46547 Tenochtitlan 420727 @@ -4837,8 +5051,12 @@ Tenochtitlán 254474 Tenorio 656810 Teobaldo 184341 Teodora 384806 +Teodorico 211707 Teodoro 1655714 +Teodosia 58660 +Teodosio 483638 Teotihuacán 323283 +Tepatitlán 67249 Tepenixtlahuaca 734 Teposcolula 61792 Tepoztlán 110841 @@ -4851,12 +5069,14 @@ Termópilas 48812 Terrado 12045 Terranova 313999 Teruel 1519337 +Terán 841860 Tesalia 167534 Tesalonicenses 66940 Tesalónica 84191 Teseo 290320 Tetelcingo 15413 Tetis 104947 +Tetuán 508471 Texas 2812052 Texcoco 549259 Teófilo 659667 @@ -4873,11 +5093,13 @@ Tiflis 30766 Tifón 35649 Tigris 159129 Tijuana 879857 +Timaná 71916 Timbu 487 Timbuctú 5701 Timbuktu 1985 Timor 103966 Timoteo 588723 +Timón 73227 Tinguiririca 28506 Tiquicia 1432 Tirado 401477 @@ -4916,6 +5138,7 @@ Tombuctú 34112 Tomás 12204722 Tonga 49976 Tordesillas 544158 +Toribio 1506043 Toro 3485362 Toronto 408208 Torralba 185656 @@ -4926,6 +5149,7 @@ Torrevieja 70403 Torrijos 435332 Tortosa 1025596 Torá 160693 +Tosado 654 Toscana 543928 Toselli 17615 Tot 84031 @@ -4971,9 +5195,11 @@ Tucsón 4749 Tucumán 4768698 Tucídides 197497 Tuguegarao 4288 +Tulancingo 183926 Tulum 62195 Tumbes 382386 Tungurahua 147299 +Tunja 1066678 Turbo 122726 Turia 204843 Turingia 66011 @@ -4984,6 +5210,7 @@ Turín 629536 Tutankamón 20438 Tuvalu 9920 Tuxtepec 209340 +Tuxtla 524264 Táchira 672502 Tácito 551775 Támesis 226536 @@ -5032,13 +5259,16 @@ Uehara 2065 Ugalde 220986 Uganda 225672 Ugarte 1172969 +Ujda 926 Uldarico 16330 Ulibarri 53040 Ulises 1333901 Ulloa 1463701 Ulrica 20441 +Ulsan 1175 Umbría 130790 Unai 18282 +Unamuno 3221011 Unanue 186972 Unión 17037424 Upe 6486 @@ -5046,16 +5276,23 @@ Upsala 76066 Ur 183950 Urano 206065 Urbieta 36128 +Urbina 818207 Ures 89344 +Ureste 401 Uresti 5309 +Ureña 933666 Uriarte 315396 Uribe 1926602 +Urmía 175 Uropa 5828 Urquiza 1995457 Urquídez 937 +Urraca 617043 Urresti 17251 +Urruti 13819 Urrutia 881539 Ursua 41789 +Ursúa 148658 Urubamba 225138 Uruguay 10904686 Urzúa 138753 @@ -5078,6 +5315,7 @@ Vaduz 13549 Vaillancourt 1619 Valadez 62937 Valaquia 69677 +Valdemar 59012 Valdemoro 82171 Valderrama 431453 Valdez 692486 @@ -5105,6 +5343,7 @@ Vancouver 164932 Vane 53708 Vanesa 69730 Vanuatu 21630 +Varadero 102434 Varela 2298447 Vargas 6196682 Varona 539510 @@ -5129,6 +5368,7 @@ Venecia 3042168 Venegas 706176 Venezuela 24533727 Venus 2200621 +Vera 3274440 Veracruz 6227562 Veraguas 208350 Verano 725207 @@ -5139,6 +5379,7 @@ Vero 146587 Verona 388338 Versalles 732536 Vertientes 54741 +Verástegui 67780 Verónica 700080 Vesubio 174168 Vicenta 365277 @@ -5147,6 +5388,7 @@ Vichada 101463 Vichuquén 29089 Vico 461026 Victoria 5906386 +Vidal 2809393 Vidanes 3350 Vidaurre 264757 Vidaurri 185773 @@ -5159,6 +5401,7 @@ Vietnam 1304782 Vigan 14451 Vigo 1116296 Vilar 355903 +Vilca 43875 Villa 12773926 Villablanca 17162 Villacorta 184271 @@ -5171,6 +5414,7 @@ Villar 1486101 Villareal 143538 Villarreal 845794 Villarroel 534590 +Villaruel 2443 Villaseñor 363354 Villaverde 535618 Villavicencio 625548 @@ -5186,6 +5430,7 @@ Viqui 2129 Virgilio 2391476 Virginia 2038663 Virgo 207632 +Virrey 4477588 Virú 59321 Visnú 26393 Vito 305487 @@ -5193,6 +5438,7 @@ Vitoria 2270681 Vivaldi 144444 Vivanco 457667 Viviana 146323 +Viza 4283 Vizcarra 123355 Vizcaya 3139143 Viñales 42149 @@ -5222,6 +5468,7 @@ Wellington 436670 Wenceslao 514602 Wikcionario 127 Wikipedia 72210 +William 3804082 Windhoek 6845 Wisconsin 372784 Wong 141858 @@ -5230,6 +5477,7 @@ Wyoming 88730 X 14878077 Xalapa 448293 Xavier 1601454 +Xenia 33332 Xenócrates 6177 Xibalbá 58522 Ximena 267448 @@ -5254,6 +5502,7 @@ Yamena 1259 Yamusukro 503 Yara 145748 Yaracuy 268243 +Yaranga 2845 Yaretzi 857 Yaritza 1146 Yaundé 8710 @@ -5269,6 +5518,7 @@ Yecapixtla 21172 Yeda 3372 Yekaterimburgo 353 Yemen 223531 +Yenia 5542 Yepes 387046 Yerba 272439 Yerena 6363 @@ -5311,7 +5561,10 @@ Zacarías 599359 Zacatecas 2323358 Zafra 337315 Zagreb 82187 +Zaida 120411 +Zaira 27154 Zaire 150960 +Zalazar 53938 Zaldaña 7358 Zaldívar 285059 Zamarrón 8444 @@ -5351,9 +5604,12 @@ Zia 30302 Zimbabue 24159 Zinacantán 45548 Zinfandel 2571 +Zitácuaro 164326 Zoraida 245426 +Zoraya 25294 Zornoza 37043 Zoroastro 92070 +Zorobabel 82455 Zosimo 8053 Zuazo 248225 Zubia 41540 @@ -5373,6 +5629,7 @@ Zuñiga 164262 Zárate 933900 Zúrich 57063 Zúñiga 1116668 +a 4239126244 aC 70804 aaleniana 179 aaronita 654 @@ -8645,7 +8902,6 @@ abstenidas 959 abstenido 192683 abstenidos 8865 absteniendo 1373 -absteniéndole 60 absteniéndome 8716 absteniéndonos 9297 absteniéndoos 706 @@ -8845,6 +9101,7 @@ abulenses 29065 abulia 141135 abulias 3159 abullonadas 8095 +abullonado 5567 abullonar 273 abulones 3728 abulta 65754 @@ -9198,8 +9455,18 @@ acabadita 3470 acabaditas 1579 acabadito 5139 acabaditos 1863 +acabadla 176 +acabadle 149 +acabadlo 314 +acabadlos 178 +acabadme 1981 +acabadnos 198 acabado 4249611 acabados 710347 +acabala 4689 +acabalas 729 +acabale 9041 +acabales 304 acaballa 5727 acaballaba 171 acaballada 3365 @@ -9216,11 +9483,15 @@ acaballen 547 acaballes 661 acaballo 26628 acaballó 840 +acabalo 940 +acabalos 248 +acabame 612 acabamiento 160891 acabamientos 2888 acabamos 3202122 acaban 2750076 acabando 927223 +acabanos 2779 acabaos 679 acabar 6051492 acabara 639461 @@ -9261,6 +9532,7 @@ acabasen 106289 acabases 3139 acabaste 31102 acabasteis 2736 +acabate 1477 acabe 1136417 acabemos 110385 acaben 344160 @@ -9289,6 +9561,10 @@ acabásemos 5490 acabé 245997 acabéis 11128 acabémonos 129 +acabémosla 159 +acabémosle 114 +acabémoslo 105 +acabémoslos 118 acabés 642 acabó 4951225 acachetear 243 @@ -9932,7 +10208,10 @@ acarreáramos 120 acarreásemos 167 acarreé 1242 acarreó 198892 +acartelada 189 +acarteladas 356 acartelado 396 +acartelados 276 acartona 2190 acartonaba 661 acartonaban 231 @@ -9948,6 +10227,7 @@ acartonarse 1311 acartone 393 acartonándose 237 acartonó 426 +acasillado 8287 acaso 15010981 acastilla 55 acastillada 609 @@ -10627,6 +10907,12 @@ acemileros 10225 acemite 4693 acemites 178 acenafteno 1225 +acender 9278 +acenderá 347 +acendida 219 +acendidas 177 +acendido 2606 +acendidos 130 acendra 36265 acendraba 4224 acendraban 1373 @@ -15449,9 +15735,24 @@ acuñáramos 230 acuñé 2399 acuñó 209813 acá 6394237 +acábala 1140 +acábalas 47 +acábale 364 +acábalo 1339 +acábalos 648 acábame 2311 +acábanos 254 acábase 6667 acábate 1909 +acábela 490 +acábelo 439 +acábelos 55 +acábeme 944 +acábenla 147 +acábenlo 161 +acábenlos 157 +acábenme 501 +acábenos 251 acábense 2284 acábese 7528 acápite 296004 @@ -16080,11 +16381,6 @@ adentro 5222097 adentros 480295 adentrábamos 7183 adentráis 446 -adentrándola 400 -adentrándolas 49 -adentrándole 306 -adentrándolo 753 -adentrándolos 253 adentrándome 8494 adentrándonos 16765 adentrándoos 132 @@ -16373,6 +16669,7 @@ adicionado 233181 adicionados 65147 adicional 5136031 adicionales 3404079 +adicionalidad 7367 adicionalmente 352821 adicionamos 9094 adicionan 135308 @@ -17453,6 +17750,7 @@ adoramos 113688 adoran 408256 adorando 167912 adorante 5920 +adorantes 5910 adorar 760088 adorara 19274 adorarais 66 @@ -18257,6 +18555,7 @@ aduléis 421 aduló 19324 adulón 19446 aduna 23743 +adunan 10652 adunando 2303 adunar 6983 adunare 1038 @@ -20828,6 +21127,7 @@ agendó 894 agenesia 33190 agente 8647663 agentes 11842147 +agentiva 6131 agentivo 15823 agermana 231 agermanada 2450 @@ -22296,6 +22596,7 @@ agrobiológico 2021 agrobiológicos 895 agrobiotecnología 3098 agrobiotecnologías 1357 +agrociudad 1088 agroclimática 5572 agroclimáticas 10428 agroclimático 3780 @@ -24277,6 +24578,7 @@ ajilimójilis 558 ajillo 13053 ajimeces 31352 ajimez 30919 +ajimezado 648 ajito 3111 ajitos 1010 ajo 1112729 @@ -25009,6 +25311,7 @@ alarméis 5463 alarmés 166 alarmó 246449 alas 7807191 +alasita 541 alaskeña 108 alaskeño 309 alaskeños 245 @@ -25024,6 +25327,7 @@ alavesas 22399 alaveses 71674 alavesista 90 alavés 73346 +alawita 762 alazana 22166 alazanas 3241 alazanes 27203 @@ -25662,7 +25966,9 @@ alcemos 16112 alcen 64466 alces 33638 alciones 13230 +alcireña 251 alcireño 637 +alcireños 439 alcista 157158 alcistas 37191 alción 15058 @@ -26720,6 +27026,7 @@ alfanumérica 10994 alfanuméricas 4337 alfanumérico 17799 alfanuméricos 15859 +alfaprodina 201 alfaque 2144 alfaques 3659 alfaquí 53921 @@ -28207,6 +28514,8 @@ almireces 16625 almirez 60966 almita 24806 almitas 9613 +almizate 8120 +almizates 846 almizcla 270 almizclada 6058 almizcladas 2279 @@ -28414,6 +28723,7 @@ alodio 50071 alodios 22241 aloe 44430 aloes 28745 +alofonía 1330 alofónica 4010 alofónicas 3931 alofónico 936 @@ -29303,7 +29613,9 @@ aluminio 1644603 aluminios 4420 aluminita 915 aluminizada 1180 +aluminizadas 1064 aluminizado 2408 +aluminizados 658 aluminizar 312 aluminosa 9199 aluminosas 9453 @@ -30303,6 +30615,7 @@ amarra 191765 amarraba 45081 amarraban 43016 amarrabas 393 +amarraco 408 amarrad 728 amarrada 176295 amarradas 123037 @@ -31285,6 +31598,8 @@ ametrallé 293 ametralló 14221 ametropía 5465 ametropías 3562 +amhara 1340 +amharas 563 amhárico 1860 ami 353280 amianto 184354 @@ -31420,6 +31735,7 @@ amillarada 15859 amillaramiento 56365 amillaramientos 42681 amillarar 1749 +amilo 30706 amiloide 49179 amiloidea 11240 amiloideas 1551 @@ -31431,6 +31747,7 @@ amilopectina 7785 amilopectinas 170 amiloplasto 173 amiloplastos 937 +amilos 235 amilosa 10558 amilosas 355 amina 65373 @@ -32979,6 +33296,7 @@ anabaptismo 6138 anabaptista 14574 anabaptistas 50416 anabasina 1090 +anabautista 1264 anabolismo 15742 anabolizante 4227 anabolizantes 17204 @@ -33305,6 +33623,7 @@ anastomótica 18245 anastomóticas 7317 anastomótico 6268 anastomóticos 5739 +anastrozol 1301 anatasa 5766 anatema 398329 anatemas 189293 @@ -33646,6 +33965,7 @@ andarlo 18699 andarlos 5731 andarme 30613 andarnos 13168 +andaron 5201 andaros 3977 andarríos 3151 andarse 166368 @@ -33886,6 +34206,7 @@ aneja 233552 anejas 198367 anejo 413270 anejos 347185 +anelación 1787 aneldo 2707 aneldos 869 anemia 1013019 @@ -34184,6 +34505,7 @@ angioplastia 33419 angioplastias 1590 angiosperma 3063 angiospermas 43700 +angiospérmica 238 angiospérmicas 100 angiospérmico 141 angiotensina 101914 @@ -34241,6 +34563,7 @@ angloholandesa 5713 angloholandesas 1233 angloholandeses 1529 angloholandés 2569 +angloindio 2677 angloirlandesa 1065 angloirlandesas 262 angloirlandeses 603 @@ -34526,6 +34849,10 @@ anhédricos 441 anhídrido 304789 anhídridos 14735 aniconismo 1447 +anicónica 1609 +anicónicas 668 +anicónico 1328 +anicónicos 514 anida 283064 anidaba 59120 anidaban 50299 @@ -35100,6 +35427,7 @@ anorectal 2077 anorectales 771 anorexia 290577 anorexias 3251 +anorexígeno 1743 anorgasmia 6756 anorgasmias 205 anormal 1404530 @@ -35481,6 +35809,7 @@ antecesora 99872 antecesoras 46860 antecesores 1228461 antecima 267 +antecio 25291 antecoge 310 antecoger 2058 antecogerá 103 @@ -35684,6 +36013,7 @@ anteroposteriores 8126 anteroposteriormente 2755 anterosuperior 24250 anterosuperiores 3681 +anterozoide 2241 anterógrada 19067 anterógradas 1023 anterógrado 11370 @@ -35851,6 +36181,10 @@ antibrucélicas 255 antibudista 362 antibuque 2973 antibuques 531 +antiburguesa 15617 +antiburguesas 3412 +antiburgueses 3539 +antiburgués 14723 antibélica 8256 antibélicas 4437 antibélico 14053 @@ -36170,6 +36504,7 @@ antiderivada 3234 antiderrapante 4033 antiderrapantes 2038 antidesahucios 228 +antideslizamiento 819 antideslizante 16144 antideslizantes 13012 antidetonante 9798 @@ -36295,6 +36630,7 @@ antiestatutarios 432 antiestilo 625 antiestresante 242 antiestresantes 133 +antiestrofa 2597 antiestrés 7854 antiestudiantil 571 antiestética 22816 @@ -36512,6 +36848,7 @@ antijaponeses 1199 antijaponés 2504 antijesuita 4780 antijesuitas 2028 +antijesuítico 3367 antijudaísmo 15877 antijudía 27109 antijudías 14548 @@ -36622,6 +36959,10 @@ antimperialismo 39041 antimperialista 189939 antimperialistas 59569 antimulleriana 340 +antimuscarínica 526 +antimuscarínicas 298 +antimuscarínico 711 +antimuscarínicos 2220 antimusulmana 2718 antimusulmanas 598 antimusulmanes 711 @@ -36656,6 +36997,7 @@ antineoplásico 5779 antineoplásicos 12969 antineutrino 2924 antineutrinos 1449 +antinflacionario 6593 antinflamatorio 2221 antinflamatorios 3615 antiniebla 8611 @@ -36858,6 +37200,7 @@ antirrepublicana 12659 antirrepublicanas 5354 antirrepublicano 9767 antirrepublicanos 7389 +antirresonancia 374 antirretorno 3838 antirretroceso 637 antirretroviral 24933 @@ -41518,7 +41861,6 @@ app 42946 applausos 325 applet 12383 applets 6058 -appliance 3958 appliances 6785 apps 18604 apraxia 31249 @@ -43808,6 +44150,7 @@ arbóreas 181358 arbóreo 82951 arbóreos 62451 arca 1410092 +arcabuceado 12729 arcabuceados 12515 arcabucear 7526 arcabucero 31826 @@ -45151,6 +45494,7 @@ arquitrabe 60613 arquitrabes 26255 arquivolta 28040 arquivoltas 39172 +arquénteron 689 arrabal 597590 arrabalera 15794 arrabaleras 4791 @@ -46271,12 +46615,6 @@ arrepentida 212366 arrepentidas 43336 arrepentido 762885 arrepentidos 218345 -arrepentiendo 93 -arrepentiera 383 -arrepentiere 247 -arrepentieres 142 -arrepentieron 517 -arrepentiese 295 arrepentimiento 1415879 arrepentimientos 83183 arrepentimos 34193 @@ -46300,7 +46638,6 @@ arrepentirían 4751 arrepentirías 2882 arrepentiste 4964 arrepentisteis 723 -arrepentió 1375 arrepentí 69203 arrepentía 106067 arrepentíais 81 @@ -48313,6 +48650,7 @@ ascensores 262903 ascensorista 26095 ascensoristas 14903 ascensos 990884 +ascesis 94742 asceta 175407 ascetas 99710 ascetismo 284762 @@ -48335,8 +48673,24 @@ ascomicetes 2056 ascomiceto 2220 ascomicetos 5717 asconda 2267 +ascondan 798 +ascondas 649 asconde 11137 +asconden 2641 +ascondes 1163 +ascondida 8412 +ascondidas 3877 ascondido 15874 +ascondidos 5911 +ascondiendo 631 +ascondiera 198 +ascondieran 100 +ascondiere 835 +ascondieren 186 +ascondieron 946 +ascondiese 551 +ascondiesen 167 +ascondiste 473 ascondo 230 ascorbato 6379 ascorbatos 227 @@ -49539,6 +49893,7 @@ asimétricas 150235 asimétrico 175629 asimétricos 99746 asincronismo 6757 +asincronismos 872 asincronía 24676 asincronías 5669 asincrónica 12731 @@ -50750,6 +51105,7 @@ asustasen 4267 asustases 125 asustaste 17523 asustasteis 407 +asustaviejas 66 asuste 124284 asustemos 6484 asusten 47008 @@ -51040,6 +51396,7 @@ ataluzada 250 ataluzado 366 atamanes 2032 atambores 94493 +atame 730 atamos 26958 atamán 7760 atan 391711 @@ -54303,6 +54660,7 @@ atópicas 4015 atópico 9731 atópicos 6671 atún 452718 +aucas 27916 aucción 714 auch 68171 audaces 889657 @@ -54683,6 +55041,7 @@ aunase 2879 aunasen 2938 aunaste 188 aunemos 4722 +aunq 129344 aunque 127134128 auná 31373 aunábamos 148 @@ -54807,6 +55166,7 @@ aurora 2076222 auroral 57444 aurorales 17932 auroras 252539 +aurotiomalato 291 aurícula 277151 aurículas 103375 aurífera 128475 @@ -55271,6 +55631,7 @@ autoaplicó 169 autoaplique 47 autoaprendizaje 36739 autoaprendizajes 165 +autoarchivar 509 autoarchivo 842 autoasigna 1287 autoasignaba 307 @@ -55411,6 +55772,7 @@ autocoloca 180 autocompasiones 284 autocompasión 65794 autocompatibilidad 1481 +autocompatible 1060 autocomplacencia 55940 autocomplaciente 23761 autocomplacientes 7627 @@ -55666,7 +56028,12 @@ autodescubrimiento 20524 autodescubrimientos 248 autodesignaciones 546 autodesignación 4899 +autodesignada 1179 +autodesignadas 362 +autodesignado 4099 +autodesignados 2428 autodesignarse 2253 +autodesignó 2331 autodesprecio 13755 autodestrucciones 405 autodestrucción 142952 @@ -55730,6 +56097,8 @@ autodidactas 43718 autodidactismo 26688 autodidacto 57611 autodidactos 12974 +autodidáctico 7062 +autodifusión 1715 autodireccional 657 autodirección 15400 autodirige 569 @@ -55774,7 +56143,12 @@ autoeditarse 477 autoeditó 204 autoeducación 37489 autoeficacia 49324 +autoelegida 624 +autoelegidas 290 autoelegido 968 +autoelegidos 1145 +autoelegirse 408 +autoeligió 283 autoelimina 1034 autoeliminaba 145 autoeliminaban 89 @@ -55789,6 +56163,7 @@ autoeliminándose 347 autoeliminó 853 autoelogio 10439 autoelogios 2855 +autoempleado 2812 autoempleados 12951 autoemplearse 2359 autoempleo 71914 @@ -56453,6 +56828,7 @@ autopercepciones 5498 autopercepción 58383 autopercibida 2916 autopercibido 1407 +autopercibirse 1738 autopieza 187 autopiezas 6659 autopiloto 1258 @@ -56469,6 +56845,7 @@ autopolinizaciones 1064 autopolinización 7798 autopolinizan 515 autopolinizarse 275 +autopoliploidía 417 autoportante 6395 autoportantes 4147 autopostulado 326 @@ -56826,7 +57203,10 @@ autosacrificios 4177 autosanación 2652 autosatisfacción 28044 autosatisfacerse 1059 +autosatisfecha 3166 +autosatisfechas 557 autosatisfecho 2563 +autosatisfechos 1179 autosecuestro 3351 autosecuestros 346 autosellante 347 @@ -56885,6 +57265,7 @@ autotransformador 8928 autotransformadores 4549 autotransfusiones 219 autotransfusión 4037 +autotransportado 158 autotransportarse 121 autotransporte 97120 autotransportes 19992 @@ -57726,7 +58107,7 @@ avenías 324 avenís 889 avera 7299 averaba 260 -averada 840 +averado 230 averan 969 averando 247 averaos 81 @@ -59034,6 +59415,7 @@ azore 2025 azoren 430 azores 35191 azoriana 856 +azorianas 385 azoriano 1367 azorianos 1739 azoro 57055 @@ -59511,6 +59893,7 @@ añejó 413 añico 2201 añicos 300257 añil 542082 +añilado 1601 añiles 24179 añito 5730 añitos 42366 @@ -59843,7 +60226,10 @@ bachiche 2007 bachiches 577 bachiller 1658621 bachillera 24734 +bachillerada 1211 +bachilleradas 105 bachillerado 1266 +bachillerados 69 bachillerar 300 bachilleras 8053 bachillerato 1079969 @@ -60827,6 +61213,7 @@ balumba 59013 balumbas 1444 balá 1428 baláis 203 +balánico 815 balás 180 balé 2148 balés 114 @@ -60839,6 +61226,7 @@ balísticos 51155 baló 5397 balón 906427 bamba 60758 +bambalear 1575 bambalina 7977 bambalinas 143677 bambara 6680 @@ -61100,6 +61488,7 @@ bandeábamos 129 bandeándole 58 bandeándose 825 bandeé 45 +bandeño 448 bandeó 2632 bandicut 270 bandicuts 161 @@ -61275,6 +61664,7 @@ barajad 151 barajada 8093 barajadas 16677 barajado 43175 +barajador 1637 barajados 19806 barajadura 1008 barajamos 4976 @@ -61595,6 +61985,7 @@ bareto 3975 baretoneses 831 bargueño 26978 bargueños 15448 +baria 105238 baricentro 14762 baricentros 1755 baricéntrica 1009 @@ -61722,6 +62113,7 @@ baronets 1470 baronía 79274 baronías 29739 barquear 2636 +barquense 191 barquera 3738 barqueras 551 barquero 150230 @@ -62225,6 +62617,7 @@ basidio 3995 basidiocarpo 3497 basidiocarpos 4329 basidiolíquenes 137 +basidiomicete 375 basidiomiceto 1107 basidiomicetos 4195 basidios 13327 @@ -63014,6 +63407,8 @@ bañeras 42239 bañero 18859 bañeros 11376 bañes 11007 +bañezana 1014 +bañezanas 419 bañezano 1412 bañezanos 481 bañista 51919 @@ -63120,6 +63515,7 @@ beatísimo 13898 beatísimos 2139 beatón 1267 beaumontesa 1164 +beaumontesas 381 beaumonteses 8541 beaumontés 2094 beba 241502 @@ -63183,6 +63579,7 @@ bebida 2634203 bebidas 3624469 bebido 888205 bebidos 44907 +bebienda 789 bebiendo 932365 bebiera 80703 bebierais 575 @@ -63708,6 +64105,7 @@ bentónicos 52663 benzalconio 4453 benzaldehído 3459 benzamida 1686 +benzatropina 288 benzatínica 3580 benzfetamina 451 benzoato 41125 @@ -64114,6 +64512,7 @@ beudas 61 beudos 1095 bey 72461 beyes 8009 +beylicato 150 bezafibrato 1549 bezante 1847 bezantes 13961 @@ -64130,6 +64529,7 @@ bi 642497 biafreño 621 biafreños 1581 biajaiba 3863 +biajaibas 771 biangular 1293 biangulares 221 bianual 50560 @@ -64598,6 +64998,7 @@ billones 667065 billonésimo 1085 billullo 431 billullos 312 +bilobado 21293 bilobulada 8648 bilobuladas 5461 bilobulado 24203 @@ -64689,7 +65090,10 @@ binominal 21615 binominales 2893 binomio 443934 binomios 39853 +binucleada 1367 +binucleadas 4461 binucleado 1268 +binucleados 1608 binuclear 1434 binucleares 805 biná 350 @@ -64770,6 +65174,7 @@ biodegradados 495 biodegradan 375 biodegradar 795 biodegradarse 511 +biodeterioro 1989 biodigestor 4045 biodigestores 4301 biodinámica 7267 @@ -64788,6 +65193,7 @@ biodiverso 1572 biodiversos 1731 biodiésel 16785 bioeconomía 3752 +bioelectrónica 1019 bioelemento 788 bioelementos 4311 bioeléctrica 9622 @@ -64968,6 +65374,7 @@ biopolítica 38835 biopolíticas 3584 bioproceso 282 bioprocesos 1307 +bioprospección 11110 biopsia 436924 biopsian 361 biopsiar 3181 @@ -65059,6 +65466,7 @@ bipartidismo 143461 bipartidismos 700 bipartidista 130402 bipartidistas 18115 +bipartido 12681 bipartita 46810 bipartitas 8000 bipartito 18092 @@ -65074,6 +65482,7 @@ bipinnada 2986 bipinnadas 11195 bipinnado 1297 bipinnados 276 +bipinnatifida 831 bipiramidal 3343 bipiramidales 2373 bipirámide 2040 @@ -65091,7 +65500,10 @@ bipolaridades 2055 bipolarismo 9764 bipolarizaciones 334 bipolarización 19001 +bipolarizada 1482 +bipolarizadas 245 bipolarizado 1643 +bipolarizados 142 bipolarizar 361 bipolo 1110 biprovincial 521 @@ -65213,8 +65625,10 @@ bisbises 410 bisbisó 1007 bisbita 1057 bisbitas 688 +bischofita 285 biscocho 13437 biscochos 7948 +biscote 770 biscotte 190 biscottes 221 bise 9242 @@ -65280,6 +65694,7 @@ bisilábicos 1811 bislama 300 bismutita 2894 bismuto 277829 +bisnes 6189 bisnieta 43673 bisnietas 5145 bisnieto 105850 @@ -65343,6 +65758,7 @@ bitono 816 bitonos 158 bits 324875 bitubo 1217 +bitumen 17875 bituminosa 43245 bituminosas 90766 bituminoso 75200 @@ -65351,6 +65767,7 @@ biturbina 522 biturbo 466 bitácora 136821 bitácoras 23368 +bitúmenes 7390 biunívoca 36564 biunívocas 3581 biunívoco 2091 @@ -65695,6 +66112,10 @@ blanquitos 12604 blanquitud 2637 blanquiverde 846 blanquiverdes 719 +blanquizca 50119 +blanquizcas 38509 +blanquizco 74898 +blanquizcos 23640 blanquísima 94274 blanquísimas 47811 blanquísimo 68471 @@ -65708,6 +66129,10 @@ blasfemad 213 blasfemada 2342 blasfemadas 116 blasfemado 41198 +blasfemador 5690 +blasfemadora 879 +blasfemadoras 197 +blasfemadores 5593 blasfemados 1785 blasfemamente 1887 blasfemamos 1601 @@ -66186,6 +66611,7 @@ bochos 805 bochó 482 bochófilo 75 bochófilos 180 +bociblanco 458 bocina 312233 bocinaba 286 bocinaban 91 @@ -66543,6 +66969,8 @@ bolivaristas 4841 boliviana 1409580 bolivianas 333301 bolivianidad 9551 +bolivianismo 4742 +bolivianismos 2426 bolivianita 274 bolivianito 522 bolivianitos 293 @@ -66598,6 +67026,7 @@ bolseros 5229 bolsería 826 bolserías 471 bolseó 241 +bolsico 6339 bolsilla 9901 bolsillo 3692828 bolsillos 1372045 @@ -66700,6 +67129,7 @@ bombardeada 72570 bombardeadas 26235 bombardeado 95204 bombardeador 1321 +bombardeadora 143 bombardeadores 1383 bombardeados 40464 bombardeamos 2773 @@ -66941,6 +67371,8 @@ bonistas 16053 bonita 1984821 bonitamente 55808 bonitas 722399 +bonitica 1183 +bonitico 721 bonito 1890994 bonitos 461900 bonitísima 1561 @@ -67039,6 +67471,7 @@ borbones 43141 borbonista 4293 borbonistas 13489 borborigmo 3671 +borborita 71 borbota 6657 borbotaba 4605 borbotaban 1742 @@ -67299,6 +67732,7 @@ borrachazo 345 borrachazos 131 borrachera 556443 borracheras 258000 +borrachero 6577 borrachería 4000 borracherías 4469 borrachina 865 @@ -67483,6 +67917,7 @@ borujos 607 boruro 1138 boruros 1901 borzoi 413 +borónico 94 bosa 9793 bosaba 298 bosaban 139 @@ -68653,6 +69088,7 @@ briofitas 7505 briofito 69 briofitos 1431 briología 974 +briológico 503 briosa 119771 briosamente 55919 briosas 27980 @@ -69050,6 +69486,7 @@ brutalistas 982 brutaliza 1609 brutalizaba 404 brutalizaban 304 +brutalización 4660 brutalizada 1637 brutalizadas 630 brutalizado 2555 @@ -69413,6 +69850,7 @@ bukake 154 bula 1210302 bulaqueño 61 bulas 769456 +bulbar 68290 bulbillo 1873 bulbillos 14731 bulbo 403060 @@ -69561,6 +69999,7 @@ buquecillos 3387 buques 9136803 buquet 1225 buquets 153 +buquinista 397 buqué 8333 buqués 2803 burbuja 412756 @@ -69677,6 +70116,7 @@ burladeros 10406 burlado 547204 burlador 161642 burladora 14997 +burladoras 2511 burladores 50255 burlados 189230 burlamos 19663 @@ -69881,6 +70321,7 @@ buscamos 989561 buscan 4415671 buscando 8251409 buscaos 631 +buscapegas 53 buscapersonas 6817 buscapié 7947 buscapiés 14064 @@ -70142,6 +70583,7 @@ bélicas 487926 bélico 1086289 bélicos 694778 béntica 3802 +bénticas 3757 béntico 777 bénticos 3886 bésale 3507 @@ -70405,6 +70847,7 @@ cabalísticos 41780 cabaret 293984 cabaretera 13811 cabareteras 6701 +cabaretero 3463 cabaretista 657 cabarets 136777 cabaré 17988 @@ -71192,6 +71635,7 @@ cachudito 390 cachuditos 112 cachudo 3941 cachudos 1041 +cachuelero 269 cachumbambé 1444 cachumbambés 110 cachurear 174 @@ -71937,6 +72381,7 @@ calchaquí 42337 calchaquíes 72895 calchaquís 1598 calcideos 998 +calcidoideo 124 calcifica 4759 calcificaba 129 calcificaban 99 @@ -73137,6 +73582,7 @@ calós 1089 cama 13861326 camachuelo 1695 camachuelos 775 +camacita 435 camada 112475 camadas 57069 camafeo 58025 @@ -73351,6 +73797,7 @@ camboyanos 17055 cambrais 700 cambray 30738 cambronera 4905 +cambrón 4808 cambuche 5198 cambuches 3045 cambujo 8740 @@ -74795,6 +75242,8 @@ canteándose 103 canteó 347 cantidad 44219316 cantidades 10609615 +cantiga 124475 +cantigas 144522 cantil 75773 cantilena 62346 cantilenas 26747 @@ -75635,6 +76084,7 @@ capturada 178810 capturadas 155362 capturado 766704 capturador 5434 +capturadora 1097 capturadoras 552 capturadores 4531 capturados 591112 @@ -75959,6 +76409,7 @@ caramillo 62829 caramillos 19340 carancho 29178 caranchos 35983 +carandilla 435 carantoña 9398 carantoñas 40304 carao 18935 @@ -76024,12 +76475,15 @@ carballos 2593 carbamato 9715 carbamatos 13019 carbamazepina 23042 +carbamilo 361 carbaminohemoglobina 504 carbamoil 1721 carbaniones 1160 carbanión 2232 carbapenem 1933 carbapenemasas 680 +carbapenemes 1394 +carbapenems 1213 carbaril 3259 carbarilo 643 carbenio 179 @@ -76341,6 +76795,8 @@ carcomo 651 carcomí 73 carcomía 26373 carcomían 7026 +carcunda 3349 +carcundas 1766 carcundia 542 carda 54490 cardaba 2120 @@ -76470,6 +76926,7 @@ cardiotorácicas 293 cardiotorácico 2477 cardiotorácicos 282 cardiotoxicidad 5475 +cardiotoxina 172 cardiotónica 2752 cardiotónicas 1379 cardiotónico 3843 @@ -76995,6 +77452,8 @@ cariátide 18573 cariátides 62820 carié 183 cariéis 711 +cariñena 2871 +cariñenas 116 cariñito 13122 cariñitos 6193 cariño 6383907 @@ -77279,6 +77738,7 @@ carragenano 1448 carragenanos 1280 carragenina 3289 carrageninas 460 +carraleja 1173 carrancismo 54529 carrancista 114608 carrancistas 189792 @@ -77842,6 +78302,8 @@ cascaran 309 cascaras 55560 cascare 420 cascaremos 161 +cascarilla 148717 +cascarillas 11028 cascarillero 1506 cascarilleros 5072 cascarita 12281 @@ -78120,6 +78582,7 @@ castelleros 622 castellonense 24072 castellonenses 11001 castells 7640 +castense 167 casticismo 145944 casticismos 11993 casticista 25297 @@ -78904,6 +79367,8 @@ catexis 7659 cateé 179 cateéis 202 cateó 3594 +catilinaria 22168 +catilinarias 12532 catinona 355 cationes 199107 catire 24977 @@ -79582,6 +80047,8 @@ cavéis 390 cavés 49 cavícola 577 cavó 64292 +caxcana 2024 +caxcanas 153 caxcanes 8992 caxcán 1444 cayac 356 @@ -80460,7 +80927,6 @@ celebren 655829 celebres 117752 celebridad 896097 celebridades 181829 -celebrities 4978 celebrity 3211 celebro 540422 celebrá 4768 @@ -82381,6 +82847,7 @@ chachá 3697 chachás 774 chaché 196 chachí 217 +chachón 102 chacinado 2077 chacinados 8358 chacinería 5920 @@ -82640,6 +83107,7 @@ chamo 10600 chamorro 12157 chamorros 5659 chamos 8885 +chamota 3834 chamoy 873 champa 27347 champaca 994 @@ -82806,6 +83274,7 @@ chanceó 3561 chancha 23245 chanchas 6466 chanchi 1081 +chanchita 2807 chanchito 19064 chanchitos 14626 chancho 173838 @@ -84160,6 +84629,7 @@ chilpayate 2368 chilpayates 2103 chiltoma 2140 chiltomas 1285 +chimal 3746 chimalteca 415 chimalteco 1023 chimaltecos 2455 @@ -84242,6 +84712,8 @@ chinchanos 1788 chinchara 72 chincharía 51 chinchas 10632 +chinchayote 1275 +chinchayotes 279 chinche 89847 chinchen 839 chinchero 1418 @@ -84545,6 +85017,7 @@ chirriase 645 chirriasen 521 chirrido 216979 chirridos 65011 +chirrinche 1260 chirrionera 1783 chirrioneras 500 chirris 1432 @@ -85016,6 +85489,7 @@ chompipe 8376 chompipes 5013 chompita 943 chompitas 291 +chomskiano 4724 chon 15637 chona 2825 chonas 590 @@ -85191,6 +85665,7 @@ chorrillos 18539 chorrito 95328 chorritos 15697 chorro 979238 +chorrocientos 974 chorromil 284 chorros 412540 chors 370 @@ -85575,6 +86050,7 @@ chuquisaqueño 15799 chuquisaqueños 10463 chura 19919 churas 2343 +churchiliano 301 churra 14309 churras 7874 churrasca 721 @@ -85847,6 +86323,7 @@ ciberacoso 6453 ciberactivismo 1368 ciberactivista 390 ciberactivistas 864 +ciberadicción 289 ciberamigo 60 ciberamigos 235 ciberataque 1616 @@ -85987,9 +86464,14 @@ ciclamatos 2424 ciclamen 5342 ciclamino 983 ciclaminos 341 +ciclan 1799 +ciclanos 192 +ciclar 1498 ciclas 3580 ciclasa 20492 ciclasas 535 +cicle 7001 +cicles 2077 ciclicidad 12682 ciclina 13752 ciclinas 7048 @@ -86022,6 +86504,7 @@ ciclohexanona 4333 ciclohexanonas 201 ciclohexanos 628 ciclohexeno 2912 +ciclohexilamina 939 ciclohexilo 744 cicloheximida 5388 ciclohidrolasa 233 @@ -86087,6 +86570,7 @@ ciclística 3449 ciclísticas 1864 ciclístico 1703 ciclísticos 553 +cicló 2457 ciclón 286719 ciclónica 26821 ciclónicas 14143 @@ -87480,12 +87964,14 @@ citogenético 11426 citogenéticos 11239 citología 99652 citologías 7255 +citolítico 2283 citológica 25095 citológicas 21467 citológico 54524 citológicos 29748 citomegalovirus 36050 citometría 11937 +citopatología 1746 citopenia 2240 citopenias 5266 citoplasma 280502 @@ -87498,6 +87984,7 @@ citoplásmica 17286 citoplásmicas 11931 citoplásmico 7921 citoplásmicos 9579 +citoprotector 763 citoquina 3529 citoquinas 33233 citoquinina 1565 @@ -88053,6 +88540,7 @@ clarísimamente 40981 clarísimas 49668 clarísimo 263951 clarísimos 57101 +clarón 590 clase 55136330 clasemediera 5477 clasemedieras 2021 @@ -88402,6 +88890,7 @@ clavándosela 1721 clavándote 1363 claváramos 259 clavársela 5246 p +clavárselas 1263 clavárselo 5803 clavás 620 clavásemos 184 @@ -88579,9 +89068,15 @@ clitorianos 387 clitoridectomía 3243 clitoridectomías 190 clitoridiano 1629 +cliva 1349 clivaje 74799 clivajes 27604 +clivando 167 clivar 562 +clivas 52 +clive 3799 +clives 897 +clivo 1069 cloaca 230276 cloacal 75599 cloacales 98776 @@ -89661,10 +90156,13 @@ cocodrilo 310331 cocodrilos 206047 cocoide 1605 cocol 5117 +cocola 2045 +cocolas 421 cocoles 3260 cocoliche 22965 cocolitofórido 74 cocolitofóridos 2206 +cocolo 3993 cocolón 338 cocomes 4619 cocona 4087 @@ -90294,6 +90792,7 @@ cogones 163 cogorza 9296 cogorzas 1393 cogote 205556 +cogotear 591 cogotes 9265 coguionista 10582 coguionistas 662 @@ -90440,6 +90939,7 @@ cohesores 763 cohete 362743 cohetera 2136 coheteras 4423 +cohetero 13238 cohetería 24002 coheterías 2551 cohetes 820226 @@ -91442,7 +91942,6 @@ coliguemos 336 coliguen 1509 coligues 2726 coligué 45 -coligándolos 43 coligándose 3427 coligó 6799 coligüe 4481 @@ -91838,6 +92337,7 @@ colodrillo 46677 colodrillos 1235 colofones 15078 colofonia 43034 +colofonias 5043 colofón 379274 coloidal 176422 coloidales 82605 @@ -91978,6 +92478,7 @@ coloradas 362209 coloradismo 32526 colorado 1222939 colorados 578198 +coloradote 10024 colorala 90 coloralo 54 coloramos 217 @@ -97251,6 +97752,8 @@ concretó 485503 concréteme 44 concu 61249 concubina 291561 +concubinaria 18132 +concubinario 20162 concubinas 198372 concubinato 295040 concubinatos 17275 @@ -99179,6 +99682,8 @@ conformados 213869 conformamos 92630 conforman 2478133 conformando 457979 +conformante 5047 +conformantes 13928 conformaos 2185 conformar 1067574 conformara 35657 @@ -104164,6 +104669,7 @@ contrafuerte 98583 contrafuertes 309215 contrafáctico 12929 contrafácticos 9514 +contragiro 1446 contragolpe 78800 contragolpea 341 contragolpeaba 149 @@ -104287,6 +104793,8 @@ contraloras 3749 contralores 50006 contraloría 61490 contralorías 27324 +contralto 127825 +contraltos 17172 contraluces 8848 contraluz 113466 contramaestre 196432 @@ -104304,6 +104812,7 @@ contramanifestantes 2415 contramano 42541 contramarca 30633 contramarcada 2137 +contramarcar 3620 contramarcas 14921 contramarcha 53691 contramarchaba 2038 @@ -104463,6 +104972,7 @@ contrapropuestas 17010 contraprotesta 3922 contraprotestas 2048 contraprueba 44360 +contrapublicidad 1275 contrapuesta 144592 contrapuestas 344534 contrapuesto 174680 @@ -107085,6 +107595,7 @@ cordobeses 258033 cordobesista 335 cordobesistas 126 cordobés 633151 +cordoma 2159 cordoncillo 70794 cordoncillos 21245 cordonera 2147 @@ -107314,6 +107825,7 @@ corner 37556 corners 6845 corneta 332172 cornetas 236761 +cornetazo 1788 cornete 31850 cornetes 27862 cornetines 10407 @@ -107504,6 +108016,8 @@ corotos 14165 corozaleña 501 corozaleño 393 corozaleños 377 +corozo 36939 +corozos 8399 corpachones 1975 corpachón 44023 corpiño 161321 @@ -109421,10 +109935,12 @@ covers 18390 cowboy 56448 cowboys 31218 coworking 1338 +coxa 46299 coxal 28568 coxales 15628 coxalgia 13361 coxalgias 2096 +coxas 59253 coxis 41584 coy 38996 coya 66614 @@ -109520,6 +110036,7 @@ crapulosa 11399 crapulosas 3436 crapuloso 12341 crapulosos 6534 +craquear 1120 craquelado 4723 craqueo 17628 craqueos 121 @@ -109853,8 +110370,13 @@ creosoto 751 crep 6865 crepa 5386 crepado 1169 +crepando 470 crepar 1946 +crepare 1873 crepas 9450 +crepe 10691 +crepen 190 +crepes 16095 crepita 33611 crepitaba 30115 crepitaban 16778 @@ -109884,6 +110406,7 @@ crepite 1144 crepiten 773 crepito 1112 crepitó 10163 +crepo 3660 creps 3717 crepuscular 284512 crepusculares 98162 @@ -110279,6 +110802,7 @@ crinoideo 896 crinoideos 17260 crinolina 24515 crinolinas 15393 +crinudo 1655 crinándose 85 crinó 107 crio 176787 @@ -111886,6 +112410,8 @@ cuaresmales 22310 cuaresmas 22685 cuaresmeño 2167 cuaresmeños 1329 +cuark 772 +cuarks 1669 cuarta 6974753 cuartal 12808 cuartales 16346 @@ -112813,6 +113339,8 @@ cuidadísimo 3798 cuidamos 86065 cuidan 601679 cuidando 1440804 +cuidante 2931 +cuidantes 1616 cuidao 43487 cuidaos 5731 cuidapalos 205 @@ -112889,6 +113417,7 @@ cuiltas 165 cuina 9272 cuinas 497 cuinique 270 +cuir 12786 cuis 11886 cuita 123267 cuitas 225255 @@ -113913,6 +114442,8 @@ curicanos 1683 curiche 2229 curiches 3247 curichi 1263 +curie 22477 +curies 11457 curil 856 curiles 857 curio 86532 @@ -114758,6 +115289,7 @@ cíales 82755 cían 92432 cías 132023 cíber 1674 +cíbolo 5865 cíborg 2943 cíborgs 1323 cícada 147 @@ -115052,6 +115584,7 @@ dactilografías 158 dactilograma 5887 dactilogramas 5293 dactilográfico 2031 +dactiloscopía 2643 dactiloscópica 24327 dactiloscópicas 11925 dactiloscópico 14211 @@ -115673,6 +116206,7 @@ debatís 763 debdos 22739 debe 134777682 debed 1548 +debedme 117 debela 6697 debelaba 865 debelaban 441 @@ -115702,11 +116236,14 @@ debelemos 177 debelen 427 debeles 1531 debelo 6027 +debelos 1507 debelá 131 debelé 153 debeló 5657 +debeme 491 debemos 17435364 deben 53488820 +debenos 5613 debeos 544 deber 15155646 deberemos 464852 @@ -117567,6 +118104,7 @@ defenestrada 2239 defenestradas 573 defenestrado 18319 defenestrados 5178 +defenestramiento 1111 defenestran 579 defenestrando 923 defenestrar 7799 @@ -119367,6 +119905,7 @@ demandé 15503 demandéis 949 demandés 279 demandó 475224 +demantoide 170 demarca 73911 demarcaba 11535 demarcaban 8490 @@ -119463,6 +120002,7 @@ demedie 309 demedio 4529 demedió 481 demencia 915048 +demenciado 1382 demencial 112184 demenciales 33467 demencias 62677 @@ -125533,8 +126073,6 @@ desbandes 2901 desbando 1201 desbandá 155 desbandábamos 217 -desbandándola 105 -desbandándolos 208 desbandándose 5555 desbandé 161 desbandó 24405 @@ -128124,6 +128662,7 @@ descongelamientos 396 descongelamos 335 descongelan 3223 descongelando 3175 +descongelante 609 descongelar 26818 descongelara 1123 descongelaran 707 @@ -129413,6 +129952,7 @@ descárgame 140 descárganos 192 descárguelo 74 descúbrelo 1916 +descúbrelos 302 descúbrese 31741 desdar 1208 desde 228457124 @@ -130504,6 +131044,7 @@ desempolvada 2764 desempolvadas 2181 desempolvado 13007 desempolvados 3379 +desempolvamiento 983 desempolvamos 1043 desempolvan 4506 desempolvando 11687 @@ -134548,7 +135089,6 @@ desinteresen 1876 desintereses 1919 desintereso 718 desinteresáis 50 -desinteresándolo 124 desinteresándome 152 desinteresándonos 265 desinteresándose 8401 @@ -134887,6 +135427,7 @@ desligada 144915 desligadas 55949 desligado 206770 desligados 96389 +desligadura 1173 desligamiento 17452 desligamos 3563 desligan 17135 @@ -137059,6 +137600,7 @@ desolándose 541 desolé 1142 desoléis 215 desoló 16445 +desomorfina 83 desopilante 13166 desopilantes 6575 desorbita 7799 @@ -137897,6 +138439,8 @@ despedirían 8629 despedirías 476 despediste 11683 despedisteis 1279 +despedázale 173 +despedázame 257 despedí 268741 despedía 374200 despedíais 210 @@ -138895,6 +139439,9 @@ despistándose 343 despisté 2112 despistéis 163 despistó 10487 +despitar 797 +despite 12135 +despites 381 despiértanos 769 despiértate 9121 despiértense 649 @@ -141190,6 +141737,7 @@ destrocó 513 destrona 16245 destronaba 3301 destronaban 1413 +destronable 103 destronad 161 destronada 46246 destronadas 6369 @@ -143735,6 +144283,7 @@ diaconado 47807 diaconados 83 diaconal 10490 diaconales 4078 +diaconicón 140 diaconisa 8412 diaconisas 13860 diaconía 10526 @@ -144439,6 +144988,7 @@ dicten 736844 dicterio 33247 dicterios 152105 dictes 3164 +dictiosoma 412 dicto 276362 dictum 154809 dictums 172 @@ -144569,6 +145119,7 @@ dietado 8425 dietados 1017 dietan 1295 dietando 1530 +dietanolamina 1774 dietar 10623 dietara 642 dietaran 87 @@ -145400,7 +145951,6 @@ dignos 3373809 digná 729 dignábamos 155 dignáis 7545 -dignándole 156 dignándome 193 dignándonos 53 dignándoos 376 @@ -145896,6 +146446,7 @@ dimensioné 299 dimensionés 199 dimensionó 2712 dimensión 7901649 +dimercaptosuccínico 861 dimeriza 737 dimerización 6107 dimerizada 104 @@ -146571,6 +147122,7 @@ dirimid 147 dirimida 22903 dirimidas 19517 dirimido 19605 +dirimidor 5600 dirimidos 9332 dirimiendo 20050 dirimiera 8010 @@ -147004,6 +147556,7 @@ discrimen 50186 discrimina 171737 discriminaba 21664 discriminaban 12431 +discriminabilidad 907 discriminaciones 361001 discriminación 3347834 discriminad 551 @@ -152091,6 +152644,7 @@ dragoneábamos 53 dragoneándola 52 dragoneó 136 dragos 8617 +drags 1995 drague 1219 draguen 313 dragueros 129 @@ -152340,6 +152894,7 @@ droide 9245 droides 5486 dromedario 47698 dromedarios 43843 +dromos 7211 dron 35518 drone 5849 drones 48679 @@ -153054,8 +153609,25 @@ dátil 55127 dátiles 213457 dáurica 179 dé 13551578 +débala 75 +débale 4125 +débales 430 +débalo 840 +débame 551 +débanle 102 +débanme 166 +débannos 92 +débanos 559 débanse 509 débase 3733 +débela 4617 +débelas 1354 +débele 7465 +débeles 2051 +débelo 18536 +débelos 4592 +débeme 1329 +débenos 967 débete 743 débil 7658915 débiles 4264186 @@ -153482,6 +154054,7 @@ ecocidios 975 ecocrítica 1546 ecodiseño 2256 ecoeficiencia 8881 +ecoetiqueta 2333 ecofeminismo 12457 ecofeminismos 309 ecofeminista 5750 @@ -153665,6 +154238,7 @@ ectodérmico 9169 ectodérmicos 3222 ectomicorriza 644 ectomicorrizas 2234 +ectomicorrícico 239 ectomicorrízicos 296 ectoparasitoide 247 ectoparasitoides 423 @@ -154402,7 +154976,9 @@ egiptana 166 egiptanos 463 egiptología 15545 egiptológica 1295 +egiptológicas 383 egiptológico 537 +egiptológicos 974 egiptóloga 1455 egiptólogo 19619 egiptólogos 20060 @@ -154983,6 +155559,7 @@ elanio 404 elanios 74 elasmobranquio 770 elasmobranquios 7708 +elastancia 1704 elastano 1005 elastasa 8674 elastasas 905 @@ -155054,6 +155631,7 @@ electrificad 94 electrificada 21280 electrificadas 21329 electrificado 21683 +electrificador 521 electrificados 14853 electrificamos 128 electrifican 1325 @@ -155650,6 +156228,7 @@ elimina 1311402 eliminaba 122437 eliminaban 40987 eliminabas 213 +eliminable 10234 eliminaciones 59750 eliminación 3820564 eliminad 1944 @@ -158341,6 +158920,7 @@ emende 2065 emendemos 1592 emendes 1063 emendo 5122 +emenerrista 1530 emerge 980884 emerged 4697 emergemos 3104 @@ -169592,6 +170172,7 @@ enmadrado 1291 enmadrados 274 enmadrarse 146 enmadre 60 +enmagrecer 776 enmalla 494 enmallada 1404 enmalladas 839 @@ -170221,6 +170802,7 @@ enormísima 34258 enormísimas 4201 enormísimo 10784 enormísimos 5797 +enosis 1876 enoteca 1440 enotecas 404 enoturismo 2959 @@ -170302,6 +170884,7 @@ enraizamiento 105246 enraizamientos 2186 enraizamos 1191 enraizando 7875 +enraizante 982 enraizar 41717 enraizara 2025 enraizaran 977 @@ -171094,6 +171677,7 @@ enrumbé 991 enrumbó 14521 enruta 1892 enrutaba 285 +enrutable 263 enrutada 672 enrutadas 457 enrutado 1765 @@ -172065,6 +172649,7 @@ ensoñadora 25503 ensoñadoras 4483 ensoñadores 6549 ensoñados 4086 +ensoñamiento 2433 ensoñamos 589 ensoñando 4686 ensoñar 15039 @@ -174875,6 +175460,7 @@ entusiásticamente 32803 entusiásticas 7676 entusiástico 18345 entusiásticos 10861 +entático 45 entérate 18560 entérense 1538 entérese 9524 @@ -176099,6 +176685,7 @@ epeo 7236 epeos 6503 eperlano 981 eperlanos 1306 +epibatidina 348 epibentos 259 epicarpio 18399 epicarpios 266 @@ -176165,6 +176752,7 @@ epidérmica 81872 epidérmicas 80063 epidérmico 67634 epidérmicos 31430 +epidíctico 10073 epidídimo 52111 epidídimos 3817 epifanía 156880 @@ -176358,6 +176946,7 @@ epopéyicas 3645 epopéyico 12475 epopéyicos 4375 epoxidación 1971 +epsomita 4536 epulones 3128 epulón 3806 epéndimo 10814 @@ -177579,7 +178168,6 @@ escabulliría 1657 escabullirían 275 escabulliste 667 escabullo 7596 -escabulléndole 91 escabulléndome 1498 escabulléndonos 444 escabulléndose 11868 @@ -178887,6 +179475,7 @@ escayolaron 531 escayolarse 81 escayolas 10876 escayolen 103 +escayolista 2096 escayoló 261 escazuceño 390 escaña 10659 @@ -179437,6 +180026,8 @@ escolarizó 499 escolasticado 3416 escolasticismo 114925 escolasticismos 2410 +escoliasta 17690 +escoliastas 13865 escolio 43318 escolios 69969 escoliosis 76007 @@ -179941,6 +180532,8 @@ escrituró 15205 escrivania 7975 escrivanias 3922 escrivanos 67098 +escrofulariácea 1535 +escrofulariáceas 5644 escrofulosa 43196 escrofulosas 35947 escrofuloso 34665 @@ -180752,6 +181345,7 @@ esferoides 25632 esferos 1249 esferulita 234 esferulitas 3855 +esferulítico 729 esfigmomanómetro 8945 esfigmomanómetros 1470 esfinge 262516 @@ -181018,6 +181612,7 @@ esgucio 545 esguince 67116 esguinces 53008 esguines 1091 +esguinzar 103 esguín 512 esguízara 1149 esguízaras 92 @@ -181754,6 +182349,7 @@ espatáceas 1579 espatáceo 1537 español 38914653 española 30194940 +españolada 16332 españolas 7803971 españolaza 341 españolazo 878 @@ -182026,7 +182622,10 @@ espectrofotómetros 5029 espectrografía 9277 espectrograma 11905 espectrogramas 14212 +espectrográfica 2692 +espectrográficas 2778 espectrográfico 11204 +espectrográficos 5336 espectrometría 38665 espectros 577207 espectroscopia 55246 @@ -185062,6 +185661,7 @@ estereoisómero 1594 estereoisómeros 5456 estereolitografía 419 estereología 676 +estereopsis 3562 estereoquímica 14029 estereoquímicas 1804 estereoquímico 1148 @@ -185232,6 +185832,7 @@ esteroideas 16699 esteroideo 10470 esteroideos 45936 esteroides 229615 +esteroidogénico 460 esterol 6366 esteroles 21765 esteros 365198 @@ -185877,6 +186478,8 @@ estomacal 179440 estomacales 99161 estomagante 2942 estomagantes 690 +estomagar 1163 +estomago 149647 estomas 96553 estomatitis 80068 estomatología 17187 @@ -186773,6 +187376,7 @@ estrigosa 2949 estrigosas 5605 estrigoso 7645 estrigosos 6004 +estriguloso 2861 estriptis 3555 estriptises 97 estriptís 1963 @@ -187225,6 +187829,7 @@ estupros 27173 estuque 5958 estuquen 111 estuques 1460 +estuquista 3747 esturiones 10603 esturión 24070 estuve 2591711 @@ -187316,6 +187921,7 @@ estúpidamente 153793 estúpidas 209683 estúpido 1104080 estúpidos 358520 +esvano 70 esvara 158 esvarar 284 esvástica 26475 @@ -187560,6 +188166,7 @@ etnicidades 9357 etnicismo 9813 etnicismos 1097 etnicista 11023 +etnoarqueológico 2928 etnobiología 2747 etnobotánica 30014 etnobotánicas 4717 @@ -188283,6 +188890,7 @@ evaporen 9259 evapores 389 evaporita 859 evaporitas 24430 +evaporizar 1296 evaporo 2613 evaporándola 3079 evaporándolas 605 @@ -189063,6 +189671,7 @@ exasperé 1364 exasperéis 735 exasperó 62356 exaspirante 477 +exastronauta 145 exatleta 404 exatletas 113 exautoridad 132 @@ -190692,6 +191301,7 @@ exilando 539 exilar 3339 exilara 370 exilaran 174 +exilarca 2085 exilares 190 exilarla 89 exilarlo 276 @@ -191119,6 +191729,7 @@ exorcizados 4183 exorcizamos 544 exorcizan 4308 exorcizando 6528 +exorcizante 2379 exorcizar 78808 exorcizara 1510 exorcizaran 357 @@ -194000,6 +194611,7 @@ extramuros 408662 extramusical 4231 extramusicales 6629 extranet 4398 +extranets 1813 extranjera 7335328 extranjeras 6714475 extranjere 867 @@ -195919,6 +196531,7 @@ falúa 86126 falúas 33763 fama 9101533 famas 84504 +famatiniano 957 fambres 389 fame 42094 fames 20086 @@ -196263,6 +196876,7 @@ fardo 403306 fardos 502847 fardé 85 fardó 639 +fardón 941 farellones 11090 farellón 5230 faremos 28125 @@ -196717,6 +197331,7 @@ fatigáramos 91 fatigás 42 fatigásemos 116 fatigó 39853 +fatimida 530 fatimita 5154 fatimí 13971 fatimíes 12514 @@ -196868,6 +197483,7 @@ fealdad 669431 fealdades 62773 feamente 36521 feas 583476 +feazo 382 feble 82652 febles 24109 febrerista 10147 @@ -196877,6 +197493,7 @@ febreros 4780 febrescorderismo 357 febricitante 30330 febricitantes 18995 +febrifugo 5223 febril 1105594 febriles 341593 febrilmente 149080 @@ -196951,6 +197568,7 @@ fechándose 3722 fechás 191 feché 1249 fechó 36079 +fecial 4145 fecunda 2445895 fecundaba 13241 fecundabais 42 @@ -197284,6 +197902,7 @@ felipista 11803 felipistas 7713 feliz 13083662 felizmente 1733737 +felliniana 1870 felliniano 2046 fellow 27660 fellows 6531 @@ -197549,6 +198168,8 @@ fenólico 13999 fenólicos 40735 fenómeno 16276554 fenómenos 9934521 +fenóxido 927 +fenóxidos 171 feo 1714651 feocromocitoma 29385 feocromocitomas 8192 @@ -197858,6 +198479,7 @@ fertilizad 201 fertilizada 31487 fertilizadas 23987 fertilizado 56804 +fertilizador 10725 fertilizados 30460 fertilizamos 692 fertilizan 85290 @@ -198166,6 +198788,7 @@ fiabais 238 fiaban 55905 fiabas 2221 fiabilidad 409888 +fiabilidades 1385 fiable 420670 fiablemente 4884 fiables 297336 @@ -198780,6 +199403,7 @@ filamentosa 37554 filamentosas 41918 filamentoso 26275 filamentosos 26921 +filamina 431 filamos 529 filan 8579 filando 5527 @@ -199095,12 +199719,16 @@ filosofad 205 filosofada 672 filosofadas 484 filosofado 12839 +filosofador 1457 +filosofadora 184 +filosofadores 503 filosofados 208 filosofal 137348 filosofales 5881 filosofamos 3915 filosofan 13026 filosofando 34688 +filosofante 13484 filosofar 414866 filosofara 555 filosofaran 493 @@ -200485,6 +201113,8 @@ flautistas 25964 flautín 25898 flava 28457 flavas 4045 +flavia 26732 +flaviano 602 flavina 6977 flavinas 1802 flavio 8794 @@ -200660,7 +201290,7 @@ fletero 9965 fleteros 23457 fletes 1184211 fleto 5785 -fletos 1113 +fletos 1113 p fletábamos 45 fletán 3968 fletándola 45 @@ -201624,6 +202254,7 @@ follamigos 793 p follamos 6044 follan 6004 follando 29432 +follar 94406 follara 5242 follaran 1177 follaras 544 @@ -202921,6 +203552,7 @@ fosfoglicérido 211 fosfoglicéridos 1319 fosfoglucomutasa 1771 fosfogluconato 1263 +fosfoinositol 630 fosfolipasa 16921 fosfolipasas 4443 fosfolipídica 2331 @@ -202933,6 +203565,7 @@ fosfonatos 1187 fosfonio 1467 fosfoproteína 1970 fosfoproteínas 1549 +fosfoquinasa 1149 fosforado 30037 fosforados 32137 fosforece 7837 @@ -203118,6 +203751,7 @@ fotogalería 475 fotogalerías 183 fotogenia 10420 fotograbado 83540 +fotograbador 3981 fotograbados 85766 fotografiaba 15647 fotografiaban 8160 @@ -203291,6 +203925,8 @@ fotostático 1433 fotosíntesis 171157 fototaxia 644 fototaxis 703 +fototeca 10116 +fototecas 1817 fototerapia 18137 fototerapias 53 fototipia 23994 @@ -203723,6 +204359,7 @@ francoarenosa 830 francoarenosas 76 francoarenoso 656 francoarenosos 793 +francoargentino 1711 francobelga 3366 francobordo 12191 francobordos 1065 @@ -204420,6 +205057,7 @@ freza 25896 frezaba 129 frezada 5931 frezadas 8874 +frezadero 269 frezado 215 frezados 257 frezan 682 @@ -204727,6 +205365,7 @@ frondas 264022 fronde 33773 frondes 45497 frondicismo 4425 +frondicista 4515 frondista 3559 frondistas 2961 frondizismo 8907 @@ -204761,6 +205400,7 @@ frontispicios 40418 frontman 745 frontobasal 474 frontobasales 212 +frontoncillo 845 frontones 100263 frontotemporal 10499 frontotemporales 2311 @@ -206710,6 +207350,7 @@ gacetillero 35218 gacetilleros 28210 gaceñiga 224 gacha 154545 +gachamiga 257 gachas 100965 gachito 283 gacho 38382 @@ -207363,15 +208004,18 @@ gamonal 84699 gamonales 106738 gamonalismo 55168 gamonalismos 409 +gamones 6649 gamopétala 13419 gamopétalas 5907 gamopétalo 501 gamos 144444 +gamosépalo 10201 gamusino 597 gamusinos 1114 gamuza 146744 gamuzas 27705 gamín 12614 +gamón 3877 gana 5846357 ganaba 1068242 ganabais 881 @@ -207638,6 +208282,7 @@ garabateaste 117 garabatee 547 garabateen 135 garabateo 6169 +garabatero 299 garabateábamos 129 garabateé 2281 garabateó 18775 @@ -208387,6 +209032,7 @@ gatuna 19433 gatunas 4571 gatuno 19018 gatunos 9354 +gatuperio 8515 gaucha 141228 gauchas 32816 gauchesca 202907 @@ -208419,6 +209065,8 @@ gaussiana 15875 gaussianas 3079 gaussiano 8121 gaussianos 2005 +gauta 738 +gautas 1141 gaveta 130818 gavetas 96233 gavetero 3167 @@ -208427,6 +209075,7 @@ gavia 77163 gavial 1849 gaviales 1659 gavias 48705 +gavilancito 1433 gavilanes 104948 gavilla 201861 gavillas 193609 @@ -208667,6 +209316,8 @@ genealógicamente 11761 genealógicas 98942 genealógico 396100 genealógicos 161573 +genearca 4012 +genearcas 1611 genera 4609906 generaba 349889 generaban 171354 @@ -208848,6 +209499,8 @@ generé 3257 generéis 69 generó 1213414 genes 1440019 +geneticista 2662 +geneticistas 3358 genetista 31803 genetistas 42191 genial 2004556 @@ -208924,6 +209577,7 @@ genovesa 85148 genovesas 37765 genoveses 378566 genovés 364591 +gens 263271 gentamicina 33284 gente 53784543 gentecilla 18809 @@ -209157,6 +209811,7 @@ georgiana 23857 georgianas 8932 georgiano 50192 georgianos 34537 +georgista 9543 georradar 1412 georradares 126 georreferencia 986 @@ -209626,6 +210281,8 @@ giennenses 6955 gif 5751 gifs 955 giga 15672 +gigabit 673 +gigabits 1336 gigabyte 1920 gigabytes 6011 giganta 29716 @@ -209987,6 +210644,8 @@ glasé 13812 glasés 721 glauca 66268 glaucas 36239 +glaucescente 1377 +glaucescentes 2471 glauco 46095 glaucofana 1548 glaucoma 150250 @@ -210009,6 +210668,7 @@ gliadina 7615 gliadinas 1637 glial 15031 gliales 24789 +glibenclamida 3369 glicación 4092 glicano 579 glicanos 744 @@ -210043,6 +210703,7 @@ glicosilada 4533 glicosiladas 998 glicosilado 400 glicosilados 533 +glicosilasa 232 glicosiltransferasa 84 glicosiltransferasas 165 glicosídico 1791 @@ -210706,6 +211367,7 @@ gola 143334 golas 34307 golazo 11403 golazos 1867 +golden 40256 goldre 1085 goldres 584 golea 2549 @@ -210984,6 +211646,7 @@ googleé 160 googleó 218 gorda 1055421 gordas 413805 +gordazo 1412 gordete 1048 gordetes 109 gordezuela 9179 @@ -211092,6 +211755,7 @@ gorrean 105 gorreando 708 gorrear 1741 gorreo 213 +gorrero 5930 p gorreó 112 gorrilla 14969 gorrillas 2356 @@ -212050,8 +212714,14 @@ grasosas 28974 grasoso 48814 grasosos 22282 grata 1728953 +gratada 257 gratamente 182136 +gratan 469 +gratar 1545 gratas 425820 +grate 9927 +graten 539 +grates 6093 gratifica 35632 gratificaba 9475 gratificaban 3111 @@ -212358,6 +213028,8 @@ grecorromanos 17132 grecos 3421 greda 227235 gredas 24260 +green 86236 +greens 5392 grega 12420 gregaria 65824 gregarias 23193 @@ -212741,6 +213413,7 @@ gruñías 222 gruñís 209 gruñó 412891 gruñón 66148 +grx 161 grácil 209219 gráciles 101587 gráfica 2949547 @@ -212943,6 +213616,7 @@ guanfacina 1274 guangoche 1465 guanidina 8145 guanidinas 769 +guanidinio 458 guanilato 3925 guanilil 875 guanina 31524 @@ -213150,6 +213824,7 @@ guardarraíl 1239 guardarrecursos 300 guardarropa 157393 guardarropas 25303 +guardarropía 35117 guardarrío 249 guardarríos 365 guardarse 505187 @@ -213174,6 +213849,8 @@ guardasteis 4295 guardate 17260 guardatinaja 1397 guardatinajas 1023 +guardatojo 1353 +guardatojos 1120 guardavalla 3297 guardavallas 1955 guardavidas 4128 @@ -213831,6 +214508,7 @@ guipuzcoano 107959 guipuzcoanos 109585 guiri 11038 guirigay 32041 +guirigayes 800 guirigáis 224 guiris 9939 guirnalda 337824 @@ -214040,6 +214718,9 @@ gulusmean 474 gulusmeando 239 gulusmear 1337 gulusmeo 143 +gumias 1395 +guna 454553 +gunas 206536 gunitado 1242 gunner 997 gunners 495 @@ -214049,9 +214730,11 @@ gurja 215 gurjas 735 gurmet 336 gurmé 283 +gurrumino 3484 gurruño 3477 gurruños 351 guru 18540 +gurus 5174 gurí 20918 guríes 435 gurís 140 @@ -214344,6 +215027,7 @@ güila 5883 güilada 61 güilas 5295 güilota 1137 +güimarero 77 güipil 10860 güipiles 8059 güira 18331 @@ -214381,6 +215065,9 @@ habares 5997 habas 541279 habe 71442 habed 13443 +habedla 521 +habedlo 140 +habedme 276 habemus 48044 habenular 1633 habenulares 556 @@ -215099,6 +215786,7 @@ hagiográfica 46445 hagiográficas 24265 hagiográfico 38539 hagiográficos 27158 +hagiotopónimo 1950 hagiógrafa 162 hagiógrafo 27451 hagiógrafos 24689 @@ -215822,6 +216510,8 @@ hayedo 23472 hayedos 28530 hayuco 2623 hayáis 243307 +hayámonos 294 +hayámoslo 161 hayás 2277 haz 2685467 hazara 1343 @@ -216162,6 +216852,7 @@ helicotrema 1294 helictitas 1064 helicóptero 590039 helicópteros 424629 +heliesquí 360 helio 185717 heliocentrismo 13410 heliocéntrica 26610 @@ -216299,6 +216990,7 @@ hembrista 854 hembristas 603 hembrita 16438 hembritas 7435 +hembro 1710 heme 82710 hemeralopia 7547 hemeralopía 3104 @@ -216392,6 +217084,7 @@ hemolítica 106051 hemolíticas 34167 hemolítico 62510 hemolíticos 24289 +hemopatía 2575 hemopoyesis 2819 hemopoyética 1490 hemopoyéticas 1401 @@ -217302,6 +217995,7 @@ hessianas 355 hessiano 1794 hessianos 1083 hetaira 23321 +hetairas 23702 hete 68204 hetero 51362 heteroblástica 393 @@ -217354,6 +218048,7 @@ heterofóbico 167 heterogamético 1603 heterogeneidad 1140586 heterogeneidades 32719 +heterogenita 133 heterogénea 598262 heterogéneas 372300 heterogéneo 667792 @@ -217672,6 +218367,7 @@ hidroalcohólico 4461 hidroarsenicismo 1107 hidroaviones 44742 hidroavión 52252 +hidrobiología 6269 hidrobiológica 3679 hidrobiológicas 8463 hidrobiológico 3766 @@ -218087,6 +218783,8 @@ hifales 3528 hifas 103933 higa 56747 higas 28686 +highlight 3092 +highlights 3849 higiene 3352154 higienes 1728 higienice 825 @@ -218364,6 +219062,7 @@ himenópteros 64802 himnario 12712 himnarios 5865 himno 1694297 +himnodia 2601 himnología 2658 himnos 984179 himyarita 561 @@ -218647,6 +219346,7 @@ hipercatalécticos 213 hipercelularidad 2673 hiperciclo 1329 hiperciclos 505 +hipercloremia 2469 hiperclorémica 4877 hiperclorémicas 355 hipercoagulabilidad 15227 @@ -218715,6 +219415,7 @@ hiperfinos 1433 hiperfocal 770 hiperfunciones 949 hiperfunción 30846 +hipergamia 2238 hipergammaglobulinemia 6103 hipergeométrica 5420 hipergeométricas 1418 @@ -218763,6 +219464,7 @@ hipermediales 1237 hipermedias 371 hipermercado 27453 hipermercados 44988 +hipermetamorfosis 907 hipermetilación 1897 hipermetropía 22427 hipermetropías 1047 @@ -218907,10 +219609,6 @@ hipertrofias 26953 hipertrofie 1267 hipertrofien 576 hipertrofio 185 -hipertrofiándola 51 -hipertrofiándolas 119 -hipertrofiándolo 138 -hipertrofiándolos 120 hipertrofiándose 1476 hipertrofió 2061 hipertrófica 69309 @@ -218952,6 +219650,7 @@ hipervisibles 53 hipervisor 750 hipervitaminosis 9113 hipervolumen 981 +hipervolémico 545 hipervínculo 18174 hipervínculos 15427 hiperémesis 849 @@ -219114,6 +219813,7 @@ hipofisiarias 4652 hipofisiario 10069 hipofisiarios 5053 hipofosfito 6803 +hipofosforoso 3246 hipofrontalidad 755 hipofunciones 655 hipofunción 22400 @@ -220166,6 +220866,7 @@ holográficos 4441 holometábolo 282 holomorfa 8408 holomorfas 4933 +holomorfo 679 holomíctico 80 holones 4947 holonomía 836 @@ -220368,6 +221069,7 @@ homofónica 5364 homofónicas 1584 homofónico 4415 homofónicos 1371 +homogamia 6812 homogamética 136 homogamético 1020 homogaméticos 111 @@ -221797,8 +222499,8 @@ huesudos 38048 huetar 6290 huetares 5082 hueva 32568 -huevada 10151 -huevadas 11716 +huevada 10151 p +huevadas 11716 p huevas 54610 huevazo 1141 huevazos 2321 @@ -221808,7 +222510,7 @@ hueveado 59 hueveados 128 huevean 282 hueveando 1503 -huevear 1504 p +huevear 1504 huevecillo 24963 huevecillos 125430 huevee 569 @@ -221834,10 +222536,10 @@ huevonazo 779 huevonazos 116 huevones 17209 huevos 4825300 -huevá 3666 +huevá 3666 p huevón 57523 -hueá 2055 -hueás 485 +hueá 2055 p +hueás 485 p hueón 5793 hugonota 3047 hugonotas 811 @@ -222357,6 +223059,7 @@ humosa 19529 humosas 9106 humoso 19615 humosos 7694 +humuleno 796 humus 385164 humá 1479 humáis 370 @@ -222685,6 +223388,7 @@ husmo 8244 husmos 749 huso 291324 husos 180499 +huterita 200 hutu 13980 hutus 23227 hutía 3901 @@ -222788,6 +223492,22 @@ háplicos 1925 háptica 4378 hápticas 1426 háptico 5503 +háyala 1861 +háyalas 721 +háyale 967 +háyales 54 +háyalo 2457 +háyalos 793 +háyame 238 +háyanla 613 +háyanlas 313 +háyanle 192 +háyanlo 1499 +háyanlos 320 +háyanme 46 +háyanos 119 +háyanse 9687 +háyase 15420 házmelo 9601 hégira 33006 hélice 399718 @@ -222832,6 +223552,7 @@ híspida 13407 híspidas 14518 híspido 17192 híspidos 14710 +hístico 6375 hólding 338 hórreo 35027 hórreos 23983 @@ -226196,7 +226917,11 @@ improlijo 249 impromptu 11749 impromptus 5347 impronta 638346 +improntando 113 +improntar 246 improntas 61155 +impronte 329 +impronto 1585 impronunciable 29623 impronunciables 12708 improperio 40109 @@ -227118,8 +227843,6 @@ incauten 3007 incautes 228 incauto 155433 incautos 297311 -incautándole 307 -incautándoles 272 incautándose 13751 incauté 757 incautó 60433 @@ -227532,6 +228255,7 @@ inclaudicables 3486 inclemencia 199255 inclemencias 306316 inclemente 243161 +inclementemente 2833 inclementes 61155 inclina 1897298 inclinaba 634507 @@ -227850,6 +228574,7 @@ incomparecencia 82824 incomparecencias 1221 incompatibilidad 1098624 incompatibilidades 441862 +incompatibilismo 675 incompatibilista 1029 incompatibilistas 431 incompatible 1564989 @@ -229703,6 +230428,7 @@ indisputadas 594 indisputado 12220 indisputados 1203 indistinción 36598 +indistinguibilidad 1447 indistinguible 48330 indistinguibles 52220 indistinta 122547 @@ -230729,6 +231455,7 @@ inferolaterales 708 inferomedial 2741 inferomediales 125 infertilidad 110459 +infertilidades 293 inferí 19047 infería 53733 inferíamos 738 @@ -231517,6 +232244,7 @@ infortunio 1014731 infortunios 555374 infos 1781 infoxicación 1791 +infoética 157 infracaudal 98 infracaudales 2959 infracciona 303 @@ -233533,6 +234261,7 @@ inofensivas 142585 inofensivo 395641 inofensivos 200400 inoficiosidad 14452 +inoficioso 89887 inolvidable 1170879 inolvidablemente 6639 inolvidables 410322 @@ -235269,6 +235998,7 @@ insularismo 8828 insularismos 309 insulina 742300 insulinas 9786 +insulinodependiente 11295 insulinoma 5489 insulinomas 3691 insulsa 93909 @@ -236111,6 +236841,7 @@ intercameral 1958 intercamerales 998 intercantonal 2033 intercantonales 1523 +intercapitular 163 interceda 59968 intercedamos 816 intercedan 16417 @@ -236381,6 +237112,7 @@ interdigestiva 812 interdigestivo 789 interdigestivos 477 interdigital 26934 +interdigitale 453 interdigitales 20603 interdigitar 109 interdigo 57 @@ -236498,6 +237230,7 @@ interestatal 109312 interestatales 79592 interestelar 55432 interestelares 19842 +interesterificación 731 interestratificadas 23188 interestratificado 7166 interestratificados 19149 @@ -236523,6 +237256,8 @@ intereséis 1098 interesémonos 553 interesés 3044 interesó 857368 +intereuropea 1543 +intereuropeo 2325 interfaces 90355 interfacial 13607 interfaciales 4208 @@ -236629,6 +237364,7 @@ interfoliares 1878 interfolio 73 interfon 134 interfono 32663 +interfronterizo 1644 interfértil 141 interfértiles 1036 interfón 4175 @@ -236694,6 +237430,7 @@ interinsular 14199 interinsulares 12339 interiomarginal 1657 interior 35921440 +interiorano 4695 interiores 4244628 interiorice 8611 interioricemos 695 @@ -240124,6 +240861,7 @@ ironicemos 175 ironicen 225 ironices 511 ironicé 2982 +ironista 29931 ironiza 66683 ironizaba 17665 ironizaban 2344 @@ -240188,6 +240926,7 @@ irradian 145540 irradiancia 13017 irradiancias 1155 irradiando 90677 +irradiante 50293 irradiar 148549 irradiara 8597 irradiaran 2173 @@ -240774,6 +241513,7 @@ isobutano 5183 isobutanos 65 isobutil 3409 isobutileno 3568 +isobutironitrilo 87 isobárico 4569 isocianato 6077 isocianatos 4266 @@ -241720,6 +242460,7 @@ japonismo 5763 japonización 2292 japonofilia 133 japonés 1368215 +japos 4174 japón 49532 japónica 11113 japónicas 887 @@ -241767,6 +242508,7 @@ jaquí 1659 jara 158789 jarabe 555559 jarabes 226342 +jarabugo 203 jaral 18386 jarales 46923 jaramago 19205 @@ -241921,6 +242663,7 @@ jazzística 7524 jazzísticas 3136 jazzístico 7659 jazzísticos 3174 +jazán 1778 jaña 986 jañas 189 jaño 438 @@ -241933,6 +242676,10 @@ jebuseo 6908 jebuseos 12090 jecho 8484 jedi 6170 +jedionda 1827 +jediondas 649 +jediondo 3464 +jediondos 998 jedis 655 jeep 254617 jeepeta 361 @@ -242294,7 +243041,7 @@ joden 23810 p jodeos 308 p joder 333579 p joderemos 447 p -joderla 3430 +joderla 3430 p joderlas 379 p joderle 5251 p joderles 1284 p @@ -243224,6 +243971,7 @@ juren 112043 jures 29630 juridicidad 117944 juridicidades 551 +juridicismo 6425 juridicista 7142 juridicistas 1659 jurisconsulta 1223 @@ -243755,6 +244503,8 @@ kennedyano 606 kennedyanos 51 kentuckiano 559 kentuckianos 614 +kenyana 381 +kenyano 801 kepi 7281 kepis 30510 keratina 1790 @@ -243771,6 +244521,7 @@ ketamina 22824 ketanserina 723 ketchup 27292 ketchups 155 +ketorolaco 6110 kevlar 3894 keynesiana 111512 keynesianas 37344 @@ -243801,6 +244552,7 @@ kilillo 101 kilillos 403 kilito 1752 kilitos 7459 +kiliwa 10209 kilo 1467410 kilocaloría 5019 kilocalorías 35264 @@ -244199,6 +244951,7 @@ labriegas 8006 labriego 278920 labriegos 316248 labro 92405 +labros 10424 labrá 4379 labrábamos 529 labráis 2409 @@ -244405,6 +245158,7 @@ lacrasen 89 lacre 143150 lacren 363 lacres 16105 +lacrima 4047 lacrimación 1245 lacrimado 135 lacrimal 38961 @@ -244439,6 +245193,7 @@ lactada 1700 lactadas 1103 lactado 6639 lactados 4036 +lactama 1901 lactamos 46 lactan 10995 lactancia 809617 @@ -246964,8 +247719,10 @@ legión 793136 lego 732733 legones 2599 legos 726264 +legra 18331 legrado 35364 legrados 4265 +legras 5117 legua 3093952 leguas 10556848 legue 25545 @@ -247044,6 +247801,7 @@ lema 2022077 lemario 2416 lemas 361108 lematiza 464 +lematización 5275 lematizada 818 lematizadas 896 lematizado 939 @@ -247072,6 +247830,7 @@ lencinismo 8403 lendakari 12446 lendrosa 110 lendroso 881 +lenense 422 lenga 39011 lengas 7071 lengua 30124722 @@ -248330,6 +249089,7 @@ libré 62845 libréis 6092 librés 917 libró 945269 +liburna 1215 liburnios 416 libábamos 338 libáis 439 @@ -248800,7 +249560,10 @@ ligamentario 4444 ligamentarios 1275 ligamento 620393 ligamentos 423562 +ligamentosa 22225 +ligamentosas 21796 ligamentoso 13238 +ligamentosos 5507 ligamiento 48171 ligamientos 4731 ligamos 17698 @@ -249058,6 +249821,8 @@ limasen 764 limaste 205 limate 73 limaza 2520 +limba 2997 +limbas 195 limbo 692388 limbos 72789 limburguesa 141 @@ -249245,6 +250010,7 @@ limpiadora 43959 limpiadoras 26636 limpiadores 71717 limpiados 40437 +limpiafondos 391 limpiamente 199819 limpiamos 30266 limpian 237543 @@ -249586,6 +250352,7 @@ linfático 285503 linfáticos 555133 lingones 1747 lingote 115749 +lingotera 5359 lingotes 330950 linguada 1148 linguadas 827 @@ -249888,6 +250655,7 @@ lisie 5430 lisiemos 62 lisien 3217 lisies 400 +lisimaquia 693 lisina 84250 lisinas 4084 lisio 5005 @@ -249897,6 +250665,7 @@ lisiándose 130 lisié 113 lisió 1697 liso 1136575 +lisoclina 318 lisonja 395398 lisonjas 217217 lisonjea 109339 @@ -250421,17 +251190,31 @@ llamad 60250 llamada 16928235 llamadas 5725472 llamadera 679 +llamadla 3921 +llamadlas 570 +llamadle 6099 +llamadles 552 +llamadlo 3258 +llamadlos 2169 llamadme 13387 +llamadnos 771 llamado 28794100 llamador 51687 llamadores 13424 llamados 8375069 +llamala 8290 +llamalas 1107 +llamale 12414 +llamales 811 +llamalo 3822 +llamalos 2729 llamame 5724 llamamiento 1627960 llamamientos 319650 llamamos 3346866 llaman 12436293 llamando 2163720 +llamanos 6859 llamante 10925 llamantes 2253 llamaos 2267 @@ -250552,6 +251335,7 @@ llamémosle 60595 llamémosles 11004 llamémoslo 29578 llamémoslos 9497 +llamémoste 102 llamés 1779 llamó 10072049 llana 1329636 @@ -250803,6 +251587,7 @@ llenísimos 810 llenó 1758486 llera 55698 lleras 23952 +llerista 2913 llesca 745 llescas 2738 lleva 26951183 @@ -251137,16 +251922,28 @@ llábanas 143 llámala 17008 llámalas 2937 llámale 21588 +llámales 1415 llámalo 20452 llámalos 6681 llámame 85885 llámanos 7757 llámase 145800 llámate 3365 +llámela 4391 +llámelas 891 llámele 5943 +llámeles 610 llámelo 9115 +llámelos 3005 llámeme 27483 +llámenla 1760 +llámenlas 313 +llámenle 2926 +llámenles 215 +llámenlo 3281 +llámenlos 825 llámenme 5556 +llámennos 479 llámenos 27176 llámense 98131 llámese 211251 @@ -251513,6 +252310,7 @@ logan 3918 logana 2549 loganas 473 logando 1295 +loganina 63 logar 692619 logara 1205 logaran 245 @@ -252419,6 +253217,7 @@ luisianos 2367 luisianés 1018 luiste 162 luite 68 +lujanense 8109 lujazo 1187 lujo 4909782 lujos 351908 @@ -252440,6 +253239,8 @@ lujuriosamente 10571 lujuriosas 31118 lujurioso 93521 lujuriosos 56873 +lule 13085 +lules 23131 lulismo 19630 lulo 29449 lulos 9272 @@ -252870,6 +253671,7 @@ límpiela 629 límpiese 2529 línea 31180679 líneas 18450936 +língula 5158 lío 682630 líos 489563 lípido 20237 @@ -252984,6 +253786,7 @@ macales 1258 macan 3831 macana 151041 macanas 139821 +macanazo 7973 macaneador 4597 macaneadores 1480 macanear 5606 @@ -253775,6 +254578,7 @@ maduradas 22352 maduradero 398 maduraderos 366 madurado 300376 +madurador 3157 madurados 29698 maduramente 67040 maduramos 7519 @@ -253986,6 +254790,7 @@ magnetohidrodinámico 547 magnetomotriz 5314 magnetopausa 815 magnetoquímica 840 +magnetorresistencia 1093 magnetos 17535 magnetoscopio 7788 magnetoscopios 4826 @@ -254768,6 +255573,7 @@ maletero 158602 maleteros 14297 maletilla 11217 maletillas 4730 +maletinazo 167 maletines 48740 maletita 15013 maletitas 1545 @@ -255399,6 +256205,8 @@ maltrecha 149241 maltrechas 49299 maltrecho 223845 maltrechos 90692 +maltusiana 6245 +maltusiano 4737 maltés 27060 maluca 5648 malucas 2475 @@ -255645,6 +256453,7 @@ mamemos 321 mamen 15746 mamertino 326 mamertinos 4384 +mamerto 2627 mames 54127 mamey 83108 mameyes 29987 @@ -256426,6 +257235,7 @@ mangaba 1779 mangaban 237 mangabas 221 mangabeira 960 +mangabeiras 139 mangad 177 mangada 2090 mangadas 836 @@ -256590,14 +257400,21 @@ manicurista 6285 manicuristas 2355 manicuro 1657 manicuros 902 +manid 974 manida 77558 manidas 29264 manido 75935 manidos 31896 +maniera 30217 +manieras 1028 +maniere 26698 +manieren 285 +manieres 3838 manierismo 135714 manierismos 12875 manierista 119411 manieristas 51273 +manieron 205 manifa 849 manifas 276 manifestaba 1458942 @@ -256699,6 +257516,8 @@ manija 119323 manijas 37081 manila 59592 manilas 6209 +manile 224 +maniles 970 manileña 1175 manileñas 235 manileño 1566 @@ -256707,6 +257526,7 @@ manilla 49082 manillar 37881 manillares 3168 manillas 61688 +manilo 8770 maniobra 2550174 maniobraba 42716 maniobraban 24837 @@ -256854,6 +257674,7 @@ manirrotos 7242 manis 5186 manista 4888 manistas 1932 +maniste 317 manita 119429 manitas 135694 manito 52834 @@ -256876,6 +257697,7 @@ manojos 296989 manoletina 1525 manoletinas 4428 manomanista 261 +manometría 10541 manométrica 18795 manométricas 6036 manométrico 8362 @@ -258949,6 +259771,7 @@ marxianos 5337 marxismo 2667526 marxismos 16178 marxista 2703079 +marxistaleninista 19784 marxistas 1262191 marzo 32869615 marzos 3602 @@ -261248,11 +262071,13 @@ meen 8788 mees 131929 meeting 160595 meetings 53325 +mefedrona 214 mefenámico 1773 mefistofélica 13774 mefistofélicas 2119 mefistofélico 13343 mefistofélicos 2309 +mefobarbital 217 mefítica 9946 mefíticas 7759 mefítico 23324 @@ -261396,6 +262221,7 @@ megavatios 39551 megavejiga 951 megavoltio 183 megavoltios 533 +megayacimiento 311 megayate 290 megayates 364 megaéxito 362 @@ -262210,6 +263036,7 @@ menestrala 4451 menestralas 2463 menestrales 185109 menestras 51982 +menestrón 1579 meneá 240 meneábamos 358 meneáis 231 @@ -263573,6 +264400,7 @@ mesolíticas 5464 mesolítico 20063 mesolíticos 8797 mesomediterráneo 7315 +mesomorfa 302 mesomorfo 3146 mesomélico 222 mesomérico 301 @@ -263596,6 +264424,7 @@ mesorregiones 1285 mesorregión 597 mesosfera 2981 mesosternón 6369 +mesostilo 3278 mesotelina 61 mesotelio 4026 mesotelioma 10746 @@ -263935,6 +264764,8 @@ metaloide 23356 metaloides 36077 metaloproteinasa 2010 metaloproteinasas 5817 +metalotioneína 1254 +metalotioneínas 480 metalurgia 430223 metalurgias 3796 metalurgista 14657 @@ -263947,6 +264778,7 @@ metalúrgica 300348 metalúrgicas 178322 metalúrgico 209360 metalúrgicos 274159 +metamaterial 211 metamerismo 865 metamerización 1220 metamizol 6154 @@ -264190,6 +265022,9 @@ metformina 17729 metiche 14954 metiches 4899 meticilina 16007 +meticona 563 +meticonas 55 +meticones 145 meticulosa 161415 meticulosamente 154742 meticulosas 25272 @@ -264289,6 +265124,7 @@ metió 2404761 metlapil 2141 metlapiles 749 meto 373669 +metocarbamol 1128 metoclopramida 13414 metodice 2673 metodicemos 140 @@ -264394,6 +265230,10 @@ metrológicas 5186 metrológico 9450 metrológicos 6025 metronidazol 33687 +metronómica 2910 +metronómicas 1582 +metronómico 2238 +metronómicos 420 metropolitana 1308384 metropolitanas 486919 metropolitano 729684 @@ -264696,6 +265536,7 @@ miarolítica 326 miarolíticas 1221 miarolítico 152 miarolíticos 177 +miasis 16781 miasma 62281 miasmas 198815 miasmática 12268 @@ -264962,6 +265803,8 @@ microfibrilla 454 microfibrillas 4581 microficciones 933 microficción 1873 +microficha 23497 +microfichas 44666 microfilamento 575 microfilamentos 8716 microfilaria 5694 @@ -265039,6 +265882,7 @@ microhábitats 7019 microimpresión 550 microindustria 15532 microindustrias 8581 +microinformática 4140 microinstrucciones 1074 microinstrucción 1123 microinyecciones 770 @@ -265589,6 +266433,7 @@ militantes 1823763 militantismo 6972 militar 31011881 militara 12546 +militarada 5573 militaran 5358 militaras 5083 militare 38834 @@ -265688,6 +266533,7 @@ millennial 2869 millennials 7938 millerita 1165 milleritas 368 +millero 1686 millo 211421 millonada 29088 millonadas 21653 @@ -265711,6 +266557,7 @@ milmillonarios 968 milmillonésima 3004 milmillonésimas 929 milmillonésimo 297 +milodón 2401 milohioidea 2724 milohioideo 14059 milonga 114610 @@ -266185,6 +267032,7 @@ minio 169171 miniordenador 2296 miniordenadores 3407 minipieza 252 +minipimer 1225 minipizza 50 minipizzas 462 miniriego 401 @@ -266527,6 +267375,7 @@ mionca 496 miopatía 30044 miopatías 18893 miope 231123 +miopericarditis 926 miopes 124881 miopática 2507 miopáticas 1528 @@ -266576,6 +267425,7 @@ miraflorina 3959 miraflorinas 1087 miraflorino 6032 miraflorinos 2756 +mirale 9925 miramiento 305315 miramientos 369716 miramos 901600 @@ -267083,6 +267933,7 @@ mitológico 438129 mitológicos 287104 mitomanía 18406 mitones 38512 +mitopoeia 141 mitos 2698258 mitosis 117951 mitote 36552 @@ -267130,6 +267981,7 @@ miuras 5061 mix 102515 mixamebas 618 mixe 69366 +mixer 6334 mixes 68454 mixiote 2690 mixiotes 2311 @@ -267320,6 +268172,7 @@ modal 349671 modales 1183522 modalidad 3839768 modalidades 4376795 +modalismo 4365 modas 993176 modela 195947 modelaba 31485 @@ -268750,6 +269603,7 @@ monocapa 16507 monocapas 6679 monocarboxílico 671 monocarboxílicos 2347 +monocarpelar 1341 monocarpo 182 monocarpos 1188 monocarril 2092 @@ -268966,6 +269820,10 @@ monomérica 4502 monoméricas 3709 monomérico 1267 monoméricos 1225 +monométrica 222 +monométricas 232 +monométrico 509 +monométricos 73 monomórficas 2869 monomórfico 819 mononucleadas 4569 @@ -269212,6 +270070,7 @@ montanos 27417 montante 277328 montantes 107109 montanés 642 +montaplatos 4136 montar 2079361 montara 57783 montaraces 92025 @@ -271000,6 +271859,7 @@ moñuda 4001 moñudas 1359 moñudo 5143 moñudos 1203 +mrd 74213 msnm 239632 mu 2437562 muaré 10245 @@ -271945,6 +272805,7 @@ multivariado 34437 multivariados 12458 multivariante 29643 multivariantes 11417 +multivaso 1408 multiventana 69 multiverso 10673 multiversos 1768 @@ -272579,6 +273440,7 @@ musió 1651 musiú 17566 muslo 1074030 muslos 1325282 +musmón 1162 muso 5918 musola 810 musolas 212 @@ -272907,6 +273769,7 @@ mármol 3322813 mármoles 720894 márquetin 2651 márqueting 739 +márraga 3114 mártaga 107 mártir 1542944 mártires 1688476 @@ -273059,6 +273922,7 @@ módulos 788570 mójalo 599 mónada 72833 mónadas 64902 +móndrigo 900 mónica 9638 mónicas 3085 mónico 6985 @@ -273368,6 +274232,7 @@ nadie 41358004 nadien 10186 nadir 49695 nado 1078097 +nados 314487 nadá 15522 nadábamos 6117 nadáis 1155 @@ -273470,6 +274335,7 @@ namibios 2537 nana 275867 nanacate 294 nanacates 398 +nanai 1796 nanas 59372 nance 15347 nances 12881 @@ -273530,6 +274396,7 @@ nanotecnológicos 915 nanotubo 919 nanotubos 6196 nansú 2222 +nantés 851 nanómetro 3940 nanómetros 13561 nao 1206427 @@ -273571,7 +274438,6 @@ naranjos 528179 narbonense 13145 narca 35904 narcas 9504 -narcicismo 4389 narcicismos 89 narcisismo 246130 narcisismos 3821 @@ -273613,6 +274479,7 @@ narcomensajes 251 narcomenudeo 8292 narcomenudista 381 narcomenudistas 981 +narconegocio 287 narconovela 363 narconovelas 233 narcoparamilitar 663 @@ -273661,6 +274528,7 @@ narcotizó 1163 narcotraficante 89154 narcotraficantes 305150 narcotráfico 1268983 +narcoturismo 141 narcotúnel 173 narcotúneles 139 narcótica 32310 @@ -274156,6 +275024,7 @@ nazificación 2404 nazionalismo 1435 nazionalista 686 nazionalistas 491 +nazireo 1067 nazis 898568 nazismo 494947 nazista 30267 @@ -274170,6 +275039,7 @@ naúfragas 71 naúfrago 3206 naúfragos 3656 ndebele 1496 +ndebeles 634 ndeble 100 ndowé 1480 neandertal 18401 @@ -274875,6 +275745,7 @@ neodamodes 329 neodarwinismo 7926 neodimio 6811 neoegipcio 811 +neoesclavitud 845 neoescolástica 22058 neoescolásticas 1499 neoespartana 1023 @@ -274931,6 +275802,7 @@ neokeynesiana 4329 neokeynesianas 1763 neokeynesiano 3829 neokeynesianos 4570 +neolaredense 823 neolatina 17595 neolatinas 29981 neolatino 8581 @@ -275037,6 +275909,7 @@ neopositivismo 39778 neopositivismos 276 neopositivista 21933 neopositivistas 15786 +neopragmatismo 2521 neopreno 28458 neoprenos 544 neoprofesional 233 @@ -275061,6 +275934,7 @@ neorrománticas 3655 neorromántico 21054 neorrománticos 9477 neos 97973 +neosocialista 1053 neostigmina 7736 neotectónica 9285 neotectónico 2483 @@ -275333,6 +276207,7 @@ neurofisiológicos 19061 neurofisióloga 245 neurofisiólogo 6510 neurofisiólogos 6028 +neurogenética 821 neuroglia 33222 neuroglias 655 neurogénesis 8547 @@ -275346,6 +276221,7 @@ neuroides 71 neuroimagen 31566 neuroimágenes 5450 neuroinflamación 443 +neuroinformática 112 neurolingüística 12661 neurología 91792 neurologías 465 @@ -275372,8 +276248,10 @@ neuronas 740474 neurooncología 215 neuropatología 8790 neuropatologías 225 +neuropatológico 2479 neuropatía 114296 neuropatías 35160 +neuropatólogo 2121 neuroplasticidad 8711 neuroprotección 2447 neuroprotector 2887 @@ -275614,6 +276492,8 @@ nevirapina 4429 nevisca 6677 neviscaba 101 neviscar 514 +nevoide 1619 +nevoides 417 nevá 317 nevé 7122 nevés 293 @@ -275960,6 +276840,7 @@ nitrificante 2284 nitrificantes 9109 nitrificar 728 nitrifique 108 +nitrilio 369 nitrilo 14210 nitrilos 7189 nitrito 69753 @@ -276498,6 +277379,7 @@ norafricanos 4818 noramala 30168 noray 3965 norayes 509 +norbertina 130 norcentral 11339 norcentrales 489 norcoreana 6475 @@ -279584,8 +280466,10 @@ octópodas 290 octópodo 1818 octópodos 2289 ocueño 267 +oculado 3645 ocular 1220495 oculares 542964 +ocularización 1896 ocularmente 16081 oculista 78643 oculistas 28975 @@ -279979,6 +280863,7 @@ odontológicas 31312 odontológico 61801 odontológicos 60710 odontopediatría 3064 +odontosección 1583 odontálgica 860 odontálgicas 492 odontálgico 1911 @@ -279988,6 +280873,7 @@ odontólogas 1114 odontólogo 140912 odontólogos 108714 odorante 8660 +odorantes 9908 odorífera 17936 odoríferas 40563 odorífero 13943 @@ -280803,6 +281689,7 @@ olele 185 oleme 131 olemos 20625 oleo 102445 +oleocantal 109 oleoducto 239513 oleoductos 185678 oleoneumático 446 @@ -281268,6 +282155,8 @@ ombúes 22079 ombús 592 omega 178724 omegas 4853 +omelet 2783 +omelets 269 omental 4903 omentales 755 omento 51897 @@ -281409,6 +282298,7 @@ omnívora 16095 omnívoras 6625 omnívoro 28266 omnívoros 23022 +omofagia 976 omohioideo 5418 omohioideos 156 omoplato 49361 @@ -281504,6 +282394,7 @@ ondeaste 98 ondee 10868 ondeen 2460 ondees 133 +ondense 85 ondeo 4283 ondeábamos 44 ondeándola 353 @@ -282527,6 +283418,8 @@ orbitofrontales 613 orbitó 1403 orca 25199 orcas 14727 +orceína 4561 +orchilla 29009 orco 29611 orcomenio 286 orcomenios 427 @@ -283690,6 +284583,7 @@ ortoclasas 1556 ortocromática 2321 ortocromáticas 1939 ortocromático 1601 +ortocuarcítico 219 ortodiagonal 382 ortodoncia 51661 ortodoncista 15135 @@ -283757,6 +284651,7 @@ ortopédicamente 1729 ortopédicas 24733 ortopédico 68049 ortopédicos 74517 +ortorexia 1430 ortorrómbica 2563 ortorrómbicas 523 ortorrómbico 4241 @@ -284269,6 +285164,8 @@ osteológica 6446 osteológicas 6869 osteológico 14372 osteológicos 12413 +osteomalacia 34337 +osteomalacias 365 osteomielitis 84221 osteomuscular 22511 osteomusculares 7876 @@ -284588,6 +285485,7 @@ otorrinolaringólogos 4605 otorrinología 100 otorrinos 921 otosclerosis 4447 +otoscopio 5774 ototoxicidad 6054 ototóxica 579 ototóxicas 577 @@ -285955,8 +286853,8 @@ palanqueta 17931 palanquetas 12992 palanquilla 20999 palanquillas 16199 +palanquines 19998 palanquín 41421 -palanquínes 273 palapa 15409 palapas 7191 palas 444610 @@ -285990,6 +286888,7 @@ palatino 202492 palatinos 113960 palatizaciones 172 palatización 2531 +palatocuadrado 791 palauana 153 palauano 334 palazo 7490 @@ -286090,6 +286989,7 @@ paleoecológico 5261 paleoecológicos 5546 paleoeuropea 719 paleoeuropeo 703 +paleoflorístico 981 paleogeografía 18775 paleogeografías 772 paleogeográfica 18362 @@ -286794,6 +287694,7 @@ palúdico 49092 palúdicos 55945 pama 15001 pamas 3053 +pamba 6839 pambazo 4219 pambazos 5255 pame 29890 @@ -286833,6 +287734,8 @@ pamplonés 39768 pampsiquismo 1543 pan 12958249 pana 339204 +panaca 18911 +panacas 15423 panacea 318656 panaceas 36854 panadera 74063 @@ -287120,6 +288023,7 @@ panrusos 387 pansexual 1735 pansexuales 515 pansexualidad 837 +pansexualismo 7727 pantagruélica 9902 pantagruélicas 6563 pantagruélico 13481 @@ -287131,6 +288035,7 @@ pantalla 3236134 pantallas 608297 pantallazo 10932 pantallazos 7359 +pantallero 763 pantallita 10051 pantallitas 2501 pantaloncillo 4638 @@ -287487,6 +288392,7 @@ parachoques 45706 paraciencia 471 paracompacto 799 paracompactos 198 +paracoro 325 paracorto 347 paracortos 403 paracrina 5047 @@ -287531,6 +288437,7 @@ paradójicas 74974 paradójico 748792 paradójicos 60894 paradón 652 +paraestado 1458 paraestatal 241864 paraestatales 247808 parafarmacia 2221 @@ -287546,6 +288453,7 @@ parafimosis 7084 parafina 233066 parafinar 1088 parafinas 32060 +parafino 292 parafiscal 15270 parafiscales 51909 parafiso 175 @@ -287623,6 +288531,7 @@ paragüero 14592 paragüeros 3476 paragüita 856 paragüitas 3227 +parahexilo 51 parahiliar 2619 parahipocampal 2528 parahúso 287 @@ -289306,6 +290215,7 @@ partisanos 54212 partiste 28281 partisteis 4263 partite 2658 +partitiva 8056 partitivo 31224 partitocracia 9732 partitocracias 333 @@ -290064,7 +290974,9 @@ pata 1637949 patache 70001 pataches 30465 patacho 7639 +pataco 1835 patacones 201627 +patacos 698 patacón 22390 patada 547918 patadas 539997 @@ -290438,6 +291350,7 @@ patognomónica 12503 patognomónicas 7445 patognomónico 37303 patognomónicos 19673 +patografía 4655 patogénesis 41278 patogénica 47784 patogénicas 28548 @@ -290488,6 +291401,7 @@ patranca 166 patrancas 186 patraña 173186 patrañas 203762 +patrañero 1705 patria 23139010 patriarca 1049137 patriarcado 264874 @@ -293171,6 +294085,8 @@ pepitas 245905 pepitero 590 pepiteros 226 pepito 5723 +pepitoria 29458 +pepitorias 4485 pepitos 4189 pepián 4531 peplo 28426 @@ -293620,6 +294536,7 @@ perdieseis 924 perdiesen 127619 perdieses 3385 perdigar 2109 +perdigonada 11447 perdigonazo 1133 perdigonazos 2018 perdigones 116774 @@ -293810,6 +294727,7 @@ perdónanos 25408 perdóneme 112159 perdónenme 29489 perdónese 11497 +pere 142465 perece 412806 perecea 659 pereceaba 250 @@ -293931,6 +294849,7 @@ peregrinéis 42 peregrinó 28680 pereirana 2180 pereirano 3644 +pereiópodo 7399 perejil 484417 perejiles 6740 perención 154432 @@ -294101,6 +295020,7 @@ perfil 5323492 perfila 459495 perfilaba 119123 perfilaban 47847 +perfilable 183 perfilad 200 perfilada 111515 perfiladas 54178 @@ -294395,6 +295315,7 @@ periciado 1038 periciados 132 pericial 852468 periciales 287421 +pericialmente 44595 pericias 86467 periciclo 6335 pericito 763 @@ -294423,6 +295344,7 @@ periclitó 2119 perico 102694 pericona 992 periconas 333 +pericondrio 10904 pericondritis 2658 pericones 6217 pericos 62978 @@ -294971,6 +295893,9 @@ permeándose 417 permeó 17722 permineralización 222 permisar 179 +permisas 1259 +permise 1605 +permises 369 permisibilidad 20563 permisibilidades 359 permisible 164217 @@ -295637,7 +296562,6 @@ persignen 3238 persignes 333 persigno 4870 persignábamos 287 -persignándole 56 persignándome 699 persignándonos 147 persignándose 20949 @@ -297235,6 +298159,7 @@ pica 823975 picaba 119295 picaban 65256 picabas 641 +picabuey 294 picabueyes 623 picacho 67695 picachos 133518 @@ -297631,6 +298556,7 @@ pidulles 157 pidáis 42802 pidámosle 11346 pie 30447481 +piebaldismo 564 piececillo 5745 piececillos 9964 piececita 20108 @@ -297874,6 +298800,7 @@ pilados 3321 pilamos 227 pilan 5200 pilando 3117 +pilaos 114 pilar 890900 pilara 450 pilaran 122 @@ -299428,6 +300355,7 @@ pitillera 34740 pitilleras 4543 pitillo 139719 pitillos 37663 +pitilín 406 pitiminí 6423 pitiona 182 pitiriasis 19835 @@ -300477,6 +301405,7 @@ plasmodesmos 3263 plasmodio 11439 plasmodios 14474 plasmogamia 893 +plasmoide 277 plasmones 689 plasmá 632 plasmábamos 200 @@ -301055,6 +301984,7 @@ pleurocistidios 1236 pleuronectiforme 183 pleuronectiformes 597 pleuropulmonar 8579 +pleurotomía 5728 pleuston 1462 plexiforme 30541 plexiformes 5625 @@ -301261,6 +302191,7 @@ pluriempleo 31676 pluriempleos 587 plurifamiliar 4859 plurifamiliares 3926 +plurilateralismo 349 plurilingüe 34546 plurilingües 13830 plurilingüismo 20445 @@ -301606,6 +302537,7 @@ podase 761 podasen 556 podaste 209 podcast 17188 +podcasting 4569 podcasts 9569 pode 279980 poded 892 @@ -301982,6 +302914,7 @@ policondensación 6556 policontusiones 201 policoral 2418 policorales 2045 +policoralidad 1663 policotiledóneas 132 policristalina 2090 policristalinas 2076 @@ -302063,6 +302996,7 @@ polietilenglicol 8942 polietilenglicoles 1252 polietileno 216229 polietilenos 5447 +polietnicidad 431 polifacética 80332 polifacéticas 9683 polifacético 106610 @@ -302117,6 +303051,8 @@ poligonales 119009 poligonera 272 poligonero 76 poligoneros 123 +poligonácea 1867 +poligonáceas 4357 poligrafía 7941 poligráfica 6161 poligráficas 2605 @@ -302199,6 +303135,7 @@ polinesia 17743 polinesias 14082 polinesio 20826 polinesios 51832 +polineuritis 29544 polineuropatía 18189 polineuropatías 4805 polineuropático 51 @@ -303016,6 +303953,7 @@ poplíteas 3436 poplíteo 46325 poplíteos 7960 popo 10987 +popola 478 p popoloca 25613 popolocas 20321 popoluca 19457 @@ -303262,6 +304200,7 @@ poricidas 537 poridades 15785 porina 1622 porinas 2074 +porisma 528 pormenor 318673 pormenores 1950903 pormenorice 1587 @@ -303321,6 +304260,7 @@ porongo 14802 porongos 9352 poronguero 378 porongueros 267 +poroqueratosis 1339 pororó 5494 poros 980499 porosa 193891 @@ -303665,6 +304605,7 @@ posala 132 posamos 9190 posan 158379 posando 129817 +posanestesia 67 posar 342352 posara 30567 posaran 12744 @@ -303704,7 +304645,6 @@ posate 137 posavasos 11798 posbélica 15386 posbélicas 2327 -posbélico 15942 posbélicos 3226 poscapitalismo 2502 poscarga 17977 @@ -304874,6 +305814,7 @@ potenciemos 957 potencien 35380 potencies 1323 potencio 4861 +potenciostato 948 potenciostática 396 potenciostático 330 potenciá 243 @@ -304925,6 +305866,7 @@ potingues 17213 potito 7820 potitos 4720 poto 46057 +potomanía 924 potorro 780 p potos 12731 potosina 106221 @@ -305136,6 +306078,8 @@ preagónico 5507 preagónicos 889 prealerta 511 prealpes 355 +prealpina 1229 +prealpino 809 preamplificación 600 preamplificador 7850 preamplificadores 2193 @@ -306677,6 +307621,7 @@ prefijándose 1081 prefijé 645 prefijó 9061 prefilmación 197 +prefilosófico 5370 prefiramos 17473 prefiriendo 585669 prefiriera 65046 @@ -306969,10 +307914,12 @@ preimpreso 2144 preimpresos 2960 preimágenes 440 preinauguración 689 +preinca 7907 preincaica 24670 preincaicas 18767 preincaico 18006 preincaicos 16585 +preincas 5757 preindoeuropea 3953 preindoeuropeas 1834 preindoeuropeo 6299 @@ -307777,6 +308724,7 @@ preparativo 56809 preparativos 1950875 preparatoria 999385 preparatoriamente 1023 +preparatoriano 8059 preparatorias 473643 preparatorio 403678 preparatorios 594295 @@ -309706,6 +310654,7 @@ prietos 134603 priismo 15519 priista 134912 priistas 109097 +prilocaína 4135 prima 6399012 primaba 73179 primaban 28569 @@ -311679,6 +312628,7 @@ progestina 7296 progestinas 2884 progestágeno 9039 progestágenos 18766 +proglucagón 298 proglótide 1667 proglótides 7828 proglótido 1215 @@ -312002,6 +312952,7 @@ prolactinemia 422 prolapsa 2011 prolapsar 414 prolapse 3473 +prolapsen 139 prolapso 110961 prolapsos 12591 prole 582344 @@ -312959,6 +313910,7 @@ propaló 28684 propano 96977 propanona 3297 propanos 718 +propargílico 372 propasa 13997 propasaba 5950 propasaban 3700 @@ -313825,8 +314777,10 @@ prosiguiéremos 42 prosiguiésemos 1377 prosiguió 2007992 prosigáis 5179 +prosimio 833 prosista 304225 prosistas 221367 +prosobranquio 499 prosodia 188449 prosoma 14275 prosopografía 20544 @@ -314378,6 +315332,7 @@ protobarrocos 283 protobereberes 66 protobiontes 300 protobúlgaros 829 +protocanónico 124 protocerebro 867 protociencia 1504 protocolar 97958 @@ -314480,6 +315435,7 @@ protolito 4132 protomixteco 386 protomártir 31934 protomártires 9257 +protomédico 66324 protona 723 protonaciones 322 protonación 4965 @@ -314646,6 +315602,7 @@ proveeríamos 926 proveerían 18915 proveerías 68 provees 3527 +provención 1656 provendrá 52199 provendrán 37382 provendría 58055 @@ -315179,6 +316136,7 @@ pseudoclase 355 pseudoclases 365 pseudocolinesterasa 826 pseudocolinesterasas 214 +pseudocopulación 107 pseudocódigo 5069 pseudocódigos 220 pseudodemocracia 2292 @@ -315216,6 +316174,7 @@ pseudomembranosa 3798 pseudomembranosas 651 pseudomembranoso 291 pseudomembranosos 125 +pseudomorfismo 707 pseudomorfosis 6140 pseudoobstrucción 377 pseudopacientes 206 @@ -315287,6 +316246,7 @@ psicoanalítico 170767 psicoanalíticos 51640 psicoanálisis 1082908 psicobiología 5801 +psicobiológico 9872 psicobiólogo 388 psicodelia 10455 psicodiagnóstica 1006 @@ -315383,6 +316343,10 @@ psicopedagógica 52751 psicopedagógicas 16633 psicopedagógico 33669 psicopedagógicos 24603 +psicopolítica 3840 +psicopolíticas 661 +psicopolítico 1667 +psicopolíticos 955 psicopompo 5089 psicopompos 1495 psicoprofiláctica 1072 @@ -316787,6 +317751,7 @@ puntuad 269 puntuada 25095 puntuadas 16761 puntuado 43816 +puntuador 771 puntuados 18313 puntuaje 201 puntual 1818004 @@ -317222,6 +318187,7 @@ purpúreas 113671 purpúreo 154897 purpúreos 62179 purrusalda 635 +purulencia 8524 purulenta 232579 purulentas 74958 purulento 123580 @@ -317366,6 +318332,8 @@ putrefactos 38812 putrescina 4271 putria 1013 p puts 18971 +putsch 27665 +putsches 114 putschismo 770 putumayense 786 putumayenses 588 @@ -317455,7 +318423,7 @@ puñeteando 174 puñetear 255 puñetera 57207 puñeteras 6035 -puñetero 45121 +puñetero 45121 p puñeteros 9238 puñetes 18867 puñeteó 185 @@ -317551,6 +318519,7 @@ párese 18029 párking 2576 párkings 125 párkinson 4928 +párodo 2160 párpado 378482 párpados 1614369 párrafo 12473872 @@ -317861,6 +318830,8 @@ quarterback 8089 quarterbacks 671 quarto 1705492 quartos 295139 +qubit 1280 +qubits 1618 que 7656994096 quebequense 13871 quebequenses 10225 @@ -318049,6 +319020,7 @@ quedada 47670 quedadas 10665 quedado 12831933 quedados 42804 +quedale 31957 quedamente 123014 quedamos 1722164 quedan 13408564 @@ -318133,6 +319105,7 @@ quedéme 16339 quedémonos 20164 quedés 5089 quedó 24536743 +queer 59139 quehacer 2172067 quehaceres 736107 queimada 4968 @@ -318207,6 +319180,7 @@ quejigar 2369 quejigares 4780 quejigo 18624 quejigos 16576 +quejo 194453 quejosa 362957 quejosas 29977 quejoso 837697 @@ -318221,7 +319195,6 @@ quejumbrosos 39332 quejá 800 quejábamos 7509 quejáis 12212 -quejándole 235 quejándome 16834 quejándonos 7379 quejándoos 2481 @@ -318538,6 +319511,7 @@ queriéndonos 19415 queriéndoos 1855 queriéndose 79778 queriéndote 18482 +quermés 1353 quero 92349 queros 36103 querosene 19414 @@ -318833,6 +319807,7 @@ quimioatrayente 788 quimioatrayentes 683 quimiocina 2910 quimiocinas 17457 +quimioembolización 1413 quimiolitótrofos 113 quimioluminiscencia 3246 quimioprevención 2141 @@ -319507,6 +320482,7 @@ racanean 91 racaneando 193 racanear 401 racaneo 128 +racemiforme 1488 racemización 4168 racemosa 44463 racemosas 11005 @@ -319967,6 +320943,7 @@ radiodifusora 68135 radiodifusoras 106963 radiodifusores 20323 radiodrama 2186 +radioelectrónico 543 radioeléctrica 24812 radioeléctricas 56051 radioeléctrico 71814 @@ -324125,6 +325102,7 @@ rebotándome 270 rebotándose 159 reboté 1636 rebotó 77762 +reboxetina 1335 reboza 15318 rebozaba 6865 rebozaban 2794 @@ -331086,6 +332064,7 @@ reexaminen 1465 reexamino 52 reexaminé 130 reexaminó 2018 +reexpandido 815 reexpandir 571 reexpedida 5769 reexpedidas 7297 @@ -333289,6 +334268,7 @@ registra 3149637 registraba 281476 registraban 189190 registrabas 743 +registrable 35527 registraciones 30387 registración 80934 registrad 8358 @@ -333744,7 +334724,12 @@ regresé 464336 regreséis 7266 regresés 458 regresó 3732226 +regruesadora 1058 regrésame 844 +reguarda 6479 +reguardarse 321 +reguarde 803 +reguardes 116 reguemos 3793 reguera 21609 regueras 20419 @@ -334655,6 +335640,7 @@ reiniciadas 4371 reiniciado 28887 reiniciados 2701 reinicialización 1281 +reinicializar 1041 reiniciamos 6272 reinician 19852 reiniciando 11649 @@ -334857,6 +335843,7 @@ reintegra 90763 reintegraba 16154 reintegraban 7608 reintegraciones 6717 +reintegracionismo 306 reintegracionista 656 reintegracionistas 551 reintegración 319159 @@ -336377,6 +337364,7 @@ remaduros 189 remake 28287 remakes 5083 remala 2233 +remalo 1997 remamos 5931 reman 27750 remando 106488 @@ -338642,6 +339630,7 @@ reostatos 4697 reostática 320 reostático 1291 reostáticos 127 +reotaxis 215 reoxidación 3200 reoxigenar 509 repactar 1267 @@ -339454,6 +340443,7 @@ repite 3886031 repiten 1563363 repitencia 53971 repitencias 1304 +repitente 2876 repites 41045 repitiendo 1409058 repitiente 1845 @@ -341420,6 +342410,7 @@ requiero 472189 requilorio 2198 requilorios 12153 requinta 3893 +requintaban 351 requintada 3627 requintadas 1203 requintado 6339 @@ -342013,6 +343004,7 @@ resellándolas 64 resellándolos 187 resellándose 129 reselló 1923 +resemantización 18487 resembraba 289 resembraban 175 resembrada 1229 @@ -349677,6 +350669,7 @@ rodamientos 55074 rodamina 4137 rodaminas 397 rodamos 23843 +rodanasa 1068 rodando 604131 rodante 364490 rodantes 75786 @@ -350399,6 +351392,7 @@ roncasen 169 roncaste 146 ronce 4710 roncen 341 +roncero 3594 ronces 5035 roncha 29843 ronchas 55764 @@ -350742,6 +351736,7 @@ rostizar 1007 rostizaron 93 rostizó 96 rosto 27714 +rostrado 5773 rostral 67502 rostrales 18609 rostrillo 7246 @@ -351315,6 +352310,7 @@ ruegos 1266130 ruegue 70565 rueguen 43315 ruegues 12625 +ruejo 3063 rufa 27193 rufas 3245 rufianes 189880 @@ -351571,6 +352567,7 @@ rumiad 431 rumiada 4582 rumiadas 2752 rumiado 11019 +rumiador 2171 rumiados 2563 rumiamos 1698 rumian 25325 @@ -351671,6 +352668,7 @@ rumorosos 31277 rumorándose 784 rumoró 9227 rumos 5353 +run 184247 runa 139823 runas 89974 runcho 3309 @@ -351969,6 +352967,7 @@ rústicas 721588 rústico 921605 rústicos 778045 rúter 158 +rútulo 3015 s 38775633 saadismo 449 saadí 1183 @@ -352099,6 +353098,7 @@ sableé 78 sableó 1459 sablista 10021 sablistas 4764 +sablón 699 sabo 20116 sabor 5065222 saborcillo 10807 @@ -353013,6 +354013,7 @@ saladero 82387 saladeros 144876 saladería 365 saladerías 196 +saladillense 248 saladillo 3155 saladita 1051 saladitas 833 @@ -353051,6 +354052,8 @@ salamis 1154 salamos 2653 salan 24239 salando 5889 +salangana 1680 +salanganas 1117 salaos 1981 salar 143540 salara 1155 @@ -353069,6 +354072,7 @@ salariados 12150 salarial 1348841 salariale 425 salariales 990947 +salarialmente 3187 salarian 230 salariar 1654 salariares 461 @@ -353615,6 +354619,7 @@ salpreso 7685 salpullido 13936 salpullidos 2888 salsa 1491287 +salsalato 176 salsas 255887 salsea 777 salseada 251 @@ -354232,7 +355237,10 @@ sanamente 93790 sanamos 4900 sanan 70252 sanando 49940 +sanandresana 633 +sanandresanas 116 sanandresano 1611 +sanandresanos 1305 sanantoniana 191 sanantoniano 143 sanantonianos 212 @@ -354309,6 +355317,7 @@ sancionadora 162474 sancionadoras 55969 sancionadores 47946 sancionados 516096 +sancionamiento 2414 sancionamos 30181 sancionan 266538 sancionando 143899 @@ -354510,6 +355519,7 @@ sanfranciscana 823 sanfranciscanas 132 sanfranciscano 838 sanfranciscanos 493 +sanfrancisqueño 192 sangileña 878 sangileñas 84 sangileño 1657 @@ -355167,10 +356177,13 @@ sarampión 424070 sarandunga 962 sarao 126915 saraos 140769 +sarape 50360 +sarapes 46289 sarasa 6150 sarasas 2333 sarcasmo 708381 sarcasmos 160844 +sarcocistosis 330 sarcoidosis 43187 sarcolema 15656 sarcolemas 230 @@ -355249,6 +356262,7 @@ sarmentando 123 sarmentar 1403 sarmentosa 19513 sarmentosas 23043 +sarmentoso 13464 sarmentó 287 sarmienta 425 sarmientan 142 @@ -355287,6 +356301,7 @@ sartenes 97624 sartoria 267 sartorio 25501 sartorios 472 +sartreano 21547 sartén 558374 sarín 6561 sasafrás 12281 @@ -355621,6 +356636,8 @@ sauzgatillos 130 savate 948 savia 1071335 savias 55955 +saxifragácea 387 +saxifragáceas 2368 saxitoxina 1626 saxitoxinas 324 saxo 73873 @@ -355903,6 +356920,7 @@ seccionéis 41 seccionés 226 seccionó 18881 sección 14309847 +secesionar 418 secesiones 8091 secesionismo 8907 secesionismos 723 @@ -356675,6 +357693,7 @@ segmentándolos 202 segmentándose 1061 segmenté 61 segmentó 3313 +segobricense 3987 segoviana 55765 segovianas 17030 segoviano 79227 @@ -357628,6 +358647,7 @@ semifinalistas 3755 semifondo 1323 semiformal 4110 semiformales 2761 +semifrontal 203 semifrío 4165 semifríos 2963 semifusa 2781 @@ -357678,6 +358698,7 @@ semillita 10714 semillitas 12742 semillones 1447 semillón 3216 +semilogarítmico 6119 semiluna 8253 semilunar 79296 semilunares 28839 @@ -357748,6 +358769,7 @@ semipeatonal 149 semipenumbra 28665 semipenumbras 660 semiperfecto 94 +semiperiférico 1403 semipermanente 14859 semipermanentes 23985 semipermeable 17807 @@ -357810,6 +358832,7 @@ semirremolques 30593 semirretirado 521 semirretiro 597 semirretículo 295 +semirruina 385 semirrural 7047 semirrurales 5767 semirrígida 3996 @@ -357944,6 +358967,11 @@ senadores 3121704 senados 24226 senaduría 38971 senadurías 17883 +senaria 4435 +senarias 1482 +senario 12000 +senarios 5010 +senarmontita 492 senas 24561 senatorial 168626 senatoriales 53451 @@ -358359,6 +359387,7 @@ seoras 195 seores 2195 seos 57121 sepa 4510557 +sepaloide 470 sepamos 852042 sepan 1701043 separa 3983504 @@ -359083,12 +360112,16 @@ serrándole 310 serrándolo 170 serrándolos 148 serrándose 164 +serránido 265 serré 4063 serrés 399 serrín 96405 serró 13211 serse 18502 +sertaneja 2611 +sertanejas 901 sertanejo 7396 +sertanejos 5916 serte 109215 sertones 12207 sertorianas 5654 @@ -359425,6 +360458,7 @@ seuda 1850 seudas 738 seudo 290979 seudoartístico 269 +seudociencia 9303 seudocientífico 6501 seudocientíficos 6109 seudocultural 671 @@ -359961,6 +360995,8 @@ shipibas 1089 shipibo 23412 shipibos 12577 ships 22016 +shisha 1580 +shishas 177 shiso 993 shitake 1001 shivaísmo 1960 @@ -361133,6 +362169,7 @@ simplísimos 3001 simplón 27468 simpodial 3744 simpodiales 1525 +simportador 485 simporte 1100 simposio 263925 simposios 101221 @@ -362176,6 +363213,7 @@ siríaca 20701 siríacas 4249 siríaco 27522 siríacos 5625 +siríngico 642 sisa 242791 sisaba 4738 sisaban 1041 @@ -362338,8 +363376,10 @@ sisé 2057 sisó 876 sisón 5377 sita 1069295 +sitagliptina 808 sitar 27433 sitares 470 +sitarista 248 sitas 236600 sitcom 4468 sitcoms 1687 @@ -363345,6 +364385,7 @@ sobrehumanamente 3223 sobrehumanas 50652 sobrehumano 236776 sobrehumanos 92404 +sobreimponer 1080 sobreimpresa 2404 sobreimpresas 1667 sobreimpresionada 537 @@ -363380,6 +364421,7 @@ sobreinterpretaciones 608 sobreinterpretación 5787 sobrejalma 187 sobrejalmas 169 +sobrejustificación 245 sobrellena 270 sobrellenado 1113 sobrellenar 473 @@ -364041,6 +365083,7 @@ sobretasa 137088 sobretasas 51541 sobretensiones 18522 sobretensión 14501 +sobretiro 22718 sobretodo 524253 sobretodos 25283 sobretono 1982 @@ -365073,6 +366116,11 @@ solado 45277 solador 5326 soladores 3437 solados 21662 +solala 589 +solalas 50 +solales 124 +solalos 47 +solame 4310 solamente 35162909 solamos 1120 solana 80016 @@ -365084,6 +366132,7 @@ solano 52305 solanos 7944 solanácea 16003 solanáceas 36619 +solaos 124 solapa 353020 solapaba 4822 solapaban 7426 @@ -365325,6 +366374,7 @@ soledades 727051 solee 2339 soleen 560 solees 80 +soleme 1120 solemne 5214860 solemnemente 1389624 solemnes 1471472 @@ -365385,6 +366435,7 @@ solemnísimos 9699 solemos 456550 solenoide 40801 solenoides 10223 +solenos 144 soleo 13463 soler 27089 solera 185902 @@ -365394,6 +366445,9 @@ solero 10644 soleros 1799 solerse 279 solerte 1863 +solerá 292 +solerán 62 +soleré 772 solería 17052 solerías 5298 soles 2903609 @@ -365679,6 +366733,9 @@ soliendo 11655 soliera 5376 solieran 1604 solieras 1144 +soliere 267 +solieren 124 +solieres 66 solieron 8272 soliese 1054 soliesen 528 @@ -366000,6 +367057,7 @@ solucionéis 523 solucionés 160 solucionó 116985 solución 22573213 +solupe 475 soluto 150626 solutos 80075 solutrense 25460 @@ -366085,10 +367143,12 @@ solícitamente 55237 solícitas 49225 solícito 349477 solícitos 168998 +solífugo 149 solípeda 355 solípedas 206 solípedo 6609 solípedos 24645 +solísima 1256 solísimo 1656 solística 1750 solísticas 1417 @@ -366096,6 +367156,7 @@ solístico 1813 solísticos 815 soló 43708 soma 131771 +somalización 267 somalí 24794 somalíes 26962 somalís 1122 @@ -366371,6 +367432,7 @@ sompesado 49 sompesando 165 sompesar 420 sompesará 115 +somán 417 somática 154625 somáticas 136673 somático 145274 @@ -368668,6 +369730,8 @@ subeditor 1144 subeditores 234 subejecuciones 229 subejecución 2367 +subejecutar 225 +subelíptico 2777 subempleada 23550 subempleadas 8378 subempleado 9056 @@ -369280,6 +370344,7 @@ subnormal 47991 p subnormales 53559 p subnormalidad 10274 subnormalidades 308 +subnúcleo 2179 subo 217499 subobjetivo 1470 subobjetivos 5267 @@ -369366,6 +370431,7 @@ subordiné 695 subordinó 49850 suborganismo 256 suborganismos 504 +suborganización 617 subpagada 305 subpagadas 150 subpagado 513 @@ -369384,6 +370450,7 @@ subperiodo 13408 subperiodos 12598 subperíodo 47553 subperíodos 42963 +subplano 3047 subpoblaciones 35076 subpoblación 20324 subpolar 3389 @@ -370122,6 +371189,7 @@ subteniente 489358 subtenientes 118072 subteoría 1507 subteorías 1582 +subterete 1431 subterfugio 140983 subterfugios 176933 subterminal 28383 @@ -370500,6 +371568,8 @@ subóptimas 6809 subóptimo 9477 subóptimos 5589 subórdenes 19670 +subóxido 3585 +subóxidos 250 succinato 19179 succinatos 702 succinilcolina 14681 @@ -371615,6 +372685,8 @@ sumaba 333362 sumaban 451829 sumabas 609 sumable 11213 +sumaca 15401 +sumacas 3479 sumaciones 523 sumación 22542 sumad 3073 @@ -372231,6 +373303,7 @@ supercélula 212 supercómoda 70 supercómodo 180 supercómodos 166 +supercómputo 964 supercúmulo 961 supercúmulos 2280 superdelegados 336 @@ -372259,6 +373332,7 @@ superenrollamiento 2385 superenrollamientos 346 superentidad 304 superentidades 117 +superequipo 551 superes 9393 superescalar 522 superescalares 195 @@ -372560,6 +373634,7 @@ supersecreta 1901 supersecretas 524 supersecreto 2526 supersecretos 613 +supersecuencia 418 superseguro 283 superserie 666 superseries 796 @@ -372572,6 +373647,7 @@ supersimétricos 454 supersoldado 562 supersoldados 497 superstar 4037 +superstars 710 supersticiones 847058 supersticiosa 219960 supersticiosamente 23352 @@ -373244,6 +374320,7 @@ suprematistas 2867 supremo 5861872 supremos 741427 supresiones 205295 +supresivo 4823 supresión 3379492 supresor 28787 supresora 10415 @@ -374508,6 +375585,24 @@ suyos 8477300 suzeranía 1819 suástica 3584 suásticas 1171 +suélase 62 +suélate 104 +suélela 54 +suélelas 144 +suélele 213 +suéleles 118 +suélelo 315 +suélelos 180 +suéleme 183 +suélenla 335 +suélenlas 350 +suélenle 154 +suélenles 137 +suélenlo 120 +suélenlos 430 +suélenme 105 +suélense 2478 +suélese 5016 suéltala 5225 suéltalo 13519 suéltame 20030 @@ -376011,6 +377106,7 @@ tanatológicos 934 tanatopraxia 1038 tanatorio 20069 tanatorios 2799 +tancar 5528 tancredismo 1503 tanda 256447 tandas 177948 @@ -376603,6 +377699,7 @@ tarado 80917 tarados 51087 tarahumara 73116 tarahumaras 101929 +tarajal 1053 taraje 2456 tarajes 2664 tarambana 30679 @@ -376754,6 +377851,7 @@ tardasteis 1366 tardate 156 tarde 51613948 tardeada 2508 +tardeadas 4237 tardecita 58982 tardecitas 7133 tardemos 18826 @@ -377268,7 +378366,6 @@ tatúen 771 tatúes 3157 tatúo 461 tatús 3430 -tau 195351 taumatina 549 taumatropo 529 taumaturga 8944 @@ -377352,11 +378449,13 @@ tayika 690 tayikas 327 tayiko 1734 tayikos 2640 +tayines 188 taylorismo 47172 taylorista 22490 tayloristas 9829 tayota 457 tayotas 170 +tayín 554 taza 2642357 tazas 891452 tazo 9739 @@ -378091,6 +379190,7 @@ teleológica 138681 teleológicas 25016 teleológico 123438 teleológicos 18428 +teleomorfo 1792 teleonómico 1674 teleoperador 3657 teleoperadora 1685 @@ -378110,6 +379210,7 @@ teleportó 397 telepredicador 1593 telepredicadores 1806 telepresencia 4550 +teleprofesor 432 telepromociones 395 telepromoción 437 teleprompter 2367 @@ -378289,6 +379390,8 @@ telugú 169 telurio 10792 telurito 4423 teluro 29135 +telururo 3729 +telururos 2963 telurómetro 1604 telurómetros 379 teléfono 6849395 @@ -378793,6 +379896,7 @@ temporizar 7442 temporizase 161 temporizo 124 temporizó 560 +temporomalar 189 temporomandibular 37384 temporomandibulares 6360 tempos 39589 @@ -378835,7 +379939,6 @@ temíamos 69163 temían 628671 temías 15794 temó 6916 -ten 2019727 tena 66080 tenaces 385394 tenacidad 1147294 @@ -378864,6 +379967,7 @@ tendal 45008 tendales 22335 tendamos 16042 tended 12549 +tendedera 3890 tendedero 43205 tendederos 23408 tendedor 3575 @@ -379416,6 +380520,7 @@ tepeaguacate 112 tepeamate 44 tepeguaje 3694 tepeguajes 467 +tepehua 16788 tepehuaje 3815 tepehuajes 798 tepehuanes 67571 @@ -379462,6 +380567,8 @@ tequios 9646 terabit 159 terabits 292 terafim 1802 +teraflop 54 +teraflops 352 terapeuta 673652 terapeutas 205370 terapia 1640156 @@ -379818,6 +380925,7 @@ termoeléctricos 10480 termoestable 11291 termoestables 10285 termografía 6906 +termogravimétrico 2808 termográfica 2229 termográficas 1437 termográfico 966 @@ -380525,6 +381633,7 @@ tetitas 8457 tetona 9611 tetonas 3603 tetones 7124 +tetrabenazina 861 tetrabrik 4486 tetrabriks 965 tetracameral 263 @@ -381251,6 +382360,7 @@ timpánico 31916 timpánicos 3404 timucua 1043 timucuas 643 +timulina 330 timá 131 timábamos 53 timáis 67 @@ -381322,6 +382432,8 @@ tingladillos 960 tinglado 182470 tinglados 66604 tingua 1056 +tinguas 301 +tinidazol 3377 tiniebla 427643 tinieblas 3340411 tinku 13548 @@ -381437,6 +382549,7 @@ tiocianatos 4256 tioconazol 554 tiofeno 5822 tiofenos 643 +tiofosfato 1343 tiol 7062 tiolato 711 tioles 6150 @@ -381906,6 +383019,7 @@ tiroteé 125 tiroteó 10139 tirotoxicosis 22862 tirotropina 14046 +tirotóxico 763 tiroxina 61707 tiroxinas 130 tirrena 3129 @@ -382160,6 +383274,7 @@ titules 6859 titulitis 1230 titulizaciones 3062 titulización 28459 +titulizar 1272 titulo 5009791 titulá 175 titulábamos 1290 @@ -382321,6 +383436,7 @@ tlecuiles 968 tlemole 394 tlingit 4355 tmb 1312 +tmbn 183 tmesis 4277 to' 285 toa 142051 @@ -382456,6 +383572,7 @@ tocinos 46743 toco 416846 tocoferol 20751 tocoferoles 8890 +tocoginecología 1541 tocolítica 289 tocolítico 1225 tocolíticos 2107 @@ -383470,6 +384587,7 @@ toresana 1218 toresanas 264 toresano 2473 toresanos 1440 +torete 19524 toreá 640 toreábamos 639 toreáis 121 @@ -383662,6 +384780,7 @@ toroide 5048 toroides 1155 toromiro 3363 toromiros 581 +toromona 385 toronja 70270 toronjas 47000 toronjil 42726 @@ -384134,6 +385253,7 @@ totalitario 493710 totalitarios 337564 totalitarismo 474179 totalitarismos 87604 +totalitarista 5868 totaliza 67279 totalizaba 16934 totalizaban 30999 @@ -384563,6 +385683,7 @@ tractores 745578 tractorista 25545 tractoristas 22130 tractos 63793 +tractrac 233 tracé 40402 tracéis 769 tracés 807 @@ -385284,6 +386405,7 @@ trancés 4232 trancó 9676 trancón 3149 tranexámico 3633 +tranilcipromina 2332 tranita 625 tranitas 231 tranque 28223 @@ -385439,6 +386561,7 @@ transandinas 4822 transandino 22761 transandinos 6639 transando 8316 +transantártico 314 transar 109171 transara 1768 transaran 1137 @@ -385567,6 +386690,7 @@ transcienden 20144 transciendes 73 transciendo 300 transcitosis 1294 +transcobalamina 1785 transcodifica 343 transcodificaciones 806 transcodificación 6697 @@ -386491,6 +387615,7 @@ transmitías 690 transmitírsela 5151 transmitírselo 7118 transmitís 1247 +transmodernidad 3698 transmontan 484 transmontana 2686 transmontanas 682 @@ -389026,6 +390151,7 @@ traído 4171818 traídos 779609 traílla 16360 traíllas 6281 +trebbiano 422 trebeja 1438 trebejaba 137 trebejaban 153 @@ -389256,6 +390382,7 @@ trenen 1098 trenes 1831828 treno 39120 trenos 33659 +trenquelauquense 86 trentina 3687 trentino 6850 trentinos 1641 @@ -389632,6 +390759,7 @@ tribute 53798 tributemos 10876 tributen 65761 tributes 2727 +tributil 645 tributilestaño 407 tributo 4535419 tributos 3280985 @@ -390375,6 +391503,7 @@ trisílabo 14745 trisílabos 10802 trisódica 440 trisódico 5958 +tritagonista 1221 triterpeno 2075 triterpenoide 662 triterpenoides 2224 @@ -390774,6 +391903,7 @@ trombectomías 348 trombina 59972 trombinas 147 trombo 72913 +trombocitemia 2693 trombocito 725 trombocitopenia 81709 trombocitopenias 3126 @@ -391609,9 +392739,13 @@ tráquea 289864 tráqueas 28170 trásfuga 1518 trásfugas 1569 +trátala 5009 +trátale 2658 +trátalo 5354 trátalos 3421 trátame 8067 trátase 112506 +trátate 1017 trátese 99422 trávelin 860 trébol 354691 @@ -391985,6 +393119,7 @@ tumefacta 34234 tumefactas 18056 tumefacto 28067 tumefactos 23975 +tumescencia 5458 tumor 2180840 tumoraciones 37715 tumoración 136822 @@ -393688,6 +394823,7 @@ umbra 46955 umbral 2369517 umbrales 704236 umbras 7925 +umbrela 4444 umbro 14698 umbros 5424 umbrosa 54418 @@ -393937,6 +395073,7 @@ unificados 136132 unificamos 5009 unifican 104451 unificando 81297 +unificante 29331 unificar 802872 unificara 15801 unificaran 7693 @@ -394482,6 +395619,8 @@ urbanístico 417490 urbanísticos 186230 urbe 886543 urbes 362941 +urca 46544 +urcas 36040 urce 3370 urceolada 4202 urceoladas 1029 @@ -394645,6 +395784,7 @@ urial 411 uribismo 3108 uribista 4543 uribistas 3255 +uricosúrico 1049 uridiltransferasa 932 uridina 6362 urinaria 404557 @@ -395741,6 +396881,8 @@ valencianismos 2280 valencianista 7020 valencianistas 4158 valenciano 962658 +valencianohablante 225 +valencianohablantes 645 valencianos 540440 valencias 65257 valentona 3357 @@ -396774,6 +397916,7 @@ vasallajes 9027 vasallas 13289 vasallo 1092250 vasallos 3682284 +vasallático 9707 vasca 962852 vascas 290492 vasco 1949748 @@ -398100,6 +399243,7 @@ venido 16535296 venidos 877918 venilla 10254 venillas 77688 +venime 845 venimos 1850693 veninos 4249 venir 13456524 @@ -398456,6 +399600,8 @@ veranillos 2031 veranos 431404 verapamilo 16004 veras 3109781 +veratridina 622 +veratrina 17832 veraz 579085 verazmente 34574 verba 260052 @@ -399203,6 +400349,7 @@ vesicante 9830 vesicantes 9419 vesicoureteral 9453 vesicoureterales 197 +vesicovaginal 3128 vesicular 159490 vesiculares 46531 vespa 7479 @@ -400393,6 +401540,7 @@ vigorosísimo 4304 vigoréxico 268 vigoréxicos 200 vigorón 1375 +vigota 1737 viguería 25367 viguerías 1797 viguesa 5444 @@ -400483,6 +401631,7 @@ villaclareñas 1031 villaclareño 4124 villaclareños 2884 villafranquino 857 +villaje 17724 villalbesa 88 villalbés 210 villana 215275 @@ -400509,6 +401658,7 @@ villazgo 14449 villazgos 2877 villenense 2847 villenenses 1209 +villense 398 villera 8292 villeras 1842 villero 9514 @@ -400775,6 +401925,7 @@ vinosos 11117 vinoteca 2134 vinotecas 1177 vinotinto 2830 +vinpocetina 186 vintage 24915 vintages 481 vinícola 158870 @@ -401826,6 +402977,7 @@ vitrocerámica 5717 vitrocerámicas 1207 vitrola 16325 vitrolas 4105 +vitronectina 1174 vitros 393 vitualla 65643 vituallar 1217 @@ -402446,6 +403598,7 @@ vocálica 79790 vocálicas 27371 vocálico 84366 vocálicos 57888 +vodca 808 vodevil 52291 vodeviles 7637 vodka 224698 @@ -402988,6 +404141,7 @@ volátil 439157 volátiles 451424 volé 49851 voléis 1165 +volémico 420 volés 778 voló 602059 volúmenes 5871333 @@ -403534,6 +404688,8 @@ vélica 6390 vélicas 286 vélico 3120 vélicos 437 +vélite 458 +vélites 5447 vénceme 506 véndame 3550 véndanse 2043 @@ -403741,6 +404897,7 @@ weblog 4580 weblogs 5750 webmaster 4255 webmasters 2191 +webo 144 webs 72877 webserie 950 webseries 540 @@ -404569,6 +405726,7 @@ yuracarés 12161 yurta 7371 yurtas 4418 yurí 561 +yusivo 3340 yuta 9293 p yute 240425 yutes 1753 @@ -405379,6 +406537,7 @@ zarandeó 42825 zarapito 3162 zarapitos 2393 zaratanes 1233 +zarateño 92 zarato 324 zaratán 6381 zarauztarra 256 @@ -405675,6 +406834,7 @@ zonzas 2551 zonzo 64726 zonzos 16997 zoo 137362 +zoobotánico 209 zoocriadero 2648 zoocría 2219 zoofilia 9763 @@ -405863,6 +407023,7 @@ zulú 27363 zulúes 24551 zulús 8600 zum 194152 +zumaca 13231 zumacal 605 zumacales 707 zumacar 353 @@ -406355,6 +407516,8 @@ zúngaros 1035 ápex 33032 ápice 1978274 ápices 147699 +ápside 5655 +ápsides 6069 áptero 6256 ápteros 14159 ápud 2880 @@ -406539,6 +407702,7 @@ zúngaros 1035 íbices 2066 ícono 49052 íconos 37007 +íctero 14661 íctica 14607 ícticas 9234 íctico 3950 @@ -406870,6 +408034,7 @@ zúngaros 1035 úvea 9840 úvula 34265 úvulas 241 +ü 584255 đ 1163 [ngrams] diff --git a/data/dicts/v0~draft1/words_fr.fldic b/data/dicts/v0~draft1/words_fr.fldic index caf36f3..59cb072 100644 --- a/data/dicts/v0~draft1/words_fr.fldic +++ b/data/dicts/v0~draft1/words_fr.fldic @@ -2,6 +2,7 @@ #~encoding: utf-8 [words] +'a 90 A 454847363 AA 1471926 AAAAA 5322 @@ -16,6 +17,7 @@ ADQ 17661 AELE 243998 AFM 34328 AFP 315558 +AFPC 13615 AIE 116919 AIIP 526 AIP 25019 @@ -120,6 +122,7 @@ Acadiennes 10122 Acadiens 404195 Acarnanie 113578 Achab 311212 +Achache 7511 Achaïe 363202 Achille 4073206 Achour 108296 @@ -160,12 +163,14 @@ Agen 2073931 Aggée 86572 Aglukark 198 Aglukkaq 166 +Agly 55181 Agneau 933450 Agniers 42390 Agnès 3243062 Agout 92660 Agésilas 262516 Aicard 100695 +Aimé 1931807 Aimée 572740 Ain 2447562 Airard 12230 @@ -188,6 +193,7 @@ Akkadiens 14051 Akkouche 1002 Akram 25558 Akrem 269 +Akwesasne 7554 Alain 9504906 Alains 317569 Alaphilippe 7152 @@ -233,6 +239,7 @@ Alexandrins 297612 Alexandrovsk 14522 Alexia 134111 Alexis 4101777 +Alfa 233284 Alfred 7755714 Alger 11204799 Algérie 21936394 @@ -246,6 +253,7 @@ Aline 787756 Alisson 4916 Alix 1095789 Aliénor 303630 +Allais 348491 Allard 944337 Allemagne 67130843 Allemand 3865173 @@ -269,6 +277,7 @@ Alsaciens 737155 Altaï 251152 Alysson 6433 Alès 293844 +Alénya 2877 Alépin 3509 Amadou 440759 Amalric 126635 @@ -427,6 +436,7 @@ Antiochos 236524 Antiochène 6160 Antiphon 116527 Antiquité 3903237 +Antist 4862 Antisthène 112819 Antoine 24541834 Antoinette 3469437 @@ -472,12 +482,14 @@ Araméennes 1271 Araméens 73840 Arbas 22837 Arbois 634123 +Arbonne 23939 Arbrissel 86530 Arcadie 678088 Arcadien 29468 Arcadienne 4692 Arcadiennes 1998 Arcadiens 187440 +Arcangues 15036 Arceneaux 3198 Archambault 372737 Arches 280832 @@ -492,6 +504,7 @@ Ardéchois 15066 Ardéchoise 3063 Ardéchoises 568 Argand 106072 +Argelès 153473 Argenteuil 626530 Argentin 157137 Argentine 3814223 @@ -508,6 +521,7 @@ Aristée 169132 Aristénète 13371 Arize 34423 Ariège 985008 +Ariégeois 26395 Arkhangelsk 65447 Arkhanguelsk 1346 Arlequin 989458 @@ -532,6 +546,7 @@ Arméniennes 26729 Arméniens 1957246 Arménistan 277 Arnaud 3827953 +Arno 505236 Arnoux 543774 Arntfield 683 Arpajon 239473 @@ -564,6 +579,7 @@ Arès 239765 Aréopage 249987 Arétas 33968 Asbestos 74910 +Ascarat 1575 Ascension 1257336 Ascou 11834 Ascoux 2088 @@ -582,7 +598,9 @@ Assouline 65605 Assyrie 982585 Astier 417738 Astié 27236 +Astolphe 169343 Astrid 216671 +Astruc 336215 Asturien 12843 Asturienne 20105 Asturiennes 1130 @@ -590,6 +608,7 @@ Asturiens 28987 Asturies 731709 Astère 16854 Astérix 114559 +Ath 635668 Athanase 1577390 Athènes 10746382 Athéna 711261 @@ -615,6 +634,7 @@ Aucoin 28876 Aude 2068919 Audet 133865 Audette 11904 +Audierne 127920 Audrey 378584 Audric 9327 Audrée 2505 @@ -646,6 +666,7 @@ Australiennes 14323 Australiens 366176 Austronésie 1252 Auteuil 906878 +Auteuillois 427 Authement 299 Authier 81066 Autriche 28559407 @@ -689,6 +710,7 @@ Ayumi 2753 Azerbaïdjan 371280 Azerbaïdjanais 12990 Azerbaïdjanaise 503 +Azereix 5842 Azraël 26902 Aztèque 22853 Aztèques 274411 @@ -732,6 +754,7 @@ BP 2151638 BPA 22754 BPS 15594 BQ 37846 +BRI 108755 BTP 245579 BV 136269 Baalbeck 52742 @@ -794,6 +817,7 @@ Bangkok 731873 Bangkokiens 191 Bangladesh 376037 Bankass 3539 +Bannalec 17279 Bantou 133158 Bantous 148787 Baptiste 8985589 @@ -835,6 +859,7 @@ Basque 578212 Basques 708123 Bassompierre 497375 Bassorah 114248 +Bassussarry 1802 Bastia 848283 Bastien 737145 Bastienne 29673 @@ -845,10 +870,12 @@ Batave 135659 Bataves 242271 Bathily 23050 Bathurst 237536 +Batman 78008 Baudelaire 3902016 Baudier 53701 Baudouin 2634541 Baudrillard 186610 +Baudrit 6375 Bauer 737268 Baumé 235231 Baup 21936 @@ -861,6 +888,7 @@ Bayonne 3149050 Bayraktar 1335 Bazin 1217727 Baïse 48168 +Beatles 184604 Beauchamp 511251 Beauchemin 199133 Beauchesne 397073 @@ -877,6 +905,7 @@ Beaumont 3616821 Beauregard 874315 Beausoleil 95444 Beauvais 3749152 +Beauval 143064 Becquart 23822 Becquerel 697209 Beijing 177631 @@ -953,6 +982,7 @@ Besançon 5743605 Bessette 76792 Besson 852578 Bestiac 1868 +Betafo 24707 Betancourt 48465 Betchat 7414 Bethléem 1050508 @@ -960,6 +990,8 @@ Bethléhem 110176 Bethphagé 16493 Bethsabée 137032 Bethsaïda 22810 +Bettachini 2038 +Bettembos 1762 Bettencourt 88031 Beyala 46887 Beyrouth 2364215 @@ -981,6 +1013,7 @@ Bible 10175043 Bibracte 136820 Bichat 723296 Bichkek 18873 +Bidart 72934 Bidule 11905 Bifröst 1126 Bihouix 1007 @@ -990,6 +1023,7 @@ Bilodeau 67848 Binche 276135 Bindslev 243 Binnet 821 +Binoche 38441 Biot 812470 Bioteau 1433 Birks 14157 @@ -1019,6 +1053,8 @@ Biélorusses 22845 Biélorussie 279505 Black 1548989 Blacks 64847 +Blagnac 57343 +Blaignac 13268 Blais 293547 Blaise 1573791 Blanc 7654369 @@ -1046,6 +1082,7 @@ Bo'ao 67 Boao 433 Bobcaygeon 1063 Bobigny 192384 +Bobovnikoff 610 Boche 255512 Boches 421264 Bohême 3781321 @@ -1055,6 +1092,7 @@ Boilet 5505 Boisacq 15998 Boisbriand 15213 Boisclair 33501 +Boissezon 16116 Boivin 540560 Boko 73574 Bolivie 1370871 @@ -1105,6 +1143,7 @@ Bostoniens 20635 Botswana 328445 Botswanais 2885 Botswanaise 134 +Botte 163242 Bouallegue 98 Bouchard 1377744 Bouchehr 2974 @@ -1121,6 +1160,7 @@ Bouglainval 3724 Bouix 48098 Boukhobza 4381 Boulanger 1404957 +Bouleternère 4565 Boulibaba 347 Boulibané 391 Boulogne 5294471 @@ -1156,13 +1196,16 @@ Boutcha 231 Boutella 920 Boutilier 6492 Boutin 273145 +Bouvette 13978 Bouvier 1169300 Bouxwiller 82401 Bouéni 14057 Bowman 160002 +Boyancé 48592 Boyer 2495836 Bozouls 19026 Brabant 5663339 +Bradfer 8983 Brahim 277978 Brandebourg 1738895 Brau 45578 @@ -1223,6 +1266,7 @@ Bruxelloise 22722 Bruxelloises 4015 Bruz 24851 Bryson 45532 +Bréant 84990 Brébeuf 136312 Brésil 9759075 Brésilien 204419 @@ -1234,15 +1278,18 @@ Brême 565436 Bucarest 1895486 Buckingham 809037 Budapest 2073740 +Buemi 244 Buffevent 6953 Bugatti 71910 Bui 64057 Bulgare 230514 Bulgares 1539577 Bulgarie 4019213 +Bulgnéville 29807 Bunjil 1194 Burgonde 45368 Burgondes 403202 +Buridan 210168 Burin 128764 Burkina 1180810 Burundais 42386 @@ -1417,6 +1464,7 @@ Calvados 2314091 Calédonie 2267363 Camara 255817 Camarde 15986 +Cambligneul 1862 Cambodge 2098992 Cambridge 4762899 Cambronne 201938 @@ -1443,9 +1491,11 @@ Canarienne 1406 Canariennes 2023 Canariens 39964 Canaries 1180496 +Canavan 4409 Cancer 974651 Cancún 29732 Candilis 13805 +Canet 203542 Caniapiscau 9482 Canigou 170043 Cannes 1926231 @@ -1487,6 +1537,7 @@ Capverdiennes 237 Capverdiens 11508 Caradoc 70231 Caralp 19759 +Caramel 37476 Caraquet 30309 Caravage 287818 Caraïbes 1270500 @@ -1514,6 +1565,7 @@ Caron 1460087 Carpates 217510 Carpenter 254674 Carpentier 827229 +Carpentras 896100 Carqueiranne 18035 Carrier 905454 Carrière 1123225 @@ -1556,9 +1608,11 @@ Caucasienne 10686 Caucasiennes 11682 Caucasiens 52628 Cauchon 286287 +Caulières 1742 Caumartin 356796 Cauvin 200175 Cavalaire 33441 +Caveirac 32978 Cayamant 864 Cayenne 1518351 Cayes 153179 @@ -1583,6 +1637,7 @@ Cerbère 261342 Cerise 198855 Cervin 122394 Ceylan 1578982 +Chaban 415156 Chabert 490453 Chablais 421857 Chabon 4224 @@ -1600,12 +1655,14 @@ Chaldéens 784594 Chalonnais 39655 Chalonnaise 5316 Chalonnaises 603 +Cham 846565 Chambord 912728 Chambérien 1935 Chambérienne 639 Chambériennes 147 Chambériens 5038 Chambéry 2231806 +Chamoniard 1547 Chamonix 435837 Champagne 7360671 Champenois 295766 @@ -1615,6 +1672,7 @@ Champerret 26653 Champhol 4979 Champlain 859519 Champneuf 4811 +Chams 84221 Chancel 213144 Chandeleur 269958 Chanel 301814 @@ -1677,6 +1735,7 @@ Cheyennes 27969 Chiac 674 Chiasso 35081 Chiasson 39857 +Chibougamau 39898 Chicago 3472748 Chicheportiche 2709 Chichester 102532 @@ -1702,8 +1761,10 @@ Chirol 39061 Chiron 334545 Chirongui 1797 Chisa 2041 +Chisasibi 4560 Chisinau 15385 Chiyo 3480 +Chièvres 123186 Chlef 8678 Chleuh 21431 Chleuhs 25008 @@ -1762,11 +1823,13 @@ Citrini 730 Citroën 475373 City 1889681 Cixous 85404 +Cizos 5820 Claira 8311 Claire 5189928 Clairouin 3414 Clara 1929430 Clarendon 787269 +Clarensac 11340 Clariond 20783 Clarisse 752399 Clary 254230 @@ -1863,6 +1926,7 @@ Comtois 310536 Comtoise 19175 Comtoises 11153 Coméliau 7355 +Concarneau 278169 Condat 117173 Condom 491986 Condé 7749390 @@ -1872,6 +1936,7 @@ Congo 12556494 Congolais 629913 Congolaise 108509 Congolaises 35489 +Coni 230587 Conoc 1130 Conogan 4067 Constance 4382467 @@ -1955,7 +2020,10 @@ Courbieu 239 Couronne 4531589 Courseulles 51979 Courtemanche 40221 +Courtin 411531 Courtois 897971 +Courtrai 963020 +Couserannais 840 Couserans 129346 Cousineau 71566 Coussau 1220 @@ -1971,6 +2039,7 @@ Cracovien 2923 Cracovienne 2902 Cracoviennes 420 Cracoviens 4872 +Cramchaban 315 Crampagna 5123 Craon 544469 Crespelle 8632 @@ -2133,6 +2202,7 @@ Dauzat 223388 David 18400793 Davis 1251725 Davy 923348 +Deauville 280999 Debaralle 937 Debierne 24348 Debrecen 42633 @@ -2160,6 +2230,7 @@ Delvincourt 329336 Dembeni 3194 Dembélé 17166 Demesmaeker 1278 +Denamiel 4114 Denault 14341 Deneuve 76207 Denholm 5530 @@ -2167,6 +2238,7 @@ Denicourt 7553 Denis 14273342 Denise 1772202 Denoncourt 7084 +Derny 2329 Deroche 22587 Derrida 811997 Desaulniers 37283 @@ -2191,6 +2263,8 @@ Deveaux 24598 Deville 950626 Devolle 380 Devos 185433 +Dewarrat 1294 +Dezaly 283 Diagana 7345 Diakité 29021 Diamniadio 4913 @@ -2263,12 +2337,14 @@ Dorsaf 676 Dorval 432633 Doré 560530 Douanier 88108 +Douarnenez 244900 Doubs 2146404 Doucette 32700 Douchanbé 12796 Doudinka 1949 Douglas 1751250 Doujani 284 +Doullens 292807 Doumbouya 13482 Doumergue 322749 Douvres 695584 @@ -2291,6 +2367,7 @@ Drummond 332382 Drummondville 87058 Drôme 1551566 Drômois 5955 +Dubas 15798 Dubay 9953 Dubaï 139558 Dublin 1732506 @@ -2312,6 +2389,7 @@ Dufaux 26459 Dufour 1705944 Dufresne 432857 Dufrêne 38478 +Duhaime 17482 Duhamel 1386724 Dujardin 649794 Dujour 10137 @@ -2339,6 +2417,7 @@ Dupuit 97113 Dupuits 37425 Dupuy 1887710 Dupuytren 651118 +Duquesne 484711 Durance 905654 Durand 4732261 Durex 3003 @@ -2346,6 +2425,7 @@ Durocher 151489 Dussault 148755 Dussutour 2819 Duteil 69691 +Dutriez 1714 Duval 2604907 Duvauchelle 7337 Duverger 298359 @@ -2368,8 +2448,10 @@ Désirée 298152 Détroit 585959 E 40184413 EAU 1198923 +ECU 258573 EDSC 6163 EEE 133414 +EEI 8751 EHPAD 39824 EI 356068 EII 18413 @@ -2408,6 +2490,7 @@ Egyptien 460497 Egyptienne 199214 Egyptiennes 73553 Egyptiens 2541369 +Egée 496979 Ehpad 6665 Eiffel 755636 Eisenberg 49498 @@ -2416,6 +2499,7 @@ Ekat 591 Ekrem 10869 Elbe 2442626 Eldorado 302381 +Elise 651881 Elnour 201 Elven 44080 Elysée 1130127 @@ -2476,6 +2560,7 @@ Espagnol 2364063 Espagnole 657669 Espagnoles 196727 Espagnols 11276974 +Espelette 70712 Esposito 57036 Espérandieu 164539 Esquilin 107801 @@ -2537,6 +2622,7 @@ Eveline 116030 Evêché 520449 Ewok 800 Exarchopoulos 729 +Exbrayat 19375 Excellence 5167132 Exocet 23624 Exode 1069610 @@ -2588,6 +2674,8 @@ Falguière 96196 Falguières 13072 Fanny 1313739 Fantômas 89125 +Farabeuf 47008 +Fareng 825 Farmer 141025 Fassett 4193 Fathallah 10576 @@ -2685,7 +2773,10 @@ Fogiel 13878 Foix 2448070 Follorou 2208 Fonck 45761 +Fons 290818 Fontaine 8421365 +Fontanes 643230 +Fontanès 26488 Fontenot 4289 Force 4819513 Ford 1316810 @@ -2764,6 +2855,7 @@ Fréchette 158335 Frédéric 15289884 Frédérick 257305 Frédérique 483218 +Frégate 96030 Frégoses 2053 Frémicourt 24037 Frémont 263041 @@ -2788,6 +2880,7 @@ GDT 2529 GES 186155 GEU 16599 GG 427386 +GIEC 72814 GIGN 45458 GN 177415 GNL 73065 @@ -2861,6 +2954,8 @@ Garand 47467 Garasse 156435 Garat 475355 Gard 2988536 +Gardon 219259 +Gargantua 839352 Garneau 329039 Garonne 5120344 Garros 164501 @@ -2925,6 +3020,7 @@ Genie 68417 Genk 38139 Genèse 3232910 Genève 24965756 +Genêts 73595 Geoffroy 3312805 Georgeaux 164 Georges 27254396 @@ -2941,6 +3037,7 @@ Germanie 2506688 Germanopratin 192 Germanopratins 350 Gers 1208808 +Gerussi 232 Gervais 2170385 Gervaise 409942 Gethsémané 27882 @@ -2958,6 +3055,7 @@ Gibelins 329492 Gibraltar 1766650 Gibraltarien 389 Gibraltariens 2598 +Giec 10195 Gigi 101514 Gignac 115441 Gilbert 5311588 @@ -3016,6 +3114,7 @@ Gozo 56298 Gracefield 5054 Graille 24315 Grammont 1112874 +Gramont 906820 Granada 180462 Granato 2371 Grande-Bretagne 111 @@ -3097,6 +3196,7 @@ Guilliermond 35314 Guillory 21884 Guillot 716983 Guillotin 152704 +Guilvinec 34352 Guingamp 316097 Guingouin 23090 Guinée 5044152 @@ -3128,6 +3228,7 @@ Guénin 36755 Guénolé 72089 Guépéou 55715 Guérin 2875946 +Guéthary 34629 Gwenaël 11053 Gwenaëlle 29511 Gwendoline 64541 @@ -3162,6 +3263,7 @@ HLM 505301 HNE 3665 HNP 2554 HNR 1199 +HP 586968 HS 208146 HT 662261 HTML 252417 @@ -3172,6 +3274,7 @@ Hachem 59480 Hadopi 11309 Hadrien 1110339 Hadès 325624 +Haenel 59079 Hainault 117364 Hainaut 4142403 Hajdu 17291 @@ -3210,6 +3313,7 @@ Hasegawa 17552 Hasmonéens 19125 Hathor 205786 Hatton 107721 +Haubourdin 71533 Haudricourt 51857 Hauschild 7411 Hauschildt 4570 @@ -3290,6 +3394,7 @@ Hisako 4401 Hispanie 61377 Hispaniola 123023 Hitomi 5472 +Hitte 29451 Hittite 42228 Hiérapolis 109346 Hiéron 240519 @@ -3400,6 +3505,7 @@ Hésiode 910249 I 159196694 IA 494169 ICI 279918 +IDH 74992 IGN 129949 IMC 95904 INCA 13765 @@ -3407,6 +3513,7 @@ INRIA 28350 INSEE 1386394 IPC 223483 IPE 22071 +IPS 41904 IQA 412 IRAP 4950 IRCC 3061 @@ -3466,6 +3573,7 @@ Ingrid 344538 Ingvar 23041 Inrap 10760 Inria 9680 +Insta 3814 Insulinde 100856 Intercités 2337 Interlaken 80352 @@ -3552,6 +3660,7 @@ Italiennes 215373 Italiens 7023856 Itchkérie 1161 Iturée 11108 +Itxassou 11342 Ivanie 479 Ivoirien 78887 Ivoirienne 65370 @@ -3592,6 +3701,7 @@ Jambrès 2029 Janequin 32028 Janicot 34285 Janine 490782 +Jankélévitch 156460 Jannequin 28146 Jannès 14435 Janzé 62352 @@ -3693,6 +3803,7 @@ Juges 2316748 Juguet 4384 Juif 3230259 Juifs 18809746 +Juillan 8056 Juive 462312 Juives 178231 Jules 18038650 @@ -3764,6 +3875,7 @@ Katangais 43259 Katangaise 4440 Katangaises 1188 Katar 16744 +Katell 13334 Katia 251681 Katmandou 86994 Kavani 350 @@ -3793,6 +3905,7 @@ Kevin 571857 Kevine 231 Khassonké 9927 Khimki 1125 +Khmer 69037 Kialing 1121 Kiamika 4156 Kielburger 438 @@ -3843,6 +3956,7 @@ Kuniko 3271 Kurde 69931 Kurdes 535134 Kurimoto 1698 +Kwango 172620 Kyiv 7324 Kylian 39187 Kéka 242 @@ -3857,6 +3971,7 @@ LE 66845072 LGBT 46821 LGN 23665 LGV 13656 +LICRA 18359 LNH 25832 LOSC 5581 LSD 100961 @@ -3898,8 +4013,11 @@ Lafontaine 531594 Laforce 51334 Lafourcade 38575 Lafrenière 28213 +Lagace 3707 +Lagacé 33037 Laganière 7858 Lagarosse 3052 +Laghouat 208495 Lagide 17484 Lagos 634476 Lagrange 1813944 @@ -3911,6 +4029,7 @@ Lalande 998859 Lalanne 396142 Lalonde 209605 Lamar 61029 +Lamarque 399608 Lamartine 4112401 Lambert 6201329 Lambège 945 @@ -3933,6 +4052,7 @@ Landes 2209404 Landier 27462 Landrienne 2415 Landrieu 26250 +Landru 71731 Landry 893528 Langelier 94837 Langevin 470045 @@ -3966,6 +4086,7 @@ Lapège 1108 Lara 654077 Larissa 169002 Larivière 237675 +Larocque 71151 Larousse 1555702 Lasalle 299910 Latifi 1932 @@ -4024,6 +4145,8 @@ Lecompte 58982 Lecomte 960686 Lecoq 478658 Ledoux 461436 +Ledru 701433 +Ledrue 136 Leduc 709439 Lefebvre 2568074 Lefevre 177952 @@ -4100,6 +4223,7 @@ Libérien 11709 Libérienne 7625 Libériennes 710 Libériens 26590 +Licra 7505 Liechtenstein 379321 Liechtensteinois 1197 Lieoux 586 @@ -4141,7 +4265,10 @@ Lionel 1560284 Lions 473837 Lipa 24600 Lisa 937082 +Lisbonnais 1067 Lisbonne 4520636 +Lisbonnin 138 +Lisboète 448 Lise 1232168 Lisette 669403 Lisle 1062490 @@ -4170,7 +4297,9 @@ Liège 9396948 Liégeois 733010 Liégeoise 42533 Liégeoises 5834 +Liévin 305618 Ljubljana 161399 +Llorach 4853 Lloris 6394 Lochaber 11832 Loches 521127 @@ -4200,6 +4329,7 @@ Longueuil 234121 Longueuillois 293 Longyearbyen 5455 Loranger 66059 +Lore 122472 Loriaux 10178 Lorient 1358354 Lorientais 13705 @@ -4221,7 +4351,9 @@ Loubet 373421 Loubier 27187 Louchet 36691 Loudun 601034 +Loudéac 107536 Louga 81664 +Louhossoa 5434 Louis 113773040 Louisbourg 214796 Louise 10035212 @@ -4244,6 +4376,7 @@ Ltee 6341 Ltée 244685 Luc 8402396 Lucas 3140852 +Lucheux 30584 Luchon 369930 Lucie 2520797 Lucien 8160527 @@ -4321,6 +4454,7 @@ Lévis 730321 Lévite 77138 Lévitique 448547 Lévy 3132031 +Lévézou 6007 Lézard 158231 Lœuilly 5131 M 92044152 @@ -4354,6 +4488,7 @@ MacKinnon 27220 Macaire 638742 Macamic 5197 Macao 710850 +Macaye 10961 Maccabée 30805 Maccabées 110721 Machhad 7384 @@ -4361,6 +4496,7 @@ Machin 128773 Machins 2535 Macintosh 147583 Macquaire 4603 +Macrobe 410062 Macron 232833 Macronie 991 Macédoine 3185505 @@ -4388,6 +4524,7 @@ Magendie 518463 Magenta 455003 Maghreb 2261099 Maghrébin 44634 +Maginot 259875 Magnol 52539 Magnon 198087 Magot 40417 @@ -4417,6 +4554,7 @@ Makenzy 738 Mal 3087468 Malachie 256437 Malais 651423 +Malaise 321055 Malaises 24873 Malaisie 1233364 Malaisien 4308 @@ -4438,6 +4576,7 @@ Malgache 307425 Malgaches 466349 Malgouyres 3574 Mali 2544930 +Malicia 14543 Malien 73446 Malienne 27740 Maliennes 7164 @@ -4518,6 +4657,7 @@ Marchand 2774166 Marchandeau 35668 Marchandot 927 Marche 4070851 +Marches 544298 Marchessault 15631 Marciac 45052 Marcoux 107188 @@ -4576,6 +4716,7 @@ Marseillaise 1074315 Marseillaises 22087 Marseille 20748760 Marson 56726 +Marsoui 2428 Marthe 3383969 Martial 2414323 Martien 50448 @@ -4606,6 +4747,7 @@ Massat 53119 Masse 813159 Masson 3553821 Massé 598296 +Mastodon 57889 Matam 66940 Matawinie 6201 Matera 47386 @@ -4644,6 +4786,7 @@ Mauritaniennes 2776 Mauritaniens 60669 Maurois 277119 Maurras 1054127 +Mauzé 48722 Max 6842307 Maxence 599425 Maxime 3473449 @@ -4663,6 +4806,7 @@ Mayenne 3145876 Mayeux 132011 Mayo 352784 Mayotte 655854 +Mazaltarim 281 Mazars 29354 Mazingarbe 14164 Maéva 4908 @@ -4701,6 +4845,7 @@ Menkao 444 Menu 904305 Mercadié 2558 Mercedes 550606 +Mercie 82368 Merco 3290 Mercos 498 Mercure 6396767 @@ -4714,6 +4859,7 @@ Mes 13923621 Meschacébé 11066 Mesdames 2208227 Mesdemoiselles 182954 +Mesrine 42408 Messaoui 863 Messeigneurs 363862 Messie 2835789 @@ -4726,6 +4872,7 @@ Messins 109554 Messire 1719311 Messonnier 5376 Messrs 71396 +Metge 25348 Metz 8806272 Meullenet 145 Meunier 1301591 @@ -4852,9 +4999,11 @@ Mongolie 828567 Mongols 1056139 Monika 79164 Monique 2049914 +Monjoie 21949 Monoblet 10055 Monréal 15628 Mons 5404076 +Monsanglant 342 Monseigneur 9801875 Monsieur 50620062 Montagnard 80983 @@ -4875,9 +5024,13 @@ Montferrier 56402 Montgaillard 182842 Montgauch 1961 Montgolfier 271340 +Montignargues 1494 +Montjoie 232836 +Montjoy 9527 Montlhéry 204562 Montmagny 188333 Montmartre 2305046 +Montmartrois 11368 Montminy 13845 Montner 4193 Montoulieu 14013 @@ -4938,10 +5091,12 @@ Mouchet 169774 Mouflet 3919 Mouligneau 3587 Mouloud 159061 +Moumoulous 269 Mounet 158517 Mourad 548088 Mourelatos 2961 Mouret 421405 +Mouscron 132367 Moussa 832149 Mousseau 63414 Mozambicain 4259 @@ -4970,9 +5125,11 @@ Munichoises 543 Munster 1696488 Munténie 18086 Murakami 31794 +Murdochville 11691 Muret 856176 Muriel 440735 Murielle 79370 +Murs 409831 Murzeau 2464 Mutuel 110316 Myanmar 109423 @@ -5013,6 +5170,7 @@ Ménard 878880 Ménière 88870 Ménédème 22175 Mérida 202400 +Mérignac 124542 Mérigon 7177 Mérinide 7645 Mérinides 65640 @@ -5045,10 +5203,12 @@ NIP 15314 NM 183515 NMT 3448 NO 1641315 +NOTAM 13672 NPD 57633 NRBC 6089 NRF 381772 NSDAP 90095 +NTM 20768 p Nadeau 274580 Nadejda 47872 Nadia 572902 @@ -5086,6 +5246,7 @@ Nantaise 58488 Nantaises 5451 Nanterre 1047107 Nantes 11133835 +Naours 11071 Naples 14244589 Napolitain 266480 Napolitaine 52979 @@ -5121,6 +5282,7 @@ Nausicaa 120840 Navalny 1966 Navarre 7940138 Navarrenx 43815 +Nazaré 18194 Nazaréen 121772 Naziréen 2410 Ndiaga 5880 @@ -5205,6 +5367,7 @@ Niçois 102266 Niçoise 14294 Niçoises 2633 Nièvre 1232452 +Noailhac 4574 Noir 3695499 Noire 5501275 Noires 326735 @@ -5234,8 +5397,11 @@ Norvégienne 46021 Norvégiennes 10090 Norvégiens 289811 Nosseigneurs 121321 +Notre-Dame 43 Noualhat 594 Nouméa 682834 +Noutary 2178 +Nouyrigat 1290 Novatien 102680 Novossibirsk 23156 Noé 1706804 @@ -5258,6 +5424,7 @@ Nuuk 5998 Nzonzi 1197 NÉ 112246 Nègre 677263 +Nègres 1022211 Néapolis 48351 Nédélec 20302 Néerlandais 486306 @@ -5288,12 +5455,14 @@ OEA 87734 OGM 287912 OIML 2178 OIT 366942 +OK 1349281 OL 137198 OLAF 15351 OM 486602 OMC 749778 OMG 9600 OMM 62347 +OMPI 145170 OMS 721903 ONG 1662318 ONGs 20927 @@ -5322,7 +5491,9 @@ Odile 1391161 Odin 475157 Odyssée 1070774 Odénat 10602 +Offignies 1872 Ogawa 22191 +Oge 4984 Oghouzes 1383 Ogier 586589 Ogmios 17776 @@ -5332,6 +5503,9 @@ Oise 6623785 Oligocène 450017 Olivia 656355 Olivier 7635459 +Ollier 286734 +Ollié 1954 +Ollé 69491 Olonne 236550 Olténie 47615 Olympe 1989259 @@ -5357,6 +5531,7 @@ Ontario 3632360 Onésime 196539 Opatrny 232 Ophélie 291333 +Optevoz 5454 Oranais 129833 Oranaise 5492 Oranaises 1366 @@ -5366,32 +5541,45 @@ Orcadien 666 Orcadiens 2922 Orcel 53648 Orchies 213649 +Ordizan 2253 +Orensanz 843 +Organ 114742 +Orgeix 11784 Orianne 14474 Orient 25191461 +Orignac 12945 Orinda 2185 Oriège 4257 +Orlu 20740 Orly 356265 Orléanais 669349 Orléanaise 8823 Orléanaises 2657 Orléans 20536389 Orne 1729367 +Orognen 258 Oronce 41696 Oronte 436692 Orontien 508 Orphée 1651268 Orpustan 1323 Orsay 1663366 +Ortet 5369 +Ortholan 2433 Orville 139209 Osiris 1381797 Oslo 684052 +Osmin 70691 Osque 6097 Osques 40413 Osroène 7401 +Ossau 142879 +Ossun 87676 Ossète 5032 Ossètes 60827 Ossétie 46447 Ossétien 209 +Oste 30106 Ostende 1439400 Ostie 630675 Osée 308812 @@ -5401,6 +5589,7 @@ Otrante 418510 Ottawa 4140974 OuLiPo 8617 Ouachita 9207 +Ouagadougou 711612 Ouaki 3002 Oualalou 5626 Oualid 29077 @@ -5415,14 +5604,25 @@ Ouganda 922045 Ougandais 30086 Ougandaise 1369 Ougandaises 602 +Ouilhon 95 +Ouillon 4499 Ouimet 85993 Ouisconsin 3943 +Oule 15524 Oulipo 46776 +Oulié 6445 +Oulé 19373 Ouo 10513 Oural 858453 Ouralsk 13211 +Ourthe 249599 +Ousset 12591 Oussouriisk 231 Oust 112489 +Oustalet 34553 +Oustaloup 223 +Oustau 4592 +Ousteau 744 Oustric 24873 Outaouais 322151 Outremont 120655 @@ -5497,6 +5697,7 @@ PQN 3618 PRM 15745 PS 1560806 PSA 145571 +PSC 92935 PSG 92382 PV 360601 Pabine 125 @@ -5532,6 +5733,8 @@ Palay 24030 Palengat 2756 Palerme 1539781 Palermitain 4413 +Palermitaine 1398 +Palermitaines 709 Palermitains 20252 Palestine 5422216 Palestinien 95065 @@ -5570,6 +5773,8 @@ Paléoprotérozoïque 1859 Pambrun 8053 Pamiers 627987 Pamir 194700 +Pampelonne 33520 +Pampelune 651104 Pamphylie 124439 Paname 34752 Panamá 60939 @@ -5621,6 +5826,7 @@ Pareilh 105 Parent 1043111 Pargade 4113 Paries 6612 +Parignargues 2684 Parigot 45414 Parigote 1300 Parigotes 331 @@ -5706,6 +5912,8 @@ Pelletan 573959 Pelletier 1699369 Peltier 329196 Pendanx 1056 +Pendjab 155949 +Pendjabi 3951 Penelopegate 412 Penha 20770 Pennsylvanie 464455 @@ -5867,6 +6075,7 @@ Philopon 78849 Philémon 319011 Phlégon 33195 Phlégéthon 8635 +Phocée 130694 Phrygie 557164 Phuket 35521 Phung 19766 @@ -5877,7 +6086,10 @@ Phénicienne 30505 Phéniciennes 72891 Phéniciens 1334227 Phérécyde 63018 +Phœnicie 7104 +Phœnicien 783 Phœnicienne 734 +Phœniciennes 1227 Phœniciens 6340 Piat 245894 Picard 3265448 @@ -5895,6 +6107,8 @@ Pichilemu 717 Picon 185926 Picot 887559 Picquet 162117 +Picquier 37506 +Picquigny 112307 Pie 6451236 Piedmont 247097 Pieiller 7333 @@ -5905,6 +6119,7 @@ Pierrette 524298 Pierrick 43629 Pierrot 1165727 Pietralunga 1151 +Pigasse 17105 Piketty 43897 Pikine 49555 Pikogan 2020 @@ -5927,9 +6142,14 @@ Piquemal 46776 Piquet 248368 Piray 2955 Pironi 3863 +Pisan 255120 +Pisane 6170 +Pisanes 1785 +Pisans 376227 Pise 2408371 Pisidie 114615 Pissarro 277505 +Pissevin 3813 Pistoia 146786 Piémont 4038673 Piémontais 612793 @@ -5998,7 +6218,9 @@ Ponant 194582 Ponce 628881 Pondichéry 1039749 Poniatowski 507489 +Pont 10089372 Pontiac 101270 +Pontivy 269232 Pontrieux 45419 Popaul 28275 Popesco 30166 @@ -6042,6 +6264,9 @@ Pouyanne 22633 Poénaru 385 Pr 1697962 Pradier 340197 +Pragois 15067 +Pragoise 1058 +Pragoises 504 Prague 4428695 Prascovie 41624 Pratas 2694 @@ -6052,6 +6277,7 @@ Priam 585898 Priape 203709 Priest 563569 Prigogine 91242 +Prigojine 410 Primeau 20999 Primeaux 602 Primel 21441 @@ -6187,7 +6413,9 @@ Quevauvilliers 3157 Queysanne 5284 Quiberon 448521 Quiberonnais 356 +Quillévéré 1881 Quimper 1271335 +Quimperlé 228210 Quimpérois 8501 Quimpéroise 853 Quimpéroises 216 @@ -6204,8 +6432,10 @@ Québécoises 68118 RAS 120713 RC 382099 RCI 25430 +RDA 1010233 RDC 551508 RDP 185813 +RDS 29091 REEE 5628 REER 47502 REP 160116 @@ -6216,6 +6446,7 @@ RG 291352 RH 409736 RIB 26907 RIF 30403 +RIP 32736 ROR 13417 ROU 18455 RPA 23067 @@ -6257,6 +6488,7 @@ Raoul 5018175 Raoust 7843 Raphaël 4608773 Raphaëlle 85248 +Rascol 13076 Raspiengeas 1223 Rastignac 348872 Rastignacs 1284 @@ -6272,6 +6504,7 @@ Razès 68421 Raîche 2325 Rebecca 585535 Rechac 2407 +Reddit 3968 Redouane 21869 Reichenbach 246571 Reiko 11469 @@ -6340,6 +6573,7 @@ Rivesaltes 106109 Riyad 105657 Rizzi 34260 Rizzuto 7039 +Roaix 20944 Roberge 88827 Robert 31634908 Roberte 153107 @@ -6364,8 +6598,11 @@ Rochelais 97975 Rochelaise 5886 Rochelaises 1333 Rocheleau 23399 +Rockall 15140 +Rocque 179322 Rodin 880035 Rodolphe 2698654 +Rodès 14870 Roger 11436403 Rojouan 306 Roland 7554144 @@ -6406,6 +6643,7 @@ Roth 770225 Rothkopf 1575 Rothschild 1276368 Rothstein 30645 +Rouaix 19964 Roubaisien 4774 Roubaisienne 3317 Roubaisiennes 323 @@ -6507,11 +6745,13 @@ SDP 23911 SE 2606248 SEA 67983 SFR 60232 +SGDG 1965 SHA 39097 SI 2068801 SICAV 83089 SIDA 469916 SIGB 2246 +SIH 5771 SIMDUT 11659 SIRET 28717 SJ 177261 @@ -6576,6 +6816,7 @@ Sainte 35494244 Saintes 2456241 Saintonge 1225782 Sainty 4822 +Sainté 5342 Saito 30755 Sajjan 437 Sakura 21916 @@ -6584,6 +6825,7 @@ Salamanque 802342 Salamine 544068 Salat 89748 Saleich 4516 +Saleilles 89534 Salente 95480 Salerne 711653 Saljuq 459 @@ -6616,6 +6858,7 @@ Sanctus 380872 Sandra 509168 Sandrine 381531 Sansoucy 7070 +Santoni 50651 Sara 1408249 Saragosse 1109329 Sarah 2731559 @@ -6656,6 +6899,7 @@ Satomi 6577 Saturne 2406254 Sauber 4165 Sauldre 43030 +Saulxures 33310 Saumur 1812902 Saurat 50317 Saurier 5600 @@ -6665,6 +6909,7 @@ Sauvagnas 4396 Sauveterre 211801 Sauvignac 2808 Sauvé 246802 +Sauxure 217 Sauzet 187311 Save 401392 Savignac 174484 @@ -6696,6 +6941,7 @@ Schadenfreude 8089 Scheffer 328892 Schefferville 22241 Scheuchzer 56362 +Schiappa 6815 Schild 28599 Schmidt 2074140 Schmitt 791502 @@ -6847,6 +7093,7 @@ Sofia 1241750 Sofiane 28923 Sofonea 465 Sohar 17383 +Soignies 266041 Soileau 1473 Soizic 24561 Sokoloff 28156 @@ -6857,6 +7104,7 @@ Soleil 9934454 Solenn 24172 Solenne 18761 Soleure 826832 +Soljenitsyne 104177 Sologne 651616 Solovieff 10452 Soloviev 100480 @@ -6880,6 +7128,8 @@ Sophocle 1629242 Sophonie 64204 Sophène 13400 Sor 275973 +Sorabe 3733 +Sorbets 25617 Sorbon 69814 Sorbonne 6501027 Sorgeat 2298 @@ -6889,6 +7139,7 @@ Sospel 59252 Sosthène 103832 Sotchi 26091 Souabe 1054744 +Souchez 51702 Soudan 3740506 Soudanais 170513 Soudanaise 23387 @@ -6897,8 +7148,11 @@ Soueix 6376 Soula 58976 Soulaires 3048 Soulan 17748 +Soum 40658 Soumgaït 3230 +Souraïde 2555 Sousson 2349 +Souvignargues 6596 Soviétique 1306286 Soviétiques 1226985 Sozi 1221 @@ -6944,6 +7198,7 @@ Stéphan 151505 Stéphane 2095402 Stéphanie 781966 Stésichore 62579 +Sucy 78208 Sud 37804513 Suisse 25852823 Suisses 4546437 @@ -6994,6 +7249,7 @@ Syriennes 24787 Syriens 965218 Syrte 136586 Syène 126952 +Szlamowicz 759 Sète 320663 Sève 257536 Sèvres 2676495 @@ -7031,6 +7287,7 @@ TAI 42854 TAS 49204 TBI 18355 TBK 708 p +TCC 70112 TCD 14185 TCH 18070 TD 167892 @@ -7177,8 +7434,11 @@ Tchétchène 11617 Tchétchènes 60357 Tchétchénie 179397 Tebboune 246 +Tech 426064 Teilhet 5494 Telotte 643 +Tempo 112893 +Tempos 3691 Tenderloin 4344 Teramo 35053 Terni 148086 @@ -7266,6 +7526,7 @@ Thérien 27708 Thérouanne 265724 Thérèse 7469084 Thésée 1205566 +Théza 2505 Théétète 148981 Tibet 1040118 Tibre 1260983 @@ -7309,11 +7570,14 @@ Tokélaou 6749 Tolbiac 171285 Tolisso 361 Tolstoï 1195462 +Tombelaine 45004 +Tomblaine 23630 Tombouctou 738005 Tondreau 6025 Tonkin 2310457 Tonti 32171 Tootoo 323 +Torcé 23102 Toronto 2410573 Torontois 5395 Torontoise 473 @@ -7346,6 +7610,8 @@ Tourangeaux 60706 Tourangelle 15884 Tourangelles 3164 Tourcoing 572012 +Tournai 3416298 +Tournay 1672476 Tours 10565910 Tourtouse 4215 Touré 512406 @@ -7361,6 +7627,7 @@ Transylvanie 1396366 Traoré 193335 Trapani 133156 Trappes 124980 +Trein 2133 Tremblay 907567 Trente 6133779 Trentin 174840 @@ -7369,6 +7636,7 @@ Tricastin 37471 Tricolore 25178 Trieste 1343140 Trieu 53308 +Trieux 42398 Trifluvien 3349 Trifluvienne 351 Trifluviennes 440 @@ -7424,6 +7692,8 @@ Tunisois 10661 Tunisoise 836 Tunisoises 581 Turc 2152763 +Turcoman 19635 +Turcomane 905 Turcs 10882569 Turgeon 138743 Turin 6555679 @@ -7434,6 +7704,7 @@ Turkestan 644817 Turkmène 7203 Turkmènes 50466 Turkménistan 124781 +Turkoman 4723 Turku 46949 Turpin 749921 Turque 182951 @@ -7449,6 +7720,8 @@ Tyrolien 27292 Tyrolienne 11468 Tyroliennes 6136 Tyroliens 96623 +Tyrrhène 7751 +Tyrrhénienne 122517 Téhéran 1038250 Téhéranais 2052 Télougou 936 @@ -7464,6 +7737,7 @@ Térébinthacées 16766 Tétouan 240499 Tétreault 22570 Tétreaultville 729 +Têt 111457 Tôkyô 107975 Türkiye 10320 Tœufles 1317 @@ -7511,11 +7785,13 @@ Uranus 419233 Urau 885 Urbain 3213506 Urruty 6646 +Ursule 870040 Uruguay 1321547 Uruguayen 13081 Uruguayenne 5049 Uruguayennes 474 Uruguayens 16566 +Ustou 14287 Usée 19671 Usées 11106 Usés 18339 @@ -7558,12 +7834,15 @@ Vadon 26398 Vaduz 30086 Vahibé 413 Vaillancourt 103872 +Vaison 316829 +Vakinankaratra 24747 Valachie 1112663 Valais 1567977 Valaque 49808 Valaques 288220 Valaquie 27367 Valcourt 85121 +Valdegour 1628 Valence 4632930 Valenciennes 3036772 Valentin 2223290 @@ -7596,6 +7875,7 @@ Vannes 1761797 Vannot 988 Vanot 3394 Vanuatu 162008 +Vaquerolles 301 Var 4162269 Varane 10777 Varda 68046 @@ -7618,6 +7898,7 @@ Vaugier 2298 Vauguier 327 Vauquier 5371 VdO 206 +Venasque 52703 Vendée 4377058 Vendéen 125389 Vendéens 841457 @@ -7680,6 +7961,7 @@ Vietnamien 67679 Vietnamienne 26068 Vietnamiennes 10981 Vietnamiens 384425 +Vignacourt 36370 Vigneron 242605 Viking 198428 Vilaine 1803339 @@ -7699,6 +7981,7 @@ Vincennes 2773377 Vincent 11190839 Vingrau 9955 Vintimille 343904 +Vinça 26755 Vioche 824 Violaine 255790 Violet 462794 @@ -7775,6 +8058,8 @@ Waswanipi 6996 Waterloo 1533125 Watremez 5249 Watteau 761757 +Wattrelos 45513 +Wavrin 105592 Web 1507427 Weinstein 65768 Weintraub 20947 @@ -7796,6 +8081,7 @@ Willemstad 14384 William 7260509 Williams 1702407 Wilson 3342442 +Wingles 12591 Winneway 699 Winnipeg 488549 Winnipegosis 4030 @@ -7829,6 +8115,7 @@ Xerxès 506761 Xinjiang 81386 Xiongnu 11157 Xme 41696 +Xmes 200 Xénocrate 101942 Xénophane 178419 Xénophon 1372079 @@ -7899,6 +8186,7 @@ Yui 4468 Yukiko 19835 Yuko 9618 Yukon 571628 +Yukonais 206 Yukonnais 669 Yumi 13313 Yumiko 2905 @@ -8014,6 +8302,7 @@ Zurichoises 1012 Zutkerque 2811 Zuydcoote 26761 Zuytpeene 2721 +Zwevegem 5024 Zébédée 106073 Zélande 3166587 Zélote 7663 @@ -8024,6 +8313,7 @@ Zénon 894860 Zénonienne 101 Zénoniens 186 Zéphirin 78563 +Zéralda 12808 Zœbersdorf 185 a 2788019691 a'ec 2129 @@ -8564,6 +8854,7 @@ ablette 37482 ablettes 34633 ablier 671 abliers 122 +ablue 1128 ablution 204319 ablutionne 213 ablutionner 344 @@ -9139,6 +9430,9 @@ abrogée 822807 abrogées 906056 abrogés 632932 abrotone 270 +abroutis 6655 +abroutissent 181 +abroutit 112 abrupt 477256 abrupte 715871 abruptement 178202 @@ -10581,6 +10875,7 @@ accoutraient 248 accoutrait 770 accoutrant 702 accoutre 4349 +accoutrement 410594 accoutrements 74491 accoutrent 1106 accoutrer 9195 @@ -11386,9 +11681,13 @@ aciculaire 56113 aciculaires 123397 acicule 21239 acicules 29901 +aciculifoliée 394 aciculiforme 492 aciculiformes 763 aciculé 13531 +aciculée 11287 +aciculées 9712 +aciculés 10897 acide 65655428 acides 13513160 acidifia 697 @@ -11534,6 +11833,9 @@ acosmiques 849 acotylédone 954 acotylédones 15708 acotylédoné 680 +acotylédonée 108 +acotylédonées 3777 +acotylédonés 3239 acoumètre 7350 acoumètres 1824 acoumétrie 3679 @@ -12752,6 +13054,7 @@ adolescent 3464407 adolescente 966124 adolescentes 411701 adolescents 3224797 +adon 14944 adonc 358356 adonide 1921 adonides 889 @@ -13124,10 +13427,12 @@ adultère 3489622 adultères 515679 adultération 47798 adultérations 17268 +adultérez 140 adultérin 235703 adultérine 86104 adultérines 16329 adultérins 191254 +adultérons 170 adulât 480 adulèrent 651 adulé 124013 @@ -15080,6 +15385,7 @@ agroécosystèmes 6891 agrume 21930 agrumes 558953 agrumiculture 12636 +agrypnie 4312 agrège 52056 agrègent 14645 agrègera 116 @@ -15674,6 +15980,7 @@ aimons 2535059 aimâmes 17292 aimât 236634 aimâtes 8967 +aimè 5024 aimèrent 211085 aimé 15275553 aimée 5701447 @@ -15720,9 +16027,13 @@ aisance 5181073 aisances 470037 aise 11913742 aises 775546 +aisez 38227 +aisiez 2372 +aisions 580 aisnée 80361 aisnées 2069 aisnés 9341 +aisons 23184 aisseau 8538 aisseaux 13356 aisselle 1184223 @@ -16285,6 +16596,10 @@ aldéhydes 358348 aldéhydique 48144 aldéhydiques 29362 ale 695660 +alentis 2966 +alentisse 114 +alentissent 479 +alentit 1917 alentour 1808083 alentours 3097603 alerta 68622 @@ -17784,6 +18099,8 @@ amalgamé 164418 amalgamée 52912 amalgamées 70364 amalgamés 93291 +amancher 609 +amanché 935 amandaie 277 amandaies 303 amande 1179948 @@ -18224,8 +18541,10 @@ amenés 4317902 amer 3740622 americana 211402 amerissage 587 +amerlo 317 amerloque 3539 amerloques 2152 +amerlot 103 amerri 4294 amerrir 12961 amerrira 169 @@ -20598,6 +20917,7 @@ anthoxanthines 309 anthracifère 26370 anthracifères 12938 anthracite 542798 +anthracites 71566 anthraciteuse 8909 anthraciteuses 9817 anthraciteux 22933 @@ -20705,6 +21025,8 @@ anthérifère 9255 anthérifères 6140 anthérozoïde 23022 anthérozoïdes 63726 +antiacadémique 2123 +antiacadémiques 485 antiacide 8886 antiacides 14629 antiacridien 2798 @@ -22715,9 +23037,6 @@ appaisâmes 79 appaisât 532 appaisèrent 4438 appaisé 69397 -appaisée 44503 -appaisées 15197 -appaisés 21401 appalachien 19468 appalachienne 14235 appalachiennes 8232 @@ -23024,9 +23343,6 @@ appellât 8946 appellâtes 287 appellèrent 23030 appellé 1359259 -appellée 697600 -appellées 185022 -appellés 324460 appelons 4179534 appels 5242781 appelâmes 37905 @@ -24686,6 +25002,7 @@ argenté 1021202 argentée 605772 argentées 376244 argentés 523277 +argh 2147 argien 32631 argienne 37200 argiennes 12176 @@ -27607,6 +27924,7 @@ asynchrones 118163 asynchronique 1476 asynchroniquement 370 asynchroniques 507 +asynchronisme 19556 asyndète 33562 asyndètes 4505 asynergie 18012 @@ -28471,8 +28789,11 @@ attiédissez 380 attiédissons 216 attiédit 12161 attorney 138515 +attouche 10608 attouchement 485250 attouchements 247804 +attouchez 147 +attouchons 249 attracteur 63197 attracteurs 39241 attractif 400208 @@ -30702,6 +31023,7 @@ axion 2399 axions 3208 axipète 1192 axipètes 174 +axis 223283 axisymétrie 610 axisymétrique 13088 axisymétriques 6299 @@ -31260,6 +31582,7 @@ bactériologiques 353305 bactériologiste 43290 bactériologistes 54834 bactériolyse 18001 +bactériolysine 3284 bactériophage 97017 bactériophages 62886 bactériorhodopsine 1401 @@ -31705,7 +32028,7 @@ baisassent 2911 p baisasses 46 p baisassiez 99 p baisassions 257 p -baise 1251197 p +baise 1251197 baisemain 42115 baisemains 26422 baisement 29760 @@ -31730,12 +32053,12 @@ baiseur 15419 baiseurs 5550 baiseuse 4983 baiseuses 1446 -baisez 45394 p -baisiez 7718 p -baisions 8524 p +baisez 45394 +baisiez 7718 +baisions 8524 baisodrome 3626 baisodromes 359 -baisons 33437 p +baisons 33437 baisota 212 baisotaient 56 baisotait 320 @@ -31918,6 +32241,7 @@ balandier 521 balane 5580 balanes 27413 balanifères 157 +balanique 14834 balanite 31119 balanites 11506 balanoglosse 234 @@ -31929,6 +32253,7 @@ balanopréputiale 614 balanopréputiales 252 balanoïde 57 balanoïdes 1162 +balanus 5509 balança 418963 balançai 59673 balançaient 284483 @@ -33926,6 +34251,8 @@ bayai 143 bayaient 2072 bayais 754 bayait 4665 +bayaka 1938 +bayakas 512 bayant 8578 bayard 6387 bayards 1079 @@ -35561,6 +35888,7 @@ biomarqueur 5043 biomarqueurs 18840 biomasse 525636 biomasses 46805 +biomathématiques 1562 biomatériau 2596 biomatériaux 13027 biome 10930 @@ -35815,6 +36143,7 @@ biscayenne 11679 biscayennes 4499 biscayens 13324 biscayne 132 +biscaynes 201 biscaïen 45459 biscaïenne 2827 biscaïennes 1086 @@ -35987,6 +36316,7 @@ bistronomie 4179 bistronomique 7754 bistronomiques 892 bistrot 604683 +bistrotier 10813 bistrots 179959 bistré 49209 bistrée 37850 @@ -36000,6 +36330,7 @@ bisulfures 4024 bisulque 1720 bisulques 4288 bisyllabique 4643 +bisyllabiques 5979 bisât 129 bisé 1085 bisée 362 @@ -36020,6 +36351,7 @@ bitemporale 12369 bitemporales 1576 bitemporaux 538 bitension 581 +biter 17650 biterrois 18829 biterroise 11133 biterroises 2957 @@ -36414,6 +36746,7 @@ blastopore 74805 blastopores 561 blastula 54590 blastulas 8929 +blastule 7572 blastème 103381 blastèmes 24700 blasât 42 @@ -36783,6 +37116,7 @@ bluffées 533 bluffés 6192 blush 23296 bluta 563 +blutage 76639 blutaient 526 blutait 1711 blutant 1829 @@ -36794,6 +37128,7 @@ bluterait 139 blutes 810 blutez 46 blutions 1086 +blutoir 39917 blutons 250 bluté 13042 blutée 42338 @@ -37724,6 +38059,7 @@ bou 748119 bouana 522 boubou 114049 bouboule 2368 +boubouler 286 bouboules 437 bouc 1582650 boucan 104278 @@ -38497,6 +38833,8 @@ bourguignon 625319 bourguignonne 569632 bourguignonnes 173042 bourguignons 392454 +bourguignote 6346 +bourguignotes 2621 bourlets 6793 bourlingua 1079 bourlinguaient 569 @@ -38770,6 +39108,8 @@ bouteras 284 bouterez 485 bouteriez 341 bouterions 101 +bouterolle 46606 +bouterolles 12464 bouterons 2610 bouteront 2339 boutes 12102 @@ -38865,6 +39205,7 @@ bouzouki 5942 bouzoukis 994 bouée 442552 bouées 317842 +bovarysme 39287 bovidé 78309 bovidés 418485 bovin 554589 @@ -38968,9 +39309,11 @@ brachiales 60869 brachialgie 765 brachiaux 38903 brachiocéphalique 18095 +brachiocéphaliques 2283 brachiosaure 785 brachiosaures 293 brachycéphale 122044 +brachycéphales 196514 brachycéphalisation 2731 brachylogie 7668 brachylogies 903 @@ -39049,6 +39392,7 @@ braguettes 20746 brahmane 296964 brahmanes 410841 brahmanique 240784 +brahmaniques 99837 brahmanisme 175527 brahmine 30824 brahmsien 2324 @@ -39281,12 +39625,12 @@ branleur 17797 p branleurs 12939 p branleuse 3378 p branleuses 1185 p -branlez 5561 p -branliez 705 p -branlions 795 p +branlez 5561 +branliez 705 +branlions 795 branloche 150 branlocher 277 p -branlons 1539 p +branlons 1539 branlâmes 378 p branlât 1922 p branlèrent 4022 p @@ -40151,6 +40495,7 @@ bronchiques 619349 bronchite 886907 bronchites 249073 bronchitique 11887 +bronchitiques 18913 bronchodilatateur 9616 bronchodilatateurs 13004 bronchons 3122 @@ -40167,6 +40512,7 @@ bronchés 134 brontomètre 193 brontosaure 5494 brontosaures 3393 +brony 59 bronza 4309 bronzage 125412 bronzages 1727 @@ -40705,6 +41051,7 @@ bréviaires 153750 brévium 165 brêle 3239 p brêles 1903 p +brême 10977 brûla 948487 brûlage 70442 brûlages 5455 @@ -41152,6 +41499,7 @@ butterai 57 butteraient 237 butterais 103 butterait 1111 +buttereau 362 butterez 209 butteriez 41 butterons 193 @@ -41211,6 +41559,7 @@ buvons 299357 buzz 70696 buée 451444 buées 94262 +byblienne 247 bye 83771 byronien 38180 byronienne 19450 @@ -42543,6 +42892,8 @@ caducifoliés 6739 caducité 556289 caducités 4298 caducs 241400 +caducée 258061 +caducées 9881 caduque 751333 caduques 601916 cadurcien 4954 @@ -42881,7 +43232,11 @@ calaisiens 5951 calait 28738 calamar 20457 calamars 55505 +calamba 1939 calambac 4487 +calambou 236 +calambouc 1317 +calambour 3160 calame 56533 calament 9284 calaments 347 @@ -43841,6 +44196,7 @@ candidaté 1728 candide 803845 candidement 84263 candides 207804 +candidose 26716 candie 10397 candies 14980 candir 2822 @@ -44441,6 +44797,7 @@ cappadociennes 14879 cappadociens 20559 cappuccino 45630 cappuccinos 6773 +capri 23082 caprice 3821434 caprices 3356411 capricieuse 893738 @@ -44463,6 +44820,7 @@ capriole 4500 caprioles 4153 caprique 22197 capriques 233 +capris 3188 caprisant 1194 caprolactame 7464 caprolactames 166 @@ -44499,9 +44857,12 @@ captant 97784 captas 7196 captasse 187 captateur 8109 +captateurs 6376 captatif 5436 captation 526475 captations 36943 +captatrice 7658 +captatrices 1840 capte 312196 captent 113196 capter 1292995 @@ -46444,6 +46805,7 @@ caverneuses 60962 caverneux 663524 cavernicole 51907 cavernicoles 90280 +cavernite 484 caves 2649961 caveçon 25756 caveçons 1710 @@ -47260,6 +47622,7 @@ chalandes 1382 chalandise 46518 chalandises 1618 chalands 554568 +chalant 6283 chalaze 50586 chalazion 18963 chalcanthe 491 @@ -47380,6 +47743,8 @@ chamanique 109505 chamaniques 68799 chamanisme 186270 chamanismes 2271 +chamaniste 6970 +chamanistes 12027 chamans 110352 chamarré 101502 chamarrée 48312 @@ -47487,6 +47852,10 @@ chamoiser 1269 chamoiserie 12582 chamoiseries 5287 chamomilles 253 +chamoniard 3143 +chamoniarde 1818 +chamoniardes 580 +chamoniards 2713 chamorro 1502 chamotte 26195 chamottes 1646 @@ -47506,6 +47875,8 @@ champignonnant 343 champignonne 1451 champignonnent 1886 champignonner 932 +champignonneuse 761 +champignonneuses 424 champignonneux 441 champignonniste 5565 champignonnistes 14511 @@ -47763,6 +48134,7 @@ chanturgues 50 chantâmes 19153 chantât 58567 chantâtes 2421 +chantè 1041 chantèrent 286304 chanté 3243283 chantée 1133931 @@ -48380,6 +48752,8 @@ chaude 9440061 chaudeau 7075 chaudement 842738 chaudes 4125145 +chaudez 70 +chaudin 844 chaudière 3995609 chaudières 3034730 chaudron 555678 @@ -48559,6 +48933,7 @@ chavirant 13054 chavirassent 131 chavire 104700 chavirement 23697 +chavirements 2496 chavirent 27371 chavirer 270783 chavirera 2543 @@ -48872,6 +49247,7 @@ chevets 51535 cheveu 975233 cheveux 25984479 cheville 1747645 +cheviller 28157 chevilles 1542918 chevillette 17654 chevillettes 15217 @@ -49047,7 +49423,7 @@ chicotter 467 chicottes 2072 chicoutai 417 chics 183934 -chie 233320 p +chie 233320 chien 16836776 chienchien 3656 chienchiens 679 @@ -49079,7 +49455,7 @@ chieur 7166 p chieurs 4224 p chieuse 10771 p chieuses 1932 p -chiez 30731 p +chiez 30731 chiffe 46761 chiffes 17014 chiffon 814764 @@ -49173,7 +49549,7 @@ chignons 59579 chigné 128 chignée 448 chihuahua 14175 -chiions 59 p +chiions 59 chiisme 96344 chiite 327104 chiites 351286 @@ -49276,7 +49652,7 @@ chiné 37154 chinée 11857 chinées 8766 chinés 40862 -chions 13521 p +chions 13521 chiot 207920 chiots 121975 chiotte 16929 p @@ -49884,6 +50260,7 @@ chouias 99 chouillat 92 chouinegomme 189 chouiner 4878 +choupi 416 choupinou 651 chouquette 2617 choura 7895 @@ -49903,6 +50280,7 @@ choure 759 chourent 52 chourer 2329 choures 91 +chourine 582 chouré 1875 chourée 301 chourées 160 @@ -49993,6 +50371,7 @@ chromatographiques 44436 chromatopsie 3179 chromatopsies 294 chrome 1625166 +chromer 2544 chromeuse 258 chromeuses 166 chromeux 14227 @@ -50413,6 +50792,7 @@ chénopodiacées 3756 chéquier 57307 chéquiers 20003 chéri 2475751 +chériat 6163 chérie 3136147 chéries 226105 chérif 274378 @@ -51922,6 +52302,7 @@ clergés 143023 clermontois 30393 clermontoise 26262 clermontoises 5517 +cli 173219 clic 800973 clicha 335 clichaient 132 @@ -52625,6 +53006,9 @@ cobaye 1274478 cobayes 898643 cobelligérance 3178 cobelligérant 1744 +cobelligérante 913 +cobelligérantes 176 +cobelligérants 1478 cobra 149564 cobée 735 coca 391962 @@ -52826,6 +53210,7 @@ codeuses 1269 codex 634415 codez 4526 codicillaire 19662 +codicillaires 2072 codicille 348604 codicilles 109753 codiez 271 @@ -53158,6 +53543,8 @@ cohabité 68590 cohabitée 148 cohabités 214 cohobation 5446 +cohobe 2372 +cohobez 245 cohorte 1123206 cohortes 1037799 cohue 761217 @@ -53238,6 +53625,7 @@ coincerons 1169 coinceront 943 coinces 2069 coincez 2441 +coinche 1116 coinciez 209 coincions 412 coincoin 1107 @@ -57425,6 +57813,7 @@ conférés 1054485 confœdérations 151 conga 7204 congas 7378 +conge 56049 congela 6174 congelai 318 congelaient 2626 @@ -57443,6 +57832,7 @@ congelé 290363 congelée 248034 congelées 212934 congelés 368338 +conges 27950 congestion 2090032 congestionna 2584 congestionnaient 1822 @@ -58875,6 +59265,7 @@ consumes 14714 consumez 37991 consumiez 2781 consumions 2388 +consumoit 30882 consumons 16641 consumâmes 399 consumât 11719 @@ -59888,6 +60279,7 @@ contrespionnage 309 contretemps 434714 contreterroriste 356 contreterroristes 626 +contretorpilleur 4967 contrevenaient 28342 contrevenais 2744 contrevenait 50643 @@ -61545,6 +61937,7 @@ corrosive 259557 corrosives 119855 corroyage 58777 corroyages 3722 +corroyer 25975 corroyeur 84783 corroyeurs 102580 corroyère 849 @@ -63585,6 +63978,7 @@ criassent 12303 criasses 703 criassions 151 cribla 20215 +criblage 157100 criblai 735 criblaient 25258 criblais 490 @@ -64437,6 +64831,8 @@ cryptologue 2597 cryptologues 2743 cryptomnésie 5008 cryptomnésies 284 +cryptomonnaie 2977 +cryptomonnaies 6111 cryptons 58 cryptonyme 2859 cryptonymes 3013 @@ -64780,6 +65176,7 @@ crépusculaires 153364 crépuscule 2481470 crépuscules 168311 créquier 7272 +créquiers 274 crésol 73353 crésols 24689 crésyl 45228 @@ -64945,6 +65342,11 @@ cueillîmes 6357 cueillît 3836 cueillîtes 526 cuesta 70796 +cuide 140118 +cuidez 16667 +cuidiez 11977 +cuidions 4848 +cuidons 7781 cuiller 976315 cuillers 457049 cuillerée 1030346 @@ -65510,6 +65912,8 @@ curés 4712502 cus 107134 cuscute 67792 cuspide 76838 +custode 178951 +custodes 91330 customisait 115 customisant 1041 customisation 6783 @@ -65861,6 +66265,8 @@ cytotrophoblaste 3946 cytotrophoblastes 581 czar 1176469 czarien 523 +czarienne 23937 +czariennes 1593 czarine 141802 czars 94749 czimbalum 51 @@ -65874,6 +66280,7 @@ câblait 5654 câblant 1468 câblas 492 câble 3355830 +câbleau 829 câblent 1845 câbler 23744 câblera 764 @@ -65897,6 +66304,7 @@ câblodistribution 27692 câblogramme 23289 câblogrammes 8347 câblons 178 +câblot 2645 câblât 64 câblèrent 576 câblé 59749 @@ -65936,7 +66344,7 @@ câliné 8014 câlinée 4691 câlinées 612 câlinés 1944 -câlisse 2303 p +câlisse 2303 câlisser 253 p câlisses 60 p câpre 11173 @@ -66148,12 +66556,9 @@ célébré 3388749 célébrée 1796725 célébrées 785233 célébrés 686561 -célée 7776 -célées 4576 céléripède 101 célérité 1424553 célérités 8828 -célés 13311 cément 194286 cémenta 1163 cémentai 150 @@ -66470,6 +66875,7 @@ d'or 129061 d'ordinaire 756 d'origine 2217 d'où 9892 +d'urgence 509 d'usage 693 d'y 4443 d'époque 55 @@ -66842,6 +67248,7 @@ dansons 78994 dansâmes 10720 dansât 14241 dansâtes 1084 +dansè 289 dansèrent 133401 dansé 668480 dansée 99983 @@ -67340,6 +67747,7 @@ dernière 95621167 dernièrement 3599698 dernières 46812163 derny 1861 +dernys 66 derrick 26944 derrière 45206729 derrières 1037020 @@ -68173,6 +68581,7 @@ dextérité 1039620 dextérités 4917 dey 500893 deys 49732 +deçà 3556395 dhamma 17165 dia 935201 diabase 101434 @@ -68579,6 +68988,9 @@ dichroïque 25053 dichroïques 14100 dichroïsme 74180 dichroïsmes 1267 +dicibilité 6586 +dicible 70976 +dicibles 7519 dickensien 3914 dickensienne 2765 dickensiennes 644 @@ -68654,8 +69066,11 @@ dicyanure 1656 dicyanures 299 dicétone 15978 dicétones 21526 +didacte 2282 +didactes 826 didacticiel 16125 didacticiels 22512 +didacticien 23557 didactique 2574285 didactiquement 22661 didactiques 827882 @@ -69062,6 +69477,7 @@ diiodures 241 dijonnais 119306 dijonnaise 81093 dijonnaises 22047 +dikkenek 115 diktat 124227 diktats 67202 dilacération 64095 @@ -72477,6 +72893,8 @@ douions 20558 doujours 378 douleur 35254306 douleurs 15143662 +douliez 226 +doulions 241 douloureuse 6276671 douloureusement 1444192 douloureuses 2556508 @@ -72869,7 +73287,6 @@ drillée 308 drillées 203 drillés 654 dring 9985 -drink 91663 drinks 37129 drisse 51541 drisses 37173 @@ -73494,6 +73911,7 @@ dysentérique 108080 dysentériques 106028 dysfibrinogénémie 569 dysfibrinogénémies 413 +dysfonction 115258 dysfonctionnaient 143 dysfonctionnait 814 dysfonctionnant 1130 @@ -73561,6 +73979,7 @@ dystrophine 6346 dystrophisation 684 dysurie 107673 dysuries 3966 +dysérection 937 dysérythropoïèse 813 dysérythropoïèses 255 dytique 8054 @@ -73741,9 +74160,6 @@ débarassons 270 débarassât 516 débarassèrent 665 débarassé 22079 -débarassée 12902 -débarassées 5242 -débarassés 9078 débarbouilla 8489 débarbouillai 1228 débarbouillaient 1638 @@ -74688,6 +75104,7 @@ débruitage 1136 débruiter 175 débrutir 772 débrutissement 153 +débrûle 750 débucher 6492 débudgétiser 1466 débullage 737 @@ -76440,6 +76857,7 @@ décompensation 107867 décompilateur 188 décompiler 483 décompilé 191 +décomplexer 6350 décomplexé 17130 décomplexée 23395 décomplexées 2869 @@ -80191,8 +80609,14 @@ déjoué 272146 déjouée 104468 déjouées 82791 déjoués 100532 +déjudiciarisant 130 déjudiciarisation 16168 +déjudiciarise 141 déjudiciariser 1479 +déjudiciarisé 427 +déjudiciarisée 568 +déjudiciarisées 77 +déjudiciarisés 97 déjuge 39344 déjugea 2952 déjugeaient 894 @@ -81250,7 +81674,7 @@ démerdaient 368 p démerdais 604 p démerdait 1039 p démerdant 244 p -démerde 17533 p +démerde 17533 démerdent 3679 p démerder 19132 p démerdera 1157 p @@ -81262,7 +81686,7 @@ démerderas 595 p démerderez 407 p démerderont 496 p démerdes 5266 p -démerdez 4383 p +démerdez 4383 démerdé 3589 p démerdée 873 p démerdés 842 p @@ -83457,6 +83881,7 @@ déportée 167800 déportées 109597 déportés 1844412 déposa 2213963 +déposable 1871 déposai 114473 déposaient 330027 déposais 32436 @@ -85347,6 +85772,7 @@ désencombraient 111 désencombrait 940 désencombrant 2416 désencombre 4341 +désencombrement 20097 désencombrent 765 désencombrer 39213 désencombrera 491 @@ -87474,6 +87900,7 @@ détruite 5077021 détruites 2645398 détruits 3401049 détrôna 62681 +détrônable 253 détrônai 369 détrônaient 4505 détrônais 179 @@ -87482,6 +87909,8 @@ détrônant 33568 détrônas 525 détrônassent 503 détrône 82409 +détrônement 51583 +détrônements 2117 détrônent 16153 détrôner 518169 détrônera 14504 @@ -88968,9 +89397,6 @@ embarassons 241 embarassât 52 embarassèrent 135 embarassé 58791 -embarassée 18560 -embarassées 6362 -embarassés 14640 embarcadère 286034 embarcadères 53739 embarcation 1279272 @@ -89901,7 +90327,7 @@ emmerdaient 1744 p emmerdais 1249 p emmerdait 8144 p emmerdant 23619 p -emmerde 63046 p +emmerde 63046 emmerdement 9286 emmerdements 32949 emmerdent 8626 p @@ -89918,10 +90344,10 @@ emmerdeur 36682 p emmerdeurs 20438 p emmerdeuse 25629 p emmerdeuses 4981 p -emmerdez 3018 p -emmerdiez 210 p -emmerdions 108 p -emmerdons 446 p +emmerdez 3018 +emmerdiez 210 +emmerdions 108 +emmerdons 446 emmerdé 25490 p emmerdée 4417 p emmerdées 424 p @@ -90041,7 +90467,7 @@ emmêlées 70794 emmêlés 157602 emoji 1312 emojis 1250 -empaffe 48 p +empaffe 48 empaffer 271 p empaffes 279 p empaffé 3746 p @@ -90809,6 +91235,7 @@ empressée 727008 empressées 264845 empressés 1299417 emprise 3293457 +emprises 192253 emprisonna 107510 emprisonnai 1410 emprisonnaient 36238 @@ -91751,12 +92178,12 @@ enconnai 121 p enconnais 46 p enconnait 435 p enconnant 584 p -enconne 2525 p +enconne 2525 enconnent 167 p enconner 2330 p enconnera 125 p enconnerai 55 p -enconnez 139 p +enconnez 139 enconné 152 p enconnée 1447 p enconnées 116 p @@ -91980,8 +92407,8 @@ enculeur 3903 p enculeurs 2079 p enculeuse 159 p enculeuses 44 p -enculez 689 p -enculons 113 p +enculez 689 +enculons 113 enculèrent 320 p enculé 56757 p enculée 8638 p @@ -92204,6 +92631,7 @@ endolorie 102769 endolories 39724 endoloris 107374 endolymphe 22857 +endolysine 288 endomembranaire 1406 endomembranaires 250 endomembrane 57 @@ -92248,8 +92676,10 @@ endomorphismes 31942 endomètre 124184 endomètres 1314 endométrectomie 494 +endométriome 4298 endométriose 46489 endométrioses 2063 +endométrioïde 1373 endométrite 66858 endométrites 11352 endonucléase 4963 @@ -93452,15 +93882,15 @@ engrossaient 849 p engrossais 44 p engrossait 1665 p engrossant 1990 p -engrosse 10051 p +engrosse 10051 engrossent 2809 p engrosser 31150 p engrossera 636 p engrosserait 196 p engrosses 1633 p -engrossez 294 p -engrossiez 195 p -engrossons 58 p +engrossez 294 +engrossiez 195 +engrossons 58 engrossât 55 p engrossèrent 107 p engrossé 20882 p @@ -95677,6 +96107,7 @@ entremetteuse 130062 entremetteuses 43901 entremettre 67968 entremirent 2074 +entremis 91303 entremise 2815437 entremises 32336 entremêla 16801 @@ -95975,7 +96406,7 @@ entrées 5978749 entrés 4375641 entubait 200 p entubant 43 p -entube 864 p +entube 864 entubent 211 p entuber 7113 p entubes 196 p @@ -96644,6 +97075,7 @@ esbigné 1356 esbignée 267 esbignés 393 esbroufe 42290 +esbroufeur 2037 escabeau 385012 escabeaux 91724 escabelle 49222 @@ -96756,6 +97188,7 @@ escarcelle 160462 escarcelles 13751 escargot 342341 escargotière 9854 +escargotières 10109 escargots 430854 escarmoucha 6605 escarmouchaient 3920 @@ -100616,6 +101049,7 @@ extrinsèque 406317 extrinsèquement 14627 extrinsèques 353072 extrorse 5941 +extrorses 22992 extroverti 2536 extrovertie 1395 extroverties 251 @@ -100862,6 +101296,7 @@ exégétiques 172133 exéma 369 eyalet 10694 eyra 1019 +ez 913691 eûmes 1831198 eût 77161837 eûtes 184476 @@ -101225,6 +101660,7 @@ faillent 47787 failles 1925603 faillez 16114 failli 5557981 +faillibilisme 6114 faillibilité 73701 faillibilités 390 faillible 180575 @@ -101331,11 +101767,15 @@ fak 43465 fakir 110252 fakirisme 5417 fakirs 92771 +falafel 6512 falaise 2114076 falaises 1626220 +falaque 350 falarique 1930 falbala 17099 falbalas 89703 +falcade 212 +falcata 39600 falciforme 74863 falconidé 447 falconiformes 564 @@ -101502,6 +101942,7 @@ fanatisées 31114 fanatisés 85561 fanaux 237858 fandango 44776 +fandangue 414 fane 289002 fanent 125268 faner 173921 @@ -101649,7 +102090,7 @@ faons 80497 faque 2333 faquin 141241 faquins 68396 -far 1284374 +faquir 17867 farad 20348 faraday 4905 faradique 160627 @@ -101908,6 +102349,7 @@ fastueuse 387728 fastueusement 91801 fastueuses 212310 fastueux 730801 +fat 1112788 fatal 4775502 fatale 5467301 fatalement 2646440 @@ -102708,6 +103150,7 @@ ferrailleront 245 ferrailles 275116 ferrailleur 50459 ferrailleurs 36053 +ferrailleuse 1200 ferraillez 275 ferraillions 120 ferraillons 955 @@ -103017,6 +103460,7 @@ feuilletait 128885 feuilletant 362220 feuilletas 52 feuilleter 663530 +feuilleteur 874 feuilletez 22581 feuilletiez 723 feuilletine 842 @@ -104035,14 +104479,14 @@ fissuré 133986 fissurée 102810 fissurées 66204 fissurés 94768 -fista 619 -fistait 214 -fistant 410 -fistas 294 +fista 619 p +fistait 214 p +fistant 410 p +fistas 294 p fiste 6609 -fistent 1122 -fister 2823 -fistes 46934 +fistent 1122 p +fister 2823 p +fistes 46934 p fistez 144 fistions 149 fiston 163462 @@ -104052,8 +104496,8 @@ fistule 1573581 fistuline 599 fistulisation 36335 fistulographie 1878 -fisté 518 -fistée 179 +fisté 518 p +fistée 179 p fisétine 1757 fit 158317665 fitness 129758 @@ -104674,6 +105118,7 @@ fleurissiez 634 fleurissions 378 fleurissons 1918 fleuriste 304013 +fleuristerie 1991 fleuristes 182236 fleurit 1245905 fleuron 540200 @@ -105716,13 +106161,17 @@ fongibles 145190 fongicide 92122 fongicides 186749 fongicole 336 +fongicoles 1873 fongiforme 3866 +fongiformes 13285 fongique 77406 fongiques 79589 fongistatique 6193 fongite 1098 fongivore 243 +fongivores 1925 fongoïde 26278 +fongoïdes 3776 fongus 154908 fonio 61748 fonios 482 @@ -105754,6 +106203,7 @@ fonçât 711 foodista 195 foodistas 385 foodtruck 409 +foodtrucks 267 foot 764566 football 1870985 footballer 1585 @@ -105943,6 +106393,8 @@ forgés 352361 foriez 1208 forint 26158 forions 1020 +forjuge 153 +forjugiez 438 forma 5326526 formable 3909 formables 2073 @@ -106560,6 +107012,7 @@ foulé 767724 foulée 1045721 foulées 311605 foulés 293761 +foundouk 1958 foune 3315 p founes 241 four 8450606 @@ -108547,6 +109000,7 @@ frôlé 202309 frôlée 32892 frôlées 12908 frôlés 20770 +ftour 4808 fuchsia 62082 fuchsias 28927 fuchsien 10255 @@ -108554,7 +109008,7 @@ fuchsienne 7134 fuchsiennes 25659 fuchsiens 8507 fuchsine 320003 -fucke 133 p +fucke 133 fucker 1832 p fucké 852 p fuckée 308 p @@ -108799,6 +109253,7 @@ funestement 12427 funestes 4580556 fungiforme 2557 fungique 9802 +fungiques 6435 fungus 43896 funiculaire 290200 funiculaires 94690 @@ -109418,10 +109873,13 @@ férales 768 féralies 178 féraux 698 férial 22962 +férie 95026 +fériez 930 féringien 1303 féringienne 1177 féringiennes 495 féringiens 758 +férions 482 féroce 3103977 férocement 252981 féroces 2387402 @@ -109482,6 +109940,7 @@ fétuine 1005 fétuque 48913 fétuques 12478 fétus 104296 +févi 1864 févier 28589 féviers 2136 février 71904221 @@ -110135,7 +110594,7 @@ gamahuchaient 185 p gamahuchais 387 p gamahuchait 949 p gamahuchant 892 p -gamahuche 2182 p +gamahuche 2182 gamahucher 3618 p gamahuchera 209 p gamahucherai 141 p @@ -110143,7 +110602,7 @@ gamahucherait 59 p gamahucheur 240 gamahucheurs 234 gamahucheuses 122 -gamahuchez 117 p +gamahuchez 117 gamahuchèrent 156 p gamahuché 297 p gamahuchée 653 p @@ -110489,6 +110948,8 @@ gares 2625643 garez 14081 gargamelle 3580 gargamelles 218 +gargantua 3963 +gargantuas 853 gargantuesque 31873 gargantuesquement 54 gargantuesques 16853 @@ -114430,6 +114891,7 @@ grimperions 485 grimperons 3114 grimperont 7046 grimpes 9531 +grimpette 19170 grimpeur 89045 grimpeurs 139435 grimpeuse 3884 @@ -115204,11 +115666,11 @@ gueules 2772886 gueuleton 27072 gueuletonner 1526 gueuletons 11794 -gueulez 2728 p -gueuliez 295 p -gueulions 645 p +gueulez 2728 +gueuliez 295 +gueulions 645 gueuloir 17111 -gueulons 805 p +gueulons 805 gueulât 44 p gueulèrent 1153 p gueulé 33275 p @@ -115414,6 +115876,8 @@ guitaristiques 672 guitoune 16840 guitounes 8137 guits 2700 +guivre 26053 +guivres 13503 gujarati 9737 gummifère 1057 gunite 2990 @@ -115569,6 +116033,7 @@ gynandre 2482 gynandres 2611 gynandrie 8795 gynandromorphisme 7927 +gynarchie 288 gynocide 725 gynophage 125 gynéco 34210 @@ -116131,6 +116596,7 @@ géométrisées 4305 géométrisés 4435 géonomie 2693 géophage 1352 +géophagie 10241 géophile 1352 géophysicien 22615 géophysicienne 481 @@ -116186,6 +116652,7 @@ géothermie 68183 géothermies 190 géothermique 180582 géothermiques 48515 +géotrichose 197 géotrope 1695 géotropes 786 géotropisme 56355 @@ -116515,6 +116982,7 @@ habsbourgeois 32579 habsbourgeoise 37268 habsbourgeoises 6303 hacha 17389 +hachage 57265 hachai 790 hachaient 10785 hachais 809 @@ -117320,6 +117788,7 @@ hasarderions 3572 hasarderons 31277 hasarderont 9920 hasardes 5923 +hasardeur 1089 hasardeuse 568265 hasardeusement 9216 hasardeuses 369986 @@ -118069,6 +118538,7 @@ hispanophiles 2190 hispanophone 33803 hispanophones 45449 hispide 40903 +hispides 54946 hissa 278220 hissai 24948 hissaient 34785 @@ -119902,6 +120372,7 @@ hyménéen 317 hyménéenne 718 hyménéennes 177 hyménéens 343 +hyménées 16212 hyoglosse 10611 hyoglosses 1851 hyoïde 277840 @@ -119983,6 +120454,10 @@ hypercritique 54303 hypercube 6887 hypercubes 1776 hyperdulie 13255 +hyperdéveloppé 1126 +hyperdéveloppée 790 +hyperdéveloppées 458 +hyperdéveloppés 609 hyperefficace 349 hyperefficaces 56 hyperelliptique 12609 @@ -120059,6 +120534,10 @@ hyperoxyde 4084 hyperoxydes 458 hyperparamètre 664 hyperparamètres 2388 +hyperperformant 264 +hyperperformante 142 +hyperperformantes 44 +hyperperformants 202 hyperphosphatémie 5781 hyperphénylalaninémie 812 hyperphénylalaninémies 272 @@ -120397,6 +120876,7 @@ hypoténuse 173023 hypoténuses 11963 hypovitaminose 11890 hypovitaminoses 2264 +hypovolémie 34933 hypovolémique 12193 hypovolémiques 1557 hypoxie 123087 @@ -121642,6 +122122,7 @@ igos 1912 iguane 59818 iguanes 49752 iguanodon 10115 +iguanodons 6773 il 3154221092 ile 4046227 iles 1581655 @@ -124122,6 +124603,7 @@ incohérente 420288 incohérentes 466940 incohérents 296944 incoiffable 216 +incoiffables 476 incollable 21852 incollables 5494 incolore 2030301 @@ -124758,6 +125240,7 @@ indice 13949757 indices 9992857 indiciaire 200352 indiciaires 45638 +indicibilité 6211 indicible 1330198 indiciblement 43654 indicibles 215934 @@ -125315,6 +125798,7 @@ indémodable 15890 indémodables 7788 indémontable 4547 indémontables 1345 +indémontrabilité 2267 indémontrable 86479 indémontrables 55509 indéniable 2132243 @@ -125336,6 +125820,7 @@ indépendantismes 467 indépendantiste 174228 indépendantistes 230029 indépendants 6833432 +indéposable 47 indéracinable 78645 indéracinables 22427 indéréglable 12063 @@ -125361,6 +125846,8 @@ indéterminée 2175854 indéterminées 615282 indéterminément 16557 indéterminés 420228 +indétrônable 9687 +indétrôné 115 indévissable 610 indévissables 270 indévot 10015 @@ -127066,6 +127553,8 @@ inscrivons 85038 inscrivîmes 1845 inscrivît 15890 inscrivîtes 266 +inscrupuleuse 185 +inscrupuleux 172 inscrutablement 133 insectarium 9966 insecte 3792095 @@ -128294,6 +128783,8 @@ intercommunautaire 32693 intercommunautaires 66710 intercommunaux 112324 intercommunication 61319 +intercompréhensible 290 +intercompréhension 87642 interconfédéral 3688 interconfédérale 969 interconfédérales 315 @@ -129601,6 +130092,7 @@ intuitifs 105153 intuition 5572383 intuitionisme 12467 intuitionismes 175 +intuitionner 12309 intuitionnisme 41384 intuitionnismes 429 intuitionniste 36690 @@ -131168,6 +131660,7 @@ ixeront 194 ixes 5598 ixez 239 ixia 4207 +ixie 912 ixions 1035 ixième 6930 ixièmes 690 @@ -131865,6 +132358,10 @@ jetterions 10616 jetterons 76647 jetteront 198647 jettes 143035 +jettez 100280 +jettiez 3469 +jettions 5568 +jettons 76440 jetâmes 111579 jetât 163493 jetâtes 3877 @@ -132422,6 +132919,7 @@ jubilées 350 jubilés 68273 jubé 379946 jubés 53448 +juc 22232 jucha 17642 juchai 1267 juchaient 3647 @@ -132594,6 +133092,7 @@ juillettistes 1001 juin 105451013 juins 6280 juive 6096394 +juiverie 90538 juives 2120390 jujube 26215 jujubier 65698 @@ -133597,6 +134096,7 @@ labradorien 1876 labradorienne 1927 labradoriennes 707 labradoriens 429 +labre 521391 labyrinthe 2308501 labyrinthes 306342 labyrinthique 194217 @@ -133646,6 +134146,7 @@ lacrymal 379853 lacrymale 342267 lacrymales 195472 lacrymaux 147548 +lacrymo 23665 lacrymogène 42166 lacrymogènes 83692 lacrymonasal 3979 @@ -136345,6 +136846,8 @@ lisaient 602547 lisais 728452 lisait 4333037 lisant 5293647 +lisbonnais 1248 +lisbonnin 401 lisboète 8012 lisboètes 2845 lise 1234305 @@ -136553,6 +137056,7 @@ littéral 1343129 littérale 1734789 littéralement 4669412 littérales 194176 +littéralisme 40565 littérateur 1181958 littérateurs 1272599 littératie 63471 @@ -138571,6 +139075,7 @@ m'enfin 3101 m'man 66779 m'sieu 60961 m'sieur 144319 +m'sieurs 4053 m'y 8435755 ma 223665420 ma'ame 3825 @@ -138734,6 +139239,7 @@ macromoléculaires 39152 macromolécule 29690 macromolécules 131235 macron 2109 +macronie 682 macronisme 3331 macroniste 1109 macronistes 797 @@ -140804,6 +141310,7 @@ marcassite 38660 marcassites 15858 marcescence 2230 marcescent 4863 +marcescente 7172 marcescentes 6311 marcescents 3769 marcha 3438129 @@ -141526,6 +142033,7 @@ marémotrices 13256 maréomètre 998 maréomètres 256 mas 1904512 +masago 189 mascara 88446 mascarade 552493 mascarades 280724 @@ -141987,6 +142495,9 @@ matraquera 181 matraquerait 110 matraqueront 130 matraques 78997 +matraqueur 1773 +matraqueurs 3824 +matraqueuse 225 matraquez 293 matraquons 43 matraquèrent 631 @@ -142204,6 +142715,7 @@ maurétanien 9725 maurétanienne 10071 maurétaniennes 5385 maurétaniens 4807 +mauser 19243 mausolée 1224755 mausolées 297446 maussade 817439 @@ -142387,6 +142899,7 @@ maïa 5317 maïakovskien 619 maïeur 119451 maïeurs 21508 +maïeuticien 3063 maïeutique 85918 maïeutiquement 129 maïeutiques 1697 @@ -142863,12 +143376,12 @@ merdes 56584 p merdeuse 8794 p merdeuses 2712 p merdeux 57238 p -merdez 463 p +merdez 463 merdia 49 merdias 187 merdier 69576 p merdiers 1007 p -merdique 49591 p +merdique 49591 merdiques 13458 merdu 2328 p merdé 38179 p @@ -144596,6 +145109,7 @@ mixé 17142 mixée 11245 mixées 8765 mixés 16279 +miyako 617 mièvre 133109 mièvrement 1577 mièvrerie 115058 @@ -148490,6 +149004,7 @@ mâchonnais 1556 mâchonnait 31861 mâchonnant 46662 mâchonne 25906 +mâchonnement 15082 mâchonnent 6626 mâchonner 31041 mâchonnera 177 @@ -148795,6 +149310,7 @@ médaillée 13172 médaillées 4645 médaillés 92233 médecin 33013573 +médecine 27651855 médecines 332175 médecins 20760098 médersa 47736 @@ -148924,7 +149440,13 @@ médiocraties 311 médiocre 8171180 médiocrement 2131006 médiocres 3605236 +médiocrisant 61 +médiocrise 215 médiocriser 460 +médiocrisé 218 +médiocrisée 174 +médiocrisées 58 +médiocrisés 104 médiocrité 2409312 médiocrités 186429 médions 163 @@ -149792,6 +150314,7 @@ mésiale 46642 mésiales 8395 mésiaux 4921 mésinformation 2143 +mésinterpréter 3805 mésite 1143 mésites 164 mésityle 13418 @@ -150277,6 +150800,7 @@ métronome 141014 métronomes 11125 métronomique 16106 métronomiquement 826 +métronomiques 7053 métrons 942 métropole 6606782 métropoles 1025681 @@ -150426,8 +150950,6 @@ mût 20080 mûtes 1088 mœlle 17267 mœlles 1566 -mœuf 1338 -mœufs 1123 mœurs 31106169 n 310350553 n' 53805 @@ -150577,6 +151099,7 @@ namuroise 44335 namuroises 18683 nan 589864 nana 357158 +nanan 17028 nanar 39546 nanard 411 nanars 17546 @@ -150590,6 +151113,7 @@ nandrolone 2938 nanisme 109874 nanismes 2833 nanite 237 +nankin 122578 nanobiotechnologie 132 nanocapteurs 466 nanocristal 437 @@ -150827,6 +151351,7 @@ narration 3685842 narrations 523298 narrative 1657101 narratives 567312 +narratologie 56535 narratrice 424377 narratrices 17162 narre 246087 @@ -151459,6 +151984,7 @@ neurofibrillaires 8609 neurofibrille 2487 neurofibrilles 55341 neurofibromatose 24113 +neurogenèse 9119 neurolemme 171 neuroleptique 57184 neuroleptiques 161604 @@ -151809,10 +152335,12 @@ nigari 1409 nigaud 201124 nigaude 15348 nigaudement 345 +nigauder 438 nigauderie 4589 nigauderies 2254 nigaudes 2740 nigauds 87349 +nigaudé 155 nigelle 15812 nigelles 3435 nigelline 538 @@ -152127,6 +152655,9 @@ nocturne 3514224 nocturnement 4268 nocturnes 2293771 nodal 162309 +nodale 85359 +nodales 119646 +nodaux 83622 nodulaire 150631 nodulaires 97208 nodule 378001 @@ -154766,6 +155297,7 @@ odalisque 59176 odalisques 62946 ode 1871353 odelette 16942 +odelettes 13538 odes 889998 odeur 16557589 odeurs 2448431 @@ -157107,6 +157639,7 @@ ostensible 386912 ostensiblement 924438 ostensibles 118687 ostensif 6983 +ostensive 16990 ostensoir 223452 ostensoirs 50731 ostentation 1123042 @@ -158408,6 +158941,7 @@ palermitain 12941 palermitaine 11199 palermitaines 2892 palermitains 6572 +paleron 12317 pales 469481 palestinien 962451 palestinienne 840083 @@ -158980,6 +159514,7 @@ panserons 971 panseront 2664 panses 58713 pansexualité 1150 +pansexuel 758 pansez 10480 pansiez 449 pansions 6955 @@ -159052,6 +159587,7 @@ pantouflardes 428 pantouflards 6242 pantoufle 188816 pantoufles 653642 +pantouflier 2068 pantoum 10161 pantoute 10908 panty 4616 @@ -159177,6 +159713,9 @@ papillotés 1055 papinade 180 papinades 141 papion 13360 +papiracée 1256 +papiracées 316 +papiracés 480 papis 6684 papisme 299586 papismes 130 @@ -160483,6 +161022,7 @@ parlures 6241 parlâmes 166334 parlât 612527 parlâtes 14331 +parlè 6093 parlèrent 884560 parlé 37603216 parlée 1526613 @@ -164009,6 +164549,7 @@ phalère 7901 phanal 1858 phantaisie 16986 phantaisies 5033 +phantasie 10553 phantasmagorie 3885 phantasmagories 1207 phantasmagorique 999 @@ -164059,6 +164600,7 @@ pharmaciens 1801440 pharmacies 567161 pharmacochimie 1397 pharmacocinétique 30866 +pharmacocinétiques 19083 pharmacodynamie 43787 pharmacodynamique 61141 pharmacodépendance 13036 @@ -164071,6 +164613,7 @@ pharmacologique 180452 pharmacologiquement 9809 pharmacologiques 202032 pharmacologiste 6547 +pharmacologue 13217 pharmacomanie 882 pharmacopée 346229 pharmacopées 84476 @@ -164224,6 +164767,8 @@ phlébologue 2795 phlébologues 1827 phlébotomie 44036 phlébotomies 2099 +phlébotomiste 2694 +phlébotomistes 1805 phobie 383026 phobies 208465 phobique 100596 @@ -164843,6 +165388,7 @@ phéromone 34305 phéromones 73327 phérormone 2465 phérormones 2228 +phœnicien 352 phœnicienne 331 phœniciennes 431 phœniciens 277 @@ -165529,7 +166075,7 @@ pincés 82766 pindarique 68620 pindariques 31779 pindarisme 5346 -pine 130101 p +pine 130101 pineau 58852 pineaux 13676 pinent 346 p @@ -165538,14 +166084,14 @@ pinerai 54 p pineraie 20358 pinerais 131 p pines 30923 p -pinez 327 p +pinez 327 pingouin 79716 pingouins 110658 pingre 38306 pingrerie 17728 pingreries 241 pingres 13774 -pinions 9884 p +pinions 9884 pinique 7825 piniques 217 pinière 7582 @@ -165553,11 +166099,12 @@ pinnipède 1259 pinnothère 2268 pinnule 79708 pinocytose 16515 -pinons 387 p +pinons 387 pinot 144804 pinotte 684 pinottes 1721 pinoïde 262 +pinoïdes 467 pins 3839796 pinson 165921 pinsons 112085 @@ -165828,6 +166375,9 @@ pirouetté 4167 pirouettée 94 pis 6244646 pisan 53874 +pisane 46628 +pisanes 14916 +pisans 40080 piscicole 120170 piscicoles 71146 pisciculteur 22605 @@ -167403,6 +167953,7 @@ plumes 6209202 plumet 189500 plumetis 41207 plumets 96802 +plumeté 822 plumeuse 46706 plumeuses 73735 plumeux 71893 @@ -167498,7 +168049,10 @@ plutonisme 17703 plutonium 346446 plutôt 93362879 pluvial 120610 +pluviale 188544 +pluviales 725352 pluvian 920 +pluviaux 28717 pluvier 62609 pluviers 62987 pluvieuse 509442 @@ -167641,6 +168195,7 @@ pneumonique 113559 pneumoniques 77823 pneumopathie 70816 pneumopathies 57785 +pneumothorax 404945 pneus 871457 pneux 2781 pnictures 642 @@ -168455,6 +169010,7 @@ polycorde 1008 polycordes 1470 polycotylaires 66 polycratie 3155 +polycrise 210 polycristallin 42443 polycristalline 12722 polycristallines 11309 @@ -169378,6 +169934,13 @@ popé 976 popée 2922 popées 553 popés 348 +poqua 53 +poque 105042 +poques 7325 +poquet 19663 +poqué 2316 +poquée 279 +poqués 327 porc 3731330 porcelaine 3852782 porcelaines 817943 @@ -170581,10 +171144,10 @@ poutrelle 90665 poutrelles 445086 poutrer 229 p poutres 2573873 -poutrez 477 p -poutriez 173 p -poutrions 259 p -poutrons 225 p +poutrez 477 +poutriez 173 +poutrions 259 +poutrons 225 poutré 313 p poutrée 68 p poutrées 49 p @@ -172044,6 +172607,7 @@ proféré 406559 proférée 143922 proférées 294617 proférés 159157 +prog 34301 progestatif 30681 progestérone 213475 progestérones 1283 @@ -172910,6 +173474,7 @@ propulsés 58538 propyle 62222 propyles 370 propylique 97211 +propyliques 7854 propylène 183070 propylènes 2036 propène 12536 @@ -173121,6 +173686,7 @@ prostatectomie 83294 prostatique 378794 prostatiques 137225 prostatisme 9135 +prostatite 60871 prosterna 284556 prosternai 25691 prosternaient 62993 @@ -173478,6 +174044,7 @@ protéome 3404 protéomes 591 protéomique 7618 protéomiques 1233 +protéosynthèse 6581 protérozoïque 11396 protérozoïques 7195 protêt 674168 @@ -173784,7 +174351,6 @@ préambule 2748611 préambuler 280 préambules 191765 préambulé 199 -préau 428684 préaux 125521 préavis 1390066 prébase 1330 @@ -174563,6 +175129,7 @@ prégustation 821 prégénital 19114 préhellénique 40330 préhenseur 10557 +préhensible 29810 préhensile 41940 préhensiles 28508 préhension 432576 @@ -174819,6 +175386,7 @@ prémunissons 1943 prémunit 90755 prémunition 45785 prémunît 1939 +prémâcher 361 prémédication 28454 prémédita 4184 préméditai 396 @@ -175096,6 +175664,7 @@ prérectal 2437 prérectale 8141 prérectales 282 prérectaux 241 +préremplir 306 prérentrée 4669 prérequis 92105 préretraite 132529 @@ -175553,6 +176122,7 @@ prévarication 346726 prévarications 208474 prévaricatrice 5483 prévaricatrices 1986 +prévariquer 26886 prévaudra 218452 prévaudrai 8462 prévaudraient 32768 @@ -175918,6 +176488,7 @@ psitt 7756 psittacidé 856 psittacisme 34084 psittacose 28348 +psk 303 psophomètre 525 psophométrique 1380 psoralier 502 @@ -176815,6 +177386,7 @@ pyramider 6027 pyramides 1984903 pyramidion 26993 pyramidions 11630 +pyramidon 45309 pyramidé 6408 pyrane 2108 pyranes 219 @@ -177834,6 +178406,7 @@ périphériquement 14355 périphériques 2389126 périple 890126 périples 107729 +périploque 379 péripolaire 1550 péripolaires 1071 périptère 36840 @@ -178234,6 +178807,8 @@ pétulant 90993 pétulante 86396 pétulantes 11423 pétulants 18474 +pétune 691 +pétunez 381 pétunia 11915 pétunias 25579 pétât 270 @@ -181597,6 +182172,7 @@ rapiéçage 15427 rapiéçages 7189 raplapla 5433 raplaplas 274 +rapontic 1242 rappel 5790508 rappela 3495253 rappelai 407275 @@ -182469,6 +183045,7 @@ ravenala 5914 ravenelle 10091 ravenelles 13956 ravennate 15668 +ravert 55 raves 307293 ravet 4615 ravets 8526 @@ -186323,7 +186900,11 @@ regorgé 7817 regorgée 597 regorgées 300 regorgés 449 +regrat 13866 +regrattage 3028 regratter 12134 +regratterie 822 +regrattier 15542 regret 10942089 regrets 6208402 regretta 631786 @@ -186763,6 +187344,7 @@ relavé 6483 relavée 2263 relavées 1999 relavés 2718 +relax 62444 relaxa 13135 relaxai 632 relaxaient 1124 @@ -189289,6 +189871,14 @@ repaieront 256 repaies 880 repaire 994160 repaires 381558 +repairez 827 +repairiez 2950 +repairons 628 +repais 29462 +repaissez 7647 +repaissiez 592 +repaissions 1749 +repaissons 6779 repaitre 25205 reparais 18267 reparaissaient 122656 @@ -192843,6 +193433,7 @@ rhabillées 5978 rhabillés 13920 rhade 229 rhadé 5530 +rhapontic 5876 rhapsode 49251 rhapsodes 67767 rhapsodie 55496 @@ -192866,6 +193457,7 @@ rhinopharyngé 2006 rhinopharynx 16089 rhinopithèque 182 rhinoplastie 38399 +rhinoplastique 2931 rhinorrhée 20735 rhinorrhées 1763 rhinos 6275 @@ -193780,6 +194372,7 @@ rizières 932164 roadmap 3787 roadmaps 976 roadster 10656 +roadsters 1829 roba 24177 robai 230 robaient 1004 @@ -194429,6 +195022,8 @@ rosserais 1694 rosserait 1646 rosseras 163 rosserez 897 +rosserie 33033 +rosseries 13659 rosseriez 99 rosserions 60 rosserons 995 @@ -194806,6 +195401,9 @@ roulières 2835 roulons 126270 roulotte 206364 roulottes 78957 +roulottier 1038 +roulottiers 4604 +roulottière 56 roulure 21576 roulures 9246 roulâmes 24081 @@ -195570,9 +196168,6 @@ râtisse 1435 râtissent 766 râtissez 145 râtissé 716 -râtissée 448 -râtissées 646 -râtissés 257 règle 44521831 règlement 31943740 règlementa 2600 @@ -196824,6 +197419,7 @@ récupérée 316618 récupérées 260497 récupérés 377230 récura 2626 +récurage 17091 récurai 588 récuraient 1665 récurais 1049 @@ -199886,6 +200482,7 @@ résolvés 348 résolûment 318107 résolûmes 141314 résolût 25995 +résomptif 4535 résonance 2311822 résonances 554055 résonant 23249 @@ -201726,6 +202323,7 @@ sagacité 2745580 sagacités 2082 sagaie 131827 sagaies 133711 +sagamité 10051 sagas 173081 sage 20775556 sagefemme 82422 @@ -206853,6 +207451,7 @@ snowboard 24818 snowboardeur 290 snowboardeurs 1192 snowboardeuse 123 +snowboot 113 soap 44555 soaps 12030 sobre 3317526 @@ -207309,6 +207908,7 @@ solidifiés 50783 solidisme 23428 solidité 5997321 solidités 21483 +soliflore 2854 soliloque 130573 soliloques 46629 solipsisme 100239 @@ -207598,6 +208198,7 @@ sommeillé 53121 sommeillée 61 sommeils 161501 sommelier 220599 +sommeliers 48665 sommelière 11121 sommelières 3277 sommellerie 8640 @@ -207857,6 +208458,8 @@ sonorisent 1997 sonoriser 11999 sonorisera 299 sonorises 42 +sonoriste 569 +sonoristes 323 sonorisé 17268 sonorisée 12765 sonorisées 8804 @@ -208948,6 +209551,7 @@ sourît 8894 sourîtes 386 sous 568566395 sous-ensemble 152 +sous-espace 128 sous-groupe 128 souscripteur 668440 souscripteurs 1693530 @@ -209836,6 +210440,7 @@ spécula 59962 spéculai 2272 spéculaient 40104 spéculaire 310975 +spéculaires 38801 spéculais 1798 spéculait 54152 spéculant 116500 @@ -210273,6 +210878,7 @@ statuerons 3216 statueront 63778 statues 8899582 statuette 1164213 +statuettes 1219853 statuez 5536 statuiez 972 statuions 706 @@ -210571,6 +211177,7 @@ stomate 49089 stomates 404058 stomatite 257820 stomatologie 83410 +stomatologique 21667 stomatologiste 17870 stomatologue 3665 stomatologues 2152 @@ -211614,6 +212221,7 @@ subsidiairement 707399 subsidiaires 487895 subsidiarité 337737 subsidiarités 336 +subsidier 25406 subsista 628953 subsistai 1252 subsistaient 488971 @@ -212511,6 +213119,11 @@ sulfureuses 637111 sulfureux 2288359 sulfurique 7858665 sulfuriques 65111 +sulfuriser 155 +sulfurisé 101173 +sulfurisée 644 +sulfurisées 271 +sulfurisés 3191 sulfuré 1653519 sulfurée 82027 sulfurées 132736 @@ -213149,6 +213762,7 @@ supraglottal 64 supraglottale 290 supraglottales 61 supraliminaire 5734 +supraliminal 2095 supraluminique 3226 supraluminiques 1370 supramoléculaire 7183 @@ -215182,6 +215796,7 @@ syncopés 24762 syncrétique 144943 syncrétiquement 3300 syncrétiques 47362 +syncrétiser 1418 syncrétisme 533203 syncrétismes 41829 syncytiotrophoblaste 4562 @@ -217827,7 +218442,6 @@ tatoué 166925 tatouée 83106 tatouées 45465 tatoués 120152 -tau 260818 taube 10161 taubérien 1191 taubérienne 202 @@ -218036,6 +218650,7 @@ tchop 1380 tchouktche 6847 tchèque 2065164 tchèques 553911 +tchécophone 242 tchécoslovaque 927770 tchécoslovaques 259531 tchékhovien 3473 @@ -218729,6 +219344,10 @@ terra 1461720 terraformage 565 terraformation 4034 terraformer 1025 +terraformé 243 +terraformée 477 +terraformées 187 +terraformés 141 terrai 22553 terraient 28540 terrain 47002698 @@ -219041,9 +219660,6 @@ tetons 19875 tette 114038 tettes 7387 teté 71408 -tetée 5662 -tetées 2984 -tetés 763 teub 2120 p teubs 153 p teubé 449 @@ -219328,6 +219944,8 @@ thromboplastine 28806 thrombose 483545 thromboses 184188 thrombospondine 1018 +thrombotique 26695 +thrombotiques 13016 thrombus 175304 thrène 30535 thréonine 34802 @@ -219917,6 +220535,7 @@ tirasses 9026 tirassiez 1157 tirassions 2249 tire 16700342 +tirebouchonner 1445 tirelire 116886 p tirelires 26883 p tirent 4807081 @@ -220022,6 +220641,7 @@ tisserais 613 tisserait 4806 tisserand 626913 tisserande 20914 +tisseranderie 15929 tisserandes 16887 tisserands 854896 tisseras 1364 @@ -221784,6 +222404,7 @@ traditions 15622804 traducteur 4153848 traducteurs 1535255 traductibilité 13195 +traductif 6313 traduction 28193793 traductionnel 4859 traductionnelle 6115 @@ -224786,7 +225407,7 @@ trombinoscopes 859 tromblon 48482 tromblons 27739 trombona 48 p -trombone 197933 p +trombone 197933 tromboner 312 p trombones 154145 tromboniste 11172 @@ -224853,7 +225474,7 @@ tronchant 172 p tronche 163880 troncher 2476 p tronches 19243 p -tronchons 1300 p +tronchons 1300 tronché 332 p tronchée 544 p tronchées 175 p @@ -225394,6 +226015,7 @@ trustes 4605 trustez 57 trustions 3785 trustons 155 +trusts 624229 trustèrent 273 trusté 4104 trypanosome 74485 @@ -225958,6 +226580,8 @@ turc 4043811 turcique 92972 turcologie 6699 turcologue 6251 +turcoman 20403 +turcomane 12595 turcophone 12197 turcophones 31043 turcs 1985554 @@ -226259,6 +226883,7 @@ tyroliennes 48116 tyroliens 54641 tyrosine 279091 tyrosines 5113 +tyrrhénien 33006 tzar 467650 tzarine 42892 tzarines 1079 @@ -226916,6 +227541,7 @@ tératogénétiques 185 tératologie 132956 tératologies 1311 tératologique 95136 +tératologiques 95617 tératologiste 2323 tératome 16471 tératoscopie 549 @@ -227363,11 +227989,13 @@ underground 141587 undécagone 116 undécane 2168 undécanoïque 3621 +undécillions 312 undécylique 1367 une 4625572472 unes 31162389 unetelle 13645 unguifère 311 +unguis 65164 unguéal 37786 unguéale 65668 unguéales 27256 @@ -230223,6 +230851,7 @@ victimera 365 victimes 18551370 victimez 122 victimisation 104328 +victimisations 5318 victimiser 4757 victimisme 1840 victimiste 1149 @@ -231648,6 +232277,7 @@ voirie 2634522 voiries 176395 vois 32492707 voisement 19084 +voiser 2812 voisin 15982006 voisina 13853 voisinage 15962370 @@ -232018,7 +232648,6 @@ vosgien 193710 vosgienne 130156 vosgiennes 78038 vosgiens 70538 -vostre 10320437 vota 1257728 votai 9127 votaient 191118 @@ -232286,6 +232915,7 @@ voûtait 14866 voûtant 8953 voûtas 558 voûte 8346727 +voûtement 56627 voûtent 7813 voûter 58703 voûtera 618 @@ -232342,6 +232972,7 @@ vrillé 22498 vrillée 10700 vrillées 7749 vrillés 9996 +vrmt 97 vrombi 1175 vrombir 27074 vrombira 131 @@ -232639,6 +233270,8 @@ vénusien 10634 vénusienne 13252 vénusiennes 3745 vénusiens 3888 +vénuste 1319 +vénustes 280 vénère 442468 vénèrent 191321 vénèrera 533 @@ -233425,6 +234058,7 @@ yogistes 234 yogourt 35195 yogourts 8035 yoguique 5044 +yoguiques 2132 yoguisme 1029 yoguiste 123 yoguistes 553 @@ -234255,6 +234889,8 @@ zouma 501 zourna 1895 zournas 286 zouz 8106 +zouzou 1961 +zouzous 1700 zoziau 636 zoziaux 910 zozime 78 @@ -234522,7 +235158,11 @@ zêtes 644 À 67314088 Ásgard 630  348556 +Ægypte 4142 +Ægyptien 238 +Ægyptienne 178 Ægyptiens 3233 +Ægée 1384 Æmile 893 Æthiopien 345 Æthiopiens 431 @@ -234540,6 +235180,7 @@ zêtes 644 Écurie 50529 Éden 404222 Édimbourg 579739 +Édimbourgeois 250 Édith 304086 Édouard 3781189 Égide 38742 @@ -234549,6 +235190,7 @@ zêtes 644 Égyptienne 145311 Égyptiennes 41367 Égyptiens 2454021 +Égée 298467 Élaine 16241 Élam 59788 Élamites 19330 @@ -234728,6 +235370,11 @@ zêtes 644 æ 258122 ædifices 304 ædiles 1296 +ægagropiles 93 +ægyptien 287 +ægyptienne 292 +ægyptiennes 203 +ægyptiens 377 æons 1062 æschynite 220 æsthétiques 52 @@ -234855,6 +235502,10 @@ zêtes 644 ébauchée 459212 ébauchées 210206 ébauchés 194872 +ébaudis 2511 +ébaudissent 340 +ébaudissez 152 +ébaudit 603 ébavure 69 ébavurer 1094 ébavuré 137 @@ -234922,6 +235573,7 @@ zêtes 644 éborgnée 3126 éborgnées 1398 éborgnés 3633 +ébosser 138 éboue 149 ébouer 1727 éboueur 30754 @@ -234996,6 +235648,7 @@ zêtes 644 ébouriffées 29799 ébouriffés 154136 ébourre 274 +ébourrer 1421 ébourré 138 ébousine 52 ébousiner 650 @@ -235667,10 +236320,15 @@ zêtes 644 échiquier 1130322 échiquiers 41776 écho 9213292 +échocardiogramme 3953 +échocardiographie 42961 +échogramme 2704 +échographe 10161 échographie 446767 échographies 29494 échographique 82282 échographiques 27083 +échographiste 12984 échoir 531680 échoira 11582 échoit 366672 @@ -235682,6 +236340,8 @@ zêtes 644 échoppe 332532 échoppes 378585 échos 2901840 +échosondage 1285 +échosondeur 2860 échotier 13569 échotiers 20644 échotière 1229 @@ -236888,6 +237548,7 @@ zêtes 644 édilitaires 27060 édilité 218546 édilités 5808 +édimbourgeois 672 édit 12486698 édita 212477 éditable 5497 @@ -237022,6 +237683,8 @@ zêtes 644 éduquées 77497 éduqués 273243 édénique 79178 +égagropile 4032 +égagropiles 11907 égaie 112095 égaient 55502 égaiera 6011 @@ -237425,10 +238088,12 @@ zêtes 644 égyptologie 126681 égyptologue 120685 égyptologues 133542 +égée 2542 égéen 100612 égéenne 85593 égéennes 37762 égéens 29098 +égées 787 égérie 86158 égéries 18573 éhonté 127862 @@ -238017,6 +238682,7 @@ zêtes 644 éligibilités 900 éligible 392563 éligibles 719171 +élim 3140 élimina 73475 éliminai 1611 éliminaient 20596 @@ -239533,6 +240199,8 @@ zêtes 644 épaulés 54018 épave 764879 épaves 810523 +épaveurs 171 +épaviste 105 épazote 62 épeautre 269396 épeiche 15755 @@ -239729,6 +240397,7 @@ zêtes 644 épidermoïdes 27551 épididyme 306438 épididymes 20413 +épididymite 73334 épidote 246286 épidotes 13043 épidural 19545 @@ -239913,6 +240582,7 @@ zêtes 644 épinions 93 épinière 1414064 épinières 6544 +épinoche 22932 épinoches 18252 épiné 493 épinée 1786 @@ -242181,8 +242851,12 @@ zêtes 644 étymologiquement 218749 étymologiques 267161 étymologisant 805 +étymologise 281 +étymologiser 875 étymologiste 35784 étymologistes 110800 +étymologisé 475 +étymologisés 227 étymon 80825 étymons 20834 été 918249617 @@ -242660,6 +243334,7 @@ zêtes 644 évinçant 33942 évinçons 284 évinçât 729 +éviré 953 éviscère 1826 éviscèrent 477 éviscéra 562 @@ -242887,6 +243562,7 @@ zêtes 644 ôtée 307769 ôtées 105298 ôtés 154498 +ÿ 98978 Œ 132029 Œdipe 1287879 Œuilly 2163 diff --git a/data/dicts/v0~draft1/words_it.fldic b/data/dicts/v0~draft1/words_it.fldic index 8518a83..cf1924a 100644 --- a/data/dicts/v0~draft1/words_it.fldic +++ b/data/dicts/v0~draft1/words_it.fldic @@ -324,6 +324,7 @@ Albona 77648 Albonetti 20987 Alboni 19162 Alboresi 3237 +Alboreto 3734 Albotto 2628 Alcamo 243065 Alcantara 116776 @@ -1082,6 +1083,7 @@ Babuino 73987 Babuscio 7001 Baccani 21495 Baccari 27868 +Baccarin 1417 Baccellieri 6058 Bacchiglione 112427 Bacchilega 4626 @@ -1401,6 +1403,7 @@ Bellone 73746 Bellopede 981 Bellori 179619 Belloro 10448 +Bellosi 58689 Belluardo 1634 Bellucci 205653 Belludi 7870 @@ -1528,6 +1531,8 @@ Betelgeuse 6646 Betlemme 313220 Betsabea 33372 Betta 179762 +Bettacchi 1426 +Bettacchini 1035 Bettarini 55414 Betti 614608 Bettin 20974 @@ -1658,6 +1663,7 @@ Bodoni 231533 Boemia 1337313 Boemondo 157819 Boezio 674864 +Boggi 10536 Boggioni 595 Bogliolo 23595 Bogotà 66687 @@ -1974,6 +1980,7 @@ Budapest 875578 Budda 155131 Buddha 440427 Budua 25829 +Buemi 3551 Bufalini 230876 Buffa 198598 Buffo 59354 @@ -2041,6 +2048,7 @@ Bussento 11200 Bussetti 13896 Bussi 234727 Bussotti 36293 +Busti 90013 Busà 4339 Butera 152752 Buttafava 19123 @@ -2278,6 +2286,7 @@ Candreva 1926 Candrilli 1837 Canepa 159520 Canepina 16059 +Caneschi 6300 Canestri 24628 Canetta 29003 Canevascini 8180 @@ -2286,6 +2295,7 @@ Cangelosi 5710 Cangeri 523 Canil 1327 Canitano 2903 +Canizio 251 Cannalire 600 Cannaregio 53008 Cannatella 1228 @@ -2655,6 +2665,7 @@ Cazzaniga 89224 Cazzulani 3969 CdA 42761 Ceccarelli 182077 +Ceccherini 55384 Cecchi 903244 Cecchina 57299 Cecchinato 6265 @@ -2672,6 +2683,7 @@ Cecoslovacchia 716368 Cederle 827 Cedrino 12494 Cedrone 7961 +Cefalonia 157438 Cefalù 234755 Celani 36967 Celano 338463 @@ -3198,6 +3210,7 @@ Conci 88609 Concialdi 762 Conciatori 19428 Conciliazione 204992 +Concioni 8852 Condarcuri 739 Condello 11046 Condivi 75061 @@ -3216,6 +3229,7 @@ Congiusta 508 Congo 843563 Conigliaro 11432 Coniglio 278081 +Conisberga 7794 Connecticut 153547 Consalvo 304615 Conserva 150208 @@ -3253,6 +3267,7 @@ Coppa 509847 Coppedè 13635 Coppi 237466 Coppola 453415 +Coppolino 8764 Corace 39067 Coraci 5792 Coralli 75247 @@ -3536,6 +3551,7 @@ Cusumano 43248 Cutali 544 Cutillo 12676 Cutini 8770 +Cutino 4562 Cutrona 7365 Cutrone 5001 Cutrufo 1463 @@ -4261,6 +4277,7 @@ Falso 319534 Falsone 9723 Falugi 5480 Falvella 3952 +Falvo 8752 Falzone 49456 Famagosta 152213 Famiglietti 8023 @@ -4414,6 +4431,7 @@ Ferrata 203707 Ferrazzi 68708 Ferrentino 5054 Ferretti 677692 +Ferri 1381611 Ferro 1340486 Ferronato 3539 Ferrucci 267362 @@ -4474,6 +4492,7 @@ Filiberti 15468 Filiberto 849950 Filicudi 23023 Filidoro 3605 +Filieri 6144 Filippa 111931 Filippazzi 2463 Filippelli 21092 @@ -4621,6 +4640,8 @@ Fontani 56572 Fonte 1828745 Fontebasso 26647 Fontecchio 13630 +Fonzi 58587 +Fonzio 32361 Foppa 150185 Forace 220 Forani 2655 @@ -4636,6 +4657,7 @@ Forlai 4450 Forlanini 99054 Forlati 34762 Forlenza 10763 +Forleo 32250 Forli 264495 Forlimpopoli 121071 Forlì 2001892 @@ -5111,6 +5133,7 @@ Geronzi 23940 Geronzio 22072 Gerosa 70096 Gerusalemme 5007106 +Gerussi 915 Gervasi 57675 Gervasio 299261 Gervaso 78821 @@ -5140,6 +5163,7 @@ Ghianda 21782 Ghiberti 272845 Ghidelli 4865 Ghidoni 14352 +Ghilardi 50561 Ghilini 69960 Ghiloni 511 Ghinelli 12914 @@ -5633,6 +5657,7 @@ Guiana 119940 Guicciardi 132179 Guicciardini 1346989 Guidetti 126614 +Guidi 1016767 Guido 8209482 Guidobaldi 48830 Guidobaldo 168589 @@ -5718,6 +5743,7 @@ Iafet 11010 Iafrate 3647 Iago 77721 Iambe 2094 +Iamoni 395 Iannacci 1548 Iannacone 2958 Iannarelli 3518 @@ -5875,6 +5901,7 @@ Inserra 6738 Insigne 71675 Insinna 4848 Insubri 62347 +Integlia 113 Inter 453280 Interdonato 29388 Interguglielmi 1852 @@ -6259,6 +6286,7 @@ Lepri 98506 Lercari 54906 Lerner 65555 Lero 42100 +Lerro 8597 Lesbo 174997 Lesina 169331 Lesotho 18345 @@ -6853,6 +6881,7 @@ Marangolo 3802 Marangoni 224548 Maranta 31250 Maranzano 8649 +Marascio 768 Marasco 41223 Marasti 1216 Maratea 63000 @@ -7091,6 +7120,7 @@ Mazzantini 50964 Mazzara 165111 Mazzasette 1460 Mazzei 217242 +Mazzelli 4655 Mazzeo 81988 Mazzetti 180254 Mazzi 181701 @@ -7107,6 +7137,7 @@ Mazzucato 38714 Mazzucchelli 287055 Mazzucco 33923 Mazzurana 8128 +Mazzù 4524 Maè 8098 Meandro 60846 Meazza 33333 @@ -7223,6 +7254,7 @@ Merendino 6474 Merici 25752 Merisi 68060 Merli 197457 +Merlini 160117 Merlino 307156 Merluzzo 38224 Merola 52933 @@ -7285,6 +7317,7 @@ Michele 9580975 Micheletti 80749 Micheli 660842 Michelli 4304 +Michetti 141939 Michigan 215507 Micillo 16808 Micolli 693 @@ -7416,6 +7449,7 @@ Modana 90217 Modena 8805808 Moderato 55923 Modesti 61079 +Modestino 106739 Modesto 256822 Modiano 27463 Modica 399987 @@ -7528,6 +7562,7 @@ Montella 86906 Montelusa 17698 Montemagno 76867 Montemarano 22621 +Montemartini 91362 Montemezzano 5944 Montemurro 48333 Montenegro 525312 @@ -7734,6 +7769,7 @@ Nardella 25015 Nardi 793630 Nardiello 6262 Nardocci 1597 +Nardomarino 227 Nardò 117816 Narenta 40672 Nargi 1041 @@ -7817,6 +7853,7 @@ Neri 2034716 Nerini 24029 Nerli 144275 Nerone 1859452 +Neroni 92425 Nervi 244775 Nervia 22614 Nerviano 26563 @@ -8266,6 +8303,7 @@ Ottoboni 117256 Ottobrini 1219 Ottocento 1394941 Ottolenghi 192840 +Ottolina 5802 Ottone 2210596 Ottorino 220325 Ottoveggio 519 @@ -8317,6 +8355,7 @@ Pagano 910731 Paggi 196522 Paghera 3737 Paglia 273787 +Paglialunga 7543 Pagliarini 81560 Pagliaro 148708 Pagliuca 23488 @@ -8359,6 +8398,7 @@ Palladino 83037 Palladio 1067232 Pallante 133881 Pallaoro 1289 +Pallavicini 455331 Pallucchini 158129 Palmanova 130540 Palmarola 17730 @@ -8828,6 +8868,7 @@ Pietromonaco 197 Pietropaolo 26712 Pietropoli 5497 Pietrostefani 10496 +Pifferi 34301 Pigafetta 90838 Pighini 21158 Pigmalione 73717 @@ -9110,6 +9151,8 @@ Pozzuoli 610490 Prada 103718 Praga 1701909 Pralavorio 688 +Prandi 128082 +Prando 13268 Prassede 193812 Prassitele 156740 Pratesi 208610 @@ -9264,6 +9307,7 @@ Quagliano 3111 Quagliarella 3979 Quaini 31991 Quaranta 734400 +Quarantotto 111669 Quarato 3168 Quarello 10762 Quarenghi 71638 @@ -9403,6 +9447,7 @@ Rastrelli 61663 Ratisbona 312299 Ratta 69189 Rattazzi 522138 +Ratti 466594 Raucci 11649 Raurica 3501 Rauti 38264 @@ -10196,6 +10241,7 @@ Schedir 136 Schelda 106235 Schembri 11343 Schena 52912 +Schenoni 4589 Scherillo 120904 Schettino 24369 Schianchi 21229 @@ -10436,6 +10482,7 @@ Sertorio 178323 Serug 2282 Serughi 3455 Servadio 43431 +Servello 27628 Servidio 7429 Servillo 14474 Servio 790104 @@ -10510,6 +10557,7 @@ Sicione 118513 Siclari 14072 Sicomo 2559 Siculi 272708 +Sicurani 1111 Sidari 4510 Siddi 15191 Siddu 1069 @@ -10572,6 +10620,7 @@ Simisso 909 Simona 317885 Simoncelli 93331 Simone 3568978 +Simonelli 147064 Simonetti 274597 Sinagra 24598 Sinarca 1419 @@ -10681,6 +10730,7 @@ Solta 11145 Solzenicyn 23294 Solženicyn 7101 Somalia 994253 +Somensi 390 Somma 1204395 Sommariva 164646 Sommaruga 107710 @@ -10857,6 +10907,7 @@ Stefanì 576 Steffenini 3159 Stelio 79603 Stella 2027607 +Stellani 417 Stellato 25397 Stelvio 162895 Stenico 51241 @@ -11012,6 +11063,7 @@ Tagliamento 411456 Tagliapietra 43673 Tagliavia 43088 Tagliavini 85915 +Taglienti 6585 Tago 166501 Taide 65328 Tailandia 40713 @@ -11046,6 +11098,7 @@ Tamburi 61119 Tamburini 385589 Tamburrano 21202 Tamburrini 17408 +Tamburrino 45613 Tamburro 7718 Tamerlano 119619 Tamigi 272776 @@ -11421,6 +11474,7 @@ Tornatore 33937 Tornielli 134694 Torno 406606 Toro 492736 +Torpedine 20465 Torquati 19014 Torquato 1163084 Torraca 281145 @@ -11738,6 +11792,7 @@ Vacchi 28745 Vadalà 21649 Vadena 17721 Vagginelli 625 +Vagnozzi 8952 Vaiarelli 405 Vailati 143274 Vaime 5307 @@ -11746,6 +11801,7 @@ Valacchia 185725 Valalla 1604 Valastro 9706 Valcepina 237 +Valchiusa 127381 Valcuvia 22293 Valdagno 125697 Valdemaro 34590 @@ -11833,6 +11889,7 @@ Varese 1731078 Varesi 35201 Vargiu 11605 Vario 170031 +Varisco 138265 Varo 358433 Varone 23027 Varriale 21093 @@ -11850,6 +11907,7 @@ Vaticano 4752612 Vatiero 167 Vattimo 121683 Vattolo 1508 +Vaucluse 22285 Vaud 179433 Vavalle 1683 Vazzana 8040 @@ -11881,6 +11939,7 @@ Venditti 95442 Vendola 36007 Vendrame 21105 Venedico 18340 +Venegia 12570 Venera 70001 Veneranda 81024 Venere 3300503 @@ -12588,6 +12647,7 @@ abbaglierebbe 990 abbaglierebbero 139 abbaglierà 1597 abbaglierò 115 +abbaglii 59 abbaglino 2055 abbaglio 335523 abbagliò 25212 @@ -12816,10 +12876,12 @@ abbarcate 185 abbarcati 301 abbarcato 900 abbarcavano 220 +abbarra 936 abbarrata 2563 abbarrate 3311 abbarrati 1095 abbarrato 1990 +abbarri 47 abbaruffa 1001 abbaruffamenti 411 abbaruffamento 240 @@ -13924,6 +13986,10 @@ abbraccione 769 abbraccioni 365 abbracciucchiare 147 abbracciò 825209 +abbraci 431 +abbracia 1380 +abbraciamo 105 +abbracino 47 abbranca 23225 abbrancai 1196 abbrancammo 85 @@ -14011,6 +14077,8 @@ abbrevino 2189 abbrevio 4461 abbreviò 22533 abbrezzare 225 +abbricca 173 +abbriccate 120 abbriva 845 abbrivando 123 abbrivano 112 @@ -15307,6 +15375,8 @@ accadute 291120 accaduti 538756 accaduto 4266904 accadutomi 4709 +accaffa 167 +accaffi 1765 accagiona 24911 accagionai 305 accagionammo 45 @@ -17274,6 +17344,7 @@ accipigliato 2037 accisa 57986 accise 52897 accisero 151 +accisma 2502 acciso 11825 acciucchire 116 acciucchito 118 @@ -19356,6 +19427,7 @@ accusavate 1152 accusavi 2379 accusavo 6575 accusazione 10742 +accusazioni 10767 accuse 2980544 accuserai 3421 accuseranno 25281 @@ -20940,6 +21012,11 @@ addietri 50 addietro 3775291 addiettivi 29124 addii 87048 +addimanda 74219 +addimandaste 239 +addimandi 10657 +addimandiamo 6711 +addimandino 2841 addimestica 3687 addimesticai 161 addimesticando 752 @@ -21221,6 +21298,7 @@ addogliata 44 addogliati 538 addogliato 1164 addogo 141 +addolca 280 addolcendo 17972 addolcendomi 51 addolcendosi 3423 @@ -21326,8 +21404,13 @@ addoloriate 113 addolorino 1069 addoloro 7250 addolorò 30760 +addomanda 29363 addomandata 11582 +addomandate 7435 addomandati 4065 +addomandi 5267 +addomandiamo 2895 +addomandino 826 addome 796061 addomestica 18571 addomesticabile 5728 @@ -22221,6 +22304,7 @@ adiutore 7878 adiutori 6464 adiuvante 47575 adiuvanti 15506 +adiuvi 225 adiva 18401 adivano 2921 adivate 169 @@ -22359,6 +22443,12 @@ adonie 560 adonii 1354 adonio 8086 adono 1195 +adonta 17472 +adontaste 42 +adontate 1381 +adonti 8680 +adontiamo 553 +adontino 2023 adontoso 121 adonò 631 adopera 1835202 @@ -23307,6 +23397,7 @@ afeli 1627 afelica 208 afeliche 182 afelio 12129 +afemici 89 aferesi 45921 aferetica 7110 aferetiche 1857 @@ -27103,6 +27194,7 @@ agguatavano 453 agguati 197165 agguato 640575 agguatò 229 +aggueffa 667 agguerrendo 1055 agguerrendosi 809 agguerrii 41 @@ -28253,6 +28345,7 @@ albumina 786648 albuminati 15682 albuminato 16884 albumine 147693 +albuminemia 2975 albuminoide 40475 albuminoidi 223564 albuminosa 59057 @@ -30733,6 +30826,7 @@ allumacate 58 allumacati 173 allumacato 725 allumacatura 804 +allumacature 1447 allumai 436 allumando 999 allumano 1605 @@ -30971,6 +31065,7 @@ almanacco 139788 almanaccone 297 almanacconi 139 almanaccò 2164 +almanco 225014 almandini 1798 almandino 7122 almansore 341 @@ -39466,7 +39561,9 @@ aonia 2835 aonie 3879 aonii 1156 aonio 5050 +aonta 375 aontati 795 +aonti 318 aoristi 15694 aoristica 2487 aoristiche 859 @@ -40494,6 +40591,9 @@ appassiva 5091 appassivano 5358 appassivo 47 appassì 5689 +appasta 2201 +appastate 237 +appasti 201 appeal 79215 appella 696607 appellabile 154661 @@ -41253,6 +41353,7 @@ applaudendolo 2236 applaudendone 278 applaudente 2563 applaudenti 2960 +applaudere 5615 applaudi 31933 applaudiamo 14897 applaudiate 239 @@ -45543,6 +45644,8 @@ arrivistici 319 arrivistico 568 arrivo 6374053 arrivò 3527466 +arroca 525 +arrocate 104 arrocca 8601 arroccai 88 arroccamenti 4473 @@ -45575,6 +45678,7 @@ arrocchino 234 arrocco 3797 arroccò 2316 arrochendo 217 +arrochi 698 arrochimenti 51 arrochimento 307 arrochire 799 @@ -45666,8 +45770,10 @@ arrolerebbero 114 arrolerà 401 arroliamo 140 arrolò 12531 +arronca 171 arroncamenti 162 arroncamento 352 +arroncate 90 arroncigliare 1293 arroncigliata 1243 arroncigliate 671 @@ -46465,10 +46571,15 @@ arumena 139 arumene 68 arumeni 350 arumeno 1061 +aruspicale 1657 +aruspicali 517 +aruspicare 532 aruspice 25072 aruspici 63115 aruspicina 13390 aruspicine 269 +aruspicini 810 +aruspicino 266 aruspicio 949 arvicola 6045 arvicole 28239 @@ -48112,6 +48223,7 @@ assemprerai 290 assempri 3072 assempro 10797 assemprò 206 +assenna 5337 assennata 111613 assennatamente 42858 assennate 93849 @@ -48119,6 +48231,8 @@ assennatezza 57616 assennatezze 171 assennati 142969 assennato 181139 +assenni 1320 +assennino 563 assennire 149 assensi 45548 assenso 1772209 @@ -50261,12 +50375,10 @@ astrologhe 1398 astrologhi 40406 astrologhiate 85 astrologi 213820 -astrologia 413085 astrologica 105003 astrologicamente 4976 astrologiche 98119 astrologici 66195 -astrologico 88338 astrologie 10754 astrologo 238796 astrologò 43 @@ -50929,8 +51041,11 @@ atteggiavo 942 atteggino 6293 atteggio 7201 atteggiò 42147 +attempa 957 attempata 62884 +attempate 39480 attempati 61657 +attempi 4002 attenda 242034 attendai 626 attendamenti 18450 @@ -52351,6 +52466,10 @@ attueremo 2676 attuerete 521 attuerà 42620 attuerò 842 +attuffa 5814 +attuffi 1255 +attuffiamo 51 +attuffino 152 attui 129947 attuiamo 4300 attuiate 188 @@ -52805,7 +52924,6 @@ ausante 261 ausarono 410 ausasse 188 ausassero 247 -ausate 1217 ausato 3041 ausava 405 ausavano 309 @@ -53051,6 +53169,7 @@ autoadesiva 2778 autoadesive 4261 autoadesivi 6461 autoadesivo 4237 +autoaffermarsi 1688 autoaffermazione 41202 autoaffermazioni 935 autoaffonda 297 @@ -54984,6 +55103,9 @@ avogadore 15009 avogadori 37134 avolese 548 avolesi 474 +avoltera 256 +avolterate 1173 +avolteri 597 avoltoi 44677 avoltoio 27577 avori 115840 @@ -57433,7 +57555,6 @@ badaloni 1533 badalucca 316 badaluccano 221 badaluccare 4764 -badalucchi 11067 badammo 2766 badando 358900 badandoci 1140 @@ -57711,6 +57832,7 @@ balalaiche 442 balandra 1443 balandre 299 balani 9041 +balanico 1687 balanini 183 balanino 1266 balanite 6253 @@ -58657,6 +58779,7 @@ barbe 356903 barbera 32970 barberia 9277 barberie 2182 +barbero 17922 barbetta 100396 barbette 18673 barbi 22892 @@ -59343,6 +59466,7 @@ basivi 56 basket 123568 basmati 7711 baso 85941 +basoffia 1787 basofila 27881 basofile 58820 basofili 88362 @@ -60005,6 +60129,7 @@ bazzichi 4239 bazzichiamo 442 bazzico 3413 bazzicò 2119 +bazzoffia 1666 bazzone 150 bazzoni 182 bazzotta 427 @@ -60639,6 +60764,7 @@ beneducata 7724 beneducate 2797 beneducati 4801 beneducato 9982 +benefa 286 benefattore 628307 benefattori 458914 benefattrice 109979 @@ -61638,6 +61764,7 @@ bicchiere 2780467 bicchieri 975151 bicchierini 79568 bicchierino 203699 +bicchiero 25724 bicefala 5551 bicefale 732 bicefali 1685 @@ -63121,6 +63248,7 @@ bistecca 116552 bistecche 77086 bistecchiera 2689 bistecchiere 438 +bistenti 195 bisticceranno 163 bisticcerebbe 91 bisticceremo 136 @@ -67350,7 +67478,7 @@ cabriolet 22128 cabriolè 1209 cabro 822 cabrò 615 -caca 24924 p +caca 24924 cacadubbi 2434 cacai 1099 p cacalia 1098 @@ -67533,10 +67661,10 @@ cachettica 10537 cachettiche 6409 cachettici 29853 cachettico 32409 -cachi 48205 p -cachiamo 285 p +cachi 48205 +cachiamo 285 cachinnante 54 -cachino 617 p +cachino 617 cachistocrazia 58 caci 57129 caciai 1189 @@ -67789,7 +67917,7 @@ cafri 7017 cafro 6536 caftani 2825 caftano 6849 -caga 13147 p +caga 13147 cagai 360 p cagando 3470 p cagandosi 133 p @@ -67813,15 +67941,16 @@ cagavamo 42 p cagavano 792 p cagavi 64 p cagavo 426 p +caggia 68666 caggiamo 3354 cagherai 145 p cagheranno 173 p cagherebbe 119 p cagherà 408 p cagherò 130 p -caghi 2428 p -caghiamo 266 p -caghino 196 p +caghi 2428 +caghiamo 266 +caghino 196 cagion 1670169 cagiona 539081 cagionai 1550 @@ -68167,6 +68296,8 @@ calcerei 144 calcerà 347 calcescisti 93877 calcescisto 9097 +calcese 6638 +calcesi 936 calcestruzzi 50735 calcestruzzo 652357 calcetti 7969 @@ -72077,6 +72208,7 @@ carcerino 607 carcero 4626 carcerò 6669 carche 20558 +carchesio 2093 carchi 36827 carchino 268 carcini 761 @@ -73434,6 +73566,7 @@ casoncello 100 casone 74618 casoni 27601 casonsei 390 +casora 130 casotti 41627 casotto 106539 caspa 527 @@ -74846,9 +74979,9 @@ cazzati 472 cazzato 592 cazzava 330 cazze 4367 -cazzeggi 491 p -cazzeggia 748 p -cazzeggiamo 171 p +cazzeggi 491 +cazzeggia 748 +cazzeggiamo 171 cazzeggiando 1617 p cazzeggiano 414 p cazzeggiare 7931 p @@ -75805,25 +75938,18 @@ centocinquantenaria 75 centocinquantenario 6595 centocinque 22376 centocinquesima 110 -centocinquesimo 258 centodecima 303 centodecimi 346 -centodecimo 813 centodiciannove 5204 -centodiciannovesimo 125 centodiciassette 5533 centodiciassettesima 131 -centodiciassettesimo 146 centodiciottesima 141 -centodiciottesimo 265 centodiciotto 8251 centodieci 66405 centododicesima 412 -centododicesimo 689 centododici 16155 centodue 18171 centoduesima 179 -centoduesimo 464 centofoglie 999 centogambe 2626 centometrista 4583 @@ -75843,50 +75969,37 @@ centoni 34521 centonovanta 12919 centonove 9837 centonovesima 57 -centonovesimo 140 centootto 4200 centopelle 2467 centopiedi 4901 centoquaranta 58662 centoquattordicesima 375 -centoquattordicesimo 271 centoquattordici 9759 centoquattresima 297 -centoquattresimo 205 centoquattro 15399 centoquindicesima 106 -centoquindicesimo 384 centoquindici 16919 centosedicesima 126 -centosedicesimo 303 centosedici 9603 centosei 13136 -centoseiesimo 195 centosessanta 62283 centosettanta 28934 centosette 11203 centosettesima 132 -centosettesimo 202 centotre 7043 centotredicesima 135 -centotredicesimo 370 centotredici 10750 centotreesima 126 -centotreesimo 225 centotrenta 82878 centotré 3787 centottanta 188901 centottesima 136 -centottesimo 180 centotto 7257 -centoundicesimo 338 centoundici 10168 centounesima 405 -centounesimo 375 centouno 8566 centoventesima 872 centoventesimi 215 -centoventesimo 9860 centoventi 356918 centra 125780 centrafricana 1959 @@ -76112,7 +76225,6 @@ centumvirato 388 centumviri 14804 centumviro 620 centunesima 1305 -centunesimo 1227 centuno 5580 centupla 2625 centuple 649 @@ -80540,15 +80652,16 @@ ciuffi 234802 ciuffo 420068 ciuffolotti 1642 ciuffolotto 4199 -ciula 2585 p +ciula 2585 ciulano 120 p ciulare 611 p ciulata 179 p -ciulate 52 p +ciulate 52 ciulati 54 p ciulato 585 p -ciuli 474 p +ciuli 474 ciulo 528 p +ciumachella 367 ciurla 2249 ciurlando 208 ciurlano 379 @@ -80697,6 +80810,10 @@ cladofore 218 cladogenesi 579 cladogramma 564 cladogrammi 452 +clama 24696 +clamate 1911 +clami 9251 +clamiamo 165 clamidato 9881 clamide 220142 clamidi 12974 @@ -80704,6 +80821,7 @@ clamidia 3609 clamidosauro 213 clamidozoi 2616 clamidozoo 224 +clamino 288 clamore 394697 clamori 328986 clamorosa 369277 @@ -82135,11 +82253,12 @@ coglionava 119 coglione 152477 p coglioneria 6392 coglionerie 9503 -coglioni 157783 +coglioni 157783 p cogliono 4483 coglitore 3543 coglitori 2494 coglitura 2880 +cogliuto 471 cognata 576654 cognate 67179 cognati 240886 @@ -83164,6 +83283,7 @@ colo 816789 colobi 1486 colobio 3500 colobo 1425 +colobrina 2130 colocasia 5193 colocasie 436 colocolo 121 @@ -83705,6 +83825,7 @@ colubride 597 colubridi 1736 colubrina 31470 colubrine 33856 +colubrinetta 316 colubro 22631 colui 12416790 columbi 2502 @@ -88649,6 +88770,9 @@ coneglianesi 1880 conegrina 223 conestabile 87603 conestabili 36781 +conestabole 6508 +conestaboli 5314 +conestavole 522 confa 13667 confabula 5033 confabulai 122 @@ -89307,6 +89431,7 @@ confineremo 538 confinerete 155 confinerà 1985 confinerò 837 +confingi 429 confini 9353401 confiniamo 2681 confiniate 272 @@ -92668,6 +92793,8 @@ conterminazioni 626 contermine 35685 contermini 146463 conterrai 1032 +conterranea 5553 +conterranee 1815 conterranei 112786 conterraneo 128202 conterranno 72533 @@ -94254,6 +94381,7 @@ contropagina 1649 contropagine 129 contropali 203 contropalo 186 +contropappafico 306 controparte 1030388 controparti 144773 contropartita 271546 @@ -97085,6 +97213,7 @@ cortami 653 cortana 599 cortane 271 corte 18690572 +cortea 1442 cortecce 95458 corteccia 1745587 corteggerai 124 @@ -100741,6 +100870,9 @@ cunicoltura 894 cunnilingio 328 cunnilinguo 668 cunnilingus 3432 +cunta 10741 +cuntate 1751 +cunti 27549 cuoca 269887 cuoce 144920 cuocemmo 554 @@ -104039,6 +104171,7 @@ deflazionistiche 8703 deflazionistici 5736 deflazionistico 8945 deflegmazione 328 +deflemma 47 deflessa 2886 deflesse 2049 deflessero 55 @@ -105248,6 +105381,8 @@ demenziale 54553 demenziali 23209 demenzialità 2329 demenzialmente 375 +demerga 119 +demergi 1037 demerita 6166 demeritai 228 demeritando 3769 @@ -106190,6 +106325,7 @@ depauperi 1515 depauperiamo 149 depauperino 488 depauperò 1316 +depelli 863 depenalizza 2131 depenalizzando 962 depenalizzano 267 @@ -112141,11 +112277,15 @@ dinitrofenoli 1041 dinitrofenolo 11690 dinnanzi 877353 dinne 20869 +dinocca 341 +dinoccate 128 +dinoccola 447 dinoccolata 13660 dinoccolatamente 163 dinoccolate 3295 dinoccolati 4671 dinoccolato 31192 +dinoccoli 126 dinoflagellate 578 dinoflagellati 2285 dinoflagellato 329 @@ -112484,6 +112624,7 @@ dipnoo 175 dipo 26058 dipodia 10417 dipodie 5222 +dipoi 2082779 dipolare 12147 dipolari 4916 dipoli 17572 @@ -115144,6 +115285,7 @@ disfavori 3584 disfece 143485 disfecero 48083 disfeci 3931 +disfida 164256 disfidanti 175 disfide 22695 disfo 4962 @@ -116495,6 +116637,7 @@ disparve 236014 disparvero 66487 disparvi 522 disparì 4481 +dispegni 1099 dispenda 498 dispendano 83 dispende 2125 @@ -116516,6 +116659,7 @@ dispendiosi 100702 dispendioso 196055 dispendo 153 dispendono 548 +dispenga 119 dispensa 2141885 dispensabile 20285 dispensabili 8735 @@ -120026,6 +120170,8 @@ divistiche 2267 divistici 3039 divistico 8519 divo 304479 +divolga 3274 +divolgano 929 divora 386953 divorai 13342 divorala 400 @@ -121865,7 +122011,6 @@ dribblò 1105 drilli 18020 drillo 51370 drin 10834 -drink 225773 drinks 9764 dritta 1641016 drittamente 54035 @@ -122006,6 +122151,7 @@ druidici 8196 druidico 10472 druidismo 6329 druido 38491 +drum 15222 drupa 35361 drupacea 2433 drupacee 17803 @@ -123722,6 +123868,7 @@ effimere 159031 effimeri 161039 effimerità 1373 effimero 329071 +effingi 518 efflorescente 8137 efflorescenti 6527 efflorescenza 62828 @@ -123831,6 +123978,7 @@ egemonizzazione 3782 egemonizzerà 158 egemonizzi 155 egemonizzò 557 +egeo 70716 eggregore 747 egida 389726 egide 4045 @@ -126481,6 +126629,7 @@ encomio 477983 encomiò 17413 encondroma 8324 encondromi 8333 +encopresi 2087 encori 133 encoria 1297 encorica 1260 @@ -133735,6 +133884,7 @@ etnolinguistici 1464 etnolinguistico 1871 etnologa 1714 etnologhe 53 +etnologhi 788 etnologi 53107 etnologia 157436 etnologica 66211 @@ -134810,7 +134960,9 @@ extragiudiciali 62 extragiudiziale 34342 extragiudiziali 16493 extragiudizialmente 1355 +extragiudiziari 9017 extragiudiziaria 2769 +extragiudiziarie 2798 extragiudiziario 1806 extragiuridica 4925 extragiuridiche 6984 @@ -135314,6 +135466,10 @@ fagociterebbero 134 fagociterà 401 fagociti 53720 fagocitiamo 88 +fagocitica 5006 +fagocitiche 3117 +fagocitici 644 +fagocitico 2456 fagocitino 253 fagocito 1216 fagocitosi 104147 @@ -136051,7 +136207,6 @@ fantozzianamente 206 fantozziane 423 fantozziani 391 fantozziano 1640 -far 79263515 farabutta 690 farabutte 171 farabutti 51215 @@ -140916,12 +141071,15 @@ fittonante 4167 fittonanti 1904 fittone 48693 fittoni 11087 +fiumaia 114 +fiumale 843 fiumana 322679 fiumane 83903 fiumani 60082 fiumano 55059 fiumara 75686 fiumare 34391 +fiumarolo 812 fiume 14489354 fiumi 5098901 fiumicelli 45208 @@ -141474,6 +141632,8 @@ fluiva 65305 fluivano 30518 fluivi 221 fluivo 197 +fluminense 1044 +fluminensi 283 fluo 27018 fluorantene 1321 fluorapatite 689 @@ -142995,6 +143155,7 @@ formulo 31364 formulò 158590 formò 1616899 fornace 676777 +fornacella 3331 fornaci 368401 fornaciai 43146 fornaciaio 23065 @@ -146369,6 +146530,7 @@ fuggireste 1275 fuggiresti 2721 fuggirete 8528 fuggirono 439073 +fuggirsi 114593 fuggirà 55464 fuggirò 25964 fuggisse 96937 @@ -147492,6 +147654,7 @@ galla 819772 gallaratese 9451 gallaratesi 1924 gallari 779 +gallate 2843 gallatura 196 galle 192892 gallecolo 79 @@ -147552,6 +147715,7 @@ gallettami 131 gallette 59392 galletti 47842 galletto 70718 +galli 350722 galliambi 1417 galliambo 1813 gallica 283351 @@ -147597,6 +147761,7 @@ galliname 118 galline 646003 gallinella 23835 gallinelle 17157 +gallino 1447 gallio 20288 gallipolina 2227 gallipoline 496 @@ -147729,6 +147894,8 @@ gambaletti 2256 gambaletto 3553 gambali 49711 gambalunga 734 +gambari 6194 +gambaro 4709 gambe 6577619 gambecchi 297 gambecchio 365 @@ -150472,6 +150639,7 @@ ginecomastia 22031 ginecomastie 1155 gineprai 6703 ginepraio 66215 +gineprella 46 ginepreti 757 ginepreto 1754 ginepri 54778 @@ -151056,6 +151224,8 @@ girandomi 17293 girandosi 109472 girandoti 550 girandovi 4709 +girani 585 +giranio 1104 girano 536895 girante 397888 giranti 212277 @@ -154877,6 +155047,8 @@ grulla 8975 grullaggine 1002 grullaggini 241 grulle 2071 +grullerella 67 +grullerello 657 grulleria 3699 grullerie 6483 grulli 15432 @@ -155476,10 +155648,15 @@ guastiate 558 guastino 32886 guasto 1632793 guastò 120223 +guata 132301 +guataste 141 guatemalteca 6938 guatemalteche 1625 guatemaltechi 5467 guatemalteco 10483 +guati 40075 +guatiamo 559 +guatino 999 guazza 40700 guazzabugli 10507 guazzabuglio 137626 @@ -155998,7 +156175,6 @@ hollywoodiana 37023 hollywoodiane 14963 hollywoodiani 27778 hollywoodiano 64103 -home 303774 homunculus 10681 honduregna 1173 honduregne 384 @@ -161050,6 +161226,7 @@ impediamo 11161 impediate 1165 impedibile 1950 impedibili 1090 +impedica 106 impedii 9116 impedimenti 772749 impedimento 2383326 @@ -168079,7 +168256,7 @@ incubò 528 incude 21654 incudine 128201 incudini 28632 -incula 6249 p +incula 6249 inculai 134 p inculando 1113 p inculano 1069 p @@ -168135,9 +168312,9 @@ inculcò 25678 inculeranno 92 p inculerà 338 p inculerò 155 p -inculi 1856 p -inculiamo 189 p -inculino 109 p +inculi 1856 +inculiamo 189 +inculino 109 inculo 2861 p incultura 24985 inculturazione 34858 @@ -174335,6 +174512,7 @@ inizierò 18556 inizino 34437 inizio 9551433 iniziò 2465356 +inlei 2021 inmilla 55 innacqua 559 innacquando 193 @@ -184095,6 +184273,7 @@ irenismi 956 irenismo 12341 ireos 8413 iresione 488 +irico 3510 irida 2292 iridai 220 iridando 360 @@ -186324,6 +186503,7 @@ itinerante 154778 itineranti 78983 itinerari 649169 itinerario 1440506 +itria 1470 itterbio 1603 itteri 54431 itterica 37842 @@ -186481,6 +186661,7 @@ junghiane 4964 junghiani 9156 junghiano 23913 juniores 24805 +jussive 49 juta 135675 jute 4718 juventina 4563 @@ -186514,6 +186695,7 @@ kalashnikov 22584 kaliemia 3862 kaliuria 444 kamikaze 49388 +kamut 4968 kantiana 459942 kantianamente 19478 kantiane 53223 @@ -189556,6 +189738,7 @@ leggicchiavo 149 leggicchio 279 leggicchiò 112 leggiera 1123932 +leggieramente 4320 leggiere 610201 leggieri 1657984 leggiero 1034903 @@ -196626,6 +196809,9 @@ mandrino 57595 mandritta 2453 mandritti 1489 mandritto 3569 +manduca 11128 +manducate 2265 +manduchi 581 manduriana 517 manduriane 178 manduriani 894 @@ -199379,6 +199565,7 @@ matrice 2996157 matrici 701431 matriciale 28087 matriciali 6166 +matriciana 1474 matricidi 3677 matricidio 39991 matricina 2491 @@ -201347,7 +201534,6 @@ meristica 373 meristiche 283 meristici 1412 meristico 154 -merita 5449404 meritai 24134 meritamente 741933 meritammo 2411 @@ -201559,6 +201745,7 @@ meschinità 221401 meschino 750224 meschio 2039 mesci 19099 +mescia 1631 mesciacqua 1488 mesciamo 798 mescianza 1628 @@ -201566,6 +201753,7 @@ mesciate 279 mescibile 865 mescibili 589 mescidare 1284 +mescino 139 mesciroba 3831 mescirobe 1806 mescita 35646 @@ -204147,7 +204335,7 @@ minchia 45877 minchiata 5059 p minchiate 17008 p minchie 994 -minchiona 7432 p +minchiona 7432 minchionaggine 1198 minchionai 48 p minchionando 302 p @@ -204167,7 +204355,7 @@ minchioneria 13192 minchionerie 13294 minchionerò 97 p minchionevolezza 137 -minchioni 28289 p +minchioni 28289 minchiono 424 p minchionò 115 p mindfulness 33818 @@ -204977,8 +205165,11 @@ miserrima 34441 miserrime 27426 miserrimi 11640 miserrimo 25452 +misfa 229 +misfaccia 43 misfatti 586078 misfatto 760121 +misfà 396 misi 830185 misinformazione 226 misirizzi 3469 @@ -205655,6 +205846,7 @@ modale 255555 modali 127032 modalismi 200 modalismo 6010 +modalista 1465 modaliste 154 modalisti 885 modalità 11568205 @@ -207120,6 +207312,9 @@ monometalliche 295 monometallici 2049 monometallico 4964 monometallismo 16052 +monometra 101 +monometre 61 +monometri 2264 monometrica 4519 monometriche 2232 monometrici 5150 @@ -207851,11 +208046,16 @@ morfofonemico 270 morfofonologia 849 morfofunzionale 4823 morfofunzionali 5099 +morfogena 941 +morfogene 863 morfogenesi 48903 morfogenetica 13533 morfogenetiche 9077 morfogenetici 17111 morfogenetico 15091 +morfogeni 925 +morfogenia 1254 +morfogeno 630 morfologia 1163237 morfologica 525110 morfologicamente 204274 @@ -213033,6 +213233,7 @@ nicciani 1145 nicciano 6271 niccio 928 niccolite 960 +niccolo 27561 nicena 20684 nicene 993 niceni 10351 @@ -217412,8 +217613,11 @@ oliosi 4136 oliosità 139 olioso 6634 olioteca 82 +olisca 399 +olisci 73 olismi 444 olismo 18535 +oliste 599 olistica 54072 olistiche 9112 olistici 6950 @@ -218495,6 +218699,7 @@ ondose 15577 ondosi 23466 ondosità 1523 ondoso 140874 +ondra 8474 ondula 5923 ondulai 107 ondulamenti 2434 @@ -222868,6 +223073,8 @@ ottotipici 101 ottotipo 1841 ottovolante 7022 ottovolanti 935 +ottri 127 +ottriate 2138 ottuagenari 8677 ottuagenaria 21658 ottuagenarie 2003 @@ -228525,6 +228732,7 @@ pecuniarie 839895 pecuniario 272629 pecunie 58598 pecunio 931 +peda 9550 pedaggi 162603 pedaggiere 946 pedaggio 282204 @@ -228633,7 +228841,9 @@ pederotico 592 pedestre 140920 pedestremente 16487 pedestri 55781 +pedete 184 pedi 74469 +pediamo 53 pediatra 126336 pediatre 454 pediatri 68517 @@ -229891,6 +230101,7 @@ peracidi 1850 peracido 1175 peracottari 364 peracottaro 486 +peragra 47 peraltro 9620388 peramele 131 peranco 324214 @@ -230529,6 +230740,7 @@ pereti 8329 pereto 5030 peretta 10823 perette 6640 +perfa 2015 perfetta 8790435 perfettamente 10254441 perfette 885225 @@ -230709,6 +230921,7 @@ perfrigerazione 22150 perfrigerazioni 5743 perfusione 166686 perfusioni 6832 +perfà 49 pergamena 1566625 pergamenacea 15410 pergamenacee 5055 @@ -234625,6 +234838,7 @@ pioderma 1660 piodermite 12020 piodermiti 11091 pioemia 24108 +pioemico 1374 piogena 7947 piogene 29538 piogenesi 879 @@ -235189,15 +235403,15 @@ pischelletti 370 pischelletto 525 pischelli 4254 pischello 4543 -pisci 20468 p -piscia 38143 p +pisci 20468 +piscia 38143 pisciacane 976 pisciacani 495 pisciai 1387 p piscialetto 1195 piscialletto 1751 pisciammo 151 p -pisciamo 770 p +pisciamo 770 pisciando 6330 p pisciano 8270 p pisciante 138 p @@ -235212,7 +235426,7 @@ pisciasse 982 p pisciassero 185 p pisciassi 243 p pisciata 10831 p -pisciate 3366 p +pisciate 3366 pisciati 1037 p pisciato 21698 p pisciatoi 3937 @@ -235230,7 +235444,7 @@ piscicolture 476 pisciforme 3182 piscina 793144 piscine 177166 -piscino 875 p +piscino 875 piscio 47465 p piscione 2738 piscioni 780 @@ -240079,6 +240293,7 @@ prandi 15332 prandiale 11488 prandiali 4202 prandio 12005 +prando 5315 pranoterapeuta 3270 pranoterapeuti 1374 pranoterapia 6021 @@ -240617,6 +240832,8 @@ precidevano 155 precidi 725 precido 520 precidono 615 +precinga 147 +precingi 71 precinzione 15481 precipita 1122073 precipitabile 22284 @@ -247577,6 +247794,7 @@ propaganderà 250 propagandi 3015 propagandiamo 385 propagandino 331 +propagandismo 3340 propagandista 105382 propagandiste 5680 propagandisti 111357 @@ -247816,6 +248034,7 @@ propinqui 87961 propinquità 20343 propinquo 126275 propinò 9383 +propio 220205 propionati 676 propionato 28633 propionica 7012 @@ -251588,8 +251807,8 @@ puttanaio 2160 p puttanata 3437 p puttanate 6736 p puttane 187862 p -puttaneggi 218 p -puttaneggia 1993 p +puttaneggi 218 +puttaneggia 1993 puttaneggiando 1121 p puttaneggiano 322 p puttaneggiante 769 p @@ -252849,6 +253068,7 @@ quistioni 1699175 quitanza 164529 quitanze 84927 quittanze 4436 +quittare 488 quivi 6627436 quiviritta 263 quiz 98387 @@ -256050,6 +256270,7 @@ ramifichi 1788 ramifichino 1035 ramifico 113 ramificò 3041 +ramina 27704 raminga 61859 ramingai 110 ramingando 15698 @@ -257671,6 +257892,7 @@ rastremino 135 rastremò 92 rastri 7819 rastro 18902 +rasura 141001 rasò 4664 rata 1397532 ratafià 7076 @@ -262618,6 +262840,8 @@ restrizione 1105935 restrizioni 1316855 restò 3536920 resultabili 179 +resuma 84 +resumi 411 resurga 1943 resurgano 56 resurgere 6463 @@ -264183,6 +264407,7 @@ riagguanto 56 riagguantò 859 riagitare 1810 riai 2154 +riale 140452 rialimenta 557 rialimentando 343 rialimentano 145 @@ -273957,6 +274182,7 @@ rimenato 11273 rimenava 3385 rimenavano 1780 rimendare 4153 +rimendo 2695 rimenerai 511 rimeneranno 121 rimenerebbe 639 @@ -273976,6 +274202,12 @@ rimeranno 267 rimerebbe 543 rimerebbero 182 rimeria 15719 +rimerita 9424 +rimeritaste 112 +rimeritate 5085 +rimeriti 20663 +rimeritiamo 475 +rimeritino 741 rimerà 959 rimerò 427 rimescere 1609 @@ -275384,6 +275616,7 @@ rinchiuse 312420 rinchiusero 44175 rinchiusi 555733 rinchiuso 861172 +rincinga 112 rinciprignire 591 rincitrullendo 173 rincitrullire 473 @@ -275406,7 +275639,7 @@ rincoglionimento 1930 p rincoglionire 995 p rincoglionirsi 449 p rincoglionisce 819 p -rincoglionisci 59 p +rincoglionisci 59 rincoglionisco 67 p rincoglioniscono 385 p rincoglionita 3355 p @@ -276555,6 +276788,7 @@ rinolalia 3182 rinolalie 226 rinolofo 487 rinologia 12241 +rinoma 2733 rinomanza 658059 rinomanze 7199 rinomata 352830 @@ -276562,6 +276796,7 @@ rinomatamente 201 rinomate 211323 rinomati 472606 rinomato 594866 +rinomi 588 rinomina 4506 rinominai 100 rinominando 915 @@ -284942,6 +285177,7 @@ roberta 1595 robetta 10665 robette 1634 robinetto 87522 +robinia 33970 robiolina 301 robivecchi 11219 roboante 30609 @@ -287467,7 +287703,6 @@ saggerò 619 saggezza 2097863 saggezze 8760 saggi 6268980 -saggia 1222845 saggiai 3671 saggiamente 582659 saggiammo 698 @@ -288211,6 +288446,7 @@ saltar 178161 saltarci 8069 saltare 1332075 saltarellare 670 +saltarello 16412 saltargli 25462 saltarla 5855 saltarle 15743 @@ -292251,13 +292487,13 @@ scabrosi 81182 scabrosità 85053 scabroso 139517 scacato 260 -scacazza 358 p +scacazza 358 scacazzamento 162 p scacazzando 163 p scacazzano 159 p scacazzare 661 p scacazzata 85 p -scacazzate 315 p +scacazzate 315 scacazzato 192 p scacazzavano 43 p scaccata 6557 @@ -295242,6 +295478,7 @@ scerbano 180 scerbare 595 scerbatura 8692 scerbo 60 +sceriat 229 sceriffi 27693 sceriffo 234079 scerna 14287 @@ -304746,6 +304983,7 @@ senusso 3585 senz 1171746 senz' 111 senz'altro 5642131 +senz'appello 15303 senza 199749814 senzacasa 1803 senzadio 6437 @@ -309732,6 +309970,7 @@ shampista 586 shampiste 298 shampoo 85592 shangai 1147 +shari'a 7834 sharia 18763 shaykh 11400 sherpa 18779 @@ -312084,6 +312323,7 @@ slenti 915 slento 2514 slentò 100 sleppa 1584 +slesiano 10461 slingua 429 slinguando 95 slinguare 284 @@ -312960,7 +313200,7 @@ smerciavo 41 smercino 1783 smercio 556361 smerciò 1492 -smerda 916 p +smerda 916 smerdando 129 p smerdano 222 p smerdare 1175 p @@ -312969,7 +313209,7 @@ smerdate 315 p smerdati 457 p smerdato 1500 p smerdava 135 p -smerdi 526 p +smerdi 526 smerdo 336 p smerdò 89 p smerghi 5790 @@ -317743,6 +317983,8 @@ sopravvalutiate 136 sopravvalutino 678 sopravvaluto 850 sopravvalutò 2051 +sopravveda 272 +sopravvedano 119 sopravvegliare 17594 sopravvegnente 24169 sopravvegnenza 27406 @@ -323332,6 +323574,9 @@ spereresti 963 spererete 1455 spererà 7670 spererò 11103 +sperga 3801 +spergano 110 +spergi 342 spergiura 46419 spergiurai 811 spergiurando 8426 @@ -325483,7 +325728,7 @@ spompata 1057 spompate 235 spompati 1536 spompato 4160 -spompina 226 p +spompina 226 spompinando 233 p spompinare 957 p spompinato 415 p @@ -325505,6 +325750,10 @@ spondiliti 5220 spondilolisi 2533 spondilolistesi 9123 spondilopatia 460 +sponeste 201 +sponete 1048 +sponga 11721 +spongano 1535 spongata 1158 spongate 809 spongiforme 7950 @@ -325515,6 +325764,8 @@ spongiose 5171 spongiosi 7994 spongiosità 855 spongioso 32827 +sponi 1766 +sponiamo 1952 sponsale 33331 sponsali 291481 sponsalizi 1987 @@ -326864,7 +327115,7 @@ sputiamo 3038 sputiate 124 sputino 2841 sputo 230740 -sputtana 1747 p +sputtana 1747 sputtanamenti 263 sputtanamento 2649 sputtanando 790 p @@ -326881,8 +327132,8 @@ sputtanavano 159 p sputtanerebbe 92 p sputtanerà 184 p sputtanerò 217 p -sputtani 773 p -sputtaniamo 318 p +sputtani 773 +sputtaniamo 318 sputtano 1065 p sputtanò 134 p sputò 130651 @@ -330477,6 +330728,7 @@ storiografie 15268 storiografo 228932 storione 52639 storioni 28282 +stormeggiare 2100 stormendo 2062 stormente 1648 stormi 133817 @@ -332518,10 +332770,13 @@ stroncò 20893 stronza 126724 p stronzaggine 3739 stronzaggini 142 +stronzate 118357 stronzetti 3708 p stronzetto 15825 p +stronzi 84196 p stronzianite 1806 stronzianiti 194 +stronzino 284 stronzio 93920 stropiccerai 269 stropicceranno 570 @@ -333911,6 +334166,7 @@ suborno 314 subornò 4486 subossidi 59 subossido 554 +subovoidale 1713 subparallela 4471 subparallele 13826 subparalleli 17632 @@ -333982,12 +334238,12 @@ suburbio 212412 suburra 9849 suburre 1706 subì 868242 -suca 4959 p +suca 4959 sucai 207 p sucano 149 p sucare 526 p sucata 201 p -sucate 60 p +sucate 60 sucato 182 p sucava 147 p succeda 456303 @@ -338975,6 +339231,7 @@ tarano 4119 tarante 2188 tarantella 50370 tarantelle 8222 +tarantelli 414 tarantello 3053 tarantina 49120 tarantine 15382 @@ -339593,7 +339850,6 @@ tatuino 233 tatuo 1916 tatuò 795 tatù 9278 -tau 51771 taumatropio 582 taumaturga 17035 taumaturghe 2023 @@ -342463,6 +342719,7 @@ testato 83431 testatore 2568406 testatori 107614 testatrice 109510 +testatrici 2891 testava 9944 testavamo 98 testavano 2403 @@ -342825,6 +343082,7 @@ thread 56517 thriller 101849 thrilling 11566 throughput 5433 +thulite 882 ti 56839222 tiade 482 tiamina 52687 @@ -349577,6 +349835,7 @@ tremoleranno 122 tremolerà 3929 tremoli 34433 tremolii 9226 +tremolina 766 tremolino 524 tremolio 132168 tremolite 14094 @@ -351039,6 +351298,10 @@ trombociti 12311 trombocitico 208 trombocito 720 trombocitopenia 32760 +trombocitopenica 10982 +trombocitopeniche 1776 +trombocitopenici 804 +trombocitopenico 552 trombocitopenie 2250 trombocitosi 4812 tromboembolia 8634 @@ -352444,6 +352707,8 @@ u 10323683 uabaina 5811 uabaio 812 uadi 49424 +uao 4384 +uau 2681 ubara 160 ubare 343 ubbia 33628 @@ -353853,6 +354118,7 @@ undecima 134177 undecime 8121 undecimi 5022 undecimo 349594 +underdog 1018 underground 68842 understatement 23953 undicenne 28192 @@ -355285,6 +355551,7 @@ utilissimi 293605 utilissimo 686948 utilista 50253 utilisti 21692 +utilita 132075 utilitari 52808 utilitaria 151526 utilitarie 57687 @@ -355298,6 +355565,7 @@ utilitaristica 78726 utilitaristiche 25000 utilitaristici 26798 utilitaristico 71339 +utiliti 2133 utilità 9924985 utilizza 1460194 utilizzabile 545074 @@ -357249,6 +357517,7 @@ vatti 30490 vau 19497 vauda 739 vb 78686 +vbb 577 ve 14147810 vecce 27126 vecchi 8805657 @@ -358021,6 +358290,7 @@ vendibile 196139 vendibili 137666 vendibilità 7262 vendibubbole 47 +vendica 194809 vendicabile 247 vendicabili 112 vendicandoci 680 @@ -358033,6 +358303,8 @@ vendicarmi 103334 vendicarsi 841997 vendicarti 31397 vendicarvi 21267 +vendicaste 1204 +vendicate 34221 vendicatevi 3647 vendicativa 89309 vendicativamente 1175 @@ -358048,7 +358320,10 @@ vendicchiare 88 vendiche 704 vendichevole 558 vendichevoli 130 +vendichi 38518 +vendichiamo 7231 vendichiamoci 1238 +vendichino 4605 vendifrottole 453 vendifumo 640 vendila 70437 @@ -358182,6 +358457,11 @@ venezuelani 13653 venezuelano 34250 venga 13089924 vengano 4445190 +vengi 28950 +vengia 701 +vengiamo 223 +vengiate 325 +vengino 8567 vengo 1547104 vengono 30735313 veniale 129875 @@ -358253,6 +358533,7 @@ ventaglia 4399 ventagliata 110 ventagliate 55 ventaglie 607 +ventaglietto 2604 ventaglino 2024 ventaglio 799555 ventame 295 @@ -360607,6 +360888,8 @@ vigoressia 269 vigori 4733 vigoria 514423 vigorie 3331 +vigorisca 293 +vigoriscano 101 vigorosa 1044650 vigorosamente 639814 vigorose 305034 @@ -362238,6 +362521,7 @@ vizzi 14705 vizzo 23389 vladika 6432 vo 3652359 +vo' 672 voca 55398 vocabolari 240819 vocabolariesca 183 @@ -363091,6 +363375,7 @@ vomeri 41578 vomero 46185 vomeronasale 2401 vomeronasali 196 +vomicare 516 vomii 887 vomire 1779 vomirà 72 @@ -364184,6 +364469,7 @@ zelino 1558 zella 7485 zelloso 245 zelo 5079852 +zeloso 8308 zelota 7226 zelote 514 zeloti 16213 @@ -365086,10 +365372,15 @@ zwinglismo 114 àa 6936 àe 45026 è 1447205303 +é 6057645 écru 5317 élite 647351 épagneul 607 étoile 17638 +ì 1062679 +î 67378 +ó 289290 +ù 199316 Čajkovskij 10752 Ōsaka 3908 Šostakovič 5688 diff --git a/data/dicts/v0~draft1/words_ru.fldic b/data/dicts/v0~draft1/words_ru.fldic index 1a073af..ab66971 100644 --- a/data/dicts/v0~draft1/words_ru.fldic +++ b/data/dicts/v0~draft1/words_ru.fldic @@ -82,6 +82,7 @@ Z 768713 Агартала 301 Агата 194878 Агафия 13459 +Агеенко 8719 Аглая 179914 Агни 105779 Агра 12635 @@ -166,6 +167,7 @@ Z 768713 Алина 589713 Алиса 1013117 Алистер 37548 +Алитус 8949 Алла 689532 Аллах 634829 Аллаха 529530 @@ -207,6 +209,7 @@ Z 768713 Амаль 11294 Амасья 1059 Америка 1452316 +Амерсфорт 879 Амман 16041 Амос 77911 Амритсар 3651 @@ -304,6 +307,7 @@ Z 768713 Арес 41128 Арестович 717 Ареццо 16772 +Арзамас 101409 Ариана 23631 Аризона 62188 Арика 16409 @@ -321,6 +325,7 @@ Z 768713 Армагеддон 26600 Армения 530750 Арменія 4311 +Арнем 2340 Арон 154817 Арран 10417 Арсеньев 237268 @@ -345,6 +350,7 @@ Z 768713 Асмодей 25625 Асмэра 397 Ассам 23693 +Ассен 1306 Ассирия 26093 Ассирія 1428 Астана 68767 @@ -493,12 +499,14 @@ Z 768713 Бердичев 34731 Бердянск 24770 Берегово 10065 +Березовец 7332 Березовка 37937 Березовский 236304 Берестье 14080 Берислав 5326 Берит 6624 Берия 619966 +Беркович 60562 Берлин 1766438 Берн 128692 Бетховен 191752 @@ -551,6 +559,7 @@ Z 768713 Болград 10650 Болеслав 99193 Боливия 77908 +Болливуд 869 Бологое 40299 Болонья 28382 Бомбей 67103 @@ -590,6 +599,7 @@ Z 768713 Брайля 13830 Братислава 55247 Браун 501847 +Бреда 13026 Брежнев 1424338 Бремен 42062 Брест 356828 @@ -653,6 +663,7 @@ Z 768713 ВНЖ 1183 ВНП 279333 ВОВ 232761 +ВОЗ 211882 ВПК 227588 ВРК 285840 ВС 1124767 @@ -670,6 +681,7 @@ Z 768713 Вадуц 2690 Вайк 1590 Вайоминг 29887 +Вакаяма 5023 Вакканай 2199 Вакх 34166 Валентин 1122145 @@ -682,6 +694,7 @@ Z 768713 Валя 1006162 Ван 1470029 Ванадзор 869 +Вандея 15437 Ванкувер 41082 Ванкувера 20453 Ванкувере 25126 @@ -792,6 +805,7 @@ Z 768713 Волга 838597 Волгоград 340400 Волков 1135739 +Волконский 197164 Волноваха 11204 Вологда 277410 Володин 185143 @@ -909,6 +923,7 @@ Z 768713 Гейдельберг 33559 Гейропа 111 Геката 18440 +Гелдерланд 943 Геленджик 45145 Генассамблее 1199 Генассамблея 1113 @@ -950,7 +965,10 @@ Z 768713 Гималаи 77356 Гипускоа 5385 Гиренко 14043 +Гирин 45298 +Гиркин 795 Гитлер 1589918 +Гифу 4520 Глазго 99657 Глеб 1344128 Гликерия 34163 @@ -1017,12 +1035,14 @@ Z 768713 Грибоедов 413245 Григорий 2707803 Гринвич 24626 +Гринько 45937 Гриша 797966 Гродно 319815 Грозев 1645 Грозный 784139 Громов 485849 Громыко 299819 +Гронинген 7592 Грузия 549417 Грузія 7870 Гуам 30371 @@ -1035,6 +1055,8 @@ Z 768713 Гуйчжоу 26317 Гуляйполе 10885 Гуменюк 17093 +Гумма 4953 +Гуревич 391476 Гуриев 5489 Гурченко 30761 Гэндальф 25763 @@ -1071,6 +1093,7 @@ Z 768713 Дарья 746911 Дастакерт 1618 Дате 6516 +Даугавпилс 45087 Даша 1068042 Дева 291723 Делавэр 20688 @@ -1084,6 +1107,7 @@ Z 768713 Денис 1045369 Денисов 479002 Дербент 105704 +Дерипаска 10367 Джакарта 14681 Джалили 826 Джалиль 51024 @@ -1138,11 +1162,13 @@ Z 768713 Донбасс 365988 Донец 156795 Донецк 231074 +Дордрехт 1776 Дорофей 46986 Достоевский 2165675 Дофине 9320 Доха 7396 Драва 9901 +Дренте 2810 Дрина 7302 Дрогобыч 15466 Дубай 20399 @@ -1202,6 +1228,7 @@ Z 768713 Екатерина 2281152 Екатеринбург 536112 Екатеринослав 107134 +Елбасы 179 Елена 2698930 Еленовка 7331 Еленский 9319 @@ -1288,11 +1315,14 @@ Z 768713 Запорожья 97809 Зарема 25034 Зарина 33865 +Зарубин 114699 Захар 588129 Захаренко 36122 Захаров 709621 Захра 9009 +Заярский 491 Звенигородка 5631 +Зволле 1907 Звягель 759 Зевс 224080 Зеландия 180956 @@ -1309,6 +1339,7 @@ Z 768713 Зиновий 139582 Золотов 61258 Золотоноша 5398 +Золотухин 85036 Золочев 7265 Золушка 100779 Зося 104463 @@ -1324,6 +1355,8 @@ Z 768713 ИИ 243371 ИК 1868718 ИП 283963 +ИРЛ 3961 +Ибараки 5496 Иберия 11171 Ибури 395 Иван 12614140 @@ -1334,6 +1367,7 @@ Z 768713 Иванович 7828476 Ивановна 2470717 Иваново 672113 +Ивате 4220 Ивелин 1633 Ивиса 1338 Игнат 512032 @@ -1354,6 +1388,7 @@ Z 768713 Иисус 1369383 Иисусе 277604 Илия 130495 +Илларионов 41490 Иллинойс 75260 Иллирия 6208 Илона 86570 @@ -1361,6 +1396,7 @@ Z 768713 Ильинична 270995 Ильинский 207862 Ильич 3187476 +Ильницкий 9216 Илья 2703711 Иммануил 30633 Инга 378993 @@ -1393,6 +1429,7 @@ Z 768713 Иосиф 1191863 Ипполит 229034 Ипр 6653 +Ира 579162 Ирак 364787 Иракъ 595 Иран 816790 @@ -1408,6 +1445,7 @@ Z 768713 Исаак 321538 Исав 30113 Исеть 18708 +Исикава 14361 Исикари 5736 Исламабад 14583 Исландия 103245 @@ -1443,13 +1481,16 @@ Z 768713 КПСС 17892196 КПУ 66259 Кааба 14154 +Кабарда 30587 Кабул 137723 Кавагути 5016 Кавасаки 22022 Кавказ 1646875 Кагава 3835 +Кагосима 8637 Каджаран 5528 Кадис 17460 +Кадочников 13987 Кадыров 78842 Казаков 387962 Казакстан 24070 @@ -1508,8 +1549,10 @@ Z 768713 Караганда 114897 Каракалпакстан 31367 Каракас 17484 +Каракулов 3901 Каракумы 42031 Карамзин 618266 +Караулов 79087 Карачи 74728 Кардифф 7241 Карелией 9105 @@ -1524,6 +1567,7 @@ Z 768713 Карпов 460555 Карфаген 77999 Карьяла 4642 +Касаткин 113332 Касива 333 Каспаров 43472 Кастри 32079 @@ -1540,9 +1584,11 @@ Z 768713 Катынь 15893 Катюша 209953 Катя 2775928 +Каунас 153839 Каховка 31258 Кац 200422 Кацусика 1785 +Качалов 130015 Кашгар 49003 Кашмир 45078 Квебек 68893 @@ -1592,18 +1638,24 @@ Z 768713 Кито 33273 Кл 187854 Клавдия 584442 +Клайпеда 37325 Клара 506539 Клеопатра 193890 Кливленд 28422 +Клименко 202785 +Климов 358321 Клинтон 102835 Клитемнестра 14946 Кличко 11671 Клюев 195465 Кнессет 10033 Кнорозов 13101 +Князев 209694 Кобе 38848 Ковалевский 390585 +Коваль 219871 Ковальский 110046 +Ковальчук 108427 Ковель 37178 Коган 416396 Кожевников 215366 @@ -1619,6 +1671,7 @@ Z 768713 Коломна 77870 Коломыя 8560 Колорадо 177319 +Колосов 230303 Колумбия 215052 Колхида 30683 Колчак 278769 @@ -1633,20 +1686,25 @@ Z 768713 Коморы 1743 Компас 39442 Конакри 30700 +Конашенков 501 Конго 625096 Конев 163798 +Конкин 30218 Конли 4108 +Коннахт 1052 Коннектикут 45749 Коннелли 6971 Конотоп 35517 Константин 2486835 Константинов 316021 +Константиновка 22421 Константинополь 652421 Конфуций 128589 Конья 6521 Копелян 5979 Копенгаген 109470 Коран 296084 +Коренев 53607 Корея 447468 Корнилов 497679 Коровин 229679 @@ -1654,13 +1712,17 @@ Z 768713 Корсика 26784 Корфу 115818 Корчной 9905 +Коршунов 158452 Корюковка 1355 Косов 40750 Косово 207491 Кострома 200645 Костя 1827585 Котайк 1005 +Коти 24622 Кото 17647 +Котов 268897 +Котовский 95189 Котону 9773 Котрикадзе 1519 Кощей 105594 @@ -1708,6 +1770,7 @@ Z 768713 Куваев 18901 Кувейт 116453 Кудрявцев 377612 +Куев 3238 Кузнецов 1750755 Кузька 29012 Кузьма 650988 @@ -1717,7 +1780,9 @@ Z 768713 Куйтун 4551 Кулеба 2557 Кулибин 42849 +Кумамото 6297 Кумаси 6598 +Куньмин 5533 Куопио 10220 Купидон 26556 Куприн 294490 @@ -1778,18 +1843,23 @@ Z 768713 Лев 2698249 Левант 17983 Левиев 2782 +Лейден 25056 Лейла 130261 +Лейнстер 1592 +Лелистад 133 Лена 1799107 Ленин 18002059 Ленина 14115554 Ленингор 85 Ленинград 3565404 Ленинграде 2383492 +Ленстер 614 Леонид 1751888 Леонов 532403 Леонтьев 648497 Лермонтов 1087185 Лесото 37079 +Леуварден 413 Либерия 46497 Либревиль 3157 Ливан 150711 @@ -1806,9 +1876,11 @@ Z 768713 Лилонгве 2427 Лима 42812 Лиман 41135 +Лимбург 11624 Линна 13649 Линукс 1676 Липецк 77884 +Лисицын 117429 Лисичанск 10033 Лиссабон 52774 Лиссабонъ 1514 @@ -1816,6 +1888,7 @@ Z 768713 Литва 512884 Литвиненко 130753 Лихтенштейн 55762 +Лобанов 237174 Лозовая 27021 Ломе 16329 Ломоносов 1056087 @@ -1826,6 +1899,7 @@ Z 768713 Луара 17831 Лубны 27467 Лубянка 40762 +Луга 145955 Луганск 57746 Луганщина 741 Луго 7976 @@ -1836,6 +1910,7 @@ Z 768713 Лукашенко 130706 Лукин 277083 Лукьянов 231119 +Лумумба 21063 Луна 990058 Луперк 470 Луперка 509 @@ -1850,6 +1925,7 @@ Z 768713 Льеж 20794 Люба 845453 Любавичи 2420 +Любимов 264095 Любляна 13953 Любовь 2806534 Людмила 1216219 @@ -1872,6 +1948,7 @@ Z 768713 МКС 66864 МО 749238 МОБ 33723 +МСК 66679 МТКК 2257 МУС 13084 МФА 10688 @@ -1936,6 +2013,7 @@ Z 768713 Мангазея 14522 Мандельштам 480377 Манила 22817 +Манстер 1083 Манхэттен 41067 Маньчжурия 63542 Маня 292842 @@ -1950,6 +2028,7 @@ Z 768713 Марио 171070 Мариуполь 55926 Мария 4402820 +Мариямполе 3938 Марк 1982806 Маркелов 75042 Марков 756260 @@ -1962,6 +2041,7 @@ Z 768713 Мартынов 527773 Марфа 503508 Марцинкевич 17782 +Марьинка 2557 Марья 1283741 Марія 77606 Масеру 2225 @@ -1972,6 +2052,7 @@ Z 768713 Массачусетс 75420 Масхадов 21316 Матансас 9841 +Матвеев 533696 Матвей 1161294 Матвѣй 6544 Матильда 218551 @@ -1993,6 +2074,8 @@ Z 768713 Медея 88351 Медуза 33285 Междуречье 31728 +Мезенцев 72203 +Мезень 43190 Мекка 35650 Мексика 328783 Меладзе 10957 @@ -2009,6 +2092,7 @@ Z 768713 Менск 10181 Меньшиков 159002 Меркурий 231039 +Меркурьев 26708 Мерседес 178441 Мерседеса 42830 Мерседесам 317 @@ -2047,7 +2131,9 @@ Z 768713 Мигом 57609 Мигранян 6740 Мигу 2744 +Мидделбург 428 Мидия 18996 +Мизулин 560 Микола 171403 Микоян 204375 Микронезия 7138 @@ -2071,6 +2157,7 @@ Z 768713 Миссури 98149 Митака 1079 Митрофан 174960 +Митрофанов 145261 Митрохин 71203 Митя 938955 Михаил 6293970 @@ -2082,6 +2169,7 @@ Z 768713 Мишустин 34867 Миэ 3334 Мияги 11548 +Миядзаки 12779 Мияке 3471 Могадишу 259 Модест 124185 @@ -2206,11 +2294,13 @@ Z 768713 Невада 60341 Невзлин 4298 Невзоров 59675 +Невинный 18679 Невский 612638 Невтон 3025 Нежин 41841 Незалежная 331 Незнайка 87715 +Неймеген 1240 Нейпьидо 393 Некрасов 1331781 Немезида 21343 @@ -2234,7 +2324,9 @@ Z 768713 Нижнеленинское 369 Нижний 1157264 Низовцев 7630 +Ниигата 17653 Ника 681391 +Никаноров 36249 Никарагуа 310738 Никита 2126193 Никитин 949111 @@ -2256,6 +2348,7 @@ Z 768713 Ницца 58576 Нобель 86182 Новгород 1587586 +Новгородъ 93411 Новиков 1045775 Новодворская 15528 Новодворский 11713 @@ -2304,11 +2397,13 @@ Z 768713 Обама 51982 Оби 582103 Обихиро 587 +Оболенский 215047 Обухов 106251 Обь 277936 Обью 23836 Овен 64078 Овернь 6383 +Оверэйссел 672 Овсянников 129934 Овсянникова 60484 Огайо 138576 @@ -2319,9 +2414,11 @@ Z 768713 Один 10511739 Одиссей 217909 Ожегов 66731 +Оита 3351 Оймякон 6754 Ока 163035 Окадзаки 2230 +Окаяма 8018 Оке 205094 Океания 51988 Оки 408099 @@ -2341,6 +2438,7 @@ Z 768713 Олонец 27135 Ольборг 1507 Ольга 3738485 +Ольстер 11642 Оля 1127763 Оман 56757 Омейяд 304 @@ -2377,8 +2475,11 @@ Z 768713 ПГМ 3426 ПМЖ 15571 ПМР 257484 +ПНХ 509 p ПО 5365341 +ПРБ 6382 ПРО 301069 +ПТЗ 5860 ПТУ 345026 Павел 5208911 Павлов 1535869 @@ -2422,6 +2523,7 @@ Z 768713 Пасхою 4023 Пасху 196516 Патрушев 36430 +Паустовский 203945 Пауфошима 1939 Пахмутов 825 Пахмутова 14403 @@ -2431,6 +2533,7 @@ Z 768713 Пелагея 242674 Пелевин 47396 Пемзашен 337 +Пенджаб 39680 Пенза 184168 Пенсильвания 74875 Пентагон 112922 @@ -2473,6 +2576,7 @@ Z 768713 Пиренеи 38458 Пирка 363 Пирогов 248286 +Писание 243493 Питер 1059454 Питсбург 6466 Питтак 3666 @@ -2524,6 +2628,7 @@ Z 768713 Полтава 180336 Польша 1477347 Поляков 593057 +Полянский 217404 Попов 1936366 Порошенко 35838 Портленд 16535 @@ -2551,6 +2656,7 @@ Z 768713 Причерноморье 243504 Приштина 3686 Продик 7227 +Проклов 5191 Прокопчук 18125 Прокофьев 412715 Прокруст 3951 @@ -2619,6 +2725,7 @@ Z 768713 Расея 14083 Раскольников 308488 Распутин 350613 +Ратников 34615 Рахманинов 187237 Рахов 7994 Раша 17753 @@ -2656,6 +2763,7 @@ Z 768713 Родезия 36699 Родиния 1215 Родион 395555 +Родионов 276878 Роднин 8323 Родноверие 329 Рождества 601872 @@ -2667,6 +2775,7 @@ Z 768713 Роза 851321 Розо 2668 Ройзман 17110 +Роколл 5747 Роксана 57384 Роман 2668993 Романов 727840 @@ -2686,6 +2795,7 @@ Z 768713 Ростехнадзор 9328 Ростислав 204436 Ростов 1452895 +Роттердам 35057 Рощин 120782 Руан 30318 Руанда 37092 @@ -2693,6 +2803,7 @@ Z 768713 Румои 1283 Румыния 580676 Румынія 7231 +Румянцев 398479 Рунет 3630 Рунета 9786 Рунете 8499 @@ -2746,6 +2857,7 @@ Z 768713 Савойя 15716 Савченко 292235 Сага 58499 +Сазонов 281444 Сайтама 5478 Сакартвело 44276 Салехард 34060 @@ -2765,6 +2877,7 @@ Z 768713 Сантьяго 151390 Санья 2840 Саня 502646 +Сапега 69123 Саппоро 25556 Сараева 23731 Сараево 63017 @@ -2799,6 +2912,7 @@ Z 768713 Свердловых 2263 Света 1252646 Светлана 1192285 +Светлов 190383 Светов 29543 Световит 1804 Светогорск 2611 @@ -2807,6 +2921,7 @@ Z 768713 Себу 10669 Севан 130981 Севастополь 672875 +Севастьянов 117997 Север 1125811 Северодонецк 7334 Седан 12667 @@ -2814,6 +2929,7 @@ Z 768713 Селена 85014 Семен 2405960 Семенов 1304879 +Семенцов 18599 Семирамида 21839 Семирамиды 24718 Сена 133912 @@ -2836,6 +2952,8 @@ Z 768713 Сиань 15502 Сибирь 2864694 Сибуя 2487 +Сига 11650 +Сидзуока 5709 Сидней 116348 Сидон 14228 Сидор 133708 @@ -2846,6 +2964,7 @@ Z 768713 Сикоку 25954 Силезия 32411 Сильвия 154307 +Симане 1883 Симеонов 16861 Симонид 9554 Симонидъ 383 @@ -2863,8 +2982,16 @@ Z 768713 Синельниково 17061 Синтия 49548 Синьцзян 69740 +Сирией 76424 +Сириею 1929 +Сирии 849138 Сирил 25626 +Сирию 170094 Сирия 200367 +Сиріей 833 +Сиріею 545 +Сиріи 20750 +Сирію 6292 Сирія 3232 Сисиан 2594 Сицзан 262 @@ -2886,6 +3013,7 @@ Z 768713 Словакия 120441 Словакія 303 Словения 71326 +Слуцкий 139596 Смехов 23103 Смирнов 1925874 Смит 679353 @@ -2902,6 +3030,7 @@ Z 768713 Соболь 106732 Собчак 77343 Совбез 3536 +Советск 23861 Совинформбюро 127864 Совмин 19319 Совнарком 268153 @@ -2913,6 +3042,7 @@ Z 768713 Солнце 2671372 Соловей 223408 Соловки 110039 +Солодов 34321 Соломин 90146 Солон 47208 Солонъ 2880 @@ -2921,9 +3051,11 @@ Z 768713 Соня 1142871 Сорати 613 Сорокин 599040 +Сотников 115798 София 957714 Софья 1264069 Софія 21349 +Сочах 2025 Сочи 611809 Союз 6232856 Соя 34987 @@ -2950,9 +3082,11 @@ Z 768713 Станиславский 492085 Старобельск 9622 Старовойтов 26875 +Старовойтова 29745 Стася 70927 Статкевич 3371 Стаханов 47077 +Стаценко 16459 Степан 2334202 Степанаван 4002 Степанакерт 11578 @@ -2977,6 +3111,7 @@ Z 768713 Суворов 804931 Сугинами 249 Судан 143568 +Суздаль 129670 Суккот 8842 Суккота 777 Суккоте 309 @@ -3074,13 +3209,16 @@ Z 768713 Тигр 173096 Тигрис 3559 Тигръ 1139 +Тилбург 936 Тимофей 709159 Тимошенко 349177 +Тимченко 72004 Тиньков 3755 Тир 124147 Тирана 19406 Тирасполь 53639 Тисифона 902 +Титан 93795 Титов 340687 Тифлис 407217 Тифлиса 161748 @@ -3092,6 +3230,7 @@ Z 768713 Того 1212031 Токати 2449 Токио 789292 +Токусима 2179 Толик 363820 Толоконников 23161 Толстая 251731 @@ -3112,6 +3251,9 @@ Z 768713 Тору 75589 Торы 161324 Тосима 351 +Тотиги 2784 +Тоттори 2700 +Тояма 11412 Трайковский 231 Трамп 41600 Третьяк 52125 @@ -3178,6 +3320,7 @@ Z 768713 Украиною 3459 Украину 732157 Украины 6547897 +Улаанбаатар 3781 Уланов 47180 Улисс 75393 Улицкий 10203 @@ -3194,6 +3337,7 @@ Z 768713 Урумчи 43790 Уссурийск 30612 Устинов 232439 +Утрехт 11493 Уфа 611410 Ухань 18216 Ушаков 515352 @@ -3233,12 +3377,14 @@ Z 768713 Фесенко 66225 Фессалия 8791 Фибоначчи 33847 +Фивы 51208 Фиджи 85142 Филипп 1269155 Филиппины 200400 Финляндия 572203 Финляндія 23966 Фишман 44693 +Флеволанд 501 Флоренция 115123 Флорида 96006 Фокс 137595 @@ -3255,9 +3401,11 @@ Z 768713 Френкель 140412 Фригия 7193 Фридман 207086 +Фрисландия 3981 Фритаун 6052 Фриуль 1239 Фрунзе 1535919 +Фукуи 7649 Фукуока 13270 Фукусима 12083 Фунафути 3104 @@ -3275,6 +3423,7 @@ Z 768713 Хам 75752 Хама 40908 Хамас 10715 +Ханджян 5235 Ханой 48785 Ханук 507 Ханука 6693 @@ -3289,6 +3438,7 @@ Z 768713 Харитон 131263 Харитонов 220017 Харламов 112367 +Харлем 5304 Харрис 77473 Хартум 15490 Харьков 1509721 @@ -3308,10 +3458,13 @@ Z 768713 Хеллоуином 217 Хеллоуину 377 Хельсинки 391396 +Херлен 148 Херсон 151195 +Хертогенбос 832 Хилон 9452 Хиль 21626 Хино 3358 +Хиого 2702 Хирадо 1493 Хиросаки 756 Хиросима 44025 @@ -3471,6 +3624,7 @@ Z 768713 Шарапов 105924 Шарлотта 243746 Шарлоттаун 219 +Шарль 298768 Шахла 1463 Шахназаров 35104 Шахрияр 4736 @@ -3483,6 +3637,7 @@ Z 768713 Швейцарія 14934 Швеция 671152 Швеція 25656 +Шебекино 7176 Шеварднадзе 167631 Шевченко 1589429 Шевчук 145243 @@ -3497,6 +3652,7 @@ Z 768713 Шереметьево 78770 Шестаков 173730 Шива 70845 +Шизгара 819 Шикотан 34142 Ширак 34650 Шлосберг 3507 @@ -3518,6 +3674,7 @@ Z 768713 Щ 264296 Щедрин 524070 Щекочихин 6783 +Щукин 181644 Ъ 302869 Ы 678064 Ыгыатта 418 @@ -3548,6 +3705,7 @@ Z 768713 Эйбел 855 Эйбрахам 1004 Эйзенштейн 183005 +Эйндховен 2244 Эйнштейн 369797 Эйрбас 845 Эквадор 77226 @@ -3572,6 +3730,7 @@ Z 768713 Энергия 1026274 Энергодар 749 Энн 304842 +Энсхеде 1018 Энтони 193248 Эол 15878 Эос 23466 @@ -3619,6 +3778,7 @@ Z 768713 Юрий 3075357 Юстас 32089 Юстаса 9961 +Юсупов 166379 Юта 66193 Юшенков 11512 Ющенко 126398 @@ -3628,6 +3788,7 @@ Z 768713 Явлинский 58309 Яворов 11094 Ядвига 79197 +Язов 25553 Язон 42520 Яков 1659817 Яковенко 133528 @@ -3635,6 +3796,8 @@ Z 768713 Якутск 460520 Ялта 167834 Яма 125836 +Ямагата 13447 +Ямагути 18561 Ямайка 47267 Ямайке 37343 Ямайки 49813 @@ -3642,6 +3805,7 @@ Z 768713 Ямайкою 105 Ямайку 15686 Ямал 70074 +Яманаси 3656 Ямато 50868 Ямвлих 7298 Ямвлихъ 145 @@ -6320,6 +6484,7 @@ Z 768713 адъютанту 101255 адъютанты 75396 адыгейский 15290 +адыгский 6917 адюльтер 17100 адюльтера 13435 адюльтерам 225 @@ -7934,6 +8099,7 @@ Z 768713 алычой 5283 алычу 7613 аль 978500 +альба 73496 альбатрос 13665 альбатроса 10166 альбатросам 605 @@ -9201,6 +9367,7 @@ Z 768713 анимешник 117 анимешники 129 анимешников 191 +анимешный 145 анимэ 2945 анион 174643 аниона 242350 @@ -10014,6 +10181,7 @@ Z 768713 ападану 345 ападаны 1213 апай 13574 +апайка 273 апартамент 8101 апартамента 4043 апартаментам 9671 @@ -10190,9 +10358,13 @@ Z 768713 апокалипсисах 755 апокалипсисе 6897 апокалипсисов 2775 +апокалипсисовъ 158 апокалипсисом 5519 +апокалипсисомъ 109 апокалипсису 4156 +апокалипсисъ 713 апокалипсисы 2321 +апокалипсисѣ 201 апокалиптика 4241 апокопа 1851 апокопе 447 @@ -10974,6 +11146,7 @@ Z 768713 аристократом 40414 аристократу 14381 аристократы 144575 +аристократія 35448 аристотелизм 6571 аристотелизма 12878 аристотелизме 971 @@ -11785,6 +11958,7 @@ Z 768713 ассимилировало 2537 ассимилированный 3628 ассимилировать 50111 +ассимилироваться 20190 ассимилируем 224 ассимилируемый 628 ассимилирует 17701 @@ -13761,6 +13935,7 @@ Z 768713 баландою 354 баланду 31534 баланды 26266 +баланит 511 баланс 1892386 баланса 3273714 балансам 28414 @@ -14436,6 +14611,7 @@ Z 768713 барабаня 29375 барабанят 11125 барабанящий 1191 +барабора 205 барак 266525 барака 224002 баракам 29089 @@ -15708,6 +15884,7 @@ Z 768713 безболезненно 190611 безболезненный 29114 безбородый 22969 +безбрадый 171 безбрачие 21918 безбрачием 1337 безбрачии 5975 @@ -16103,6 +16280,7 @@ Z 768713 безобразницей 109 безобразницу 297 безобразницы 293 +безобразничать 20673 безобразно 143655 безобразны 19771 безобразный 77108 @@ -16346,6 +16524,7 @@ Z 768713 бела 300281 белам 691 белами 550 +беларус 1674 белах 1013 белая 1858056 белгородский 5731 @@ -16830,7 +17009,6 @@ Z 768713 березняков 25469 березняком 18423 березняку 4082 -березозол 1174 берем 442177 беременеет 5237 беременеешь 297 @@ -17598,6 +17776,7 @@ Z 768713 бетону 55006 бету 2690 беты 4002 +бефстроганов 7719 бечевка 14168 бечь 5106 бешен 4319 @@ -17625,13 +17804,14 @@ Z 768713 бзди 4618 p бздим 93 p бздит 501 p -бздите 300 p +бздите 300 бздишь 417 p бздун 361 p бздуна 109 бздунов 115 бздуны 132 бздят 345 p +бзик 10026 би 393416 биатлон 6792 биатлона 3668 @@ -19400,7 +19580,7 @@ Z 768713 блюя 830 бля 76737 p блядей 11101 p -бляди 16730 p +бляди 16730 блядина 1591 p блядовал 282 блядовала 269 @@ -20943,6 +21123,7 @@ Z 768713 борщи 20469 борщом 42016 борщу 9053 +борщъ 917 боры 99836 борьба 9122877 борьбе 14756778 @@ -21988,6 +22169,7 @@ Z 768713 брильянтом 4469 брильянту 349 брильянты 27840 +бристольский 1375 британец 25103 британка 1733 британке 197 @@ -22973,6 +23155,7 @@ Z 768713 букварями 3327 букварях 6008 буквах 51152 +буквахъ 4120 букве 215032 буквенный 23834 буквиц 4313 @@ -23008,6 +23191,7 @@ Z 768713 буквочку 467 буквою 48857 букву 599404 +буквъ 46807 буквы 2741033 буке 8067 букет 648153 @@ -24396,6 +24580,7 @@ Z 768713 в 4105341891 в-третьих 876708 в-четвертых 179060 +вава 2789 вавилонский 26042 вавилонян 32722 вавилонянам 4013 @@ -24466,6 +24651,7 @@ Z 768713 вагою 584 вагу 5464 важен 1192117 +важенка 5541 важна 1230040 важнее 1575807 важнейший 754503 @@ -24521,6 +24707,7 @@ Z 768713 вайе 1282 вайей 529 вайи 16737 +вайфай 1440 вайшье 138 вайшьев 4690 вайшьей 323 @@ -24886,6 +25073,7 @@ Z 768713 вандалом 2241 вандалу 459 вандалы 31975 +вандейский 596 ване 8423 ванили 41618 ванилин 46920 @@ -26882,7 +27070,6 @@ Z 768713 вереницею 8326 вереницу 70013 вереницы 114229 -вересень 2108 вереск 41284 вереска 46529 верескам 183 @@ -27945,6 +28132,16 @@ Z 768713 вешающийся 139 вешая 26632 вешаясь 964 +вешек 8630 +вешка 4383 +вешкам 3525 +вешками 10328 +вешках 585 +вешке 1573 +вешки 24999 +вешкой 2392 +вешкою 92 +вешку 5927 вешний 34219 вешу 8717 вещ 32738 @@ -28332,6 +28529,7 @@ Z 768713 взбираясь 42811 взбитый 15005 взбить 138914 +взбодрите 217 взбодрить 23007 взболтав 1389 взболтаем 249 @@ -33642,6 +33840,7 @@ Z 768713 воздела 12245 воздели 3463 воздело 228 +возделывать 105754 возденем 191 возденет 1737 возденете 135 @@ -34178,6 +34377,7 @@ Z 768713 вознесения 36354 вознесениями 113 вознесениях 151 +вознесенский 4240 вознеси 6924 вознесись 1667 вознесите 2233 @@ -35487,6 +35687,7 @@ Z 768713 воодушевляли 36859 воодушевляло 20771 воодушевлять 28298 +воодушевляться 4668 воодушевляю 300 воодушевляют 24054 воодушевляющий 4761 @@ -36199,6 +36400,7 @@ Z 768713 воскресениям 5393 воскресениями 249 воскресениях 401 +воскресенский 1453 воскресенье 1707241 воскресеньем 22172 воскресенью 18470 @@ -37406,6 +37608,7 @@ Z 768713 вошло 1053029 вошь 85715 вошью 6408 +вощить 683 вою 70716 воюем 87487 воюет 226542 @@ -37725,6 +37928,7 @@ Z 768713 впопыхах 116401 впору 256861 впоследствии 6130014 +впотьмах 92832 вправду 922918 вправе 3639768 вправо 1658986 @@ -37774,6 +37978,7 @@ Z 768713 впрыснуть 9809 впрямую 128920 впрямь 1127473 +впрячь 13938 впускавший 282 впускаем 3625 впускаемый 453 @@ -38287,6 +38492,7 @@ Z 768713 врывающийся 5484 врываясь 32076 вряд 5181912 +врѣмя 233 всади 2340 всадив 6181 всадивши 178 @@ -40437,6 +40643,7 @@ Z 768713 вшах 8890 вшей 127618 вши 98751 +вшиветь 155 вшивость 22799 вшивый 16866 вширь 239976 @@ -46867,6 +47074,15 @@ Z 768713 высотки 51348 высоткой 5320 высотку 26542 +высотник 2532 +высотника 1549 +высотникам 327 +высотниками 393 +высотниках 195 +высотники 2470 +высотников 2956 +высотником 922 +высотнику 159 высотный 56797 высотой 2344695 высоток 18582 @@ -47548,6 +47764,7 @@ Z 768713 вытаскивают 62154 вытаскивающий 1833 вытаскивая 122515 +вытачивать 6465 вытащат 29419 вытащенный 12149 вытащи 18556 @@ -47760,6 +47977,7 @@ Z 768713 вытопчу 313 вытопчут 2829 вытопят 433 +выточить 12657 вытрави 508 вытравив 2729 вытравивший 195 @@ -48930,6 +49148,7 @@ Z 768713 габаритом 4448 габариту 4999 габариты 231387 +габитус 39423 габонский 321 гаваец 1169 гавайка 507 @@ -50293,6 +50512,7 @@ Z 768713 гематологию 699 гематология 6434 гемината 847 +гемма 7966 гемоглобин 76802 гемоглобина 401234 гемоглобинам 542 @@ -51014,6 +51234,8 @@ Z 768713 гигантский 479266 гиганту 23666 гиганты 192656 +гигатонн 547 +гигатонны 179 гигиена 182392 гигиене 126194 гигиенический 35242 @@ -51369,6 +51591,7 @@ Z 768713 гипнотизирующий 4673 гипнотизируя 12369 гипнотический 20328 +гипокауст 497 гипокористические 566 гипокористический 132 гипокористическим 125 @@ -52467,6 +52690,7 @@ Z 768713 гнобят 2215 гное 7383 гноем 29812 +гнозис 11665 гнои 1069 гноил 2171 гноила 923 @@ -52508,6 +52732,7 @@ Z 768713 гномон 5080 гному 21090 гномы 140228 +гносис 4782 гностицизм 12574 гностицизма 20892 гностицизме 4736 @@ -52587,7 +52812,10 @@ Z 768713 гнѣвъ 23235 гнѣзда 8976 гнѣздо 7120 +гнѣздомъ 1204 +гнѣзду 384 гнѣздышко 355 +гнѣздѣ 1068 го 27255777 гоацин 397 гоацина 937 @@ -53569,6 +53797,7 @@ Z 768713 гончары 39627 гончая 32238 гончий 5838 +гончих 60693 гонщик 25450 гонщика 16231 гонщикам 2847 @@ -53646,7 +53875,9 @@ Z 768713 гор 5315781 гора 1307014 горазд 107006 +горазда 11570 гораздо 11721357 +горазды 29851 горам 450763 горами 839011 горах 2617246 @@ -54119,6 +54350,7 @@ Z 768713 городишком 3596 городишку 1179 городишь 23283 +городище 640038 городка 847631 городкам 23841 городками 25358 @@ -54462,6 +54694,7 @@ Z 768713 госвласти 13066 госвласть 741 госвластью 881 +госграница 1529 госдепартамент 41907 госдепартамента 77259 госдепартаменте 15877 @@ -54780,6 +55013,7 @@ Z 768713 госуниверситетом 2750 госуниверситету 695 госуниверситеты 531 +госуслуги 1323 госучреждение 2247 госучреждением 465 госучреждении 1695 @@ -56705,6 +56939,8 @@ Z 768713 грызы 159 грызя 21015 грюйер 1263 +грюйера 345 +грюйером 107 гряд 226802 грядам 13566 грядами 79407 @@ -56743,6 +56979,7 @@ Z 768713 грязи 1677271 грязли 232 грязна 23120 +грязная 305582 грязнет 304 грязни 571 грязнил 788 @@ -56755,6 +56992,7 @@ Z 768713 грязнить 4841 грязнишь 248 грязно 387701 +грязное 223233 грязну 283 грязнуле 543 грязнулей 2357 @@ -56769,6 +57007,7 @@ Z 768713 грязнуть 348 грязнущий 314 грязны 35932 +грязные 622425 грязный 449383 грязню 67 грязня 897 @@ -57207,6 +57446,7 @@ Z 768713 гусеничный 42179 гуси 278912 гусиный 22768 +гусиными 13700 гусит 919 гусита 471 гуситам 2055 @@ -57823,6 +58063,8 @@ Z 768713 дачнику 2636 дачный 83744 дачу 916672 +дашнак 2729 +дашнакский 1425 дашь 302718 дашься 2021 даю 777044 @@ -58424,6 +58666,7 @@ Z 768713 дебетах 247 дебете 10890 дебетов 841 +дебетовый 3517 дебетом 11022 дебету 125244 дебеты 1135 @@ -59241,6 +59484,7 @@ Z 768713 декларировало 7669 декларированный 4213 декларировать 33803 +декларироваться 2799 декларируем 2234 декларируемый 6545 декларирует 60325 @@ -60676,6 +60920,7 @@ Z 768713 дефектами 281055 дефектах 97941 дефекте 25899 +дефективный 6409 дефектный 26644 дефектов 1523767 дефектом 116411 @@ -61041,6 +61286,7 @@ Z 768713 джоулям 279 джоулями 125 джоулях 5611 +джума 4322 джунглей 158492 джунгли 184061 джунглям 26560 @@ -61379,6 +61625,8 @@ Z 768713 диграфом 964 диграфу 195 диграфы 1559 +дидакт 2348 +дидактик 2341 дидактика 44189 дидактический 56056 диез 46621 @@ -62494,6 +62742,7 @@ Z 768713 длинах 194228 длине 2597501 длинен 48272 +длиненъ 3495 длинна 73559 длинная 992080 длиннее 955189 @@ -63675,6 +63924,7 @@ Z 768713 дождику 3017 дождись 21797 дождитесь 17421 +дождить 2257 дождичек 26811 дождичка 17699 дождичками 421 @@ -64543,6 +64793,7 @@ Z 768713 должных 113197 должок 50603 доли 3909454 +доливать 10327 долин 856419 долина 674536 долинам 259452 @@ -65237,6 +65488,7 @@ Z 768713 доплатою 779 доплату 59023 доплаты 222685 +доплачивать 23334 доплыв 5102 доплываем 253 доплывает 2103 @@ -65635,6 +65887,7 @@ Z 768713 дороешься 549 дорожа 35998 дорожает 26143 +дорожайший 48 дорожал 1857 дорожала 3495 дорожали 4689 @@ -68384,6 +68637,7 @@ Z 768713 дхармой 3574 дхарму 7606 дхармы 38299 +дщери 38333 дыб 1154 дыба 9578 дыбает 109 @@ -68752,6 +69006,7 @@ Z 768713 дятлом 8111 дятлу 3597 дятлы 33536 +діаконъ 14812 дѣва 2375 дѣдушка 3333 дѣдъ 5188 @@ -68777,6 +69032,7 @@ Z 768713 ебаный 4053 p ебать 10477 p ебаться 5991 p +ебашить 179 p ебель 518 ебеня 302 p еби 2204 @@ -69233,6 +69489,7 @@ Z 768713 ездите 42183 ездить 1090397 ездишь 39570 +ездиют 3194 ездой 47297 ездок 36880 ездока 11055 @@ -69445,6 +69702,7 @@ Z 768713 еретиком 42868 еретику 8722 ерзать 23235 +ерик 9227 ермолка 6201 ермолками 557 ермолках 3217 @@ -70176,6 +70434,7 @@ Z 768713 желобами 22939 желобах 29094 желобов 99701 +желобок 52599 желта 8144 желтевший 629 желтеет 44705 @@ -70918,6 +71177,7 @@ Z 768713 жирафу 4199 жирафы 20638 жирах 34661 +жирдяй 3004 жире 81310 жирев 99 жиреем 350 @@ -71426,6 +71686,7 @@ Z 768713 жуть 149859 жутью 17809 жутями 175 +жучище 297 жучка 33235 жучкам 2073 жучками 11950 @@ -77168,6 +77429,7 @@ Z 768713 закроюсь 3131 закроют 78508 закроются 26673 +закругляться 21509 закружат 3607 закружатся 4438 закруженный 505 @@ -77879,6 +78141,7 @@ Z 768713 залогу 36111 заложат 11392 заложатся 243 +заложен 522595 заложенный 119906 заложи 16662 заложив 237267 @@ -82957,6 +83220,12 @@ Z 768713 засопит 1004 засопишь 113 засопят 207 +засор 3733 +засора 1855 +засорам 343 +засорами 269 +засорах 141 +засоре 794 засори 225 засорив 648 засоривший 205 @@ -82969,6 +83238,10 @@ Z 768713 засорите 280 засорить 9613 засоришь 357 +засоров 2497 +засором 207 +засору 212 +засоры 1505 засорю 62 засорявший 119 засоряем 1171 @@ -86714,6 +86987,13 @@ Z 768713 звякнут 2095 звякнуть 10973 звѣзда 8066 +звѣздой 2469 +звѣздочка 641 +звѣздою 1958 +звѣзду 2713 +звѣзды 15558 +звѣздѣ 784 +згр 1593 здание 3599658 зданием 374644 здании 1363949 @@ -87409,6 +87689,7 @@ Z 768713 зимующий 9253 зимуя 2779 зимы 1795541 +зиндан 10190 зипун 33085 зипуна 9982 зипунам 417 @@ -90631,6 +90912,15 @@ Z 768713 издери 257 издеру 207 издерут 272 +издольщик 6188 +издольщика 6375 +издольщикам 3371 +издольщиками 6015 +издольщиках 411 +издольщики 11690 +издольщиков 26172 +издольщиком 2213 +издольщику 1401 издольщина 9931 издольщине 1797 издольщиной 816 @@ -90996,6 +91286,7 @@ Z 768713 излучит 910 излучите 46 излучить 3767 +излюбленные 90702 излюбленный 108675 измается 527 измаешься 637 @@ -94208,6 +94499,7 @@ Z 768713 инструктажем 8079 инструктажи 17125 инструктажу 7053 +инструктировать 31368 инструктор 379669 инструктора 249776 инструкторам 21526 @@ -94404,6 +94696,9 @@ Z 768713 интеллигенциям 123 интеллигенциями 539 интеллигенциях 239 +интендант 66395 +интендантский 6640 +интендантство 21445 интенсивен 35521 интенсивна 41643 интенсивно 2132754 @@ -94545,6 +94840,7 @@ Z 768713 интернационалистами 42023 интернационалистах 4461 интернационалисте 2095 +интернационалистка 1133 интернационалистов 243777 интернационалистом 32589 интернационалисту 6571 @@ -95013,6 +95309,23 @@ Z 768713 иосифлянином 498 иосифлянину 93 иота 2342 +иподиакон 3345 +иподиакона 4709 +иподиаконам 313 +иподиаконами 671 +иподиаконах 97 +иподиаконов 2169 +иподиаконом 2438 +иподиакону 427 +иподиаконы 2591 +иподьякон 865 +иподіакона 704 +иподіаконами 101 +иподіаконамъ 189 +иподіаконовъ 564 +иподіакономъ 131 +иподіаконъ 336 +иподіаконы 463 ипостасей 54280 ипостаси 185287 ипостась 105638 @@ -96244,6 +96557,20 @@ Z 768713 использующую 16615 используя 3704954 используясь 3235 +испольщик 3026 +испольщика 4094 +испольщикам 1505 +испольщиками 2043 +испольщиках 145 +испольщики 5023 +испольщиков 9890 +испольщиком 1067 +испольщику 913 +испольщина 6985 +испольщине 2173 +испольщиной 675 +испольщину 1632 +испольщины 7652 испорти 3034 испортив 18233 испортивши 238 @@ -97919,6 +98246,7 @@ Z 768713 кагана 89075 каганам 1489 каганами 3655 +каганат 53650 каганах 483 кагане 4352 каганов 14181 @@ -98021,6 +98349,7 @@ Z 768713 кадром 178429 кадру 30396 кадры 2230504 +кадуцей 5029 кадык 79817 кадыка 10181 кадыкам 131 @@ -98467,6 +98796,7 @@ Z 768713 калейдоскопами 275 калейдоскопах 223 калейдоскопе 54003 +калейдоскопический 2055 калейдоскопов 625 калейдоскопом 14469 калейдоскопу 2337 @@ -98764,6 +99094,11 @@ Z 768713 калят 1397 калятся 475 камамбер 4992 +камамбера 1950 +камамбере 105 +камамбером 699 +камамберу 83 +камамберы 179 камбал 35687 камбала 53675 камбалам 649 @@ -98923,6 +99258,7 @@ Z 768713 камешков 78169 камешком 28910 камешку 13572 +камея 10623 камзол 100150 камзола 42009 камзолам 471 @@ -100807,6 +101143,7 @@ Z 768713 кастингу 1584 кастой 24082 кастою 1386 +кастрат 7522 кастрацией 8386 кастрации 83679 кастраций 511 @@ -101729,6 +102066,7 @@ Z 768713 квалифицировано 29840 квалифицированы 49866 квалифицировать 219118 +квалифицироваться 68971 квалифицируем 3271 квалифицируемый 1374 квалифицирует 41095 @@ -102573,6 +102911,7 @@ Z 768713 килокалория 1363 километр 392809 километра 619019 +километраж 11492 километрам 24795 километрами 39292 километрах 1012224 @@ -103863,6 +104202,7 @@ Z 768713 клепсидрой 906 клепсидру 1586 клепсидры 3443 +клептократия 895 клептоман 1802 клептомана 841 клептоманами 157 @@ -104942,6 +105282,7 @@ Z 768713 кобзою 189 кобзу 1995 кобзы 3371 +коби 1965 кобр 9838 кобра 39432 кобрам 495 @@ -106060,6 +106401,7 @@ Z 768713 колледжем 12902 колледжи 67795 колледжу 15100 +коллежский 107400 коллектив 3226454 коллектива 4704042 коллективам 288793 @@ -107226,6 +107568,7 @@ Z 768713 коммерциях 199 коммерческий 335532 коммивояжер 17663 +коммит 442 коммун 431592 коммуна 328672 коммуналка 14625 @@ -107953,6 +108296,7 @@ Z 768713 конвоирах 771 конвоире 479 конвоиров 59367 +конвоировать 14349 конвоиром 9447 конвоиру 10123 конвоиры 50786 @@ -108913,6 +109257,7 @@ Z 768713 контрибуциями 5265 контрибуциях 2049 контринтуитивный 119 +контрнаступ 485 контрнаступление 210104 контрой 6921 контроле 1392427 @@ -110271,6 +110616,7 @@ Z 768713 коричнево 120693 коричневы 1631 коричневый 508761 +коричник 704 коричный 8416 коришь 4202 корка 133869 @@ -110906,6 +111252,7 @@ Z 768713 корту 11951 корты 18489 кору 447514 +корунд 44772 корч 2647 корча 10171 корчам 559 @@ -111131,6 +111478,7 @@ Z 768713 косметичку 20753 косметолог 11461 космический 362552 +космодесант 283 космодром 46443 космодрома 71773 космодромам 379 @@ -112673,6 +113021,7 @@ Z 768713 креном 30033 крену 15016 крены 4319 +крень 1406 креню 49 кренюсь 129 креня 1821 @@ -112866,6 +113215,7 @@ Z 768713 крестило 754 крестилось 2952 крестился 112847 +крестильный 5213 крестим 1958 крестимся 4007 крестимый 82 @@ -113487,6 +113837,7 @@ Z 768713 кровью 3430080 кровям 953 кровями 2439 +кровянка 699 кровяной 79719 кровях 4257 крое 11388 @@ -113942,16 +114293,28 @@ Z 768713 крупицу 36031 крупицы 103728 крупна 9675 +крупная 1357234 крупнейший 593910 крупно 465119 крупногабаритный 4625 +крупного 4474203 +крупное 1216251 +крупной 2662440 крупнокалиберный 24395 +крупном 566033 крупномасштабный 23563 +крупному 353128 крупнотравье 2150 крупнотравьем 1478 крупнотравья 8347 +крупною 16635 +крупную 877512 крупны 42856 +крупные 7470077 крупный 2853078 +крупным 2476891 +крупными 2556408 +крупных 12601519 крупов 2487 крупой 74152 крупом 16453 @@ -114165,6 +114528,8 @@ Z 768713 крысе 30240 крысиный 25865 крысой 47142 +крысолов 6189 +крысоловка 1153 крысою 843 крысу 115416 крысы 786868 @@ -114255,6 +114620,7 @@ Z 768713 крючьях 7833 кря 13365 кряду 138655 +кряж 101471 крякавший 81 крякаем 91 крякает 13571 @@ -114575,6 +114941,7 @@ Z 768713 кудахчу 135 кудахчут 6323 кудахчущий 233 +кудель 20893 кудесник 41309 кудесы 1437 кудрей 67359 @@ -115014,6 +115381,7 @@ Z 768713 кунжутом 11974 кунжуту 844 кунжуты 467 +куни 7003 куниц 37504 куница 49095 куницам 955 @@ -115118,6 +115486,7 @@ Z 768713 купая 6972 купаясь 43560 купе 692069 +купейный 6778 купелей 1567 купели 87278 купель 59880 @@ -115321,6 +115690,7 @@ Z 768713 курениями 3039 курениях 385 куренный 1117 +курень 45616 куржа 269 кури 42917 курив 539 @@ -119427,6 +119797,7 @@ Z 768713 листьями 941371 листьях 990920 лису 88489 +лисъ 914 лисы 130445 лисят 9779 лисята 7482 @@ -121076,6 +121447,7 @@ Z 768713 лохмотьях 121916 лохмы 13245 лохов 28691 +лохол 183 p лохом 11750 лоху 3577 лоцман 65838 @@ -122304,7 +122676,16 @@ Z 768713 ляшку 670 лѣвый 21305 лѣзть 1547 +лѣса 109733 +лѣсами 27048 +лѣсамъ 4843 +лѣсахъ 13196 +лѣсовъ 51935 +лѣсомъ 20451 +лѣсу 28225 лѣсъ 41484 +лѣсы 349 +лѣсѣ 1483 лѣто 49508 лѣшій 402 м 39669202 @@ -123060,7 +123441,9 @@ Z 768713 мало-помалу 483214 маловажный 9456 маловат 19918 +маловата 13029 маловато 228373 +маловаты 5535 маловероятный 8720 малогабаритный 29527 малого 2561234 @@ -123139,6 +123522,7 @@ Z 768713 малороссиянине 338 малороссиянином 921 малороссиянину 835 +малосодержательный 1689 малосольный 3932 малостей 1515 малости 413978 @@ -123714,6 +124098,8 @@ Z 768713 манкой 3915 манком 3679 манку 7464 +манкурт 2672 +манна 35778 манный 4547 мановение 6931 мановением 29383 @@ -127281,6 +127667,7 @@ Z 768713 мечите 4752 мечитесь 637 мечом 1003727 +мечт 8464 мечта 1444060 мечтав 606 мечтавший 46198 @@ -127616,6 +128003,7 @@ Z 768713 мизинцем 55065 мизинцу 5289 мизинцы 8619 +мизинчик 10677 мик 65612 мика 26625 микадо 32955 @@ -129018,6 +129406,7 @@ Z 768713 многодетное 963 многодетный 7685 многое 6010875 +многоженец 3288 многоженство 49052 многозначительно 510138 многозначительный 50003 @@ -130549,6 +130938,7 @@ Z 768713 монтировало 465 монтированный 1603 монтировать 60876 +монтироваться 9461 монтировка 11397 монтируем 3436 монтируемый 3834 @@ -130869,6 +131259,7 @@ Z 768713 морозцем 31903 морозцу 12875 морозцы 3519 +морозъ 10573 морозы 515242 морозь 6007 морозьте 213 @@ -131433,6 +131824,10 @@ Z 768713 мохом 52288 моху 6008 моцарелла 6172 +моцарелле 115 +моцареллой 2739 +моцареллу 2589 +моцареллы 4543 моцартовский 4252 моча 102842 мочала 18147 @@ -135314,6 +135709,7 @@ Z 768713 надменностью 26455 надменны 10909 надменный 104789 +надмножество 632 надо 53608241 надоб 7804 надоба 1581 @@ -136624,12 +137020,14 @@ Z 768713 накиньте 6023 накипев 348 накипевший 485 -накипей 2277 накипел 332 накипела 2087 накипели 923 накипело 32601 накипеть 571 +накипи 55483 +накипит 592 +накипят 157 накладка 58696 накладкам 3501 накладками 65343 @@ -137748,6 +138146,7 @@ Z 768713 намеревающийся 7405 намереваясь 336617 намерен 1144514 +намерена 340680 намерение 1187321 намерением 513123 намерении 718832 @@ -137759,6 +138158,8 @@ Z 768713 намерениях 396924 намеренно 789231 намеренный 16898 +намерено 135036 +намерены 677407 намерить 773 намертво 241434 наместник 283471 @@ -139067,6 +139468,7 @@ Z 768713 наравне 873110 нарам 33044 нарами 56205 +нараспашку 130551 нараспев 178489 нарастав 610 нараставший 14202 @@ -140313,6 +140715,9 @@ Z 768713 наслышалось 105 наслышался 21685 наслышан 84701 +наслышана 17923 +наслышано 773 +наслышаны 43484 наслышаться 1381 наслышимся 139 наслышитесь 115 @@ -141546,6 +141951,7 @@ Z 768713 науськивают 4179 науськивающий 137 науськивая 1967 +наутек 118431 наутилус 1702 наутро 315586 научат 70721 @@ -142564,6 +142970,7 @@ Z 768713 неблагоразумию 812 неблагоразумия 3149 неблюй 385 +небный 5163 небо 6825072 небогат 25333 небогата 19143 @@ -143468,6 +143875,8 @@ Z 768713 недопили 429 недопитый 22910 недопить 467 +недоплатить 1418 +недоплачивать 1579 недопонимание 35767 недопониманием 6204 недопонимании 5107 @@ -144031,6 +144440,7 @@ Z 768713 неизменностью 18769 неизменны 66192 неизменный 196302 +неизменяемый 6666 неизмеримо 739841 неизмеримый 10390 неизреченный 7634 @@ -144240,6 +144650,7 @@ Z 768713 некрасиво 173329 некрасивы 17582 некрасивый 72750 +некрепкий 9299 некроз 85259 некроза 135672 некрозам 1357 @@ -145253,6 +145664,8 @@ Z 768713 неприличиях 187 неприлично 361789 неприличный 37441 +неприменимое 1497 +неприменимый 1451 неприметно 82061 неприметный 50988 непримиримостей 418 @@ -145600,6 +146013,7 @@ Z 768713 несвойственный 20569 несгибаемый 27074 несговорчивый 12186 +несделанный 421 несдержанности 18931 несдержанность 38010 несдержанностью 7003 @@ -146066,6 +146480,7 @@ Z 768713 неумолимо 331554 неумолимый 75978 неумышленно 30384 +неумышленный 2614 неупакованный 383 неуплат 393 неуплата 17294 @@ -146320,6 +146735,7 @@ Z 768713 неэффективностью 16261 неэффективный 15392 нею 4446228 +нея 995989 неявка 42456 неявкам 365 неявками 1003 @@ -149478,6 +149894,7 @@ Z 768713 обертоны 29792 оберу 2161 оберут 7723 +обескровить 22919 обескуражат 281 обескураженный 37755 обескуражив 853 @@ -150624,6 +151041,7 @@ Z 768713 обледеневать 815 обледеневают 825 обледеневая 93 +обледеневшие 7944 обледеневший 5726 обледенеет 888 обледенеешь 115 @@ -155294,12 +155712,24 @@ Z 768713 общины 2622444 общителен 29022 общительна 9545 +общительная 21899 общительно 3431 +общительного 15395 +общительное 2420 +общительной 18396 +общительном 1987 +общительному 3505 общительности 40429 общительность 56193 общительностью 15862 +общительною 113 +общительную 2159 общительны 17859 +общительные 14845 общительный 86698 +общительным 51556 +общительными 8771 +общительных 7123 общностей 288476 общности 2094020 общность 1409468 @@ -160662,6 +161092,7 @@ Z 768713 оперируют 118791 оперирующий 10299 оперируя 70713 +опериться 3633 оперла 1267 оперлась 95666 оперлись 6791 @@ -163218,6 +163649,7 @@ Z 768713 осадку 71970 осадой 41310 осадок 993605 +осадочек 2931 осадочный 90146 осадою 7799 осаду 249891 @@ -164773,6 +165205,8 @@ Z 768713 особенный 521450 особи 999175 особливо 497609 +особливому 9045 +особливою 6823 особливый 16505 особняк 403068 особняка 309775 @@ -166788,9 +167222,11 @@ Z 768713 отводу 63044 отводы 64160 отводя 282258 +отводясь 95 отводят 173956 отводятся 94843 отводящий 22629 +отводящийся 133 отвоевав 7948 отвоевавши 180 отвоевавший 2149 @@ -169093,6 +169529,7 @@ Z 768713 отлову 8341 отловы 4244 отловят 2107 +отлогий 20561 отложат 10535 отложатся 3055 отложение 212948 @@ -173706,7 +174143,6 @@ Z 768713 отшучиваются 1049 отшучиваясь 3681 отшучусь 353 -отщепенец 18559 отщепенца 19363 отщепенцам 4927 отщепенцами 12879 @@ -174764,9 +175200,12 @@ Z 768713 очевидец 121082 очевидна 915684 очевидно 11006781 +очевидного 156011 +очевидному 34117 очевидности 181575 очевидность 113490 очевидностью 488687 +очевидною 15264 очевидны 411574 очевидный 241998 очевидца 167563 @@ -175178,6 +175617,7 @@ Z 768713 ошибся 1064522 ошибусь 80978 ошибутся 11801 +ошиваться 7307 ошикает 171 ошикала 594 ошикали 1478 @@ -176045,6 +176485,8 @@ Z 768713 пальчике 6820 пальчики 190131 пальчиков 31091 +пальчиковая 1819 +пальчиковый 1305 пальчиком 114945 пальчику 2142 палю 3218 @@ -176505,6 +176947,14 @@ Z 768713 папуасом 1847 папуасу 1336 папуасы 28814 +папул 6898 +папула 4122 +папулами 915 +папулах 287 +папуле 1385 +папулой 410 +папулу 629 +папулы 12283 папы 1141183 пар 3996686 пара 5408737 @@ -176646,6 +177096,7 @@ Z 768713 параллелям 28397 параллелями 53085 параллелях 35706 +паралогизм 1498 парам 191826 параметр 1638609 параметра 2697201 @@ -176740,7 +177191,7 @@ Z 768713 парацетамолом 1372 парацетамолу 155 параш 3236 -параша 16126 +параша 16126 p парашам 349 парашами 1035 парашах 280 @@ -177003,6 +177454,12 @@ Z 768713 парламенту 133069 парламенты 86433 пармезан 14265 +пармезана 8449 +пармезане 215 +пармезанов 193 +пармезаном 8703 +пармезану 551 +пармезаны 55 парная 59459 парне 75655 парней 985240 @@ -178544,6 +179001,7 @@ Z 768713 пеках 1405 пеке 5991 пеки 13896 +пекинец 483 пекинский 10809 пекись 3484 пеките 3179 @@ -179076,7 +179534,7 @@ Z 768713 пердел 787 пердела 247 пердели 398 -пердеть 2161 +пердеть 2161 p перди 620 пердит 1412 пердишь 244 @@ -179878,6 +180336,7 @@ Z 768713 переври 257 перевру 633 переврут 2252 +перевыполнять 40812 перевяжем 4821 перевяжет 5797 перевяжете 367 @@ -180839,6 +181298,7 @@ Z 768713 перезагрузку 7655 перезагрузок 938 перезагрузят 131 +перезапись 14905 перезаряди 429 перезарядив 2724 перезарядивший 101 @@ -182245,6 +182705,8 @@ Z 768713 перемкнули 123 перемкнуло 4243 перемкнуть 467 +перемога 2150 +перемочь 4359 перемыкает 505 перемыкали 115 перемыкало 143 @@ -183102,6 +183564,7 @@ Z 768713 перепродавало 425 перепродавать 12917 перепродавая 5067 +перепродавец 431 перепродавший 219 перепродадим 226 перепродадите 90 @@ -185414,6 +185877,7 @@ Z 768713 петициям 2179 петициями 15733 петициях 8985 +петиція 4737 петле 173592 петлей 225194 петлею 9445 @@ -187736,6 +188200,7 @@ Z 768713 плацкартами 471 плацкартах 329 плацкарте 3977 +плацкартный 7752 плацкартой 2130 плацкарту 4364 плацкарты 6679 @@ -187802,6 +188267,7 @@ Z 768713 плащи 164123 плащом 177217 плащу 15246 +плебей 26572 плебисцит 30034 плебисцита 43649 плебисцитам 293 @@ -188175,6 +188641,7 @@ Z 768713 плечах 1303075 плече 816699 плечевой 140247 +плечей 31352 плечи 4362722 плечика 9145 плечикам 22855 @@ -189799,6 +190266,7 @@ Z 768713 поверенным 90264 поверенными 15773 поверенных 81078 +повержен 52806 поверженный 43527 поверив 120369 поверивши 1506 @@ -190645,6 +191113,7 @@ Z 768713 повышающийся 8272 повышая 316592 повышаясь 28841 +повыше 600042 повышен 178365 повышение 9132396 повышением 2268934 @@ -190757,6 +191226,8 @@ Z 768713 погасший 17086 погасят 10199 погача 545 +погачи 229 +погачу 330 погашение 374510 погашением 63135 погашении 78019 @@ -191036,6 +191507,7 @@ Z 768713 погоду 1166294 погоды 1559319 погодь 11083 +погодя 278688 погодят 807 погожу 9724 поголовий 370 @@ -193410,6 +193882,7 @@ Z 768713 подкармливая 6821 подкаст 3507 подкаста 1577 +подкат 4003 подкати 1050 подкатив 4372 подкативши 106 @@ -194859,6 +195332,7 @@ Z 768713 подорожание 10303 подорожать 2329 подорожают 3431 +подороже 73504 подорожник 48550 подорожника 80627 подорожникам 253 @@ -196497,6 +196971,7 @@ Z 768713 подстригающий 147 подстригая 2576 подстриги 954 +подстригись 607 подстригите 2553 подстригла 4409 подстригли 6599 @@ -197410,7 +197885,17 @@ Z 768713 подъездами 15511 подъездах 54630 подъезде 379792 +подъездная 11801 +подъездного 24786 +подъездное 876 подъездной 59366 +подъездном 7817 +подъездному 1711 +подъездную 18501 +подъездные 62712 +подъездным 8444 +подъездными 13881 +подъездных 158039 подъездов 96463 подъездом 62945 подъезду 209464 @@ -200486,6 +200971,12 @@ Z 768713 полиграфом 1801 полиграфу 765 полиграфы 899 +полиелее 905 +полиелеем 1169 +полиелеи 285 +полиелей 2891 +полиелею 105 +полиелея 1330 поликлиник 139745 поликлиника 103486 поликлиникам 5649 @@ -200887,6 +201378,7 @@ Z 768713 полночей 337 полночи 142564 полноэкранный 1956 +полную 4685228 полны 1005467 полный 5420153 поло 396043 @@ -200992,6 +201484,7 @@ Z 768713 пологов 6535 пологом 366620 пологу 9185 +пологій 1835 положат 94793 положатся 1508 положен 738599 @@ -203190,6 +203683,7 @@ Z 768713 понаехали 20189 понаехало 17981 понаехать 415 +понапрасну 234741 понарошку 47523 понаслышке 190213 понастроив 564 @@ -203494,6 +203988,8 @@ Z 768713 пончике 367 пончики 24192 пончиков 12280 +пончиковая 267 +пончиковый 181 пончиком 2278 пончику 447 поныне 757254 @@ -205130,6 +205626,7 @@ Z 768713 поросятах 11240 поротый 1681 пороть 78845 +пороться 781 порох 350755 пороха 407462 порохам 1385 @@ -206814,6 +207311,7 @@ Z 768713 поспите 9739 поспишь 17736 посплю 36835 +посполитый 2633 поспорив 7924 поспоривши 283 поспоривший 326 @@ -207474,6 +207972,7 @@ Z 768713 построениями 78498 построениях 204455 построенный 657531 +построже 44382 построив 105616 построивши 1195 построивший 26095 @@ -213515,6 +214014,7 @@ Z 768713 прекословием 886 прекословии 719 прекословий 1198 +прекословить 22071 прекословию 351 прекословия 9333 прекрасен 340295 @@ -217422,6 +217922,7 @@ Z 768713 признающий 44025 признающийся 1931 призов 80446 +призовая 3480 призови 16696 призовите 10474 призовой 18936 @@ -218792,11 +219293,15 @@ Z 768713 применилось 835 применился 2789 применим 461332 +применимого 28575 +применимое 24015 +применимому 3365 применимости 569089 применимость 209182 применимостью 6299 применимся 91 применимый 28225 +применимым 45994 применись 305 применит 35279 примените 20765 @@ -219215,6 +219720,7 @@ Z 768713 примощусь 707 примою 192 приму 283394 +примула 6902 примус 56758 примуса 22458 примусам 341 @@ -220365,7 +220871,11 @@ Z 768713 приправит 484 приправить 31755 приправишь 117 +приправленная 10876 +приправленное 8295 +приправленные 11910 приправленный 15437 +приправленных 5817 приправлю 387 приправляем 910 приправляемый 122 @@ -224383,6 +224893,7 @@ Z 768713 прогнозирования 1360519 прогнозированный 355 прогнозировать 338141 +прогнозироваться 4435 прогнозируем 6437 прогнозируемый 41617 прогнозирует 34669 @@ -226844,6 +227355,11 @@ Z 768713 прокручивающий 213 прокручивая 28238 прокручу 1216 +проксемика 1209 +проксемике 247 +проксемики 909 +проксемикой 125 +проксемику 279 прокси 23733 проку 152478 прокуратор 57130 @@ -228634,6 +229150,7 @@ Z 768713 пророков 384095 пророком 197220 пророку 95137 +пророкъ 22685 пророни 904 проронив 51233 проронивши 125 @@ -230026,6 +230543,7 @@ Z 768713 простужаются 4161 простужая 108 простужаясь 262 +простужен 19973 простуженный 30987 простужу 513 простужусь 7571 @@ -232508,6 +233026,16 @@ Z 768713 прячься 24786 прячьте 12108 прячьтесь 12251 +пріобрѣла 18278 +пріобрѣли 29937 +пріобрѣло 10250 +пріобрѣсти 72049 +пріобрѣтите 113 +пріобрѣту 253 +пріобрѣтутъ 4723 +пріобрѣтши 283 +пріобрѣтшій 523 +пріобрѣтя 1979 прѣсный 266 пса 474461 псалма 82677 @@ -234752,6 +235280,7 @@ Z 768713 рабам 148847 рабами 481827 рабах 46302 +рабби 114846 рабе 88282 раблезианский 2097 рабов 1664522 @@ -236411,6 +236940,7 @@ Z 768713 развила 81520 развилась 293959 развили 175794 +развилина 1599 развились 273389 развилка 39235 развилкам 1441 @@ -239135,6 +239665,7 @@ Z 768713 размечешь 189 размечи 369 размечите 239 +размечтаться 2342 размечу 1365 размечут 1019 размешав 4473 @@ -239225,6 +239756,8 @@ Z 768713 разминают 10539 разминающий 444 разминая 77321 +разминирование 14276 +разминировать 12934 разминись 189 разминка 34176 разминкам 173 @@ -241347,6 +241880,9 @@ Z 768713 районировании 126624 районированию 124580 районирования 733246 +районного 1866137 +районному 81388 +районною 141 районный 583575 районов 9853203 районом 521175 @@ -245817,6 +246353,7 @@ Z 768713 расторопность 27534 расторопностью 11045 расторопный 42834 +растранжирить 3447 растрат 27431 растрата 48736 растратам 9043 @@ -246213,6 +246750,7 @@ Z 768713 расхождениях 41428 расхожий 16270 расхожусь 12927 +расхолаживать 4345 расхотев 212 расхотел 5321 расхотела 2913 @@ -247622,6 +248160,7 @@ Z 768713 регрессией 25874 регрессии 752178 регрессий 52696 +регрессировать 4535 регрессию 24338 регрессия 80178 регрессиям 2485 @@ -248786,6 +249325,7 @@ Z 768713 репа 77409 репам 309 репами 833 +репарация 19177 репах 769 репе 16402 репей 31133 @@ -248955,6 +249495,7 @@ Z 768713 репродукциям 12595 репродукциями 36892 репродукциях 16253 +репродукція 624 рептилией 2891 рептилии 58780 рептилий 150290 @@ -249794,6 +250335,9 @@ Z 768713 ризу 48695 ризы 144417 рикотта 1937 +рикоттой 1102 +рикотту 935 +рикотты 1303 рикошет 8783 рикошета 7551 рикошетам 139 @@ -250393,6 +250937,7 @@ Z 768713 родничком 3276 родничку 3850 родничок 32790 +родновер 113 родноверие 349 родной 4255181 родные 1351962 @@ -250865,6 +251410,10 @@ Z 768713 рокочущий 22359 року 122986 рокфор 7933 +рокфора 2647 +рокфоре 177 +рокфором 904 +рокфору 221 рол 48889 рола 17438 ролам 449 @@ -255984,6 +256533,7 @@ Z 768713 сверхприбылям 1353 сверхприбылями 4731 сверхприбылях 1508 +сверхпроводник 32639 сверхскопление 1462 сверхтекучести 29939 сверхтекучесть 8923 @@ -258036,6 +258586,7 @@ Z 768713 сдохнут 15054 сдохнуть 69994 сдохший 885 +сдристнуть 131 сдружает 219 сдружается 419 сдружались 183 @@ -258171,6 +258722,7 @@ Z 768713 северянину 5521 севов 3618 севом 49802 +севооборот 158140 севрюг 4810 севрюга 21411 севрюгами 355 @@ -258452,10 +259004,13 @@ Z 768713 секретна 3741 секретничать 7983 секретно 358872 +секретного 196491 +секретному 33779 секретностей 143 секретности 244456 секретность 71314 секретностью 11845 +секретною 1758 секретны 4886 секретный 240197 секретов 299493 @@ -259915,6 +260470,7 @@ Z 768713 сеянцем 2652 сеянцу 1659 сеянцы 182169 +сеятель 45775 сеять 430431 сжав 296887 сжавши 4365 @@ -260366,6 +260922,7 @@ Z 768713 силков 12592 силком 80885 силку 1869 +силлогизм 49176 сило 28954 силовик 4121 силовика 3207 @@ -260436,7 +260993,9 @@ Z 768713 символа 655311 символам 66661 символами 375204 +символамъ 1353 символах 96725 +символахъ 2790 символе 82759 символизировав 164 символизировавший 4617 @@ -260486,9 +261045,13 @@ Z 768713 символический 270882 символичный 5868 символов 1131259 +символовъ 12495 символом 1209189 +символомъ 18761 символу 87153 +символъ 39275 символы 960174 +символѣ 3943 сими 183406 симметрией 287148 симметриею 135 @@ -260688,6 +261251,7 @@ Z 768713 синевший 1571 синевы 119955 синеглазый 26784 +синее 492431 синеем 369 синеет 54263 синеешь 285 @@ -260743,6 +261307,7 @@ Z 768713 синеющий 8197 синея 10676 сини 97608 +синие 995740 синий 1156337 синиц 47155 синица 79442 @@ -264714,6 +265279,7 @@ Z 768713 сливках 17323 сливки 278537 сливов 8229 +сливовый 11826 сливой 15597 сливок 233455 сливом 31285 @@ -264882,6 +265448,7 @@ Z 768713 словаку 805 словам 6354529 словами 12217238 +словамъ 363659 словаре 901110 словарей 523758 словари 560441 @@ -264903,6 +265470,7 @@ Z 768713 словарями 94292 словарях 341691 словах 4161337 +словахъ 230561 словацкий 65438 словачек 177 словачка 1018 @@ -264989,6 +265557,7 @@ Z 768713 словолитнями 249 словолитнях 508 словом 7271212 +словомъ 490519 словообразование 100607 словообразованием 16133 словообразовании 69486 @@ -265036,6 +265605,8 @@ Z 768713 словцо 134088 словцом 37134 словцу 4765 +словъ 596010 +словѣ 58366 слог 561458 слога 597894 слогам 113080 @@ -265982,6 +266553,7 @@ Z 768713 сменишь 9256 сменишься 1304 сменный 53906 +сменовеховец 1875 сменой 505033 сменою 7352 смену 2826660 @@ -266597,6 +267169,7 @@ Z 768713 смолах 38556 смоле 85237 смоленский 50199 +смолить 7807 смолк 179568 смолкавший 1185 смолкаем 680 @@ -266914,6 +267487,7 @@ Z 768713 смраду 4010 смрады 247 смрадь 172 +смска 1201 смуглый 164487 смуглянка 9686 смуглянкам 155 @@ -275405,7 +275979,7 @@ Z 768713 срамя 928 срамят 2755 срамящий 58 -срани 627 p +срани 627 сраный 13556 p срань 6084 p сранью 247 p @@ -275922,7 +276496,7 @@ Z 768713 ссыльных 409900 ссым 230 p ссыт 3217 p -ссыте 1450 p +ссыте 1450 ссышь 1739 p ст 23713606 ста 3413698 @@ -277206,6 +277780,7 @@ Z 768713 стекли 6728 стеклись 11297 стекло 2156708 +стекловата 2594 стеклом 690906 стеклось 6431 стеклу 436924 @@ -277902,6 +278477,7 @@ Z 768713 стихало 11859 стихам 326928 стихами 928197 +стихарь 15861 стихать 55235 стихах 2243068 стихаю 441 @@ -278904,6 +279480,7 @@ Z 768713 стращаю 1103 стращают 10627 стращая 6546 +стрежень 26185 стрейт 733 стрекоз 89704 стрекоза 59868 @@ -282141,7 +282718,7 @@ Z 768713 сцу 274 p сцы 1555 p сцыт 142 p -сцыте 111 p +сцыте 111 счас 56587 счастий 2866 счастлив 1544708 @@ -282709,6 +283286,7 @@ Z 768713 сычи 9234 сычом 4617 сычу 1311 +сычуанец 113 сычуг 11003 сычуга 23814 сычугах 191 @@ -282875,11 +283453,19 @@ Z 768713 сянци 235 сѣверный 12333 сѣверъ 26192 +сѣдла 3226 сѣдло 2110 +сѣдломъ 466 +сѣдлу 229 +сѣдлѣ 874 +сѣкли 1813 +сѣкутъ 604 +сѣкъ 357 сѣмя 10130 сѣни 4847 сѣно 13767 сѣнь 3041 +сѣнью 4490 сѣра 2409 сѣсть 14384 сѣть 23823 @@ -283157,7 +283743,10 @@ Z 768713 таишь 7041 таишься 2936 тай 141373 +тайванец 599 +тайванцы 215 тайваньский 6598 +тайваньцы 1587 тайга 307186 тайге 719443 тайги 636800 @@ -283251,6 +283840,7 @@ Z 768713 таками 415 таках 636 такая 16322421 +такбир 1302 таке 39088 такелаж 25888 такелажа 26507 @@ -283303,6 +283893,7 @@ Z 768713 таксисту 28156 таксисты 29517 таксой 8698 +таксометр 1369 таксон 34529 таксономия 20377 таксофон 6407 @@ -283912,6 +284503,10 @@ Z 768713 тарту 1798 тарты 586 тару 181382 +тархун 4262 +тархуна 3233 +тархуне 231 +тархуном 1117 тары 510781 тасбих 404 таскав 47 @@ -284243,6 +284838,7 @@ Z 768713 тверитяне 1244 тверитянин 853 тверитянина 338 +тверк 338 тверской 120369 твид 3868 твида 6385 @@ -284486,6 +285082,7 @@ Z 768713 текучесть 310713 текучестью 60665 текучий 22133 +текущая 225016 текущий 836694 текущих 1319036 тел 5373383 @@ -285134,6 +285731,13 @@ Z 768713 теократиям 105 теократиями 225 теократиях 555 +теократіей 681 +теократіею 119 +теократіи 7602 +теократій 263 +теократію 1144 +теократія 2882 +теократіяхъ 109 теолог 59920 теолога 27854 теологам 7141 @@ -285185,6 +285789,10 @@ Z 768713 теософии 43710 теософию 6832 теософия 17931 +теософіей 500 +теософіи 2550 +теософію 544 +теософія 1621 теоцентрический 601 теперешний 102409 теперь 58171564 @@ -285509,6 +286117,7 @@ Z 768713 терниям 2773 терниями 9210 терниях 3819 +терновник 22230 терпев 1383 терпевши 115 терпевший 12243 @@ -286560,6 +287169,7 @@ Z 768713 тку 8736 ткут 41583 ткущий 843 +тла 31456 тлев 432 тлевший 4475 тлеем 880 @@ -288471,6 +289081,7 @@ Z 768713 трамплином 30169 трамплину 2091 трамплины 4433 +транжирить 15955 транзакция 11761 транзистор 158844 транзистора 316661 @@ -288675,7 +289286,11 @@ Z 768713 транспортируют 26599 транспортирующий 7546 транспортируя 2633 +транспортная 230995 +транспортное 391171 +транспортные 1126186 транспортный 231634 +транспортных 2941094 транспортов 171804 транспортом 971398 транспорту 357928 @@ -289526,6 +290141,7 @@ Z 768713 трехлитровый 3643 трехмерный 63373 трехмесячный 76433 +трехногий 7625 трехсторонний 10396 трехэтажный 72774 треш 3230 @@ -290771,6 +291387,7 @@ Z 768713 туере 103 туеров 225 туеры 129 +туес 7918 тужась 5339 тужатся 3016 тужащийся 87 @@ -291847,6 +292464,9 @@ Z 768713 тюрягу 9349 тюте 137 тютей 553 +тютелька 13842 +тютельки 812 +тютельку 17764 тюти 815 тютю 3180 тютя 2692 @@ -292109,6 +292729,10 @@ Z 768713 тятю 3083 тятя 32832 тѣло 124214 +тѣсенъ 1320 +тѣсна 2331 +тѣсно 96276 +тѣсны 2339 тѣсный 7746 тѣсто 3349 у 326112250 @@ -296147,6 +296771,7 @@ Z 768713 узурпатором 17994 узурпатору 7144 узурпаторы 9163 +узурпация 15893 узурпировав 2935 узурпировавший 2037 узурпировал 13325 @@ -307254,6 +307879,7 @@ Z 768713 фотокарточки 41599 фотокарточкой 8166 фотокарточку 42461 +фотокопия 28018 фотокорреспондент 27232 фотокорреспондента 14518 фотокорреспондентам 1549 @@ -307355,6 +307981,7 @@ Z 768713 фразе 536929 фразеологией 71477 фразеологиею 543 +фразеологизм 73828 фразеологии 300905 фразеологий 255 фразеологию 52849 @@ -307364,6 +307991,7 @@ Z 768713 фразою 16307 фразу 1801056 фразы 2259467 +фрайкор 375 фрак 196259 фрака 53180 фракам 1189 @@ -308046,6 +308674,7 @@ Z 768713 хадису 1893 хадисы 16680 хаем 1768 +хаер 1321 хает 8413 хаете 763 хаешь 1496 @@ -308308,10 +308937,12 @@ Z 768713 ханы 154808 хань 18164 ханьский 7319 +ханьца 643 ханьцам 1621 ханьцами 4773 ханьцах 125 ханьцев 12977 +ханьцем 177 ханьцы 6888 хаос 832967 хаоса 632969 @@ -308870,7 +309501,7 @@ Z 768713 хеллоуина 142 хентай 542 хер 81434 p -хера 32608 p +хера 32608 херам 2197 p херами 453 p херах 85 p @@ -308901,7 +309532,7 @@ Z 768713 херни 3254 херню 9177 херня 19114 p -херов 4244 p +херов 4244 херово 4611 p херовый 809 p хером 3156 p @@ -308916,7 +309547,7 @@ Z 768713 херувимом 4634 херувиму 1370 херувимы 30202 -херы 773 p +херы 773 херь 2099 херьте 113 херю 114 @@ -308969,6 +309600,7 @@ Z 768713 хижиною 1323 хижину 176572 хижины 319693 +хиллбилли 416 хилый 62389 химер 55974 химера 57216 @@ -309060,6 +309692,7 @@ Z 768713 хиреющий 776 хирея 852 хирман 3165 +хиромант 7035 хиромантией 3539 хиромантии 13452 хиромантию 3365 @@ -310635,6 +311268,7 @@ Z 768713 храпы 3306 храпя 13441 храпят 22389 +храпящего 8149 храпящий 2423 хребет 764994 хребта 1734661 @@ -311065,7 +311699,7 @@ Z 768713 хуесосы 255 хуею 183 хуже 6678680 -хуи 2828 p +хуи 2828 хуище 55 p хуй 71862 p хуйло 222 p @@ -311226,7 +311860,7 @@ Z 768713 хуторянину 2156 хуэй 18338 хую 6146 p -хуя 18476 p +хуя 18476 хуям 846 p хуями 1168 p хуярил 119 @@ -312790,6 +313424,8 @@ Z 768713 цѣпь 28160 цѣпью 8197 цѣпями 3979 +цѣпямъ 190 +цѣпяхъ 1647 ч 8704960 чабан 90976 чабана 72186 @@ -313397,6 +314033,9 @@ Z 768713 чего-нибудь 915287 чего-то 2843965 чеддер 5461 +чеддера 1897 +чеддере 107 +чеддером 553 чей 1191997 чей-либо 14807 чей-нибудь 38154 @@ -313969,6 +314608,7 @@ Z 768713 черкаю 728 черкают 720 черкая 3875 +черкес 47959 черкни 5782 черкните 14224 черкну 3084 @@ -314034,6 +314674,7 @@ Z 768713 чернит 14957 черните 1623 чернить 31175 +черничный 16410 чернишь 883 черно 1102795 чернобыле 352 @@ -314487,6 +315128,7 @@ Z 768713 четвертинок 1921 четвертину 1342 четвертины 4173 +четвертовать 15543 четверть 1995471 четвертьфинал 5034 четвертьфинала 2588 @@ -315369,7 +316011,6 @@ Z 768713 чтим 59114 чтимый 19954 чтит 114648 -чтите 22612 чтить 122939 чтишь 7637 что 1123338778 @@ -316729,6 +317370,7 @@ Z 768713 шаху 121023 шахует 115 шашек 76832 +шашень 492 шашка 71682 шашкам 12606 шашками 87335 @@ -317457,6 +318099,7 @@ Z 768713 шефства 94513 шефстве 26893 шефство 250008 +шефствовать 7867 шефством 5821 шефству 18767 шефу 180899 @@ -317853,6 +318496,7 @@ Z 768713 шишей 4436 шишек 212471 шиши 28522 +шишига 3675 шишка 120335 шишкам 7298 шишками 60519 @@ -319747,6 +320391,7 @@ Z 768713 щедрость 245568 щедростью 122525 щедры 45000 +щедрые 117083 щедрый 158130 щей 474148 щека 132763 @@ -320252,6 +320897,7 @@ Z 768713 эгоцентризме 6621 эгоцентризмом 9830 эгоцентризму 4456 +эгрегор 20787 эдак 270639 эдакий 63553 эдельвейс 7749 @@ -320551,6 +321197,7 @@ Z 768713 экосистемой 8094 экосистему 35349 экосистемы 287122 +экоцид 2672 экран 1402880 экрана 1129062 экранам 29679 @@ -321011,6 +321658,12 @@ Z 768713 эксцессом 5825 эксцессу 1521 эксцессы 68234 +эктоплазма 3409 +эктоплазматический 365 +эктоплазме 2097 +эктоплазмой 1404 +эктоплазму 2449 +эктоплазмы 7266 экшн 7916 экшна 828 экшном 167 @@ -321552,6 +322205,7 @@ Z 768713 эмитенту 17180 эмитенты 9082 эмменталь 721 +эмменталя 161 эмодзи 1038 эмоцией 38122 эмоции 1502599 @@ -321801,6 +322455,7 @@ Z 768713 эпидермой 5249 эпидерму 2670 эпидермы 32944 +эпидидимит 3054 эпизод 1591098 эпизода 444515 эпизодам 54955 @@ -322137,6 +322792,7 @@ Z 768713 эскортами 417 эскортах 181 эскорте 4620 +эскортировать 2537 эскортов 1137 эскортом 31836 эскорту 3035 @@ -324043,6 +324699,7 @@ Z 768713 ѣхать 68835 Ѳалесъ 574 Ѳома 5281 +ѳеократіи 177 [ngrams]