From 718ce655b47690e110c963d81da9f0e1dff52e83 Mon Sep 17 00:00:00 2001 From: Mark Hammond Date: Thu, 26 Feb 2015 18:48:11 +1100 Subject: [PATCH 001/112] Bug 1131410 followup - addressing review comments I missed in part1, r=adw/rnewman --- services/common/logmanager.js | 168 +++++++++--------- services/common/tests/unit/test_logmanager.js | 10 +- services/sync/tests/unit/test_errorhandler.js | 8 +- .../tests/unit/test_errorhandler_filelog.js | 8 +- 4 files changed, 94 insertions(+), 100 deletions(-) diff --git a/services/common/logmanager.js b/services/common/logmanager.js index 0d8a55aa8252..d814e4b8703d 100644 --- a/services/common/logmanager.js +++ b/services/common/logmanager.js @@ -1,24 +1,24 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +"use strict;" const {classes: Cc, interfaces: Ci, utils: Cu, results: Cr} = Components; Cu.import("resource://gre/modules/XPCOMUtils.jsm"); -XPCOMUtils.defineLazyModuleGetter(this, 'Services', - 'resource://gre/modules/Services.jsm'); -XPCOMUtils.defineLazyModuleGetter(this, 'Preferences', - 'resource://gre/modules/Preferences.jsm'); -XPCOMUtils.defineLazyModuleGetter(this, 'FileUtils', - 'resource://gre/modules/FileUtils.jsm'); -XPCOMUtils.defineLazyModuleGetter(this, 'Log', - 'resource://gre/modules/Log.jsm'); -XPCOMUtils.defineLazyModuleGetter(this, 'Task', - 'resource://gre/modules/Task.jsm'); -XPCOMUtils.defineLazyModuleGetter(this, 'OS', - 'resource://gre/modules/osfile.jsm'); -XPCOMUtils.defineLazyModuleGetter(this, 'CommonUtils', - 'resource://services-common/utils.js'); +XPCOMUtils.defineLazyModuleGetter(this, "Services", + "resource://gre/modules/Services.jsm"); +XPCOMUtils.defineLazyModuleGetter(this, "FileUtils", + "resource://gre/modules/FileUtils.jsm"); +XPCOMUtils.defineLazyModuleGetter(this, "Log", + "resource://gre/modules/Log.jsm"); +XPCOMUtils.defineLazyModuleGetter(this, "OS", + "resource://gre/modules/osfile.jsm"); +XPCOMUtils.defineLazyModuleGetter(this, "CommonUtils", + "resource://services-common/utils.js"); + +Cu.import("resource://gre/modules/Preferences.jsm"); +Cu.import("resource://gre/modules/Task.jsm"); this.EXPORTED_SYMBOLS = [ "LogManager", @@ -28,7 +28,7 @@ const DEFAULT_MAX_ERROR_AGE = 20 * 24 * 60 * 60; // 20 days // "shared" logs (ie, where the same log name is used by multiple LogManager // instances) are a fact of life here - eg, FirefoxAccounts logs are used by -// both Sync and Reading-list. +// both Sync and Reading List. // However, different instances have different pref branches, so we need to // handle when one pref branch says "Debug" and the other says "Error" // So we (a) keep singleton console and dump appenders and (b) keep track @@ -103,7 +103,7 @@ LogManager.prototype = { // The file appender doesn't get the special singleton behaviour. let fapp = this._fileAppender = new Log.StorageStreamAppender(formatter); - // the stream gets a default of Debug as the user must go out of there way + // the stream gets a default of Debug as the user must go out of their way // to see the stuff spewed to it. this._observeStreamPref = setupAppender(fapp, "log.appender.file.level", Log.Level.Debug); @@ -151,7 +151,7 @@ LogManager.prototype = { const BUFFER_SIZE = 8192; // get a binary stream - let binaryStream = Cc['@mozilla.org/binaryinputstream;1'].createInstance(Ci.nsIBinaryInputStream); + let binaryStream = Cc["@mozilla.org/binaryinputstream;1"].createInstance(Ci.nsIBinaryInputStream); binaryStream.setInputStream(inputStream); yield OS.File.makeDir(outputFile.parent.path, { ignoreExisting: true }); let output = yield OS.File.open(outputFile.path, { write: true} ); @@ -165,12 +165,14 @@ LogManager.prototype = { yield output.write(new Uint8Array(chunk)); } } finally { - inputStream.close(); - binaryStream.close(); - yield output.close(); + try { + binaryStream.close(); // inputStream is closed by the binaryStream + yield output.close(); + } catch (ex) { + this._log.error("Failed to close the input stream", ex); + } } this._log.trace("finished copy to", outputFile.path); - return (yield OS.File.stat(outputFile.path)).lastModificationDate; }), /** @@ -179,70 +181,65 @@ LogManager.prototype = { * Returns a promise that resolves on completion or rejects if the file could * not be written. */ - resetFileLog(reason) { - return new Promise((resolve, reject) => { - try { - let flushToFile; - let reasonPrefix; - switch (reason) { - case this.REASON_SUCCESS: - flushToFile = this._prefs.get("log.appender.file.logOnSuccess"); - reasonPrefix = "success"; - break; - case this.REASON_ERROR: - flushToFile = this._prefs.get("log.appender.file.logOnError"); - reasonPrefix = "error"; - break; - default: - return reject(new Error("Invalid reason")); - } - - let inStream = this._fileAppender.getInputStream(); - this._fileAppender.reset(); - if (flushToFile && inStream) { - this._log.debug("Flushing file log"); - let filename = this.logFilePrefix + "-" + reasonPrefix + "-" + Date.now() + ".txt"; - let file = this._logFileDirectory; - file.append(filename); - this._log.trace("Beginning stream copy to " + file.leafName + ": " + - Date.now()); - this._copyStreamToFile(inStream, file).then( - modDate => { - this._log.trace("onCopyComplete: " + Date.now()); - this._log.trace("Output file timestamp: " + modDate + " (" + modDate.getTime() + ")"); - }, - err => { - this._log.error("Failed to copy log stream to file", err) - reject(err) - } - ).then( - () => { - // It's not completely clear to markh why we only do log cleanups - // for errors, but for now the Sync semantics have been copied... - // (one theory is that only cleaning up on error makes it less - // likely old error logs would be removed, but that's not true if - // there are occasional errors - let's address this later!) - if (reason == this.REASON_ERROR && - !this._cleaningUpFileLogs) { - this._log.trace("Scheduling cleanup."); - // Note we don't return or wait on this promise - it continues - // in the background - this.cleanupLogs().then(null, err => { - this._log.error("Failed to cleanup logs", err); - }); - } - resolve(); - } - ); - } else { - resolve(); - } - } catch (ex) { - this._log.error("Failed to resetFileLog", ex) - reject(ex); + resetFileLog: Task.async(function* (reason) { + try { + let flushToFile; + let reasonPrefix; + switch (reason) { + case this.REASON_SUCCESS: + flushToFile = this._prefs.get("log.appender.file.logOnSuccess", false); + reasonPrefix = "success"; + break; + case this.REASON_ERROR: + flushToFile = this._prefs.get("log.appender.file.logOnError", true); + reasonPrefix = "error"; + break; + default: + throw new Error("Invalid reason"); } - }) - }, + + // might as well avoid creating an input stream if we aren't going to use it. + if (!flushToFile) { + this._fileAppender.reset(); + return; + } + + let inStream = this._fileAppender.getInputStream(); + this._fileAppender.reset(); + if (inStream) { + this._log.debug("Flushing file log"); + // We have reasonPrefix at the start of the filename so all "error" + // logs are grouped in about:sync-log. + let filename = reasonPrefix + "-" + this.logFilePrefix + "-" + Date.now() + ".txt"; + let file = this._logFileDirectory; + file.append(filename); + this._log.trace("Beginning stream copy to " + file.leafName + ": " + + Date.now()); + try { + yield this._copyStreamToFile(inStream, file); + this._log.trace("onCopyComplete", Date.now()); + } catch (ex) { + this._log.error("Failed to copy log stream to file", ex); + return; + } + // It's not completely clear to markh why we only do log cleanups + // for errors, but for now the Sync semantics have been copied... + // (one theory is that only cleaning up on error makes it less + // likely old error logs would be removed, but that's not true if + // there are occasional errors - let's address this later!) + if (reason == this.REASON_ERROR && !this._cleaningUpFileLogs) { + this._log.trace("Scheduling cleanup."); + // Note we don't return/yield or otherwise wait on this promise - it + // continues in the background + this.cleanupLogs().catch(err => { + this._log.error("Failed to cleanup logs", err); + }); + } + } + } catch (ex) { + this._log.error("Failed to resetFileLog", ex) + } + }), /** * Finds all logs older than maxErrorAge and deletes them using async I/O. @@ -255,7 +252,8 @@ LogManager.prototype = { this._log.debug("Log cleanup threshold time: " + threshold); yield iterator.forEach(Task.async(function* (entry) { - if (!entry.name.startsWith(this.logFilePrefix + "-")) { + if (!entry.name.startsWith("error-" + this.logFilePrefix + "-") && + !entry.name.startsWith("success-" + this.logFilePrefix + "-")) { return; } try { diff --git a/services/common/tests/unit/test_logmanager.js b/services/common/tests/unit/test_logmanager.js index ad0bc3ff16b3..125190850e9b 100644 --- a/services/common/tests/unit/test_logmanager.js +++ b/services/common/tests/unit/test_logmanager.js @@ -23,7 +23,7 @@ function getAppenders(log) { } // Test that the correct thing happens when no prefs exist for the log manager. -add_test(function test_noPrefs() { +add_task(function* test_noPrefs() { // tell the log manager to init with a pref branch that doesn't exist. let lm = new LogManager("no-such-branch.", ["TestLog"], "test"); @@ -36,11 +36,10 @@ add_test(function test_noPrefs() { equal(fapps.length, 1, "only 1 file appender"); equal(fapps[0].level, Log.Level.Debug); lm.finalize(); - run_next_test(); }); // Test that changes to the prefs used by the log manager are updated dynamically. -add_test(function test_PrefChanges() { +add_task(function* test_PrefChanges() { Services.prefs.setCharPref("log-manager.test.log.appender.console", "Trace"); Services.prefs.setCharPref("log-manager.test.log.appender.dump", "Trace"); Services.prefs.setCharPref("log-manager.test.log.appender.file.level", "Trace"); @@ -66,11 +65,10 @@ add_test(function test_PrefChanges() { equal(dapp.level, Log.Level.Error); equal(fapp.level, Log.Level.Debug); lm.finalize(); - run_next_test(); }); // Test that the same log used by multiple log managers does the right thing. -add_test(function test_SharedLogs() { +add_task(function* test_SharedLogs() { // create the prefs for the first instance. Services.prefs.setCharPref("log-manager-1.test.log.appender.console", "Trace"); Services.prefs.setCharPref("log-manager-1.test.log.appender.dump", "Trace"); @@ -102,6 +100,4 @@ add_test(function test_SharedLogs() { lm1.finalize(); lm2.finalize(); - - run_next_test(); }); diff --git a/services/sync/tests/unit/test_errorhandler.js b/services/sync/tests/unit/test_errorhandler.js index a803947ed016..4e94fb342bc0 100644 --- a/services/sync/tests/unit/test_errorhandler.js +++ b/services/sync/tests/unit/test_errorhandler.js @@ -1770,7 +1770,7 @@ add_task(function test_sync_engine_generic_fail() { let entries = logsdir.directoryEntries; do_check_true(entries.hasMoreElements()); let logfile = entries.getNext().QueryInterface(Ci.nsILocalFile); - do_check_true(logfile.leafName.startsWith("sync-error-"), logfile.leafName); + do_check_true(logfile.leafName.startsWith("error-sync-"), logfile.leafName); clean(); server.stop(deferred.resolve); @@ -1801,7 +1801,7 @@ add_test(function test_logs_on_sync_error_despite_shouldReportError() { let entries = logsdir.directoryEntries; do_check_true(entries.hasMoreElements()); let logfile = entries.getNext().QueryInterface(Ci.nsILocalFile); - do_check_true(logfile.leafName.startsWith("sync-error-"), logfile.leafName); + do_check_true(logfile.leafName.startsWith("error-sync-"), logfile.leafName); clean(); run_next_test(); @@ -1828,7 +1828,7 @@ add_test(function test_logs_on_login_error_despite_shouldReportError() { let entries = logsdir.directoryEntries; do_check_true(entries.hasMoreElements()); let logfile = entries.getNext().QueryInterface(Ci.nsILocalFile); - do_check_true(logfile.leafName.startsWith("sync-error-"), logfile.leafName); + do_check_true(logfile.leafName.startsWith("error-sync-"), logfile.leafName); clean(); run_next_test(); @@ -1862,7 +1862,7 @@ add_task(function test_engine_applyFailed() { let entries = logsdir.directoryEntries; do_check_true(entries.hasMoreElements()); let logfile = entries.getNext().QueryInterface(Ci.nsILocalFile); - do_check_true(logfile.leafName.startsWith("sync-error-"), logfile.leafName); + do_check_true(logfile.leafName.startsWith("error-sync-"), logfile.leafName); clean(); server.stop(deferred.resolve); diff --git a/services/sync/tests/unit/test_errorhandler_filelog.js b/services/sync/tests/unit/test_errorhandler_filelog.js index a530b836f5f8..0ce82b170396 100644 --- a/services/sync/tests/unit/test_errorhandler_filelog.js +++ b/services/sync/tests/unit/test_errorhandler_filelog.js @@ -108,7 +108,7 @@ add_test(function test_logOnSuccess_true() { do_check_true(entries.hasMoreElements()); let logfile = entries.getNext().QueryInterface(Ci.nsILocalFile); do_check_eq(logfile.leafName.slice(-4), ".txt"); - do_check_true(logfile.leafName.startsWith("sync-success-"), logfile.leafName); + do_check_true(logfile.leafName.startsWith("success-sync-"), logfile.leafName); do_check_false(entries.hasMoreElements()); // Ensure the log message was actually written to file. @@ -175,7 +175,7 @@ add_test(function test_sync_error_logOnError_true() { do_check_true(entries.hasMoreElements()); let logfile = entries.getNext().QueryInterface(Ci.nsILocalFile); do_check_eq(logfile.leafName.slice(-4), ".txt"); - do_check_true(logfile.leafName.startsWith("sync-error-"), logfile.leafName); + do_check_true(logfile.leafName.startsWith("error-sync-"), logfile.leafName); do_check_false(entries.hasMoreElements()); // Ensure the log message was actually written to file. @@ -242,7 +242,7 @@ add_test(function test_login_error_logOnError_true() { do_check_true(entries.hasMoreElements()); let logfile = entries.getNext().QueryInterface(Ci.nsILocalFile); do_check_eq(logfile.leafName.slice(-4), ".txt"); - do_check_true(logfile.leafName.startsWith("sync-error-"), logfile.leafName); + do_check_true(logfile.leafName.startsWith("error-sync-"), logfile.leafName); do_check_false(entries.hasMoreElements()); // Ensure the log message was actually written to file. @@ -281,7 +281,7 @@ add_test(function test_logErrorCleanup_age() { _("Making some files."); for (let i = 0; i < numLogs; i++) { let now = Date.now(); - let filename = "sync-error-" + now + "" + i + ".txt"; + let filename = "error-sync-" + now + "" + i + ".txt"; let newLog = FileUtils.getFile("ProfD", ["weave", "logs", filename]); let foStream = FileUtils.openFileOutputStream(newLog); foStream.write(errString, errString.length); From adf572fc6e06bfa6018cb2127e0702c8b604342d Mon Sep 17 00:00:00 2001 From: Mark Hammond Date: Thu, 26 Feb 2015 18:48:11 +1100 Subject: [PATCH 002/112] Bug 1131412 - implement a scheduler for the readinglist. r=adw --- browser/components/readinglist/Scheduler.jsm | 338 ++++++++++++++++++ browser/components/readinglist/moz.build | 6 + .../readinglist/test/xpcshell/head.js | 7 + .../test/xpcshell/test_scheduler.js | 146 ++++++++ .../readinglist/test/xpcshell/xpcshell.ini | 5 + 5 files changed, 502 insertions(+) create mode 100644 browser/components/readinglist/Scheduler.jsm create mode 100644 browser/components/readinglist/test/xpcshell/head.js create mode 100644 browser/components/readinglist/test/xpcshell/test_scheduler.js create mode 100644 browser/components/readinglist/test/xpcshell/xpcshell.ini diff --git a/browser/components/readinglist/Scheduler.jsm b/browser/components/readinglist/Scheduler.jsm new file mode 100644 index 000000000000..8acfc13dbabe --- /dev/null +++ b/browser/components/readinglist/Scheduler.jsm @@ -0,0 +1,338 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +"use strict;" + +const {classes: Cc, interfaces: Ci, utils: Cu, results: Cr} = Components; + +Cu.import("resource://gre/modules/XPCOMUtils.jsm"); +Cu.import("resource://gre/modules/Services.jsm"); + + +XPCOMUtils.defineLazyModuleGetter(this, 'LogManager', + 'resource://services-common/logmanager.js'); + +XPCOMUtils.defineLazyModuleGetter(this, 'Log', + 'resource://gre/modules/Log.jsm'); + +XPCOMUtils.defineLazyModuleGetter(this, 'Preferences', + 'resource://gre/modules/Preferences.jsm'); + +XPCOMUtils.defineLazyModuleGetter(this, 'setTimeout', + 'resource://gre/modules/Timer.jsm'); +XPCOMUtils.defineLazyModuleGetter(this, 'clearTimeout', + 'resource://gre/modules/Timer.jsm'); + +Cu.import('resource://gre/modules/Task.jsm'); + +this.EXPORTED_SYMBOLS = ["ReadingListScheduler"]; + +// A list of "external" observer topics that may cause us to change when we +// sync. +const OBSERVERS = [ + // We don't sync when offline and restart when online. + "network:offline-status-changed", + // FxA notifications also cause us to check if we should sync. + "fxaccounts:onverified", + // When something notices a local change to an item. + "readinglist:item-changed", + // some notifications the engine might send if we have been requested to backoff. + "readinglist:backoff-requested", + // request to sync now + "readinglist:user-sync", + +]; + +///////// A temp object until we get our "engine" +let engine = { + ERROR_AUTHENTICATION: "authentication error", + sync: Task.async(function* () { + }), +} + +let prefs = new Preferences("readinglist.scheduler."); + +// A helper to manage our interval values. +let intervals = { + // Getters for our intervals. + _fixupIntervalPref(prefName, def) { + // All pref values are seconds, but we return ms. + return prefs.get(prefName, def) * 1000; + }, + + // How long after startup do we do an initial sync? + get initial() this._fixupIntervalPref("initial", 20), // 20 seconds. + // Every interval after the first. + get schedule() this._fixupIntervalPref("schedule", 2 * 60 * 60), // 2 hours + // After we've been told an item has changed + get dirty() this._fixupIntervalPref("dirty", 2 * 60), // 2 mins + // After an error + get retry() this._fixupIntervalPref("retry", 2 * 60), // 2 mins +}; + +// This is the implementation, but it's not exposed directly. +function InternalScheduler() { + // oh, I don't know what logs yet - let's guess! + let logs = ["readinglist", "FirefoxAccounts", "browserwindow.syncui"]; + this._logManager = new LogManager("readinglist.", logs, "readinglist"); + this.log = Log.repository.getLogger("readinglist.scheduler"); + this.log.info("readinglist scheduler created.") + this.state = this.STATE_OK; + + // don't this.init() here, but instead at the module level - tests want to + // add hooks before it is called. +} + +InternalScheduler.prototype = { + // When the next scheduled sync should happen. If we can sync, there will + // be a timer set to fire then. If we can't sync there will not be a timer, + // but it will be set to fire then as soon as we can. + _nextScheduledSync: null, + // The time when the most-recent "backoff request" expires - we will never + // schedule a new timer before this. + _backoffUntil: 0, + // Our current timer. + _timer: null, + // Our timer fires a promise - _timerRunning is true until it resolves or + // rejects. + _timerRunning: false, + // Our sync engine - XXX - maybe just a callback? + _engine: engine, + + // Our state variable and constants. + state: null, + STATE_OK: "ok", + STATE_ERROR_AUTHENTICATION: "authentication error", + STATE_ERROR_OTHER: "other error", + + init() { + this.log.info("scheduler initialzing"); + this._observe = this.observe.bind(this); + for (let notification of OBSERVERS) { + Services.obs.addObserver(this._observe, notification, false); + } + this._nextScheduledSync = Date.now() + intervals.initial; + this._setupTimer(); + }, + + // Note: only called by tests. + finalize() { + this.log.info("scheduler finalizing"); + this._clearTimer(); + for (let notification of OBSERVERS) { + Services.obs.removeObserver(this._observe, notification); + } + this._observe = null; + }, + + observe(subject, topic, data) { + this.log.debug("observed ${}", topic); + switch (topic) { + case "readinglist:backoff-requested": { + // The subject comes in as a string, a number of seconds. + let interval = parseInt(data, 10); + if (isNaN(interval)) { + this.log.warn("Backoff request had non-numeric value", data); + return; + } + this.log.info("Received a request to backoff for ${} seconds", interval); + this._backoffUntil = Date.now() + interval * 1000; + this._maybeReschedule(0); + break; + } + case "readinglist:local:dirty": + this._maybeReschedule(intervals.dirty); + break; + case "readinglist:user-sync": + this._syncNow(); + break; + case "fxaccounts:onverified": + // If we were in an authentication error state, reset that now. + if (this.state == this.STATE_ERROR_AUTHENTICATION) { + this.state = this.STATE_OK; + } + break; + + // The rest just indicate that now is probably a good time to check if + // we can sync as normal using whatever schedule was previously set. + default: + break; + } + // When observers fire we ignore the current sync error state as the + // notification may indicate it's been resolved. + this._setupTimer(true); + }, + + // Is the current error state such that we shouldn't schedule a new sync. + _isBlockedOnError() { + // this needs more thought... + return this.state == this.STATE_ERROR_AUTHENTICATION; + }, + + // canSync indicates if we can currently sync. + _canSync(ignoreBlockingErrors = false) { + if (Services.io.offline) { + this.log.info("canSync=false - we are offline"); + return false; + } + if (!ignoreBlockingErrors && this._isBlockedOnError()) { + this.log.info("canSync=false - we are in a blocked error state", this.state); + return false; + } + this.log.info("canSync=true"); + return true; + }, + + // _setupTimer checks the current state and the environment to see when + // we should next sync and creates the timer with the appropriate delay. + _setupTimer(ignoreBlockingErrors = false) { + if (!this._canSync(ignoreBlockingErrors)) { + this._clearTimer(); + return; + } + if (this._timer) { + let when = new Date(this._nextScheduledSync); + let delay = this._nextScheduledSync - Date.now(); + this.log.info("checkStatus - already have a timer - will fire in ${delay}ms at ${when}", + {delay, when}); + return; + } + if (this._timerRunning) { + this.log.info("checkStatus - currently syncing"); + return; + } + // no timer and we can sync, so start a new one. + let now = Date.now(); + let delay = Math.max(0, this._nextScheduledSync - now); + let when = new Date(now + delay); + this.log.info("next scheduled sync is in ${delay}ms (at ${when})", {delay, when}) + this._timer = this._setTimeout(delay); + }, + + // Something (possibly naively) thinks the next sync should happen in + // delay-ms. If there's a backoff in progress, ignore the requested delay + // and use the back-off. If there's already a timer scheduled for earlier + // than delay, let the earlier timer remain. Otherwise, use the requested + // delay. + _maybeReschedule(delay) { + // If there's no delay specified and there's nothing currently scheduled, + // it means a backoff request while the sync is actually running - there's + // no need to do anything here - the next reschedule after the sync + // completes will take the backoff into account. + if (!delay && !this._nextScheduledSync) { + this.log.debug("_maybeReschedule ignoring a backoff request while running"); + return; + } + let now = Date.now(); + if (!this._nextScheduledSync) { + this._nextScheduledSync = now + delay; + } + // If there is something currently scheduled before the requested delay, + // keep the existing value (eg, if we have a timer firing in 1 second, and + // get a "dirty" notification that says we should sync in 2 seconds, we + // keep the 1 second value) + this._nextScheduledSync = Math.min(this._nextScheduledSync, now + delay); + // But we still need to honor a backoff. + this._nextScheduledSync = Math.max(this._nextScheduledSync, this._backoffUntil); + // And always create a new timer next time _setupTimer is called. + this._clearTimer(); + }, + + // callback for when the timer fires. + _doSync() { + this.log.debug("starting sync"); + this._timer = null; + this._timerRunning = true; + // flag that there's no new schedule yet, so a request coming in while + // we are running does the right thing. + this._nextScheduledSync = 0; + Services.obs.notifyObservers(null, "readinglist:sync:start", null); + this._engine.sync().then(() => { + this.log.info("Sync completed successfully"); + // Write a pref in the same format used to services/sync to indicate + // the last success. + prefs.set("lastSync", new Date().toString()); + this.state = this.STATE_OK; + this._logManager.resetFileLog(this._logManager.REASON_SUCCESS); + Services.obs.notifyObservers(null, "readinglist:sync:finish", null); + return intervals.schedule; + }).catch(err => { + this.log.error("Sync failed", err); + // XXX - how to detect an auth error? + this.state = err == this._engine.ERROR_AUTHENTICATION ? + this.STATE_ERROR_AUTHENTICATION : this.STATE_ERROR_OTHER; + this._logManager.resetFileLog(this._logManager.REASON_ERROR); + Services.obs.notifyObservers(null, "readinglist:sync:error", null); + return intervals.retry; + }).then(nextDelay => { + this._timerRunning = false; + // ensure a new timer is setup for the appropriate next time. + this._maybeReschedule(nextDelay); + this._setupTimer(); + this._onAutoReschedule(); // just for tests... + }).catch(err => { + // We should never get here, but better safe than sorry... + this.log.error("Failed to reschedule after sync completed", err); + }); + }, + + _clearTimer() { + if (this._timer) { + clearTimeout(this._timer); + this._timer = null; + } + }, + + // A function to "sync now", but not allowing it to start if one is + // already running, and rescheduling the timer. + // To call this, just send a "readinglist:user-sync" notification. + _syncNow() { + if (this._timerRunning) { + this.log.info("syncNow() but a sync is already in progress - ignoring"); + return; + } + this._clearTimer(); + this._doSync(); + }, + + // A couple of hook-points for testing. + // xpcshell tests hook this so (a) it can check the expected delay is set + // and (b) to ignore the delay and set a timeout of 0 so the test is fast. + _setTimeout(delay) { + return setTimeout(() => this._doSync(), delay); + }, + // xpcshell tests hook this to make sure that the correct state etc exist + // after a sync has been completed and a new timer created (or not). + _onAutoReschedule() {}, +}; + +let internalScheduler = new InternalScheduler(); +internalScheduler.init(); + +// The public interface into this module is tiny, so a simple object that +// delegates to the implementation. +let ReadingListScheduler = { + get STATE_OK() internalScheduler.STATE_OK, + get STATE_ERROR_AUTHENTICATION() internalScheduler.STATE_ERROR_AUTHENTICATION, + get STATE_ERROR_OTHER() internalScheduler.STATE_ERROR_OTHER, + + get state() internalScheduler.state, +}; + +// These functions are exposed purely for tests, which manage to grab them +// via a BackstagePass. +function createTestableScheduler() { + // kill the "real" scheduler as we don't want it listening to notifications etc. + if (internalScheduler) { + internalScheduler.finalize(); + internalScheduler = null; + } + // No .init() call - that's up to the tests after hooking. + return new InternalScheduler(); +} + +// mochitests want the internal state of the real scheduler for various things. +function getInternalScheduler() { + return internalScheduler; +} diff --git a/browser/components/readinglist/moz.build b/browser/components/readinglist/moz.build index 0dfdf141706c..b02a45bf7d72 100644 --- a/browser/components/readinglist/moz.build +++ b/browser/components/readinglist/moz.build @@ -13,3 +13,9 @@ TESTING_JS_MODULES += [ ] BROWSER_CHROME_MANIFESTS += ['test/browser/browser.ini'] + +XPCSHELL_TESTS_MANIFESTS += ['test/xpcshell/xpcshell.ini'] + +EXTRA_JS_MODULES.readinglist += [ + 'Scheduler.jsm', +] diff --git a/browser/components/readinglist/test/xpcshell/head.js b/browser/components/readinglist/test/xpcshell/head.js new file mode 100644 index 000000000000..caf9f95a9552 --- /dev/null +++ b/browser/components/readinglist/test/xpcshell/head.js @@ -0,0 +1,7 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +const {classes: Cc, interfaces: Ci, utils: Cu, results: Cr} = Components; + +Cu.import("resource://gre/modules/XPCOMUtils.jsm"); +Cu.import("resource://gre/modules/Services.jsm"); diff --git a/browser/components/readinglist/test/xpcshell/test_scheduler.js b/browser/components/readinglist/test/xpcshell/test_scheduler.js new file mode 100644 index 000000000000..bb258a4720d2 --- /dev/null +++ b/browser/components/readinglist/test/xpcshell/test_scheduler.js @@ -0,0 +1,146 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +XPCOMUtils.defineLazyModuleGetter(this, 'setTimeout', + 'resource://gre/modules/Timer.jsm'); + +// Setup logging prefs before importing the scheduler module. +Services.prefs.setCharPref("readinglist.log.appender.dump", "Trace"); + +let {createTestableScheduler} = Cu.import("resource:///modules/readinglist/Scheduler.jsm", {}); +Cu.import("resource://gre/modules/Preferences.jsm"); +Cu.import("resource://gre/modules/Timer.jsm"); + +// Log rotation needs a profile dir. +do_get_profile(); + +let prefs = new Preferences("readinglist.scheduler."); + +function promiseObserver(topic) { + return new Promise(resolve => { + let obs = (subject, topic, data) => { + Services.obs.removeObserver(obs, topic); + resolve(data); + } + Services.obs.addObserver(obs, topic, false); + }); +} + +function createScheduler(options) { + // avoid typos in the test and other footguns in the options. + let allowedOptions = ["expectedDelay", "expectNewTimer", "syncFunction"]; + for (let key of Object.keys(options)) { + if (!allowedOptions.includes(key)) { + throw new Error("Invalid option " + key); + } + } + let scheduler = createTestableScheduler(); + // make our hooks + let syncFunction = options.syncFunction || Promise.resolve; + scheduler._engine.sync = syncFunction; + // we expect _setTimeout to be called *twice* - first is the initial sync, + // and there's no need to test the delay used for that. options.expectedDelay + // is to check the *subsequent* timer. + let numCalls = 0; + scheduler._setTimeout = function(delay) { + ++numCalls; + print("Test scheduler _setTimeout call number " + numCalls + " with delay=" + delay); + switch (numCalls) { + case 1: + // this is the first and boring schedule as it initializes - do nothing + // other than return a timer that fires immediately. + return setTimeout(() => scheduler._doSync(), 0); + break; + case 2: + // This is the one we are interested in, so check things. + if (options.expectedDelay) { + // a little slop is OK as it takes a few ms to actually set the timer + ok(Math.abs(options.expectedDelay * 1000 - delay) < 500, [options.expectedDelay * 1000, delay]); + } + // and return a timeout that "never" fires + return setTimeout(() => scheduler._doSync(), 10000000); + break; + default: + // This is unexpected! + ok(false, numCalls); + } + }; + // And a callback made once we've determined the next delay. This is always + // called even if _setTimeout isn't (due to no timer being created) + scheduler._onAutoReschedule = () => { + // Most tests expect a new timer, so this is "opt out" + let expectNewTimer = options.expectNewTimer === undefined ? true : options.expectNewTimer; + ok(expectNewTimer ? scheduler._timer : !scheduler._timer); + } + // calling .init fires things off... + scheduler.init(); + return scheduler; +} + +add_task(function* testSuccess() { + // promises which resolve once we've got all the expected notifications. + let allNotifications = [ + promiseObserver("readinglist:sync:start"), + promiseObserver("readinglist:sync:finish"), + ]; + // New delay should be "as regularly scheduled". + prefs.set("schedule", 100); + let scheduler = createScheduler({expectedDelay: 100}); + yield Promise.all(allNotifications); + scheduler.finalize(); +}); + +add_task(function* testOffline() { + let scheduler = createScheduler({expectNewTimer: false}); + Services.io.offline = true; + ok(!scheduler._canSync(), "_canSync is false when offline.") + ok(!scheduler._timer, "there is no current timer while offline.") + Services.io.offline = false; + ok(scheduler._canSync(), "_canSync is true when online.") + ok(scheduler._timer, "there is a new timer when back online.") + scheduler.finalize(); +}); + +add_task(function* testRetryableError() { + let allNotifications = [ + promiseObserver("readinglist:sync:start"), + promiseObserver("readinglist:sync:error"), + ]; + prefs.set("retry", 10); + let scheduler = createScheduler({ + expectedDelay: 10, + syncFunction: () => Promise.reject("transient"), + }); + yield Promise.all(allNotifications); + scheduler.finalize(); +}); + +add_task(function* testAuthError() { + prefs.set("retry", 10); + // We expect an auth error to result in no new timer (as it's waiting for + // some indication it can proceed), but with the next delay being a normal + // "retry" interval (so when we can proceed it is probably already stale, so + // is effectively "immediate") + let scheduler = createScheduler({ + expectedDelay: 10, + syncFunction: () => { + return Promise.reject(ReadingListScheduler._engine.ERROR_AUTHENTICATION); + }, + expectNewTimer: false + }); + // XXX - TODO - send an observer that "unblocks" us and ensure we actually + // do unblock. + scheduler.finalize(); +}); + +add_task(function* testBackoff() { + let scheduler = createScheduler({expectedDelay: 1000}); + Services.obs.notifyObservers(null, "readinglist:backoff-requested", 1000); + // XXX - this needs a little love as nothing checks createScheduler actually + // made the checks we think it does. + scheduler.finalize(); +}); + +function run_test() { + run_next_test(); +} diff --git a/browser/components/readinglist/test/xpcshell/xpcshell.ini b/browser/components/readinglist/test/xpcshell/xpcshell.ini new file mode 100644 index 000000000000..e204dde472e9 --- /dev/null +++ b/browser/components/readinglist/test/xpcshell/xpcshell.ini @@ -0,0 +1,5 @@ +[DEFAULT] +head = head.js +firefox-appdir = browser + +[test_scheduler.js] From 4b927d7a8d5c895650f992d72dc74d05a88618a1 Mon Sep 17 00:00:00 2001 From: Mark Hammond Date: Thu, 26 Feb 2015 18:48:11 +1100 Subject: [PATCH 003/112] Bug 1131413 (part 1) - add tests for browser-syncui.js. r=adw --- browser/base/content/test/general/browser.ini | 2 + .../content/test/general/browser_syncui.js | 110 ++++++++++++++++++ 2 files changed, 112 insertions(+) create mode 100644 browser/base/content/test/general/browser_syncui.js diff --git a/browser/base/content/test/general/browser.ini b/browser/base/content/test/general/browser.ini index 3e818176eb3b..f99cd0303bfc 100644 --- a/browser/base/content/test/general/browser.ini +++ b/browser/base/content/test/general/browser.ini @@ -403,6 +403,8 @@ support-files = [browser_ssl_error_reports.js] [browser_star_hsts.js] [browser_subframe_favicons_not_used.js] +[browser_syncui.js] +skip-if = e10s # Bug 1137087 - browser_tabopen_reflows.js fails if this was previously run with e10s [browser_tabDrop.js] skip-if = buildapp == 'mulet' || e10s [browser_tabMatchesInAwesomebar.js] diff --git a/browser/base/content/test/general/browser_syncui.js b/browser/base/content/test/general/browser_syncui.js new file mode 100644 index 000000000000..d49058ff12bb --- /dev/null +++ b/browser/base/content/test/general/browser_syncui.js @@ -0,0 +1,110 @@ +/* Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/publicdomain/zero/1.0/ */ + +let {Weave} = Cu.import("resource://services-sync/main.js", {}); +let {Notifications} = Cu.import("resource://services-sync/notifications.js", {}); + +let stringBundle = Cc["@mozilla.org/intl/stringbundle;1"] + .getService(Ci.nsIStringBundleService) + .createBundle("chrome://weave/locale/services/sync.properties"); + +function promiseObserver(topic) { + return new Promise(resolve => { + let obs = (subject, topic, data) => { + Services.obs.removeObserver(obs, topic); + resolve(subject); + } + Services.obs.addObserver(obs, topic, false); + }); +} + +add_task(function* prepare() { + let xps = Components.classes["@mozilla.org/weave/service;1"] + .getService(Components.interfaces.nsISupports) + .wrappedJSObject; + yield xps.whenLoaded(); + // mock out the "_needsSetup()" function so we don't short-circuit. + let oldNeedsSetup = window.gSyncUI._needsSetup; + window.gSyncUI._needsSetup = () => false; + registerCleanupFunction(() => { + window.gSyncUI._needsSetup = oldNeedsSetup; + // this test leaves the tab focused which can cause browser_tabopen_reflows + // to fail, so re-select the URLBar. + gURLBar.select(); + }); +}); + +add_task(function* testProlongedError() { + let promiseNotificationAdded = promiseObserver("weave:notification:added"); + Assert.equal(Notifications.notifications.length, 0, "start with no notifications"); + + // Pretend we are in the "prolonged error" state. + Weave.Status.sync = Weave.PROLONGED_SYNC_FAILURE; + Weave.Status.login = Weave.LOGIN_SUCCEEDED; + Services.obs.notifyObservers(null, "weave:ui:sync:error", null); + + let subject = yield promiseNotificationAdded; + let notification = subject.wrappedJSObject.object; // sync's observer abstraction is abstract! + Assert.equal(notification.title, stringBundle.GetStringFromName("error.sync.title")); + Assert.equal(Notifications.notifications.length, 1, "exactly 1 notification"); + + // Now pretend we just had a successful sync - the error notification should go away. + let promiseNotificationRemoved = promiseObserver("weave:notification:removed"); + Weave.Status.sync = Weave.STATUS_OK; + Services.obs.notifyObservers(null, "weave:ui:sync:finish", null); + yield promiseNotificationRemoved; + Assert.equal(Notifications.notifications.length, 0, "no notifications left"); +}); + +add_task(function* testLoginError() { + let promiseNotificationAdded = promiseObserver("weave:notification:added"); + Assert.equal(Notifications.notifications.length, 0, "start with no notifications"); + + // Pretend we are in the "prolonged error" state. + Weave.Status.sync = Weave.LOGIN_FAILED; + Weave.Status.login = Weave.LOGIN_FAILED_LOGIN_REJECTED; + Services.obs.notifyObservers(null, "weave:ui:sync:error", null); + + let subject = yield promiseNotificationAdded; + let notification = subject.wrappedJSObject.object; // sync's observer abstraction is abstract! + Assert.equal(notification.title, stringBundle.GetStringFromName("error.login.title")); + Assert.equal(Notifications.notifications.length, 1, "exactly 1 notification"); + // Now pretend we just had a successful login - the error notification should go away. + Weave.Status.sync = Weave.STATUS_OK; + Weave.Status.login = Weave.LOGIN_SUCCEEDED; + let promiseNotificationRemoved = promiseObserver("weave:notification:removed"); + Services.obs.notifyObservers(null, "weave:service:login:start", null); + Services.obs.notifyObservers(null, "weave:service:login:finish", null); + yield promiseNotificationRemoved; + Assert.equal(Notifications.notifications.length, 0, "no notifications left"); +}); + +function testButtonActions(startNotification, endNotification) { + let button = document.getElementById("sync-button"); + Assert.ok(button, "button exists"); + let panelbutton = document.getElementById("PanelUI-fxa-status"); + Assert.ok(panelbutton, "panel button exists"); + + // pretend a sync is starting. + Services.obs.notifyObservers(null, startNotification, null); + Assert.equal(button.getAttribute("status"), "active"); + Assert.equal(panelbutton.getAttribute("syncstatus"), "active"); + + Services.obs.notifyObservers(null, endNotification, null); + Assert.ok(!button.hasAttribute("status")); + Assert.ok(!panelbutton.hasAttribute("syncstatus")); +} + +add_task(function* testButtonActivities() { + // add the Sync button to the panel so we can get it! + CustomizableUI.addWidgetToArea("sync-button", CustomizableUI.AREA_PANEL); + // check the button's functionality + yield PanelUI.show(); + try { + testButtonActions("weave:service:login:start", "weave:service:login:finish"); + testButtonActions("weave:service:sync:start", "weave:ui:sync:finish"); + } finally { + PanelUI.hide(); + CustomizableUI.removeWidgetFromArea("sync-button"); + } +}); From 06c042e85daaedc52aeb7d0caabe818c7b71ae6e Mon Sep 17 00:00:00 2001 From: Mark Hammond Date: Thu, 26 Feb 2015 18:48:11 +1100 Subject: [PATCH 004/112] Bug 1131413 (part 2) - add readinglist support to browser-syncui.js. r=adw --- browser/base/content/browser-syncui.js | 207 +++++++++++++++--- browser/base/content/browser.js | 2 + .../content/test/general/browser_syncui.js | 166 ++++++++++++-- services/sync/modules/browserid_identity.js | 2 +- 4 files changed, 328 insertions(+), 49 deletions(-) diff --git a/browser/base/content/browser-syncui.js b/browser/base/content/browser-syncui.js index f9fe95bb300b..d956efc80da2 100644 --- a/browser/base/content/browser-syncui.js +++ b/browser/base/content/browser-syncui.js @@ -11,13 +11,19 @@ XPCOMUtils.defineLazyModuleGetter(this, "CloudSync", let CloudSync = null; #endif +XPCOMUtils.defineLazyModuleGetter(this, "ReadingListScheduler", + "resource:///modules/readinglist/Scheduler.jsm"); + // gSyncUI handles updating the tools menu and displaying notifications. let gSyncUI = { _obs: ["weave:service:sync:start", + "weave:service:sync:finish", + "weave:service:sync:error", "weave:service:quota:remaining", "weave:service:setup-complete", "weave:service:login:start", "weave:service:login:finish", + "weave:service:login:error", "weave:service:logout:finish", "weave:service:start-over", "weave:service:start-over:finish", @@ -25,9 +31,15 @@ let gSyncUI = { "weave:ui:sync:error", "weave:ui:sync:finish", "weave:ui:clear-error", + + "readinglist:sync:start", + "readinglist:sync:finish", + "readinglist:sync:error", ], _unloaded: false, + // The number of "active" syncs - while this is non-zero, our button will spin + _numActiveSyncTasks: 0, init: function () { Cu.import("resource://services-common/stringbundle.js"); @@ -95,21 +107,25 @@ let gSyncUI = { } }, - _needsSetup: function SUI__needsSetup() { + _needsSetup() { // We want to treat "account needs verification" as "needs setup". So // "reach in" to Weave.Status._authManager to check whether we the signed-in // user is verified. // Referencing Weave.Status spins a nested event loop to initialize the // authManager, so this should always return a value directly. // This only applies to fxAccounts-based Sync. - if (Weave.Status._authManager._signedInUser) { - // If we have a signed in user already, and that user is not verified, - // revert to the "needs setup" state. - if (!Weave.Status._authManager._signedInUser.verified) { - return true; - } + if (Weave.Status._authManager._signedInUser !== undefined) { + // So we are using Firefox accounts - in this world, checking Sync isn't + // enough as reading list may be configured but not Sync. + // We consider ourselves setup if we have a verified user. + // XXX - later we should consider checking preferences to ensure at least + // one engine is enabled? + return !Weave.Status._authManager._signedInUser || + !Weave.Status._authManager._signedInUser.verified; } + // So we are using legacy sync, and reading-list isn't supported for such + // users, so check sync itself. let firstSync = ""; try { firstSync = Services.prefs.getCharPref("services.sync.firstSync"); @@ -120,7 +136,8 @@ let gSyncUI = { }, _loginFailed: function () { - return Weave.Status.login == Weave.LOGIN_FAILED_LOGIN_REJECTED; + return Weave.Status.login == Weave.LOGIN_FAILED_LOGIN_REJECTED || + ReadingListScheduler.state == ReadingListScheduler.STATE_ERROR_AUTHENTICATION; }, updateUI: function SUI_updateUI() { @@ -136,6 +153,7 @@ let gSyncUI = { document.getElementById("sync-syncnow-state").hidden = false; } else if (loginFailed) { document.getElementById("sync-reauth-state").hidden = false; + this.showLoginError(); } else if (needsSetup) { document.getElementById("sync-setup-state").hidden = false; } else { @@ -146,14 +164,6 @@ let gSyncUI = { return; let syncButton = document.getElementById("sync-button"); - if (syncButton) { - syncButton.removeAttribute("status"); - } - let panelHorizontalButton = document.getElementById("PanelUI-fxa-status"); - if (panelHorizontalButton) { - panelHorizontalButton.removeAttribute("syncstatus"); - } - if (needsSetup && syncButton) syncButton.removeAttribute("tooltiptext"); @@ -162,17 +172,45 @@ let gSyncUI = { // Functions called by observers - onActivityStart: function SUI_onActivityStart() { + onActivityStart() { if (!gBrowser) return; - let button = document.getElementById("sync-button"); - if (button) { - button.setAttribute("status", "active"); + this.log.debug("onActivityStart with numActive", this._numActiveSyncTasks); + if (++this._numActiveSyncTasks == 1) { + let button = document.getElementById("sync-button"); + if (button) { + button.setAttribute("status", "active"); + } + button = document.getElementById("PanelUI-fxa-status"); + if (button) { + button.setAttribute("syncstatus", "active"); + } } - button = document.getElementById("PanelUI-fxa-status"); - if (button) { - button.setAttribute("syncstatus", "active"); + }, + + onActivityStop() { + if (!gBrowser) + return; + this.log.debug("onActivityStop with numActive", this._numActiveSyncTasks); + if (--this._numActiveSyncTasks) { + if (this._numActiveSyncTasks < 0) { + // This isn't particularly useful (it seems more likely we'll set a + // "start" without a "stop" meaning it forever remains > 0) but it + // might offer some value... + this.log.error("mismatched onActivityStart/Stop calls", + new Error("active=" + this._numActiveSyncTasks)); + } + return; // active tasks are still ongoing... + } + + let syncButton = document.getElementById("sync-button"); + if (syncButton) { + syncButton.removeAttribute("status"); + } + let panelHorizontalButton = document.getElementById("PanelUI-fxa-status"); + if (panelHorizontalButton) { + panelHorizontalButton.removeAttribute("syncstatus"); } }, @@ -187,6 +225,7 @@ let gSyncUI = { }, onLoginError: function SUI_onLoginError() { + // Note: This is used for *both* Sync and ReadingList login errors. // if login fails, any other notifications are essentially moot Weave.Notifications.removeAll(); @@ -200,11 +239,18 @@ let gSyncUI = { this.updateUI(); return; } + this.showLoginError(); + this.updateUI(); + }, + showLoginError() { + // Note: This is used for *both* Sync and ReadingList login errors. let title = this._stringBundle.GetStringFromName("error.login.title"); let description; - if (Weave.Status.sync == Weave.PROLONGED_SYNC_FAILURE) { + if (Weave.Status.sync == Weave.PROLONGED_SYNC_FAILURE || + this.isProlongedReadingListError()) { + this.log.debug("showLoginError has a prolonged login error"); // Convert to days let lastSync = Services.prefs.getIntPref("services.sync.errorhandler.networkFailureReportTimeout") / 86400; @@ -214,6 +260,7 @@ let gSyncUI = { let reason = Weave.Utils.getErrorString(Weave.Status.login); description = this._stringBundle.formatStringFromName("error.sync.description", [reason], 1); + this.log.debug("showLoginError has a non-prolonged error", reason); } let buttons = []; @@ -226,7 +273,6 @@ let gSyncUI = { let notification = new Weave.Notification(title, description, null, Weave.Notifications.PRIORITY_WARNING, buttons); Weave.Notifications.replaceTitle(notification); - this.updateUI(); }, onLogout: function SUI_onLogout() { @@ -271,6 +317,7 @@ let gSyncUI = { } Services.obs.notifyObservers(null, "cloudsync:user-sync", null); + Services.obs.notifyObservers(null, "readinglist:user-sync", null); }, handleToolbarButton: function SUI_handleStatusbarButton() { @@ -367,7 +414,15 @@ let gSyncUI = { let lastSync; try { - lastSync = Services.prefs.getCharPref("services.sync.lastSync"); + lastSync = new Date(Services.prefs.getCharPref("services.sync.lastSync")); + } + catch (e) { }; + // and reading-list time - we want whatever one is the most recent. + try { + let lastRLSync = new Date(Services.prefs.getCharPref("readinglist.scheduler.lastSync")); + if (!lastSync || lastRLSync > lastSync) { + lastSync = lastRLSync; + } } catch (e) { }; if (!lastSync || this._needsSetup()) { @@ -376,9 +431,9 @@ let gSyncUI = { } // Show the day-of-week and time (HH:MM) of last sync - let lastSyncDate = new Date(lastSync).toLocaleFormat("%a %H:%M"); + let lastSyncDateString = lastSync.toLocaleFormat("%a %H:%M"); let lastSyncLabel = - this._stringBundle.formatStringFromName("lastSync2.label", [lastSyncDate], 1); + this._stringBundle.formatStringFromName("lastSync2.label", [lastSyncDateString], 1); syncButton.setAttribute("tooltiptext", lastSyncLabel); }, @@ -395,7 +450,69 @@ let gSyncUI = { this.clearError(title); }, + // Return true if the reading-list is in a "prolonged" error state. That + // engine doesn't impose what that means, so calculate it here. For + // consistency, we just use the sync prefs. + isProlongedReadingListError() { + let lastSync, threshold, prolonged; + try { + lastSync = new Date(Services.prefs.getCharPref("readinglist.scheduler.lastSync")); + threshold = new Date(Date.now() - Services.prefs.getIntPref("services.sync.errorhandler.networkFailureReportTimeout")); + prolonged = lastSync <= threshold; + } catch (ex) { + // no pref, assume not prolonged. + prolonged = false; + } + this.log.debug("isProlongedReadingListError has last successful sync at ${lastSync}, threshold is ${threshold}, prolonged=${prolonged}", + {lastSync, threshold, prolonged}); + return prolonged; + }, + + onRLSyncError() { + // Like onSyncError, but from the reading-list engine. + // However, the current UX around Sync is that error notifications should + // generally *not* be seen as they typically aren't actionable - so only + // authentication errors (which require user action) and "prolonged" errors + // (which technically aren't actionable, but user really should know anyway) + // are shown. + this.log.debug("onRLSyncError with readingList state", ReadingListScheduler.state); + if (ReadingListScheduler.state == ReadingListScheduler.STATE_ERROR_AUTHENTICATION) { + this.onLoginError(); + return; + } + // If it's not prolonged there's nothing to do. + if (!this.isProlongedReadingListError()) { + this.log.debug("onRLSyncError has a non-authentication, non-prolonged error, so not showing any error UI"); + return; + } + // So it's a prolonged error. + // Unfortunate duplication from below... + this.log.debug("onRLSyncError has a prolonged error"); + let title = this._stringBundle.GetStringFromName("error.sync.title"); + // XXX - this is somewhat wrong - we are reporting the threshold we consider + // to be prolonged, not how long it actually has been. (ie, lastSync below + // is effectively constant) - bit it too is copied from below. + let lastSync = + Services.prefs.getIntPref("services.sync.errorhandler.networkFailureReportTimeout") / 86400; + let description = + this._stringBundle.formatStringFromName("error.sync.prolonged_failure", [lastSync], 1); + let priority = Weave.Notifications.PRIORITY_INFO; + let buttons = [ + new Weave.NotificationButton( + this._stringBundle.GetStringFromName("error.sync.tryAgainButton.label"), + this._stringBundle.GetStringFromName("error.sync.tryAgainButton.accesskey"), + function() { gSyncUI.doSync(); return true; } + ), + ]; + let notification = + new Weave.Notification(title, description, null, priority, buttons); + Weave.Notifications.replaceTitle(notification); + + this.updateUI(); + }, + onSyncError: function SUI_onSyncError() { + this.log.debug("onSyncError"); let title = this._stringBundle.GetStringFromName("error.sync.title"); if (Weave.Status.login != Weave.LOGIN_SUCCEEDED) { @@ -418,7 +535,9 @@ let gSyncUI = { let priority = Weave.Notifications.PRIORITY_WARNING; let buttons = []; - // Check if the client is outdated in some way + // Check if the client is outdated in some way (but note: we've never in the + // past, and probably never will, bump the relevent version numbers, so + // this is effectively dead code!) let outdated = Weave.Status.sync == Weave.VERSION_OUT_OF_DATE; for (let [engine, reason] in Iterator(Weave.Status.engines)) outdated = outdated || reason == Weave.VERSION_OUT_OF_DATE; @@ -468,6 +587,7 @@ let gSyncUI = { }, observe: function SUI_observe(subject, topic, data) { + this.log.debug("observed", topic); if (this._unloaded) { Cu.reportError("SyncUI observer called after unload: " + topic); return; @@ -480,10 +600,26 @@ let gSyncUI = { subject = subject.wrappedJSObject.object; } + // First handle "activity" only. switch (topic) { case "weave:service:sync:start": + case "weave:service:login:start": + case "readinglist:sync:start": this.onActivityStart(); break; + case "weave:service:sync:finish": + case "weave:service:sync:error": + case "weave:service:login:finish": + case "weave:service:login:error": + case "readinglist:sync:finish": + case "readinglist:sync:error": + this.onActivityStop(); + break; + } + // Now non-activity state (eg, enabled, errors, etc) + // Note that sync uses the ":ui:" notifications for errors because sync. + // ReadingList has no such concept (yet?; hopefully the :error is enough!) + switch (topic) { case "weave:ui:sync:finish": this.onSyncFinish(); break; @@ -496,9 +632,6 @@ let gSyncUI = { case "weave:service:setup-complete": this.onSetupComplete(); break; - case "weave:service:login:start": - this.onActivityStart(); - break; case "weave:service:login:finish": this.onLoginFinish(); break; @@ -523,6 +656,13 @@ let gSyncUI = { case "weave:ui:clear-error": this.clearError(); break; + + case "readinglist:sync:error": + this.onRLSyncError(); + break; + case "readinglist:sync:finish": + this.clearError(); + break; } }, @@ -540,3 +680,6 @@ XPCOMUtils.defineLazyGetter(gSyncUI, "_stringBundle", function() { createBundle("chrome://weave/locale/services/sync.properties"); }); +XPCOMUtils.defineLazyGetter(gSyncUI, "log", function() { + return Log.repository.getLogger("browserwindow.syncui"); +}); diff --git a/browser/base/content/browser.js b/browser/base/content/browser.js index 342220ed91b2..8ee8f137d44c 100644 --- a/browser/base/content/browser.js +++ b/browser/base/content/browser.js @@ -37,6 +37,8 @@ XPCOMUtils.defineLazyModuleGetter(this, "ContentSearch", "resource:///modules/ContentSearch.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "AboutHome", "resource:///modules/AboutHome.jsm"); +XPCOMUtils.defineLazyModuleGetter(this, "Log", + "resource://gre/modules/Log.jsm"); XPCOMUtils.defineLazyServiceGetter(this, "Favicons", "@mozilla.org/browser/favicon-service;1", "mozIAsyncFavicons"); diff --git a/browser/base/content/test/general/browser_syncui.js b/browser/base/content/test/general/browser_syncui.js index d49058ff12bb..68f11243260e 100644 --- a/browser/base/content/test/general/browser_syncui.js +++ b/browser/base/content/test/general/browser_syncui.js @@ -1,13 +1,19 @@ /* Any copyright is dedicated to the Public Domain. * http://creativecommons.org/publicdomain/zero/1.0/ */ +let {Log} = Cu.import("resource://gre/modules/Log.jsm", {}); let {Weave} = Cu.import("resource://services-sync/main.js", {}); let {Notifications} = Cu.import("resource://services-sync/notifications.js", {}); +// The BackStagePass allows us to get this test-only non-exported function. +let {getInternalScheduler} = Cu.import("resource:///modules/readinglist/Scheduler.jsm", {}); let stringBundle = Cc["@mozilla.org/intl/stringbundle;1"] .getService(Ci.nsIStringBundleService) .createBundle("chrome://weave/locale/services/sync.properties"); +// ensure test output sees log messages. +Log.repository.getLogger("browserwindow.syncui").addAppender(new Log.DumpAppender()); + function promiseObserver(topic) { return new Promise(resolve => { let obs = (subject, topic, data) => { @@ -28,13 +34,10 @@ add_task(function* prepare() { window.gSyncUI._needsSetup = () => false; registerCleanupFunction(() => { window.gSyncUI._needsSetup = oldNeedsSetup; - // this test leaves the tab focused which can cause browser_tabopen_reflows - // to fail, so re-select the URLBar. - gURLBar.select(); }); }); -add_task(function* testProlongedError() { +add_task(function* testProlongedSyncError() { let promiseNotificationAdded = promiseObserver("weave:notification:added"); Assert.equal(Notifications.notifications.length, 0, "start with no notifications"); @@ -56,7 +59,32 @@ add_task(function* testProlongedError() { Assert.equal(Notifications.notifications.length, 0, "no notifications left"); }); -add_task(function* testLoginError() { +add_task(function* testProlongedRLError() { + let promiseNotificationAdded = promiseObserver("weave:notification:added"); + Assert.equal(Notifications.notifications.length, 0, "start with no notifications"); + + // Pretend the reading-list is in the "prolonged error" state. + let longAgo = new Date(Date.now() - 100 * 24 * 60 * 60 * 1000); // 100 days ago. + Services.prefs.setCharPref("readinglist.scheduler.lastSync", longAgo.toString()); + getInternalScheduler().state = ReadingListScheduler.STATE_ERROR_OTHER; + Services.obs.notifyObservers(null, "readinglist:sync:start", null); + Services.obs.notifyObservers(null, "readinglist:sync:error", null); + + let subject = yield promiseNotificationAdded; + let notification = subject.wrappedJSObject.object; // sync's observer abstraction is abstract! + Assert.equal(notification.title, stringBundle.GetStringFromName("error.sync.title")); + Assert.equal(Notifications.notifications.length, 1, "exactly 1 notification"); + + // Now pretend we just had a successful sync - the error notification should go away. + let promiseNotificationRemoved = promiseObserver("weave:notification:removed"); + Services.prefs.setCharPref("readinglist.scheduler.lastSync", Date.now().toString()); + Services.obs.notifyObservers(null, "readinglist:sync:start", null); + Services.obs.notifyObservers(null, "readinglist:sync:finish", null); + yield promiseNotificationRemoved; + Assert.equal(Notifications.notifications.length, 0, "no notifications left"); +}); + +add_task(function* testSyncLoginError() { let promiseNotificationAdded = promiseObserver("weave:notification:added"); Assert.equal(Notifications.notifications.length, 0, "start with no notifications"); @@ -69,6 +97,7 @@ add_task(function* testLoginError() { let notification = subject.wrappedJSObject.object; // sync's observer abstraction is abstract! Assert.equal(notification.title, stringBundle.GetStringFromName("error.login.title")); Assert.equal(Notifications.notifications.length, 1, "exactly 1 notification"); + // Now pretend we just had a successful login - the error notification should go away. Weave.Status.sync = Weave.STATUS_OK; Weave.Status.login = Weave.LOGIN_SUCCEEDED; @@ -79,20 +108,100 @@ add_task(function* testLoginError() { Assert.equal(Notifications.notifications.length, 0, "no notifications left"); }); -function testButtonActions(startNotification, endNotification) { - let button = document.getElementById("sync-button"); - Assert.ok(button, "button exists"); - let panelbutton = document.getElementById("PanelUI-fxa-status"); - Assert.ok(panelbutton, "panel button exists"); +add_task(function* testRLLoginError() { + let promiseNotificationAdded = promiseObserver("weave:notification:added"); + Assert.equal(Notifications.notifications.length, 0, "start with no notifications"); + // Pretend RL is in an auth error state + getInternalScheduler().state = ReadingListScheduler.STATE_ERROR_AUTHENTICATION; + Services.obs.notifyObservers(null, "readinglist:sync:start", null); + Services.obs.notifyObservers(null, "readinglist:sync:error", null); + + let subject = yield promiseNotificationAdded; + let notification = subject.wrappedJSObject.object; // sync's observer abstraction is abstract! + Assert.equal(notification.title, stringBundle.GetStringFromName("error.login.title")); + Assert.equal(Notifications.notifications.length, 1, "exactly 1 notification"); + + // Now pretend we just had a successful sync - the error notification should go away. + getInternalScheduler().state = ReadingListScheduler.STATE_OK; + let promiseNotificationRemoved = promiseObserver("weave:notification:removed"); + Services.obs.notifyObservers(null, "readinglist:sync:start", null); + Services.obs.notifyObservers(null, "readinglist:sync:finish", null); + yield promiseNotificationRemoved; + Assert.equal(Notifications.notifications.length, 0, "no notifications left"); +}); + +// Here we put readinglist into an "authentication error" state (should see +// the error bar reflecting this), then report a prolonged error from Sync (an +// infobar to reflect the sync error should replace it), then resolve the sync +// error - the authentication error from readinglist should remain. +add_task(function* testRLLoginErrorRemains() { + let promiseNotificationAdded = promiseObserver("weave:notification:added"); + Assert.equal(Notifications.notifications.length, 0, "start with no notifications"); + + // Pretend RL is in an auth error state + getInternalScheduler().state = ReadingListScheduler.STATE_ERROR_AUTHENTICATION; + Services.obs.notifyObservers(null, "readinglist:sync:start", null); + Services.obs.notifyObservers(null, "readinglist:sync:error", null); + + let subject = yield promiseNotificationAdded; + let notification = subject.wrappedJSObject.object; // sync's observer abstraction is abstract! + Assert.equal(notification.title, stringBundle.GetStringFromName("error.login.title")); + Assert.equal(Notifications.notifications.length, 1, "exactly 1 notification"); + + // Now Sync into a prolonged auth error state. + promiseNotificationAdded = promiseObserver("weave:notification:added"); + Weave.Status.sync = Weave.PROLONGED_SYNC_FAILURE; + Weave.Status.login = Weave.LOGIN_FAILED_LOGIN_REJECTED; + Services.obs.notifyObservers(null, "weave:ui:sync:error", null); + subject = yield promiseNotificationAdded; + // still exactly 1 notification with the "login" title. + notification = subject.wrappedJSObject.object; + Assert.equal(notification.title, stringBundle.GetStringFromName("error.login.title")); + Assert.equal(Notifications.notifications.length, 1, "exactly 1 notification"); + + // Resolve the sync problem. + promiseNotificationAdded = promiseObserver("weave:notification:added"); + Weave.Status.sync = Weave.STATUS_OK; + Weave.Status.login = Weave.LOGIN_SUCCEEDED; + Services.obs.notifyObservers(null, "weave:ui:sync:finish", null); + + // Expect one notification - the RL login problem. + subject = yield promiseNotificationAdded; + // still exactly 1 notification with the "login" title. + notification = subject.wrappedJSObject.object; + Assert.equal(notification.title, stringBundle.GetStringFromName("error.login.title")); + Assert.equal(Notifications.notifications.length, 1, "exactly 1 notification"); + + // and cleanup - resolve the readinglist error. + getInternalScheduler().state = ReadingListScheduler.STATE_OK; + let promiseNotificationRemoved = promiseObserver("weave:notification:removed"); + Services.obs.notifyObservers(null, "readinglist:sync:start", null); + Services.obs.notifyObservers(null, "readinglist:sync:finish", null); + yield promiseNotificationRemoved; + Assert.equal(Notifications.notifications.length, 0, "no notifications left"); +}); + +function checkButtonsStatus(shouldBeActive) { + let button = document.getElementById("sync-button"); + let panelbutton = document.getElementById("PanelUI-fxa-status"); + if (shouldBeActive) { + Assert.equal(button.getAttribute("status"), "active"); + Assert.equal(panelbutton.getAttribute("syncstatus"), "active"); + } else { + Assert.ok(!button.hasAttribute("status")); + Assert.ok(!panelbutton.hasAttribute("syncstatus")); + } +} + +function testButtonActions(startNotification, endNotification) { + checkButtonsStatus(false); // pretend a sync is starting. Services.obs.notifyObservers(null, startNotification, null); - Assert.equal(button.getAttribute("status"), "active"); - Assert.equal(panelbutton.getAttribute("syncstatus"), "active"); - + checkButtonsStatus(true); + // and has stopped Services.obs.notifyObservers(null, endNotification, null); - Assert.ok(!button.hasAttribute("status")); - Assert.ok(!panelbutton.hasAttribute("syncstatus")); + checkButtonsStatus(false); } add_task(function* testButtonActivities() { @@ -102,7 +211,32 @@ add_task(function* testButtonActivities() { yield PanelUI.show(); try { testButtonActions("weave:service:login:start", "weave:service:login:finish"); - testButtonActions("weave:service:sync:start", "weave:ui:sync:finish"); + testButtonActions("weave:service:login:start", "weave:service:login:error"); + + testButtonActions("weave:service:sync:start", "weave:service:sync:finish"); + testButtonActions("weave:service:sync:start", "weave:service:sync:error"); + + testButtonActions("readinglist:sync:start", "readinglist:sync:finish"); + testButtonActions("readinglist:sync:start", "readinglist:sync:error"); + + // and ensure the counters correctly handle multiple in-flight syncs + Services.obs.notifyObservers(null, "weave:service:sync:start", null); + checkButtonsStatus(true); + Services.obs.notifyObservers(null, "readinglist:sync:start", null); + checkButtonsStatus(true); + Services.obs.notifyObservers(null, "readinglist:sync:finish", null); + // sync is still going... + checkButtonsStatus(true); + // another reading list starts + Services.obs.notifyObservers(null, "readinglist:sync:start", null); + checkButtonsStatus(true); + // The initial sync stops. + Services.obs.notifyObservers(null, "weave:service:sync:finish", null); + // RL is still going... + checkButtonsStatus(true); + // RL finishes with an error, so no longer active. + Services.obs.notifyObservers(null, "readinglist:sync:error", null); + checkButtonsStatus(false); } finally { PanelUI.hide(); CustomizableUI.removeWidgetFromArea("sync-button"); diff --git a/services/sync/modules/browserid_identity.js b/services/sync/modules/browserid_identity.js index f466c386e901..f466c1710dde 100644 --- a/services/sync/modules/browserid_identity.js +++ b/services/sync/modules/browserid_identity.js @@ -617,7 +617,7 @@ this.BrowserIDManager.prototype = { // that there is no authentication dance still under way. this._shouldHaveSyncKeyBundle = true; Weave.Status.login = this._authFailureReason; - Services.obs.notifyObservers(null, "weave:service:login:error", null); + Services.obs.notifyObservers(null, "weave:ui:login:error", null); throw err; }); }, From e1691cb1e109ae4a0c8f2443d1fc1e70615febe0 Mon Sep 17 00:00:00 2001 From: Tim Nguyen Date: Wed, 25 Feb 2015 07:04:00 +0100 Subject: [PATCH 005/112] Bug 1008171 - Add focus indicator for elements inside the in-content prefs (on OSX). r=Gijs --- toolkit/themes/osx/global/in-content/common.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/toolkit/themes/osx/global/in-content/common.css b/toolkit/themes/osx/global/in-content/common.css index f20b30430336..5d30f9490d40 100644 --- a/toolkit/themes/osx/global/in-content/common.css +++ b/toolkit/themes/osx/global/in-content/common.css @@ -82,3 +82,17 @@ xul|*.inline-link:-moz-focusring { color: #ff9500; text-decoration: underline; } + +xul|button:-moz-focusring, +xul|menulist:-moz-focusring, +xul|checkbox:-moz-focusring > .checkbox-check, +xul|radio[focused="true"] > .radio-check, +xul|tab:-moz-focusring > .tab-middle > .tab-text { + outline: 2px solid rgba(0,149,221,0.5); + outline-offset: 1px; + -moz-outline-radius: 2px; +} + +xul|radio[focused="true"] > .radio-check { + -moz-outline-radius: 100%; +} \ No newline at end of file From cc84bb7a5ab7c584f3d67e413ac33e5fe2a0f56d Mon Sep 17 00:00:00 2001 From: Ian Moody Date: Wed, 25 Feb 2015 06:01:00 +0100 Subject: [PATCH 006/112] Bug 1136693 - Make the headers request URL and security panel info visible in the dark theme. r=vp --- browser/themes/shared/devtools/netmonitor.inc.css | 1 + 1 file changed, 1 insertion(+) diff --git a/browser/themes/shared/devtools/netmonitor.inc.css b/browser/themes/shared/devtools/netmonitor.inc.css index 5e6ba5c53515..d2c893e00894 100644 --- a/browser/themes/shared/devtools/netmonitor.inc.css +++ b/browser/themes/shared/devtools/netmonitor.inc.css @@ -495,6 +495,7 @@ label.requests-menu-status-code { } .tabpanel-summary-value { + color: inherit; -moz-padding-start: 3px; } From e3e474039d4253ff7250d71bc296d7ea9dba4f81 Mon Sep 17 00:00:00 2001 From: Milan Sreckovic Date: Wed, 18 Feb 2015 16:50:31 -0500 Subject: [PATCH 007/112] Bug 1019209 - Allow GL initialization without Android bridge, delay some GL string initialization, clean up some AndroidBridge code. r=snorp --- gfx/gl/GLLibraryEGL.cpp | 2 ++ widget/android/AndroidBridge.cpp | 14 ++++------ widget/android/AndroidBridge.h | 2 +- widget/android/GfxInfo.cpp | 48 ++++++++++++++++++++------------ 4 files changed, 38 insertions(+), 28 deletions(-) diff --git a/gfx/gl/GLLibraryEGL.cpp b/gfx/gl/GLLibraryEGL.cpp index 40cee8d0c98d..e0c2d7815f9d 100644 --- a/gfx/gl/GLLibraryEGL.cpp +++ b/gfx/gl/GLLibraryEGL.cpp @@ -42,6 +42,8 @@ static const char *sEGLExtensionNames[] = { static PRLibrary* LoadApitraceLibrary() { + // Initialization of gfx prefs here is only needed during the unit tests... + gfxPrefs::GetSingleton(); if (!gfxPrefs::UseApitrace()) { return nullptr; } diff --git a/widget/android/AndroidBridge.cpp b/widget/android/AndroidBridge.cpp index 89f71b223919..24570d8f2472 100644 --- a/widget/android/AndroidBridge.cpp +++ b/widget/android/AndroidBridge.cpp @@ -50,7 +50,7 @@ using namespace mozilla::gfx; using namespace mozilla::jni; using namespace mozilla::widget; -AndroidBridge* AndroidBridge::sBridge; +AndroidBridge* AndroidBridge::sBridge = nullptr; pthread_t AndroidBridge::sJavaUiThread = -1; static unsigned sJavaEnvThreadIndex = 0; static jobject sGlobalContext = nullptr; @@ -161,14 +161,12 @@ AndroidBridge::ConstructBridge(JNIEnv *jEnv, Object::Param clsLoader) PR_NewThreadPrivateIndex(&sJavaEnvThreadIndex, JavaThreadDetachFunc); - AndroidBridge *bridge = new AndroidBridge(); - if (!bridge->Init(jEnv, clsLoader)) { - delete bridge; - } - sBridge = bridge; + MOZ_ASSERT(!sBridge); + sBridge = new AndroidBridge; + sBridge->Init(jEnv, clsLoader); // Success or crash } -bool +void AndroidBridge::Init(JNIEnv *jEnv, Object::Param clsLoader) { ALOG_BRIDGE("AndroidBridge::Init"); @@ -244,8 +242,6 @@ AndroidBridge::Init(JNIEnv *jEnv, Object::Param clsLoader) // jEnv should NOT be cached here by anything -- the jEnv here // is not valid for the real gecko main thread, which is set // at SetMainThread time. - - return true; } bool diff --git a/widget/android/AndroidBridge.h b/widget/android/AndroidBridge.h index 5e22bdb1f244..bb2d7f58a31e 100644 --- a/widget/android/AndroidBridge.h +++ b/widget/android/AndroidBridge.h @@ -364,7 +364,7 @@ protected: ~AndroidBridge(); void InitStubs(JNIEnv *jEnv); - bool Init(JNIEnv *jEnv, jni::Object::Param clsLoader); + void Init(JNIEnv *jEnv, jni::Object::Param clsLoader); bool mOpenedGraphicsLibraries; void OpenGraphicsLibraries(); diff --git a/widget/android/GfxInfo.cpp b/widget/android/GfxInfo.cpp index 95bd0d409cd8..5fdf1fa99b06 100644 --- a/widget/android/GfxInfo.cpp +++ b/widget/android/GfxInfo.cpp @@ -41,8 +41,9 @@ public: return mVendor; } + // This spoofed value wins, even if the environment variable + // MOZ_GFX_SPOOF_GL_VENDOR was set. void SpoofVendor(const nsCString& s) { - EnsureInitialized(); mVendor = s; } @@ -51,8 +52,9 @@ public: return mRenderer; } + // This spoofed value wins, even if the environment variable + // MOZ_GFX_SPOOF_GL_RENDERER was set. void SpoofRenderer(const nsCString& s) { - EnsureInitialized(); mRenderer = s; } @@ -61,8 +63,9 @@ public: return mVersion; } + // This spoofed value wins, even if the environment variable + // MOZ_GFX_SPOOF_GL_VERSION was set. void SpoofVersion(const nsCString& s) { - EnsureInitialized(); mVersion = s; } @@ -85,21 +88,32 @@ public: gl->MakeCurrent(); - const char *spoofedVendor = PR_GetEnv("MOZ_GFX_SPOOF_GL_VENDOR"); - if (spoofedVendor) + if (mVendor.IsEmpty()) { + const char *spoofedVendor = PR_GetEnv("MOZ_GFX_SPOOF_GL_VENDOR"); + if (spoofedVendor) { mVendor.Assign(spoofedVendor); - else + } else { mVendor.Assign((const char*)gl->fGetString(LOCAL_GL_VENDOR)); - const char *spoofedRenderer = PR_GetEnv("MOZ_GFX_SPOOF_GL_RENDERER"); - if (spoofedRenderer) + } + } + + if (mRenderer.IsEmpty()) { + const char *spoofedRenderer = PR_GetEnv("MOZ_GFX_SPOOF_GL_RENDERER"); + if (spoofedRenderer) { mRenderer.Assign(spoofedRenderer); - else + } else { mRenderer.Assign((const char*)gl->fGetString(LOCAL_GL_RENDERER)); - const char *spoofedVersion = PR_GetEnv("MOZ_GFX_SPOOF_GL_VERSION"); - if (spoofedVersion) + } + } + + if (mVersion.IsEmpty()) { + const char *spoofedVersion = PR_GetEnv("MOZ_GFX_SPOOF_GL_VERSION"); + if (spoofedVersion) { mVersion.Assign(spoofedVersion); - else + } else { mVersion.Assign((const char*)gl->fGetString(LOCAL_GL_VERSION)); + } + } mReady = true; } @@ -153,9 +167,10 @@ GfxInfo::EnsureInitialized() if (mInitialized) return; - mGLStrings->EnsureInitialized(); - - MOZ_ASSERT(mozilla::AndroidBridge::Bridge()); + if (!mozilla::AndroidBridge::Bridge()) { + gfxWarning() << "AndroidBridge missing during initialization"; + return; + } if (mozilla::AndroidBridge::Bridge()->GetStaticStringField("android/os/Build", "MODEL", mModel)) { mAdapterDescription.AppendPrintf("Model: %s", NS_LossyConvertUTF16toASCII(mModel).get()); @@ -601,7 +616,6 @@ GfxInfo::GetFeatureStatusImpl(int32_t aFeature, /* void spoofVendorID (in DOMString aVendorID); */ NS_IMETHODIMP GfxInfo::SpoofVendorID(const nsAString & aVendorID) { - EnsureInitialized(); mGLStrings->SpoofVendor(NS_LossyConvertUTF16toASCII(aVendorID)); return NS_OK; } @@ -609,7 +623,6 @@ NS_IMETHODIMP GfxInfo::SpoofVendorID(const nsAString & aVendorID) /* void spoofDeviceID (in unsigned long aDeviceID); */ NS_IMETHODIMP GfxInfo::SpoofDeviceID(const nsAString & aDeviceID) { - EnsureInitialized(); mGLStrings->SpoofRenderer(NS_LossyConvertUTF16toASCII(aDeviceID)); return NS_OK; } @@ -617,7 +630,6 @@ NS_IMETHODIMP GfxInfo::SpoofDeviceID(const nsAString & aDeviceID) /* void spoofDriverVersion (in DOMString aDriverVersion); */ NS_IMETHODIMP GfxInfo::SpoofDriverVersion(const nsAString & aDriverVersion) { - EnsureInitialized(); mGLStrings->SpoofVersion(NS_LossyConvertUTF16toASCII(aDriverVersion)); return NS_OK; } From 5ea7c2bac6b6befaf4cd301cad7100ed5cc2a622 Mon Sep 17 00:00:00 2001 From: Ryan Nematz Date: Thu, 26 Feb 2015 02:44:00 -0500 Subject: [PATCH 008/112] Bug 999298 - Doorhanger button does not match system style. r=gijs --- .../themes/windows/global/notification.css | 67 ++++++++++++------- 1 file changed, 42 insertions(+), 25 deletions(-) diff --git a/toolkit/themes/windows/global/notification.css b/toolkit/themes/windows/global/notification.css index 05c64cfaf706..de8ab5f40a68 100644 --- a/toolkit/themes/windows/global/notification.css +++ b/toolkit/themes/windows/global/notification.css @@ -94,9 +94,7 @@ XXX: apply styles to all themes until bug 509642 is fixed -moz-appearance: none; border-radius: 3px; padding: 0; -%ifndef WINDOWS_AERO - background-color: rgba(250,250,250,.3); -%endif + background-color: rgba(250,250,250,.3) } .popup-notification-menubutton:hover:active { @@ -109,17 +107,25 @@ XXX: apply styles to all themes until bug 509642 is fixed -moz-appearance: none; margin: 0; border: 1px solid rgba(0,0,0,.35); -%ifdef WINDOWS_AERO - background-image: linear-gradient(rgba(250,250,250,.6), rgba(175,175,175,.25) 49%, rgba(0,0,0,.12) 51%, rgba(0,0,0,.09) 60%, rgba(0,0,0,.05)); - box-shadow: 0 0 1px 1px rgba(255,255,255,.75) inset; -%else + box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 2px 2px rgba(255,255,255,.35) inset, 0 -1px 2px rgba(0,0,0,.1) inset, 0 1px 0 rgba(255,255,255,.35); -%endif + } +%ifdef WINDOWS_AERO + @media (-moz-windows-glass) { + .popup-notification-menubutton:not([type="menu-button"]), + .popup-notification-menubutton > .button-menubutton-button, + .popup-notification-menubutton > .button-menubutton-dropmarker { + background-color: transparent; + background-image: linear-gradient(rgba(250,250,250,.6), rgba(175,175,175,.25) 49%, rgba(0,0,0,.12) 51%, rgba(0,0,0,.09) 60%, rgba(0,0,0,.05)); + box-shadow: 0 0 1px 1px rgba(255,255,255,.75) inset; + } + } +%endif .popup-notification-menubutton > .button-menubutton-button { background-color: transparent; padding: 1px; @@ -145,40 +151,51 @@ XXX: apply styles to all themes until bug 509642 is fixed } %ifdef WINDOWS_AERO - .popup-notification-menubutton > .button-menubutton-button:-moz-locale-dir(ltr), - .popup-notification-menubutton > .button-menubutton-dropmarker:-moz-locale-dir(rtl) { - border-radius: 2px 0 0 2px; - } + @media (-moz-windows-glass) { + .popup-notification-menubutton > .button-menubutton-button:-moz-locale-dir(ltr), + .popup-notification-menubutton > .button-menubutton-dropmarker:-moz-locale-dir(rtl) { + border-radius: 2px 0 0 2px; + } - .popup-notification-menubutton > .button-menubutton-button:-moz-locale-dir(rtl), - .popup-notification-menubutton > .button-menubutton-dropmarker:-moz-locale-dir(ltr) { - border-radius: 0 2px 2px 0; + .popup-notification-menubutton > .button-menubutton-button:-moz-locale-dir(rtl), + .popup-notification-menubutton > .button-menubutton-dropmarker:-moz-locale-dir(ltr) { + border-radius: 0 2px 2px 0; + } } %endif .popup-notification-menubutton:not([type="menu-button"]):hover, .popup-notification-menubutton > .button-menubutton-button:hover, .popup-notification-menubutton > .button-menubutton-dropmarker:hover { -%ifdef WINDOWS_AERO - background-image: linear-gradient(rgba(250,250,250,.9), rgba(200,200,200,.6) 49%, rgba(0,0,0,.23) 51%, rgba(0,0,0,.17) 60%, rgba(0,0,0,.05)); - box-shadow: 0 0 0 1px white inset, - 0 0 2px 1px rgba(255,255,255,.75) inset; -%else background-color: rgba(250,250,250,.6); -%endif } .popup-notification-menubutton:not([type="menu-button"]):hover:active, .popup-notification-menubutton > .button-menubutton-button:hover:active, .popup-notification-menubutton > .button-menubutton-dropmarker:hover:active, .popup-notification-menubutton[open="true"] > .button-menubutton-dropmarker { -%ifdef WINDOWS_AERO - background-image: linear-gradient(rgba(250,250,250,.9), rgba(200,200,200,.6) 49%, rgba(0,0,0,.23) 51%, rgba(0,0,0,.17) 60%, rgba(0,0,0,.05)); -%else background-color: rgba(0,0,0,.05); -%endif box-shadow: 0 0 2px rgba(0,0,0,.65) inset; } +%ifdef WINDOWS_AERO +@media (-moz-windows-glass) { + .popup-notification-menubutton:not([type="menu-button"]):hover, + .popup-notification-menubutton > .button-menubutton-button:hover, + .popup-notification-menubutton > .button-menubutton-dropmarker:hover { + background-color: transparent; + background-image: linear-gradient(rgba(250,250,250,.9), rgba(200,200,200,.6) 49%, rgba(0,0,0,.23) 51%, rgba(0,0,0,.17) 60%, rgba(0,0,0,.05)); + box-shadow: 0 0 0 1px white inset, + 0 0 2px 1px rgba(255,255,255,.75) inset; + } + .popup-notification-menubutton:not([type="menu-button"]):hover:active, + .popup-notification-menubutton > .button-menubutton-button:hover:active, + .popup-notification-menubutton > .button-menubutton-dropmarker:hover:active, + .popup-notification-menubutton[open="true"] > .button-menubutton-dropmarker { + background-color: transparent; + background-image: linear-gradient(rgba(250,250,250,.9), rgba(200,200,200,.6) 49%, rgba(0,0,0,.23) 51%, rgba(0,0,0,.17) 60%, rgba(0,0,0,.05)); + } +} +%endif /*}*/ %endif From d8408bc474985b9fbaeeb25f3e9827b79c6ef9bf Mon Sep 17 00:00:00 2001 From: Gijs Kruitbosch Date: Mon, 23 Feb 2015 21:55:30 +0000 Subject: [PATCH 009/112] Bug 1049199 - Style editor should show XBL stylesheets. r=pbrosset --- .../devtools/styleeditor/StyleEditorUI.jsm | 4 +- .../devtools/styleeditor/StyleSheetEditor.jsm | 24 +++++++- .../test/browser_styleeditor_autocomplete.js | 2 +- ...ser_styleeditor_bug_851132_middle_click.js | 2 +- .../test/browser_styleeditor_filesave.js | 4 +- .../test/browser_styleeditor_init.js | 2 +- ...owser_styleeditor_inline_friendly_names.js | 4 +- .../test/browser_styleeditor_new.js | 2 +- .../test/browser_styleeditor_nostyle.js | 2 +- .../test/browser_styleeditor_pretty.js | 2 +- .../browser_styleeditor_sourcemap_watching.js | 10 ++-- .../test/browser_styleeditor_sv_keynav.js | 2 +- .../test/browser_styleeditor_sv_resize.js | 2 +- toolkit/devtools/server/actors/stylesheets.js | 55 +++++++++++++++---- 14 files changed, 84 insertions(+), 33 deletions(-) diff --git a/browser/devtools/styleeditor/StyleEditorUI.jsm b/browser/devtools/styleeditor/StyleEditorUI.jsm index e9832d3d2628..ad899a16f343 100644 --- a/browser/devtools/styleeditor/StyleEditorUI.jsm +++ b/browser/devtools/styleeditor/StyleEditorUI.jsm @@ -447,13 +447,15 @@ StyleEditorUI.prototype = { * Editor to create UI for. */ _sourceLoaded: function(editor) { + let ordinal = editor.styleSheet.styleSheetIndex; + ordinal = ordinal == -1 ? Number.MAX_SAFE_INTEGER : ordinal; // add new sidebar item and editor to the UI this._view.appendTemplatedItem(STYLE_EDITOR_TEMPLATE, { data: { editor: editor }, disableAnimations: this._alwaysDisableAnimations, - ordinal: editor.styleSheet.styleSheetIndex, + ordinal: ordinal, onCreate: function(summary, details, data) { let editor = data.editor; editor.summary = summary; diff --git a/browser/devtools/styleeditor/StyleSheetEditor.jsm b/browser/devtools/styleeditor/StyleSheetEditor.jsm index 141ea7c606ae..f2d2533f9799 100644 --- a/browser/devtools/styleeditor/StyleSheetEditor.jsm +++ b/browser/devtools/styleeditor/StyleSheetEditor.jsm @@ -15,6 +15,7 @@ const require = Cu.import("resource://gre/modules/devtools/Loader.jsm", {}).devt const Editor = require("devtools/sourceeditor/editor"); const {Promise: promise} = Cu.import("resource://gre/modules/Promise.jsm", {}); const {CssLogic} = require("devtools/styleinspector/css-logic"); +const {console} = require("resource://gre/modules/devtools/Console.jsm"); Cu.import("resource://gre/modules/Services.jsm"); Cu.import("resource://gre/modules/FileUtils.jsm"); @@ -251,11 +252,27 @@ StyleSheetEditor.prototype = { callback(source); } return source; + }, e => { + if (this._isDestroyed) { + console.warn("Could not fetch the source for " + + this.styleSheet.href + + ", the editor was destroyed"); + Cu.reportError(e); + } else { + throw e; + } }); }, e => { - this.emit("error", { key: LOAD_ERROR, append: this.styleSheet.href }); - throw e; - }) + if (this._isDestroyed) { + console.warn("Could not fetch the source for " + + this.styleSheet.href + + ", the editor was destroyed"); + Cu.reportError(e); + } else { + this.emit("error", { key: LOAD_ERROR, append: this.styleSheet.href }); + throw e; + } + }); }, /** @@ -712,6 +729,7 @@ StyleSheetEditor.prototype = { this.cssSheet.off("property-change", this._onPropertyChange); this.cssSheet.off("media-rules-changed", this._onMediaRulesChanged); this.styleSheet.off("error", this._onError); + this._isDestroyed = true; } } diff --git a/browser/devtools/styleeditor/test/browser_styleeditor_autocomplete.js b/browser/devtools/styleeditor/test/browser_styleeditor_autocomplete.js index c7847009661d..650da6d4fc5a 100644 --- a/browser/devtools/styleeditor/test/browser_styleeditor_autocomplete.js +++ b/browser/devtools/styleeditor/test/browser_styleeditor_autocomplete.js @@ -9,7 +9,7 @@ // thisTestLeaksUncaughtRejectionsAndShouldBeFixed("Error: Unknown sheet source"); -const TESTCASE_URI = TEST_BASE + "autocomplete.html"; +const TESTCASE_URI = TEST_BASE_HTTP + "autocomplete.html"; const MAX_SUGGESTIONS = 15; // Pref which decides if CSS autocompletion is enabled in Style Editor or not. diff --git a/browser/devtools/styleeditor/test/browser_styleeditor_bug_851132_middle_click.js b/browser/devtools/styleeditor/test/browser_styleeditor_bug_851132_middle_click.js index d51773e70869..5f346810b68d 100644 --- a/browser/devtools/styleeditor/test/browser_styleeditor_bug_851132_middle_click.js +++ b/browser/devtools/styleeditor/test/browser_styleeditor_bug_851132_middle_click.js @@ -8,7 +8,7 @@ // thisTestLeaksUncaughtRejectionsAndShouldBeFixed("Error: Unknown sheet source"); -const TESTCASE_URI = TEST_BASE + "four.html"; +const TESTCASE_URI = TEST_BASE_HTTP + "four.html"; let gUI; diff --git a/browser/devtools/styleeditor/test/browser_styleeditor_filesave.js b/browser/devtools/styleeditor/test/browser_styleeditor_filesave.js index 990d2900503c..1ef4e545c90c 100644 --- a/browser/devtools/styleeditor/test/browser_styleeditor_filesave.js +++ b/browser/devtools/styleeditor/test/browser_styleeditor_filesave.js @@ -2,8 +2,8 @@ /* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ -const TESTCASE_URI_HTML = TEST_BASE + "simple.html"; -const TESTCASE_URI_CSS = TEST_BASE + "simple.css"; +const TESTCASE_URI_HTML = TEST_BASE_HTTP + "simple.html"; +const TESTCASE_URI_CSS = TEST_BASE_HTTP + "simple.css"; const Cc = Components.classes; const Ci = Components.interfaces; diff --git a/browser/devtools/styleeditor/test/browser_styleeditor_init.js b/browser/devtools/styleeditor/test/browser_styleeditor_init.js index dd35502150d4..1d1b004e2c32 100644 --- a/browser/devtools/styleeditor/test/browser_styleeditor_init.js +++ b/browser/devtools/styleeditor/test/browser_styleeditor_init.js @@ -9,7 +9,7 @@ // thisTestLeaksUncaughtRejectionsAndShouldBeFixed("TypeError: summary is undefined"); -const TESTCASE_URI = TEST_BASE + "simple.html"; +const TESTCASE_URI = TEST_BASE_HTTP + "simple.html"; let gUI; diff --git a/browser/devtools/styleeditor/test/browser_styleeditor_inline_friendly_names.js b/browser/devtools/styleeditor/test/browser_styleeditor_inline_friendly_names.js index 9411b639f29d..55e0a43b4e4d 100644 --- a/browser/devtools/styleeditor/test/browser_styleeditor_inline_friendly_names.js +++ b/browser/devtools/styleeditor/test/browser_styleeditor_inline_friendly_names.js @@ -11,8 +11,8 @@ thisTestLeaksUncaughtRejectionsAndShouldBeFixed("Error: Unknown sheet source"); let gUI; -const FIRST_TEST_PAGE = TEST_BASE + "inline-1.html" -const SECOND_TEST_PAGE = TEST_BASE + "inline-2.html" +const FIRST_TEST_PAGE = TEST_BASE_HTTP + "inline-1.html" +const SECOND_TEST_PAGE = TEST_BASE_HTTP + "inline-2.html" const SAVE_PATH = "test.css"; function test() diff --git a/browser/devtools/styleeditor/test/browser_styleeditor_new.js b/browser/devtools/styleeditor/test/browser_styleeditor_new.js index 2ecd025f73ad..07127e4c9c5c 100644 --- a/browser/devtools/styleeditor/test/browser_styleeditor_new.js +++ b/browser/devtools/styleeditor/test/browser_styleeditor_new.js @@ -9,7 +9,7 @@ // thisTestLeaksUncaughtRejectionsAndShouldBeFixed("Error: Unknown sheet source"); -const TESTCASE_URI = TEST_BASE + "simple.html"; +const TESTCASE_URI = TEST_BASE_HTTP + "simple.html"; let TESTCASE_CSS_SOURCE = "body{background-color:red;"; diff --git a/browser/devtools/styleeditor/test/browser_styleeditor_nostyle.js b/browser/devtools/styleeditor/test/browser_styleeditor_nostyle.js index bc4263f88551..843dfba75c70 100644 --- a/browser/devtools/styleeditor/test/browser_styleeditor_nostyle.js +++ b/browser/devtools/styleeditor/test/browser_styleeditor_nostyle.js @@ -2,7 +2,7 @@ /* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ -const TESTCASE_URI = TEST_BASE + "nostyle.html"; +const TESTCASE_URI = TEST_BASE_HTTP + "nostyle.html"; function test() diff --git a/browser/devtools/styleeditor/test/browser_styleeditor_pretty.js b/browser/devtools/styleeditor/test/browser_styleeditor_pretty.js index 1ed771b6484a..f158a85e31f2 100644 --- a/browser/devtools/styleeditor/test/browser_styleeditor_pretty.js +++ b/browser/devtools/styleeditor/test/browser_styleeditor_pretty.js @@ -9,7 +9,7 @@ // thisTestLeaksUncaughtRejectionsAndShouldBeFixed("Error: Unknown sheet source"); -const TESTCASE_URI = TEST_BASE + "minified.html"; +const TESTCASE_URI = TEST_BASE_HTTP + "minified.html"; let gUI; diff --git a/browser/devtools/styleeditor/test/browser_styleeditor_sourcemap_watching.js b/browser/devtools/styleeditor/test/browser_styleeditor_sourcemap_watching.js index db16907a6dcd..98f2ffaf57ce 100644 --- a/browser/devtools/styleeditor/test/browser_styleeditor_sourcemap_watching.js +++ b/browser/devtools/styleeditor/test/browser_styleeditor_sourcemap_watching.js @@ -6,11 +6,11 @@ Components.utils.import("resource://gre/modules/Task.jsm"); let {devtools} = Cu.import("resource://gre/modules/devtools/Loader.jsm", {}); let {Promise: promise} = Cu.import("resource://gre/modules/Promise.jsm", {}); -const TESTCASE_URI_HTML = TEST_BASE + "sourcemaps-watching.html"; -const TESTCASE_URI_CSS = TEST_BASE + "sourcemap-css/sourcemaps.css"; -const TESTCASE_URI_REG_CSS = TEST_BASE + "simple.css"; -const TESTCASE_URI_SCSS = TEST_BASE + "sourcemap-sass/sourcemaps.scss"; -const TESTCASE_URI_MAP = TEST_BASE + "sourcemap-css/sourcemaps.css.map"; +const TESTCASE_URI_HTML = TEST_BASE_HTTP + "sourcemaps-watching.html"; +const TESTCASE_URI_CSS = TEST_BASE_HTTP + "sourcemap-css/sourcemaps.css"; +const TESTCASE_URI_REG_CSS = TEST_BASE_HTTP + "simple.css"; +const TESTCASE_URI_SCSS = TEST_BASE_HTTP + "sourcemap-sass/sourcemaps.scss"; +const TESTCASE_URI_MAP = TEST_BASE_HTTP + "sourcemap-css/sourcemaps.css.map"; const TESTCASE_SCSS_NAME = "sourcemaps.scss"; const TRANSITIONS_PREF = "devtools.styleeditor.transitions"; diff --git a/browser/devtools/styleeditor/test/browser_styleeditor_sv_keynav.js b/browser/devtools/styleeditor/test/browser_styleeditor_sv_keynav.js index c77c3b5e068d..bfa0ed7b694b 100644 --- a/browser/devtools/styleeditor/test/browser_styleeditor_sv_keynav.js +++ b/browser/devtools/styleeditor/test/browser_styleeditor_sv_keynav.js @@ -9,7 +9,7 @@ // thisTestLeaksUncaughtRejectionsAndShouldBeFixed("Error: Unknown sheet source"); -const TESTCASE_URI = TEST_BASE + "four.html"; +const TESTCASE_URI = TEST_BASE_HTTP + "four.html"; let gUI; diff --git a/browser/devtools/styleeditor/test/browser_styleeditor_sv_resize.js b/browser/devtools/styleeditor/test/browser_styleeditor_sv_resize.js index 0d25da293c1e..32fdc449eb41 100644 --- a/browser/devtools/styleeditor/test/browser_styleeditor_sv_resize.js +++ b/browser/devtools/styleeditor/test/browser_styleeditor_sv_resize.js @@ -2,7 +2,7 @@ /* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ -const TESTCASE_URI = TEST_BASE + "simple.html"; +const TESTCASE_URI = TEST_BASE_HTTP + "simple.html"; let gOriginalWidth; // these are set by runTests() let gOriginalHeight; diff --git a/toolkit/devtools/server/actors/stylesheets.js b/toolkit/devtools/server/actors/stylesheets.js index 5fa615cab4d3..3c6002c3ed4a 100644 --- a/toolkit/devtools/server/actors/stylesheets.js +++ b/toolkit/devtools/server/actors/stylesheets.js @@ -104,11 +104,11 @@ let StyleSheetsActor = exports.StyleSheetsActor = protocol.ActorClass({ let actors = []; for (let doc of documents) { - let sheets = yield this._addStyleSheets(doc.styleSheets); + let sheets = yield this._addStyleSheets(doc); actors = actors.concat(sheets); // Recursively handle style sheets of the documents in iframes. - for (let iframe of doc.getElementsByTagName("iframe")) { + for (let iframe of doc.querySelectorAll("iframe, browser, frame")) { if (iframe.contentDocument) { // Sometimes, iframes don't have any document, like the // one that are over deeply nested (bug 285395) @@ -121,25 +121,54 @@ let StyleSheetsActor = exports.StyleSheetsActor = protocol.ActorClass({ }, /** - * Add all the stylesheets to the map and create an actor for each one - * if not already created. + * Check if we should be showing this stylesheet. * - * @param {[DOMStyleSheet]} styleSheets - * Stylesheets to add + * @param {Document} doc + * Document for which we're checking + * @param {DOMCSSStyleSheet} sheet + * Stylesheet we're interested in + * + * @return boolean + * Whether the stylesheet should be listed. + */ + _shouldListSheet: function(doc, sheet) { + // Special case about:PreferenceStyleSheet, as it is generated on the + // fly and the URI is not registered with the about: handler. + // https://bugzilla.mozilla.org/show_bug.cgi?id=935803#c37 + if (sheet.href && sheet.href.toLowerCase() == "about:preferencestylesheet") { + return false; + } + + return true; + }, + + /** + * Add all the stylesheets for this document to the map and create an actor + * for each one if not already created. + * + * @param {Document} doc + * Document for which to add stylesheets * * @return {Promise} * Promise that resolves to an array of StyleSheetActors */ - _addStyleSheets: function(styleSheets) + _addStyleSheets: function(doc) { return Task.spawn(function*() { + let isChrome = Services.scriptSecurityManager.isSystemPrincipal(doc.nodePrincipal); + let styleSheets = isChrome ? DOMUtils.getAllStyleSheets(doc) : doc.styleSheets; let actors = []; for (let i = 0; i < styleSheets.length; i++) { - let actor = this.parentActor.createStyleSheetActor(styleSheets[i]); + let sheet = styleSheets[i]; + if (!this._shouldListSheet(doc, sheet)) { + continue; + } + + let actor = this.parentActor.createStyleSheetActor(sheet); actors.push(actor); // Get all sheets, including imported ones - let imports = yield this._getImported(actor); + let imports = yield this._getImported(doc, actor); actors = actors.concat(imports); } return actors; @@ -149,12 +178,14 @@ let StyleSheetsActor = exports.StyleSheetsActor = protocol.ActorClass({ /** * Get all the stylesheets @imported from a stylesheet. * + * @param {Document} doc + * The document including the stylesheet * @param {DOMStyleSheet} styleSheet * Style sheet to search * @return {Promise} * A promise that resolves with an array of StyleSheetActors */ - _getImported: function(styleSheet) { + _getImported: function(doc, styleSheet) { return Task.spawn(function*() { let rules = yield styleSheet.getCSSRules(); let imported = []; @@ -164,14 +195,14 @@ let StyleSheetsActor = exports.StyleSheetsActor = protocol.ActorClass({ if (rule.type == Ci.nsIDOMCSSRule.IMPORT_RULE) { // Associated styleSheet may be null if it has already been seen due // to duplicate @imports for the same URL. - if (!rule.styleSheet) { + if (!rule.styleSheet || !this._shouldListSheet(doc, rule.styleSheet)) { continue; } let actor = this.parentActor.createStyleSheetActor(rule.styleSheet); imported.push(actor); // recurse imports in this stylesheet as well - let children = yield this._getImported(actor); + let children = yield this._getImported(doc, actor); imported = imported.concat(children); } else if (rule.type != Ci.nsIDOMCSSRule.CHARSET_RULE) { From 677d9b9dfaaaa29a3878e2891589e145fdb91d56 Mon Sep 17 00:00:00 2001 From: Kevin Brosnan Date: Thu, 12 Feb 2015 10:31:00 -0500 Subject: [PATCH 010/112] Bug 1127441 - Disable font inflation. r=mfinkle --- mobile/android/app/mobile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/android/app/mobile.js b/mobile/android/app/mobile.js index a3b98e18328d..58f8dc95c670 100644 --- a/mobile/android/app/mobile.js +++ b/mobile/android/app/mobile.js @@ -391,7 +391,7 @@ pref("devtools.errorconsole.enabled", false); // to communicate with a usb cable via adb forward. pref("devtools.debugger.unix-domain-socket", "/data/data/@ANDROID_PACKAGE_NAME@/firefox-debugger-socket"); -pref("font.size.inflation.minTwips", 120); +pref("font.size.inflation.minTwips", 0); // When true, zooming will be enabled on all sites, even ones that declare user-scalable=no. pref("browser.ui.zoom.force-user-scalable", false); From b11baf4acb3feeab0c17df6091e8a9d19ea33303 Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Thu, 26 Feb 2015 16:18:15 +1100 Subject: [PATCH 011/112] Bug 1135954 part 1 - Create empty border/padding style struct for rbc/rtc. r=heycam --HG-- extra : source : 036de96aecb8a5e2c40e4d722b689c3db81583b7 --- layout/style/nsStyleContext.cpp | 58 +++++++++++++++++++++------------ layout/style/nsStyleContext.h | 2 ++ 2 files changed, 39 insertions(+), 21 deletions(-) diff --git a/layout/style/nsStyleContext.cpp b/layout/style/nsStyleContext.cpp index 08c74127bdc4..066548032886 100644 --- a/layout/style/nsStyleContext.cpp +++ b/layout/style/nsStyleContext.cpp @@ -438,8 +438,6 @@ nsStyleContext::GetUniqueStyleData(const nsStyleStructID& aSID) UNIQUE_CASE(Display) UNIQUE_CASE(Background) - UNIQUE_CASE(Border) - UNIQUE_CASE(Padding) UNIQUE_CASE(Text) UNIQUE_CASE(TextReset) @@ -456,6 +454,41 @@ nsStyleContext::GetUniqueStyleData(const nsStyleStructID& aSID) return result; } +// This is an evil function, but less evil than GetUniqueStyleData. It +// creates an empty style struct for this nsStyleContext. +void* +nsStyleContext::CreateEmptyStyleData(const nsStyleStructID& aSID) +{ + MOZ_ASSERT(!mChild && !mEmptyChild && + !(mBits & nsCachedStyleData::GetBitForSID(aSID)) && + !GetCachedStyleData(aSID), + "This style should not have been computed"); + + void* result; + nsPresContext* presContext = PresContext(); + switch (aSID) { +#define UNIQUE_CASE(c_, ...) \ + case eStyleStruct_##c_: \ + result = new (presContext) nsStyle##c_(__VA_ARGS__); \ + break; + + UNIQUE_CASE(Border, presContext) + UNIQUE_CASE(Padding) + +#undef UNIQUE_CASE + + default: + NS_ERROR("Struct type not supported."); + return nullptr; + } + + // The new struct is owned by this style context, but that we don't + // need to clear the bit in mBits because we've asserted that at the + // top of this function. + SetStyle(aSID, result); + return result; +} + void nsStyleContext::SetStyle(nsStyleStructID aSID, void* aStruct) { @@ -620,25 +653,8 @@ nsStyleContext::ApplyStyleFixups(bool aSkipParentDisplayBasedStyleFixup) // Suppress border/padding of ruby level containers if (disp->mDisplay == NS_STYLE_DISPLAY_RUBY_BASE_CONTAINER || disp->mDisplay == NS_STYLE_DISPLAY_RUBY_TEXT_CONTAINER) { - if (StyleBorder()->GetComputedBorder() != nsMargin(0, 0, 0, 0)) { - nsStyleBorder* border = - static_cast(GetUniqueStyleData(eStyleStruct_Border)); - NS_FOR_CSS_SIDES(side) { - border->SetBorderWidth(side, 0); - } - } - - nsMargin computedPadding; - if (!StylePadding()->GetPadding(computedPadding) || - computedPadding != nsMargin(0, 0, 0, 0)) { - const nsStyleCoord zero(0, nsStyleCoord::CoordConstructor); - nsStylePadding* padding = - static_cast(GetUniqueStyleData(eStyleStruct_Padding)); - NS_FOR_CSS_SIDES(side) { - padding->mPadding.Set(side, zero); - } - padding->RecalcData(); - } + CreateEmptyStyleData(eStyleStruct_Border); + CreateEmptyStyleData(eStyleStruct_Padding); } // Compute User Interface style, to trigger loads of cursors diff --git a/layout/style/nsStyleContext.h b/layout/style/nsStyleContext.h index ad22efa42af3..4623dcc4dc3c 100644 --- a/layout/style/nsStyleContext.h +++ b/layout/style/nsStyleContext.h @@ -435,6 +435,8 @@ private: void AddChild(nsStyleContext* aChild); void RemoveChild(nsStyleContext* aChild); + void* CreateEmptyStyleData(const nsStyleStructID& aSID); + void ApplyStyleFixups(bool aSkipParentDisplayBasedStyleFixup); // Helper function for HasChildThatUsesGrandancestorStyle. From 584fa0b43bb662058e517ce24bc83738d44999b9 Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Thu, 26 Feb 2015 16:18:15 +1100 Subject: [PATCH 012/112] Bug 1135954 part 2 - Make GetUniqueStyleData private and remove no longer used unique cases. r=heycam --HG-- extra : source : 5d884b04b432946c1a7185e6dbd5db4819c3b9bb --- layout/style/nsStyleContext.cpp | 2 -- layout/style/nsStyleContext.h | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/layout/style/nsStyleContext.cpp b/layout/style/nsStyleContext.cpp index 066548032886..81983d995b50 100644 --- a/layout/style/nsStyleContext.cpp +++ b/layout/style/nsStyleContext.cpp @@ -437,9 +437,7 @@ nsStyleContext::GetUniqueStyleData(const nsStyleStructID& aSID) break; UNIQUE_CASE(Display) - UNIQUE_CASE(Background) UNIQUE_CASE(Text) - UNIQUE_CASE(TextReset) #undef UNIQUE_CASE diff --git a/layout/style/nsStyleContext.h b/layout/style/nsStyleContext.h index 4623dcc4dc3c..7539ca6b6260 100644 --- a/layout/style/nsStyleContext.h +++ b/layout/style/nsStyleContext.h @@ -324,8 +324,6 @@ public: #include "nsStyleStructList.h" #undef STYLE_STRUCT - void* GetUniqueStyleData(const nsStyleStructID& aSID); - /** * Compute the style changes needed during restyling when this style * context is being replaced by aOther. (This is nonsymmetric since @@ -435,6 +433,7 @@ private: void AddChild(nsStyleContext* aChild); void RemoveChild(nsStyleContext* aChild); + void* GetUniqueStyleData(const nsStyleStructID& aSID); void* CreateEmptyStyleData(const nsStyleStructID& aSID); void ApplyStyleFixups(bool aSkipParentDisplayBasedStyleFixup); From ac59ede2ff9d768d1766b444dbb51c4217ac26e5 Mon Sep 17 00:00:00 2001 From: Karl Tomlinson Date: Tue, 17 Feb 2015 13:58:55 +1300 Subject: [PATCH 013/112] bug 1123492 update comment to describe the thread that runs AttemptSeek() r=mattwoodrow --HG-- extra : amend_source : ad0e5aad95d0a2bc637c059774b617abe4012804 --- dom/media/mediasource/MediaSourceReader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/media/mediasource/MediaSourceReader.cpp b/dom/media/mediasource/MediaSourceReader.cpp index 1fab43ad1738..59229c9539ff 100644 --- a/dom/media/mediasource/MediaSourceReader.cpp +++ b/dom/media/mediasource/MediaSourceReader.cpp @@ -709,7 +709,7 @@ MediaSourceReader::NotifyTimeRangesChanged() { ReentrantMonitorAutoEnter mon(mDecoder->GetReentrantMonitor()); if (mWaitingForSeekData) { - //post a task to the state machine thread to call seek. + //post a task to the decode queue to try to complete the pending seek. RefPtr task(NS_NewRunnableMethod( this, &MediaSourceReader::AttemptSeek)); GetTaskQueue()->Dispatch(task.forget()); From 4a9e7e9d5ffdb4573400593d40dc95621f725fa5 Mon Sep 17 00:00:00 2001 From: Karl Tomlinson Date: Wed, 18 Feb 2015 19:23:31 +1300 Subject: [PATCH 014/112] bug 1123492 ResetDecode() on subreaders when switching to current or seeking r=mattwoodrow --HG-- extra : rebase_source : 1250d41d2daa7224ef2645eb3e51af3f8f81f237 extra : histedit_source : d2f19cb88cbe6ad9ce4fb93443f03474ccfd9f0b --- dom/media/mediasource/MediaSourceReader.cpp | 7 ++++--- dom/media/mediasource/TrackBuffer.cpp | 8 -------- dom/media/mediasource/TrackBuffer.h | 3 --- 3 files changed, 4 insertions(+), 14 deletions(-) diff --git a/dom/media/mediasource/MediaSourceReader.cpp b/dom/media/mediasource/MediaSourceReader.cpp index 59229c9539ff..0ac95ae8dd0e 100644 --- a/dom/media/mediasource/MediaSourceReader.cpp +++ b/dom/media/mediasource/MediaSourceReader.cpp @@ -508,6 +508,7 @@ MediaSourceReader::SwitchAudioSource(int64_t* aTarget) return SOURCE_EXISTING; } mAudioSourceDecoder = newDecoder; + GetAudioReader()->ResetDecode(); if (usedFuzz) { // A decoder buffered range is continuous. We would have failed the exact // search but succeeded the fuzzy one if our target was shortly before @@ -554,6 +555,7 @@ MediaSourceReader::SwitchVideoSource(int64_t* aTarget) return SOURCE_EXISTING; } mVideoSourceDecoder = newDecoder; + GetVideoReader()->ResetDecode(); if (usedFuzz) { // A decoder buffered range is continuous. We would have failed the exact // search but succeeded the fuzzy one if our target was shortly before @@ -810,6 +812,7 @@ MediaSourceReader::OnVideoSeekFailed(nsresult aResult) void MediaSourceReader::DoAudioSeek() { + GetAudioReader()->ResetDecode(); if (SwitchAudioSource(&mPendingSeekTime) == SOURCE_NONE) { // Data we need got evicted since the last time we checked for data // availability. Abort current seek attempt. @@ -860,9 +863,6 @@ MediaSourceReader::AttemptSeek() } ResetDecode(); - for (uint32_t i = 0; i < mTrackBuffers.Length(); ++i) { - mTrackBuffers[i]->ResetDecode(); - } // Decoding discontinuity upon seek, reset last times to seek target. mLastAudioTime = mPendingSeekTime; @@ -880,6 +880,7 @@ MediaSourceReader::AttemptSeek() void MediaSourceReader::DoVideoSeek() { + GetVideoReader()->ResetDecode(); if (SwitchVideoSource(&mPendingSeekTime) == SOURCE_NONE) { // Data we need got evicted since the last time we checked for data // availability. Abort current seek attempt. diff --git a/dom/media/mediasource/TrackBuffer.cpp b/dom/media/mediasource/TrackBuffer.cpp index 976846732911..1ac8328790e7 100644 --- a/dom/media/mediasource/TrackBuffer.cpp +++ b/dom/media/mediasource/TrackBuffer.cpp @@ -839,14 +839,6 @@ TrackBuffer::BreakCycles() MOZ_ASSERT(!mParentDecoder); } -void -TrackBuffer::ResetDecode() -{ - for (uint32_t i = 0; i < mDecoders.Length(); ++i) { - mDecoders[i]->GetReader()->ResetDecode(); - } -} - void TrackBuffer::ResetParserState() { diff --git a/dom/media/mediasource/TrackBuffer.h b/dom/media/mediasource/TrackBuffer.h index 45d0ebcd8d3b..8d778e616822 100644 --- a/dom/media/mediasource/TrackBuffer.h +++ b/dom/media/mediasource/TrackBuffer.h @@ -81,9 +81,6 @@ public: void BreakCycles(); - // Call ResetDecode() on each decoder in mDecoders. - void ResetDecode(); - // Run MSE Reset Parser State Algorithm. // 3.5.2 Reset Parser State // http://w3c.github.io/media-source/#sourcebuffer-reset-parser-state From 7b51f7d4f1171d91b18c7c28be05af775f9a34df Mon Sep 17 00:00:00 2001 From: Karl Tomlinson Date: Tue, 17 Feb 2015 14:35:47 +1300 Subject: [PATCH 015/112] bug 1123492 remove ResetDecode() call from MediaSourceReader::AttemptSeek() r=mattwoodrow and this was already called before Seek(). --HG-- extra : rebase_source : 4e56ad32c729c39e628b0756b9ffddb7c61951d8 extra : histedit_source : 2ef994d1336e8bdcd35144117107fd34564b135a --- dom/media/mediasource/MediaSourceReader.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/dom/media/mediasource/MediaSourceReader.cpp b/dom/media/mediasource/MediaSourceReader.cpp index 0ac95ae8dd0e..99eba9637be4 100644 --- a/dom/media/mediasource/MediaSourceReader.cpp +++ b/dom/media/mediasource/MediaSourceReader.cpp @@ -862,8 +862,6 @@ MediaSourceReader::AttemptSeek() mWaitingForSeekData = false; } - ResetDecode(); - // Decoding discontinuity upon seek, reset last times to seek target. mLastAudioTime = mPendingSeekTime; mLastVideoTime = mPendingSeekTime; From 5454a067f66ea58bb6c9bdb4bae4545126dd3f6e Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Wed, 25 Feb 2015 10:39:46 -0800 Subject: [PATCH 016/112] Bug 979293 - Don't write collision bits in HashTable unnecessarily. r=luke. This avoids no-op writes to the keyHash of entries when doing a no-add-lookup. This removes a genuine data race in JSRuntime::permanentAtoms, which receives frequent no-add-lookups from multiple threads after JSRuntime initialization without any kind of locking. --HG-- extra : rebase_source : bb0ccf75e674f28e21f0a7209699f68dd7977f04 --- js/public/HashTable.h | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/js/public/HashTable.h b/js/public/HashTable.h index 928053035ddb..9362451ef85d 100644 --- a/js/public/HashTable.h +++ b/js/public/HashTable.h @@ -732,7 +732,6 @@ class HashTableEntry void removeLive() { MOZ_ASSERT(isLive()); keyHash = sRemovedKey; mem.addr()->~T(); } bool isLive() const { return isLiveHash(keyHash); } void setCollision() { MOZ_ASSERT(isLive()); keyHash |= sCollisionBit; } - void setCollision(HashNumber bit) { MOZ_ASSERT(isLive()); keyHash |= bit; } void unsetCollision() { keyHash &= ~sCollisionBit; } bool hasCollision() const { return keyHash & sCollisionBit; } bool matchHash(HashNumber hn) { return (keyHash & ~sCollisionBit) == hn; } @@ -1026,6 +1025,8 @@ class HashTable : private AllocPolicy #ifdef JS_DEBUG uint64_t mutationCount; mutable bool mEntered; + // Note that some updates to these stats are not thread-safe. See the + // comment on the three-argument overloading of HashTable::lookup(). mutable struct Stats { uint32_t searches; // total number of table searches @@ -1223,6 +1224,11 @@ class HashTable : private AllocPolicy return HashPolicy::match(HashPolicy::getKey(e.get()), l); } + // Warning: in order for readonlyThreadsafeLookup() to be safe this + // function must not modify the table in any way when |collisionBit| is 0. + // (The use of the METER() macro to increment stats violates this + // restriction but we will live with that for now because it's enabled so + // rarely.) Entry &lookup(const Lookup &l, HashNumber keyHash, unsigned collisionBit) const { MOZ_ASSERT(isLiveHash(keyHash)); @@ -1253,12 +1259,13 @@ class HashTable : private AllocPolicy // Save the first removed entry pointer so we can recycle later. Entry *firstRemoved = nullptr; - while(true) { + while (true) { if (MOZ_UNLIKELY(entry->isRemoved())) { if (!firstRemoved) firstRemoved = entry; } else { - entry->setCollision(collisionBit); + if (collisionBit == sCollisionBit) + entry->setCollision(); } METER(stats.steps++); @@ -1304,7 +1311,7 @@ class HashTable : private AllocPolicy // Collision: double hash. DoubleHash dh = hash2(keyHash); - while(true) { + while (true) { MOZ_ASSERT(!entry->isRemoved()); entry->setCollision(); From ff13a08e3d7b83f68facb8ad7a37d38c7ab6be7b Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Wed, 25 Feb 2015 19:11:28 -0800 Subject: [PATCH 017/112] Bug 979293 - Add a FrozenAtomSet to clarify how |permanentAtoms| works. r=bhackett. This clarifies the two phases -- (a) initialization and (b) read-only use -- that |permanentAtoms| goes through. It also gives some type-based protection against potential misuse. --HG-- extra : rebase_source : 23544fa40b44af66b3efbf7b757aed808902ce81 --- js/src/jsatom.cpp | 45 +++++++++++++++++++++++++++++---------------- js/src/jsatom.h | 24 ++++++++++++++++++++++++ js/src/jscntxt.cpp | 2 +- js/src/jscntxt.h | 3 ++- js/src/vm/Runtime.h | 6 ++++-- 5 files changed, 60 insertions(+), 20 deletions(-) diff --git a/js/src/jsatom.cpp b/js/src/jsatom.cpp index 2a1c717e192c..c873d588453d 100644 --- a/js/src/jsatom.cpp +++ b/js/src/jsatom.cpp @@ -97,6 +97,10 @@ const char js_with_str[] = "with"; // which create a small number of atoms. static const uint32_t JS_STRING_HASH_COUNT = 64; +AtomSet::Ptr js::FrozenAtomSet::readonlyThreadsafeLookup(const AtomSet::Lookup &l) const { + return mSet->readonlyThreadsafeLookup(l); +} + struct CommonNameInfo { const char *str; @@ -110,6 +114,9 @@ JSRuntime::initializeAtoms(JSContext *cx) if (!atoms_ || !atoms_->init(JS_STRING_HASH_COUNT)) return false; + // |permanentAtoms| hasn't been created yet. + MOZ_ASSERT(!permanentAtoms); + if (parentRuntime) { staticStrings = parentRuntime->staticStrings; commonNames = parentRuntime->commonNames; @@ -119,10 +126,6 @@ JSRuntime::initializeAtoms(JSContext *cx) return true; } - permanentAtoms = cx->new_(); - if (!permanentAtoms || !permanentAtoms->init(JS_STRING_HASH_COUNT)) - return false; - staticStrings = cx->new_(); if (!staticStrings || !staticStrings->init(cx)) return false; @@ -221,8 +224,8 @@ js::MarkPermanentAtoms(JSTracer *trc) rt->staticStrings->trace(trc); if (rt->permanentAtoms) { - for (AtomSet::Enum e(*rt->permanentAtoms); !e.empty(); e.popFront()) { - const AtomStateEntry &entry = e.front(); + for (FrozenAtomSet::Range r(rt->permanentAtoms->all()); !r.empty(); r.popFront()) { + const AtomStateEntry &entry = r.front(); JSAtom *atom = entry.asPtr(); MarkPermanentAtom(trc, atom, "permanent_table"); @@ -264,21 +267,22 @@ JSRuntime::sweepAtoms() } bool -JSRuntime::transformToPermanentAtoms() +JSRuntime::transformToPermanentAtoms(JSContext *cx) { MOZ_ASSERT(!parentRuntime); // All static strings were created as permanent atoms, now move the contents // of the atoms table into permanentAtoms and mark each as permanent. - MOZ_ASSERT(permanentAtoms && permanentAtoms->empty()); + MOZ_ASSERT(!permanentAtoms); + permanentAtoms = cx->new_(atoms_); // takes ownership of atoms_ - AtomSet *temp = atoms_; - atoms_ = permanentAtoms; - permanentAtoms = temp; + atoms_ = cx->new_(); + if (!atoms_ || !atoms_->init(JS_STRING_HASH_COUNT)) + return false; - for (AtomSet::Enum e(*permanentAtoms); !e.empty(); e.popFront()) { - AtomStateEntry entry = e.front(); + for (FrozenAtomSet::Range r(permanentAtoms->all()); !r.empty(); r.popFront()) { + AtomStateEntry entry = r.front(); JSAtom *atom = entry.asPtr(); atom->morphIntoPermanentAtom(); } @@ -296,6 +300,7 @@ AtomIsInterned(JSContext *cx, JSAtom *atom) AtomHasher::Lookup lookup(atom); /* Likewise, permanent strings are considered to be interned. */ + MOZ_ASSERT(cx->isPermanentAtomsInitialized()); AtomSet::Ptr p = cx->permanentAtoms().readonlyThreadsafeLookup(lookup); if (p) return true; @@ -320,9 +325,16 @@ AtomizeAndCopyChars(ExclusiveContext *cx, const CharT *tbchars, size_t length, I AtomHasher::Lookup lookup(tbchars, length); - AtomSet::Ptr pp = cx->permanentAtoms().readonlyThreadsafeLookup(lookup); - if (pp) - return pp->asPtr(); + // Note: when this function is called while the permanent atoms table is + // being initialized (in initializeAtoms()), |permanentAtoms| is not yet + // initialized so this lookup is always skipped. Only once + // transformToPermanentAtoms() is called does |permanentAtoms| get + // initialized and then this lookup will go ahead. + if (cx->isPermanentAtomsInitialized()) { + AtomSet::Ptr pp = cx->permanentAtoms().readonlyThreadsafeLookup(lookup); + if (pp) + return pp->asPtr(); + } AutoLockForExclusiveAccess lock(cx); @@ -377,6 +389,7 @@ js::AtomizeString(ExclusiveContext *cx, JSString *str, AtomHasher::Lookup lookup(&atom); /* Likewise, permanent atoms are always interned. */ + MOZ_ASSERT(cx->isPermanentAtomsInitialized()); AtomSet::Ptr p = cx->permanentAtoms().readonlyThreadsafeLookup(lookup); if (p) return &atom; diff --git a/js/src/jsatom.h b/js/src/jsatom.h index 4bda550cfdba..a34877f40a82 100644 --- a/js/src/jsatom.h +++ b/js/src/jsatom.h @@ -117,6 +117,30 @@ struct AtomHasher typedef HashSet AtomSet; +// This class is a wrapper for AtomSet that is used to ensure the AtomSet is +// not modified. It should only expose read-only methods from AtomSet. +// Note however that the atoms within the table can be marked during GC. +class FrozenAtomSet +{ + AtomSet *mSet; + +public: + // This constructor takes ownership of the passed-in AtomSet. + explicit FrozenAtomSet(AtomSet *set) { mSet = set; } + + ~FrozenAtomSet() { js_delete(mSet); } + + AtomSet::Ptr readonlyThreadsafeLookup(const AtomSet::Lookup &l) const; + + size_t sizeOfIncludingThis(mozilla::MallocSizeOf mallocSizeOf) const { + return mSet->sizeOfIncludingThis(mallocSizeOf); + } + + typedef AtomSet::Range Range; + + AtomSet::Range all() const { return mSet->all(); } +}; + class PropertyName; } /* namespace js */ diff --git a/js/src/jscntxt.cpp b/js/src/jscntxt.cpp index 0be6f69aaa9a..52b2f0063dd7 100644 --- a/js/src/jscntxt.cpp +++ b/js/src/jscntxt.cpp @@ -126,7 +126,7 @@ js::NewContext(JSRuntime *rt, size_t stackChunkSize) ok = rt->initSelfHosting(cx); if (ok && !rt->parentRuntime) - ok = rt->transformToPermanentAtoms(); + ok = rt->transformToPermanentAtoms(cx); JS_EndRequest(cx); diff --git a/js/src/jscntxt.h b/js/src/jscntxt.h index d1cc2c639133..a3f97978b82e 100644 --- a/js/src/jscntxt.h +++ b/js/src/jscntxt.h @@ -183,7 +183,8 @@ class ExclusiveContext : public ContextFriendFields, // Accessors for immutable runtime data. JSAtomState &names() { return *runtime_->commonNames; } StaticStrings &staticStrings() { return *runtime_->staticStrings; } - AtomSet &permanentAtoms() { return *runtime_->permanentAtoms; } + bool isPermanentAtomsInitialized() { return !!runtime_->permanentAtoms; } + FrozenAtomSet &permanentAtoms() { return *runtime_->permanentAtoms; } WellKnownSymbols &wellKnownSymbols() { return *runtime_->wellKnownSymbols; } const JS::AsmJSCacheOps &asmJSCacheOps() { return runtime_->asmJSCacheOps; } PropertyName *emptyString() { return runtime_->emptyString; } diff --git a/js/src/vm/Runtime.h b/js/src/vm/Runtime.h index e8e7719836ea..57bcf8a29e94 100644 --- a/js/src/vm/Runtime.h +++ b/js/src/vm/Runtime.h @@ -1254,9 +1254,11 @@ struct JSRuntime : public JS::shadow::Runtime, JSAtomState *commonNames; // All permanent atoms in the runtime, other than those in staticStrings. - js::AtomSet *permanentAtoms; + // Unlike |atoms_|, access to this does not require + // AutoLockForExclusiveAccess because it is frozen and thus read-only. + js::FrozenAtomSet *permanentAtoms; - bool transformToPermanentAtoms(); + bool transformToPermanentAtoms(JSContext *cx); // Cached well-known symbols (ES6 rev 24 6.1.5.1). Like permanent atoms, // these are shared with the parentRuntime, if any. From c8b79969486253abad631c5c36d3ac9b4471c6e1 Mon Sep 17 00:00:00 2001 From: Karl Tomlinson Date: Thu, 26 Feb 2015 19:37:48 +1300 Subject: [PATCH 018/112] back out 6fc9b30bbdd9..232b818847e7 from bug 1123492 for crashes in DoVideoSeek() --HG-- extra : rebase_source : b1441c907c6729dc49a572b9fe22dbb0744705ee --- dom/media/mediasource/MediaSourceReader.cpp | 11 ++++++----- dom/media/mediasource/TrackBuffer.cpp | 8 ++++++++ dom/media/mediasource/TrackBuffer.h | 3 +++ 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/dom/media/mediasource/MediaSourceReader.cpp b/dom/media/mediasource/MediaSourceReader.cpp index 99eba9637be4..1fab43ad1738 100644 --- a/dom/media/mediasource/MediaSourceReader.cpp +++ b/dom/media/mediasource/MediaSourceReader.cpp @@ -508,7 +508,6 @@ MediaSourceReader::SwitchAudioSource(int64_t* aTarget) return SOURCE_EXISTING; } mAudioSourceDecoder = newDecoder; - GetAudioReader()->ResetDecode(); if (usedFuzz) { // A decoder buffered range is continuous. We would have failed the exact // search but succeeded the fuzzy one if our target was shortly before @@ -555,7 +554,6 @@ MediaSourceReader::SwitchVideoSource(int64_t* aTarget) return SOURCE_EXISTING; } mVideoSourceDecoder = newDecoder; - GetVideoReader()->ResetDecode(); if (usedFuzz) { // A decoder buffered range is continuous. We would have failed the exact // search but succeeded the fuzzy one if our target was shortly before @@ -711,7 +709,7 @@ MediaSourceReader::NotifyTimeRangesChanged() { ReentrantMonitorAutoEnter mon(mDecoder->GetReentrantMonitor()); if (mWaitingForSeekData) { - //post a task to the decode queue to try to complete the pending seek. + //post a task to the state machine thread to call seek. RefPtr task(NS_NewRunnableMethod( this, &MediaSourceReader::AttemptSeek)); GetTaskQueue()->Dispatch(task.forget()); @@ -812,7 +810,6 @@ MediaSourceReader::OnVideoSeekFailed(nsresult aResult) void MediaSourceReader::DoAudioSeek() { - GetAudioReader()->ResetDecode(); if (SwitchAudioSource(&mPendingSeekTime) == SOURCE_NONE) { // Data we need got evicted since the last time we checked for data // availability. Abort current seek attempt. @@ -862,6 +859,11 @@ MediaSourceReader::AttemptSeek() mWaitingForSeekData = false; } + ResetDecode(); + for (uint32_t i = 0; i < mTrackBuffers.Length(); ++i) { + mTrackBuffers[i]->ResetDecode(); + } + // Decoding discontinuity upon seek, reset last times to seek target. mLastAudioTime = mPendingSeekTime; mLastVideoTime = mPendingSeekTime; @@ -878,7 +880,6 @@ MediaSourceReader::AttemptSeek() void MediaSourceReader::DoVideoSeek() { - GetVideoReader()->ResetDecode(); if (SwitchVideoSource(&mPendingSeekTime) == SOURCE_NONE) { // Data we need got evicted since the last time we checked for data // availability. Abort current seek attempt. diff --git a/dom/media/mediasource/TrackBuffer.cpp b/dom/media/mediasource/TrackBuffer.cpp index 1ac8328790e7..976846732911 100644 --- a/dom/media/mediasource/TrackBuffer.cpp +++ b/dom/media/mediasource/TrackBuffer.cpp @@ -839,6 +839,14 @@ TrackBuffer::BreakCycles() MOZ_ASSERT(!mParentDecoder); } +void +TrackBuffer::ResetDecode() +{ + for (uint32_t i = 0; i < mDecoders.Length(); ++i) { + mDecoders[i]->GetReader()->ResetDecode(); + } +} + void TrackBuffer::ResetParserState() { diff --git a/dom/media/mediasource/TrackBuffer.h b/dom/media/mediasource/TrackBuffer.h index 8d778e616822..45d0ebcd8d3b 100644 --- a/dom/media/mediasource/TrackBuffer.h +++ b/dom/media/mediasource/TrackBuffer.h @@ -81,6 +81,9 @@ public: void BreakCycles(); + // Call ResetDecode() on each decoder in mDecoders. + void ResetDecode(); + // Run MSE Reset Parser State Algorithm. // 3.5.2 Reset Parser State // http://w3c.github.io/media-source/#sourcebuffer-reset-parser-state From 46866d68243226a498b534b396db5b50d4266ee7 Mon Sep 17 00:00:00 2001 From: chiajung hung Date: Wed, 25 Feb 2015 23:16:00 +0100 Subject: [PATCH 019/112] Bug 1129249 - Expose the element id in Gecko profiler for Restyle. r=dholbert r=benwa --- layout/base/RestyleManager.cpp | 17 ++++++++++++++--- tools/profiler/TableTicker.h | 3 +++ 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/layout/base/RestyleManager.cpp b/layout/base/RestyleManager.cpp index fed84f986604..4497e350b703 100644 --- a/layout/base/RestyleManager.cpp +++ b/layout/base/RestyleManager.cpp @@ -3594,10 +3594,21 @@ ElementRestyler::ComputeStyleChangeFor(nsIFrame* aFrame, nsTArray>& aSwappedStructOwners) { - PROFILER_LABEL("ElementRestyler", "ComputeStyleChangeFor", - js::ProfileEntry::Category::CSS); - nsIContent* content = aFrame->GetContent(); + nsAutoCString idStr; + if (profiler_is_active() && content) { + nsIAtom* id = content->GetID(); + if (id) { + id->ToUTF8String(idStr); + } else { + idStr.AssignLiteral("?"); + } + } + + PROFILER_LABEL_PRINTF("ElementRestyler", "ComputeStyleChangeFor", + js::ProfileEntry::Category::CSS, + content ? "Element: %s" : "%s", + content ? idStr.get() : ""); if (aMinChange) { aChangeList->AppendChange(aFrame, content, aMinChange); } diff --git a/tools/profiler/TableTicker.h b/tools/profiler/TableTicker.h index 62f41ba53274..f67092a5f3e6 100644 --- a/tools/profiler/TableTicker.h +++ b/tools/profiler/TableTicker.h @@ -77,6 +77,7 @@ class TableTicker: public Sampler { mTaskTracer = hasFeature(aFeatures, aFeatureCount, "tasktracer"); mLayersDump = hasFeature(aFeatures, aFeatureCount, "layersdump"); mDisplayListDump = hasFeature(aFeatures, aFeatureCount, "displaylistdump"); + mProfileRestyle = hasFeature(aFeatures, aFeatureCount, "restyle"); #if defined(XP_WIN) if (mProfilePower) { @@ -210,6 +211,7 @@ class TableTicker: public Sampler { bool TaskTracer() const { return mTaskTracer; } bool LayersDump() const { return mLayersDump; } bool DisplayListDump() const { return mDisplayListDump; } + bool ProfileRestyle() const { return mProfileRestyle; } protected: // Called within a signal. This function must be reentrant @@ -237,6 +239,7 @@ protected: bool mProfilePower; bool mLayersDump; bool mDisplayListDump; + bool mProfileRestyle; // Keep the thread filter to check against new thread that // are started while profiling From b03a9ad8cf38511076b1893dd4fada2d7cdcfce1 Mon Sep 17 00:00:00 2001 From: Ekanan Ketunuti Date: Tue, 17 Feb 2015 16:04:04 +0700 Subject: [PATCH 020/112] Bug 1133363 - Part 1 - add missing /M suffix to en-US dictionary. r=ehsan --- .../dictionary-sources/upstream-hunspell.diff | 15293 ++++++++++++---- .../locales/en-US/hunspell/en-US.dic | 5888 +++--- 2 files changed, 14837 insertions(+), 6344 deletions(-) diff --git a/extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/upstream-hunspell.diff b/extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/upstream-hunspell.diff index ecac6698982c..8cd300add387 100644 --- a/extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/upstream-hunspell.diff +++ b/extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/upstream-hunspell.diff @@ -2,151 +2,233 @@ < 51247 --- > 57065 -30c30 -< ABC/SM +34c34 +< ACLU +--- +> ACLU/M +44c44 +< AFC +--- +> AFC/M +54a55 +> AMD/M +56c57 +< ANZUS +--- +> ANZUS/M +58c59 +< AP +--- +> AP/M +72c73 +< AWACS +--- +> AWACS/M +78,80c79,91 +< Aaron +< Abbas +< Abbasid --- -> ABC/M -77a78,79 > Aaren/M > Aarika/M -79c81,84 -< Abbas ---- +> Aaron/M > Ab/M > Abagael/M > Abagail/M > Abba/S -80a86,90 +> Abbasid/M > Abbe/M > Abbey/M > Abbi/M > Abbie/M > Abbot/M -82a93,94 +82a94,95 > Abbye/M > Abdel/M -89a102,103 +86c99 +< Abelard +--- +> Abelard/M +89a103,104 > Abeu/M > Abey/M -90a105,106 +91,92c106,110 +< Abigail +< Abilene +--- > Abie/M > Abigael/M -91a108 +> Abigail/M > Abigale/M -94a112 +> Abilene/M +94a113 > Abra/M -95a114 +95a115 > Abrahan/M -96a116,117 +96a117,118 > Abramo/M > Abran/M -119a141 +98c120 +< Abuja +--- +> Abuja/M +109c131 +< Achernar +--- +> Achernar/M +116,118c138,140 +< Actaeon +< Acton +< Acts +--- +> Actaeon/M +> Acton/M +> Acts/M +119a142 > Ad/MN -120a143,145 +120a144,146 > Adah/M > Adair/M > Adaline/M -121a147 +121a148,149 > Adamo/M -124a151,152 +> Adams/M +123c151 +< Adana +--- +> Adana/M +125c153,155 +< Addams +--- > Adara/M > Adda/M -126a155,156 +> Addams/M +126a157,158 > Addi/M > Addia/M -128a159,161 +128c160,163 +< Addison +--- +> Addison/M > Addy/M > Ade/M > Adel/M -129a163 +129a165 > Adelaida/M -130a165 +130a167 > Adelbert/M -131a167,170 +131a169,172 > Adelheid/M > Adelice/M > Adelina/M > Adelind/M -132a172,173 +132a174,175 > Adella/M > Adelle/M -133a175 +134c177,180 +< Adenauer +--- > Adena/M -134a177,178 +> Adenauer/M > Adey/M > Adham/M -135a180,181 +135a182,183 > Adi/M > Adiana/M -136a183 +136a185 > Adina/M -139a187 +140c189,190 +< Adler +--- > Adlai/M -142a191 +> Adler/M +142a193 > Ado/M -145a195,197 +145a197,199 > Adolphe/M > Adolpho/M > Adolphus/M -146a199,203 +146a201,205 > Adora/M > Adore/M > Adoree/M > Adorne/M > Adrea/M -147a205 +148c207,208 +< Adrian +--- > Adria/MX -149a208,211 +> Adrian/M +149a210,213 > Adriane/M > Adrianna/M > Adrianne/M > Adriano/M -150a213,214 +150a215,216 > Adrien/M > Adriena/M -159a224,226 +159a226,228 > Aeriel/M > Aeriela/M > Aeriell/M -173a241 +164a234 +> Afghani/M +173c243,244 +< Afrocentrism +--- +> Afrocentrism/M > Afton/M -174a243 +174a246 > Agace/M -178a248 +178a251 > Agata/M -179a250,251 +180,182c253,263 +< Aggie +< Aglaia +< Agnes +--- > Agathe/M > Aggi/M -180a253 +> Aggie/M > Aggy/M -181a255,256 +> Aglaia/M > Agna/M > Agnella/M -182a258,260 +> Agnes/M > Agnese/M > Agnesse/M > Agneta/M -184a263,264 +185,186c266,270 +< Agra +< Agricola +--- > Agnola/M > Agosto/M -185a266 +> Agra/M > Agretha/M -189a271 +> Agricola/M +189a274 > Aguie/M -192a275,276 +192a278,279 > Aguistin/M > Aguste/M -194a279 +194a282 > Aharon/M -200a286,287 +196c284 +< Ahmadabad +--- +> Ahmadabad/M +201c289,295 +< Aiken +--- > Aidan/M > Aigneis/M -201a289,292 +> Aiken/M > Aila/M > Ailbert/M > Aile/M > Ailee/M -202a294,300 +202a297,303 > Ailene/M > Ailey/M > Aili/SM @@ -154,90 +236,149 @@ > Ailsun/M > Ailyn/M > Aime/M -203a302,306 +204c305,310 +< Ainu +--- > Aimil/M > Aindrea/M > Ainslee/M > Ainsley/M > Ainslie/M -207a311 +> Ainu/M +206c312 +< Aisha +--- +> Aisha/M +208c314,315 +< Akbar +--- > Ajay/M -210a315 +> Akbar/M +210,211c317,319 +< Akihito +< Akita +--- +> Akihito/M > Akim/M -214a320 +> Akita/M +213c321 +< Akkad +--- +> Akkad/M +214a323 > Aksel/M -220a327,330 +220a330,333 > Alain/M > Alaine/M > Alair/M > Alameda/M -224a335,340 +224a338,343 > Alanah/M > Aland/M > Alane/M > Alanna/M > Alano/M > Alanson/M -225a342 +226c345,347 +< Alaric +--- > Alard/M -226a344 +> Alaric/M > Alasdair/M -228a347,350 +229c350,354 +< Alba +--- > Alastair/M > Alasteir/M > Alaster/M > Alayne/M -233a356 +> Alba/M +233c358,359 +< Albee +--- +> Albee/M > Alberik/M -237a361,362 +235c361 +< Albert +--- +> Albert/M +237a364,365 > Albertina/M > Albertine/M -238a364 +239,240c367,370 +< Albigensian +< Albion +--- > Albie/M -239a366 +> Albigensian/M > Albina/M -241a369 +> Albion/M +241a372 > Albrecht/M -255a384,385 +243,245c374,376 +< Alcatraz +< Alcestis +< Alcibiades +--- +> Alcatraz/M +> Alcestis/M +> Alcibiades/M +249,252c380,383 +< Alcott +< Alcuin +< Alcyone +< Aldan +--- +> Alcott/M +> Alcuin/M +> Alcyone/M +> Aldan/M +254c385 +< Alden +--- +> Alden/M +255a387,388 > Aldin/M > Aldis/M -256a387,391 +256a390,394 > Aldon/M > Aldous/M > Aldric/M > Aldrich/M > Aldridge/M -257a393,394 +257a396,397 > Aldus/M > Aldwin/M -258a396,399 +258a399,402 > Alecia/M > Aleda/M > Aleece/M > Aleen/M -260a402 +260a405 > Alejandrina/M -261a404,405 +261a407,408 > Alejoa/M > Aleksandr/M -262a407,408 +262a410,411 > Alena/M > Alene/M -263a410,413 +263a413,416 > Alessandra/M > Alessandro/M > Aleta/M > Alethea/M -266a417 +266a420 > Alexa/M -267a419 +268c422,424 +< Alexandra +--- > Alexandr/M -268a421 +> Alexandra/M > Alexandre/M -270a424,425 +270a427,428 > Alexandrina/M > Alexandro/MS -272c427,436 +272c430,440 < Alexis --- > Alexi/MS @@ -245,90 +386,136 @@ > Alexina/M > Alexine/M > Alexio/M +> Alexis/M > Alf/M > Alfi/M > Alfie/M > Alfons/M > Alfonse/M -278a443 +276c444 +< Alfred +--- +> Alfred/M +278c446,447 +< Alfredo +--- +> Alfredo/M > Alfy/M -282a448 +280c449 +< Alger +--- +> Alger/M +282a452 > Algernon/M -290c456,459 +288c458 +< Alhambra +--- +> Alhambra/M +290c460,463 < Ali --- -> Ali/S +> Ali/SM > Alia/M > Alic/M > Alica/M -291a461 +291a465 > Alicea/M -292a463,466 +292a467,470 > Alick/M > Alida/M > Alidia/M > Alie/M -293a468,470 +293a472,474 > Alika/M > Alikee/M > Alina/M -296a474 +296a478 > Alisander/M -300a479,482 +300a483,486 > Alister/M > Alisun/M > Alix/M > Aliza/M -301a484 +301a488 > Alla/M -304a488,490 +303c490 +< Allahabad +--- +> Allahabad/M +304a492,494 > Allard/M > Allayne/M > Alleen/M -309a496 +306c496 +< Allegheny/S +--- +> Allegheny/SM +308c498 +< Allen +--- +> Allen/M +310c500,503 +< Allentown +--- > Allene/M -310a498,499 +> Allentown/M > Alley/M > Alleyn/M -313a503,506 +313a507,510 > Allissa/M > Allister/M > Allistir/M > Allix/M -314a508,512 +314a512,516 > Allsun/M > Allx/M > Ally/SM > Allyce/M > Allyn/M -318a517,519 +318a521,523 > Almeda/M > Almeria/M > Almeta/M -319a521,522 +319a525,526 > Almira/M > Almire/M -323a527,531 +323a531,535 > Aloin/M > Aloise/M > Aloisia/M > Alon/M > Alonso/M -324a533,534 +324a537,538 > Aloysia/M > Aloysius/M -333a544 +331c545 +< Alpine +--- +> Alpine/M +333a548 > Alric/M -348a560,561 +338c553 +< Alta +--- +> Alta/M +341,342c556,557 +< Altair +< Altamira +--- +> Altair/M +> Altamira/M +349c564,567 +< Alva +--- > Aluin/M > Aluino/M -349a563 +> Alva/M > Alvan/M -352a567,569 +352a571,573 > Alvera/M > Alverta/M > Alvie/M -353a571,577 +353a575,581 > Alvina/M > Alvinia/M > Alvira/M @@ -336,35 +523,42 @@ > Alvy/M > Alwin/M > Alwyn/M -354a579,584 +354a583,588 > Alyda/M > Alyosha/M > Alys/M > Alysa/M > Alyse/M > Alysia/M -355a586 +355a590 > Alyss -358a590,591 +358a594,595 > Amabel/M > Amabelle/M -360a594,596 +360a598,600 > Amalea/M > Amalee/M > Amaleta/M -361a598,600 +361a602,604 > Amalie/M > Amalita/M > Amalle/M -362a602,606 +363c606,611 +< Amarillo +--- > Amandi/M > Amandie/M > Amandy/M > Amara/M > Amargo/M -364a609 +> Amarillo/M +364a613 > Amata/M -369c614,624 +366c615 +< Amati +--- +> Amati/M +369c618,628 < Amber/M --- > Amber/MY @@ -378,208 +572,371 @@ > Ambur/M > Amby/M > Ame/M -370a626,629 +370a630,633 > Amelie/M > Amelina/M > Ameline/M > Amelita/M -379a639 +373c636 +< Amerasian +--- +> Amerasian/M +379a643 > Amerigo/M -381a642 +381a646 > Amery/M -384a646 +384c649,650 +< Amherst +--- +> Amherst/M > Ami/M -386a649,650 +386a653,654 > Amii/M > Amil/M -387a652,654 +387a656,658 > Amitie/M > Amity/M > Ammamaria/M -389a657 +390c661,662 +< Amos +--- > Amory/M -399a668 +> Amos/M +393c665 +< Amritsar +--- +> Amritsar/M +395,396c667,668 +< Amtrak +< Amundsen +--- +> Amtrak/M +> Amundsen/M +399a672 > Amye/M -400a670 +400a674 > Anabal/M -402a673,674 +402a677,678 > Anabella/M > Anabelle/M -406a679,682 +404,405c680,681 +< Anacreon +< Anaheim +--- +> Anacreon/M +> Anaheim/M +406a683,686 > Analiese/M > Analise/M > Anallese/M > Anallise/M -409a686,689 +408,409c688,693 +< Anasazi +< Anastasia +--- +> Anasazi/M +> Anastasia/M > Anastasie/M > Anastassia/M > Anatol/M > Anatola/M -412a693 +413c697,699 +< Anaxagoras +--- > Anatollo/M -413a695 +> Anaxagoras/M > Ancell/M -418a701,704 +416,418c702,708 +< Andalusian +< Andaman +< Andean +--- +> Andalusian/M +> Andaman/M +> Andean/M > Andee/M > Andeee/M > Anderea/M > Anders/N -421a708,710 +420c710 +< Anderson +--- +> Anderson/M +421a712,714 > Andi/M > Andie/M > Andonis/M -423a713 +423a717 > Andra/MS -425c715,717 +425c719,721 < Andrea/M --- > Andrea/SM > Andreana/M > Andree/M -427a720 +427a724 > Andrej/M -428a722,724 +428a726,728 > Andrey/M > Andria/M > Andriana/M -429a726,727 +430c730,733 +< Andromache +--- > Andriette/M -> Andris -432a731,732 +> Andris/M +> Android/M +> Andromache/M +432c735,737 +< Andropov +--- +> Andropov/M > Andros > Andrus/M -433a734,738 +434c739,745 +< Angara +--- > Anestassia/M > Anet/M > Anett/M > Anetta/M > Anette/M -434a740 +> Angara/M > Ange/M -436a743,744 +436a748,749 > Angele/M > Angeli/M -439a748 +438,439c751,753 +< Angelica +< Angelico +--- +> Angelica/M +> Angelico/M > Angelika/M -443a753 +443a758 > Angelle/M -447a758 +445c760 +< Angelou +--- +> Angelou/M +448c763,764 +< Angkor +--- > Angil/M -455c766 +> Angkor/M +450c766 +< Anglia +--- +> Anglia/M +455,458c771,774 < Anglicize +< Anglo +< Anglophil +< Anglophile --- > Anglicize/DSG -465a777,778 +> Anglo/M +> Anglophil/M +> Anglophile/M +463c779 +< Angstrom +--- +> Angstrom/M +465a782,783 > Angy/M > Ania/M -467a781,782 +467a786,787 > Anica/M > Anissa/M -468a784,786 +468a789,791 > Anitra/M > Anjanette/M > Anjela/M -471a790 +471c794,795 +< Anna +--- +> Anna/M > Annabal/M -472a792,794 +472a797,799 > Annabela/M > Annabell/M > Annabella/M -473a796,800 +473a801,805 > Annadiana/M > Annadiane/M > Annalee/M > Annaliese/M > Annalise/M -474a802,803 +474a807,808 > Annamaria/M > Annamarie/M -477a807,811 +477c811,816 +< Anne +--- +> Anne/M > Annecorinne/M > Anneliese/M > Annelise/M > Annemarie/M > Annetta/M -478a813,814 +478a818,819 > Anni/SM > Annice/M -479a816,817 +479a821,822 > Annissa/M > Annmaria/M -480a819,820 +480a824,825 > Annnora/M > Annora/M -481a822 +482,483c827,832 +< Anouilh +< Anselm +--- > Anny/M -482a824,825 +> Anouilh/M > Ansel/M > Ansell/M -483a827 +> Anselm/M > Anselma/M -485a830,832 +486c835,838 +< Antaeus +--- > Ansley/M > Anson/M > Anstice/M -490a838,841 +> Antaeus/M +491c843,848 +< Anthony +--- > Anthe/M > Anthea/M > Anthia/M > Anthiathia/M -497a849 +> Anthony/M +> Anthropocene +493c850 +< Antietam +--- +> Antietam/M +496c853 +< Antillean +--- +> Antillean/M +498c855,856 +< Antioch +--- > Antin/M -504c856 +> Antioch/M +503,504c861,862 +< Antoinette < Anton/M --- +> Antoinette/M > Anton/MS -505a858,860 +505a864,866 > Antonella/M > Antonetta/M > Antoni/M -506a862,866 +507c868,873 +< Antoninus +--- > Antonie/M > Antonietta/M > Antonin/M > Antonina/M > Antonino/M -513a874,875 +> Antoninus/M +509c875 +< Antonius +--- +> Antonius/M +514c880,882 +< Anzac +--- > Any/M > Anya/M -530a893 +> Anzac/M +517c885,886 +< Apennines +--- +> Apatosaurus/M +> Apennines/M +519c888 +< Apia +--- +> Apia/M +522c891 +< Apollinaire +--- +> Apollinaire/M +524c893 +< Apollonian +--- +> Apollonian/M +529,531c898,901 +< Appleseed +< Appleton +< Appomattox +--- +> Appleseed/M +> Appleton/M > Appolonia/M -533a897 +> Appomattox/M +534c904,905 +< Apuleius +--- > Aprilette/M -541c905 +> Apuleius/M +537c908 +< Aquila +--- +> Aquila/M +541c912 < Ar/M --- > Ar/MY -543a908,912 +543a915,919 > Arabel/M > Arabela/M > Arabele/M > Arabella/M > Arabelle/M -552a922 +548c924 +< Araby +--- +> Araby/M +552a929 > Araldo/M -563a934,936 +564c941,944 +< Archean +--- > Arch/R > Archaimbaud/M > Archambault/M -565a939,940 +> Archean/M +565a946,947 > Archibaldo/M > Archibold/M -567a943 +567c949,950 +< Archimedes +--- +> Archimedes/M > Archy/M -569a946 +569a953 > Arda/MH -570a948 +570a955 > Ardath/M -571a950,954 +572,574c957,976 +< Arden +< Arequipa +< Ares +--- > Ardeen/M > Ardelia/M > Ardelis/M > Ardella/M > Ardelle/M -572a956,966 +> Arden/M > Ardene/M > Ardenia/M > Ardine/M @@ -591,30 +948,61 @@ > Ardys > Ardyth/M > Arel/M -574a969 +> Arequipa/M +> Ares/M > Aretha/M -582a978 +579c981 +< Argo/S +--- +> Argo/SM +581a984 +> Argos/M +582a986 > Ari/M -583a980 +583a988 > Ariana/M -584a982,983 +585c990,995 +< Ariel +--- > Aridatha/M > Arie/SM -585a985,987 +> Ariel/M > Ariela/M > Ariella/M > Arielle/M -586a989,990 +587c997,999 +< Ariosto +--- > Arin/M > Ario/M -603a1008,1013 +> Ariosto/M +589c1001 +< Aristides +--- +> Aristides/M +594c1006 +< Ariz +--- +> Ariz/M +598,599c1010,1011 +< Arjuna +< Ark +--- +> Arjuna/M +> Ark/M +602,603c1014,1021 +< Arkhangelsk +< Arkwright +--- +> Arkhangelsk/M +> Arkwright/M > Arlan/M > Arlana/M > Arlee/M > Arleen/M > Arlen/M > Arlena/M -604a1015,1023 +604a1023,1031 > Arleta/M > Arlette/M > Arley/M @@ -624,91 +1012,179 @@ > Arlin/M > Arlina/M > Arlinda/M -606a1026,1029 +606c1033,1037 +< Arlington +--- +> Arlington/M > Arluene/M > Arly/M > Arlyn/M > Arlyne/M -608a1032 +608a1040 > Arman/M -613a1038 +613a1046 > Armin/M -617a1043,1044 +617a1051,1052 > Arnaldo/M -> Arne -618a1046 +> Arne/M +619c1054,1057 +< Arnhem +--- > Arney/M -619a1048,1049 +> Arnhem/M > Arni/M > Arnie/M -621a1052,1053 +621c1059,1061 +< Arnold +--- +> Arnold/M > Arnoldo/M > Arnuad/M -622a1055 +622a1063 > Arny/M -624a1058 +624c1065,1066 +< Arrhenius +--- +> Arrhenius/M > Arri/M -626a1061 +626a1069 > Artair/M -627a1063,1064 +627a1071,1072 > Arte/M -> Artemas -628a1066,1067 +> Artemas/M +628a1074,1075 > Artemus/M > Arther/M -631a1071 +630c1077 +< Arthurian +--- +> Arthurian/M +631a1079 > Artur/M -632a1073,1074 +632a1081,1082 > Artus/M > Arty/M -633a1076,1079 +633a1084,1087 > Arv/M > Arvie/M > Arvin/M > Arvy/M -634a1081,1082 +634a1089,1091 > Aryn/M +> As/M > Asa/M -637a1086 -> Ase/M -638a1088 -> Ash/MRY -639a1090,1091 -> Ashbey/M -> Ashby/M -641c1093,1094 +638,641c1095,1103 +< Asgard +< Ashanti +< Ashcroft < Ashe --- +> Ase/M +> Asgard/M +> Ash/MRY +> Ashanti/M +> Ashbey/M +> Ashby/M +> Ashcroft/M > Ashe/Y > Ashely/M -642a1096,1097 +642a1105,1106 > Ashia/M > Ashien/M -643a1099 +644c1108,1109 +< Ashkenazim +--- > Ashil/M -645a1102,1103 +> Ashkenazim/M +645a1111,1112 > Ashla/M > Ashlan/M -646a1105,1106 +646a1114,1115 > Ashleigh/M > Ashlen/M -647a1108,1111 +647a1117,1120 > Ashli/M > Ashlie/M > Ashlin/M > Ashly/M -648a1113 -> Ashton -672a1138 +649c1122,1123 +< Ashurbanipal +--- +> Ashton/M +> Ashurbanipal/M +650a1125 +> Asiago +653,655c1128,1130 +< Asimov +< Asmara +< Asoka +--- +> Asimov/M +> Asmara/M +> Asoka/M +657a1133 +> Asperger/M +659c1135 +< Asquith +--- +> Asquith/M +664c1140 +< Assisi +--- +> Assisi/M +667c1143 +< Astaire +--- +> Astaire/M +670,675c1146,1154 +< Aston +< Astor +< Astoria +< Astrakhan +< AstroTurf +< Asturias +--- +> Aston/M +> Astor/M +> Astoria/M > Astra/M -673a1140,1141 +> Astrakhan/M > Astrid/M > Astrix/M -695c1163 +> AstroTurf/M +> Asturias/M +680,681c1159,1160 +< Atahualpa +< Atalanta +--- +> Atahualpa/M +> Atalanta/M +693c1172 +< Atkinson +--- +> Atkinson/M +695c1174 < Atlantes --- > Atlante/SM -710a1179,1185 +699,700c1178,1179 +< Atman +< Atreus +--- +> Atman/M +> Atreus/M +706c1185 +< Attlee +--- +> Attlee/M +708c1187 +< Attucks +--- +> Attucks/M +711,712c1190,1200 +< Aubrey +< Auckland +--- > Aube > Auberon/M > Aubert/M @@ -716,577 +1192,1220 @@ > Aubine/M > Aubree/M > Aubrette/M -711a1187,1188 +> Aubrey/M > Aubrie/M > Aubry/M -714a1192 +> Auckland/M +714a1203 > Audie/M -716a1195 +716a1206 > Audre/M -717a1197,1199 +718c1208,1212 +< Audubon +--- > Audrie/M > Audry/M > Audrye/M -718a1201 +> Audubon/M > Audy/M -720a1204 +720,721c1214,1216 +< Augean +< Augsburg +--- +> Augean/M > Augie/M -724a1209,1211 +> Augsburg/M +724c1219,1222 +< Augustan +--- +> Augustan/M > Auguste/M > Augustin/M > Augustina/M -726a1214 +726a1225 > Augusto/M -727a1216,1218 +728c1227,1233 +< Aurangzeb +--- > Augy/M > Aundrea/M > Aura/M -728a1220,1222 +> Aurangzeb/M > Aurea/M > Aurel/M > Aurelea/M -729a1224 +729a1235 > Aurelie/M -732a1228,1229 +731c1237 +< Aurelius +--- +> Aurelius/M +732a1239,1240 > Auria/M > Aurie/M -733a1231,1233 +733a1242,1244 > Aurilia/M > Aurlie/M > Auroora/M -734a1235,1236 +735c1246,1248 +< Auschwitz +--- > Aurore/M > Aurthur/M -739a1242,1243 +> Auschwitz/M +737c1250 +< Austen +--- +> Austen/M +739a1253,1254 > Austina/M > Austine/M -753a1258 +741c1256 +< Australasian +--- +> Australasian/M +744c1259 +< Australoid +--- +> Australoid/M +752,756c1267,1275 +< Avalon +< Ave +< Aventine +< Avernus +< Averroes +--- +> Avalon/M +> Ave/M > Aveline/M -754a1260,1262 +> Aventine/M > Averell/M > Averil/M > Averill/M -757a1266 +> Avernus/M +> Averroes/M +757a1277 > Averyl/M -759a1269,1271 +759,760c1279,1283 +< Avicenna +< Avignon +--- +> Avicenna/M > Avictor/M > Avie/M > Avigdor/M -763a1276,1277 +> Avignon/M +763,767c1286,1299 +< Avis +< Avogadro +< Avon +< Axis +< Axum +--- +> Avis/M > Aviva/M > Avivah/M -765a1280,1286 +> Avogadro/M +> Avon/M > Avram/M > Avril/M > Avrit/M > Avrom/M > Ax/M > Axe/M -> Axel -769a1291,1292 +> Axel/M +> Axis/M +> Axum/M +769,770c1301,1306 +< Ayers +< Aymara +--- +> Ayers/M > Aylmar/M > Aylmer/M -770a1294,1295 +> Aymara/M > Aymer/M > Ayn/M -813a1339 +772c1308 +< Ayurveda +--- +> Ayurveda/M +776c1312 +< Azazel +--- +> Azazel/M +780c1316 +< Azov +--- +> Azov/M +788,789c1324,1325 +< BBB +< BBC +--- +> BBB/M +> BBC/M +793a1330 +> BFF +801c1338 +< BP +--- +> BP/M +806c1343 +< BSD/S +--- +> BSD/SM +813c1350,1351 +< Baathist +--- +> Baathist/M > Bab/SM -814a1341,1342 +815,816c1353,1358 +< Babbage +< Babbitt +--- > Babara/M > Babb/M -815a1344,1345 +> Babbage/M > Babbette/M > Babbie/M -817a1348,1349 +> Babbitt/M +817a1360,1361 > Babette/M > Babita/M -847a1380 +823c1367 +< Bacardi +--- +> Bacardi/M +830,831c1374,1375 +< Bactria +< Baden +--- +> Bactria/M +> Baden/M +834c1378 +< Baez +--- +> Baez/M +836c1380 +< Baggies +--- +> Baggies/M +838,840c1382,1384 +< Baguio +< Baha'i +< Baha'ullah +--- +> Baguio/M +> Baha'i/M +> Baha'ullah/M +845c1389 +< Bahia +--- +> Bahia/M +847c1391,1392 +< Baikal +--- +> Baikal/M > Bail/M -848a1382,1384 +849c1394,1397 +< Baird +--- > Bailie/M > Baillie/M > Baily/M -857a1394 +> Baird/M +851,852c1399,1400 +< Baker +< Bakersfield +--- +> Baker/M +> Bakersfield/M +854,857c1402,1406 +< Bakunin +< Balanchine +< Balaton +< Balboa +--- +> Bakunin/M +> Balanchine/M +> Balaton/M +> Balboa/M > Bald/MR -858a1396 +858a1408 > Balduin/M -859a1398 +859a1410 > Bale/M -874a1414,1416 +861c1412 +< Balfour +--- +> Balfour/M +864,866c1415,1417 +< Balkan/S +< Balkhash +< Ball +--- +> Balkan/SM +> Balkhash/M +> Ball/M +868c1419 +< Balthazar +--- +> Balthazar/M +871c1422 +< Baluchistan +--- +> Baluchistan/M +874a1426,1428 > Bambie/M > Bamby/M > Ban/M -886c1428,1429 +878c1432 +< Bangalore +--- +> Bangalore/M +882c1436 +< Bangor +--- +> Bangor/M +885,886c1439,1441 +< Banjul < Banks --- +> Banjul/M > Bank/SM > Banky/M -893a1437 +888,889c1443,1444 +< Bannister +< Banting +--- +> Bannister/M +> Banting/M +894c1449,1450 +< Barabbas +--- > Bar/H -895a1440,1442 +> Barabbas/M +895a1452,1454 > Barb/MR > Barbabas/M > Barbabra/M -898a1446 +898a1458 > Barbaraanne/M -901a1450 +902,903c1462,1468 +< Barber +< Barbie +--- > Barbe/M -902a1452,1455 +> Barber/M > Barbee/M > Barbette/M > Barbey/M > Barbi/M -906a1460 +> Barbie/M +906a1472 > Barby/M -908a1463,1464 +908a1475,1476 > Bard/M > Barde/M -910a1467 +910a1479 > Bari/M -913a1471 +914c1483,1485 +< Barnabas +--- > Barn/M -914a1473 +> Barnabas/M > Barnabe/M -917a1477 +916,918c1487,1490 +< Barnard +< Barnaul +< Barnes +--- +> Barnard/M +> Barnaul/M > Barnebas/M -920a1481 +> Barnes/M +921,922c1493,1497 +< Barnum +< Baroda +--- > Barnie/M -921a1483 +> Barnum/M > Barny/M -922a1485 +> Baroda/M > Baron/M -927a1491 +924c1499 +< Barquisimeto +--- +> Barquisimeto/M +926c1501 +< Barranquilla +--- +> Barranquilla/M +927a1503 > Barret/M -928a1493 +928a1505 > Barri/MS -933a1499 +931,934c1508,1513 +< Barry +< Barrymore +< Bart +< Barth/S +--- +> Barry/M +> Barrymore/M +> Bart/M > Bartel/M -934a1501 +> Barth/SM > Barthel/M -935a1503,1505 +936,941c1515,1532 +< Bartholomew +< Bartlett +< Bartok +< Barton +< Baruch +< Baryshnikov +--- > Bartholemy/M > Bartholomeo/M > Bartholomeus/M -936a1507,1508 +> Bartholomew/M > Bartie/M > Bartlet/M -938a1511,1512 +> Bartlett/M +> Bartok/M > Bartolemo/M > Bartolomeo/M -939a1514,1515 +> Barton/M > Bartram/M > Barty/M -940a1517,1518 +> Baruch/M > Bary/M > Baryram/M -941a1520 +> Baryshnikov/M > Base/M -943a1523 +944,946c1535,1541 +< Basic +< Basie +< Basil +--- > Basia/M -946a1527,1529 +> Basic/M +> Basie/M +> Basil/M > Basile/M > Basilio/M > Basilius/M -950a1534,1535 +948c1543 +< Basra +--- +> Basra/M +950a1546,1547 > Bastian/M > Bastien/M -952a1538 +952a1550 > Bat/M -954a1541 +954,956c1552,1555 +< Bates +< Bathsheba +< Batista +--- +> Bates/M > Batholomew/M -957a1545 +> Bathsheba/M +> Batista/M +957a1557 > Batsheva/M -960a1549 +960a1561 > Baudoin/M -966a1556,1557 +962c1563 +< Bauer +--- +> Bauer/M +964c1565 +< Baum +--- +> Baum/M +966a1568,1569 > Bax > Baxie/M -967a1559,1560 +967a1571,1572 > Baxy/M > Bay/MR -968a1562 +968a1574 > Bayard -977a1572 +970,971c1576,1577 +< Bayes +< Bayesian +--- +> Bayes/M +> Bayesian/M +975c1581 +< Bayreuth +--- +> Bayreuth/M +977a1584 > Bea/M -979a1575,1576 +979c1586,1588 +< Beadle +--- +> Beadle/M > Beale/M > Bealle/M -980a1578 +980a1590 > Bear/M -984a1583 +983c1593 +< Beardsley +--- +> Beardsley/M +984a1595 > Bearnard/M -988a1588 +988a1600 > Beatrisa/M -997a1598,1599 +992c1604 +< Beaufort +--- +> Beaufort/M +995c1607 +< Beaumont +--- +> Beaumont/M +997c1609,1611 +< Beauvoir +--- +> Beauvoir/M > Bebe/M > Becca/M -999a1602 +999a1614 > Becka/M -1002a1606,1607 +1002a1618,1619 > Becki/M > Beckie/M -1006a1612 +1004,1005c1621,1622 +< Becquerel +< Bede +--- +> Becquerel/M +> Bede/M +1006a1624 > Bee/M -1018a1625 +1008c1626 +< Beecher +--- +> Beecher/M +1011c1629 +< Beerbohm +--- +> Beerbohm/M +1014,1017c1632,1635 +< Begin +< Behan +< Behring +< Beiderbecke +--- +> Begin/M +> Behan/M +> Behring/M +> Beiderbecke/M +1018a1637 > Beilul/M -1019a1627 +1019a1639 > Beitris/M -1020a1629,1630 +1020a1641,1642 > Bekki/M > Bel/M -1029a1640,1641 +1026c1648 +< Belg +--- +> Belg/M +1029a1652,1653 > Belia/M > Belicia/M -1030a1643 +1030a1655 > Belita/M -1034a1648 +1034a1660 > Bellanca/M -1035a1650 +1036,1038c1662,1666 +< Belleek +< Bellini +< Bellow +--- > Belle/M -1036a1652 +> Belleek/M > Bellina/M -1044a1661 +> Bellini/M +> Bellow/M +1040c1668 +< Belmopan +--- +> Belmopan/M +1044c1672,1673 +< Beltane +--- +> Beltane/M > Beltran/M -1045a1663,1664 +1045a1675,1676 > Belva/M > Belvia/M -1050a1670,1672 +1050a1682,1684 > Bendick/M > Bendicty/M > Bendite/M -1051a1674,1676 +1051a1686,1688 > Benedetta/M > Benedetto/M > Benedick/M -1052a1678 +1052a1690 > Benedicta/M -1053a1680,1682 +1053a1692,1694 > Benedicto/M > Benedikt/M > Benedikta/M -1055a1685 +1055c1696,1697 +< Benet +--- +> Benet/M > Benetta/M -1059a1690,1691 +1059a1702,1703 > Bengt/M > Beniamino/M -1063a1696 +1064,1065c1708,1715 +< Benjamin +< Bennett +--- > Benjamen/M -1064a1698,1701 +> Benjamin/M > Benji/M > Benjie/M > Benjy/M > Benn/M -1065a1703 +> Bennett/M > Benni/M -1067a1706,1707 +1067a1718,1719 > Benoit/M > Benoite/M -1068a1709 +1069,1072c1721,1727 +< Bentham +< Bentley +< Benton +< Benz +--- > Bent/M -1069a1711 +> Bentham/M > Bentlee/M -1071a1714 +> Bentley/M +> Benton/M > Benyamin/M -1074a1718 +> Benz/M +1074c1729,1730 +< Beowulf +--- +> Beowulf/M > Ber/MG -1076a1721 +1076a1733 > Beret -1081a1727 +1078c1735 +< Berg/NR +--- +> Berg/MNR +1081,1085c1738,1745 +< Bergerac +< Bergman +< Bergson +< Beria +< Bering +--- +> Bergerac/M > Berget/M -1085a1732,1733 +> Bergman/M +> Bergson/M +> Beria/M +> Bering/M > Berk/MY > Berke/M -1086a1735,1737 +1086a1747,1749 > Berkie/M > Berkley/M > Berkly/M -1087a1739 +1087a1751 > Berky/M -1096a1749,1750 +1091c1755 +< Berlioz +--- +> Berlioz/M +1097c1761,1764 +< Bernadette +--- > Berna/M > Bernadene/M -1097a1752 +> Bernadette/M > Bernadina/M -1100a1756,1757 +1100c1767,1769 +< Bernard +--- +> Bernard/M > Bernardina/M > Bernardine -1101a1759 +1101a1771 > Bernarr/M -1104c1762 +1104c1774 < Berne/M --- > Bernelle/M -1105a1764,1767 +1106c1776,1781 +< Bernhardt +--- > Bernete/M > Bernetta/M > Bernette/M > Bernhard/M -1106a1769 +> Bernhardt/M > Berni/M -1109a1773 +1109,1111c1784,1788 +< Bernini +< Bernoulli +< Bernstein +--- +> Bernini/M > Bernita/M -1111a1776 +> Bernoulli/M +> Bernstein/M > Berny/M -1112a1778,1779 +1113c1790,1792 +< Berry +--- > Berri/M > Berrie/M -1115a1783 +> Berry/M +1115a1795 > Berte/M -1117a1786,1787 +1117a1798,1799 > Berthe/M > Berti/M -1119a1790,1792 +1119a1802,1804 > Bertina/M > Bertine/M > Berton/M -1121a1795,1796 +1121a1807,1808 > Bertrando/M > Berty/M -1122a1798 +1123,1125c1810,1813 +< Berzelius +< Bess +< Bessel +--- > Beryle/M -1127a1804 +> Berzelius/M +> Bess/M +> Bessel/M +1127c1815,1816 +< Bessie +--- +> Bessie/M > Bessy/M -1130a1808 +1131,1133c1820,1825 +< Bethany +< Bethe +< Bethesda +--- > Bethanne/M -1132a1811 +> Bethany/M +> Bethe/M > Bethena/M -1133a1813 +> Bethesda/M > Bethina/M -1135a1816 +1135c1827,1828 +< Bethune +--- +> Bethune/M > Betsey/M -1136a1818 +1136a1830 > Betta/M -1137a1820,1822 +1137a1832,1834 > Betteann/M > Betteanne/M > Betti -1138a1824,1825 +1138a1836,1837 > Bettina/M > Bettine/M -1141a1829,1831 +1141c1840,1843 +< Beulah +--- +> Beulah/M > Bevan > Beverie/M > Beverlee/M -1142a1833 +1142a1845 > Beverlie/M -1143a1835,1837 +1144,1145c1847,1851 +< Beyer +< Bhopal +--- > Bevin > Bevon/M > Bevvy/M -1151a1846 +> Beyer/M +> Bhopal/M +1150c1856 +< Bialystok +--- +> Bialystok/M +1151a1858 > Bianka/M -1152a1848,1851 +1152a1860,1863 > Bibbie/M > Bibby/M > Bibbye/M > Bibi/M -1155a1855 +1156c1867,1869 +< Biddle +--- > Biddie/M -1156a1857 +> Biddle/M > Biddy/M -1157a1859 +1158c1871,1872 +< Bierce +--- > Bidget/M -1161a1864 +> Bierce/M +1162c1876,1877 +< Bilbao +--- > Bil/MY -1163a1867 +> Bilbao/M +1163a1879 > Bili/M -1164a1869 +1164a1881 > Billi/M -1167a1873 +1167a1885 > Billye/M -1168a1875,1879 +1168a1887,1891 > Bink/M > Binky/M > Binni/M > Binnie/M > Binny/M -1169a1881 +1170c1893,1895 +< Bird +--- > Birch/M -1170a1883 +> Bird/M > Birdie/M -1171a1885,1887 +1172c1897,1900 +< Birkenstock +--- > Birgit/M > Birgitta/M > Birk/M -1174a1891 +> Birkenstock/M +1175c1903,1904 +< Biscay +--- > Biron/M -1183a1901 +> Biscay/M +1177c1906 +< Bishkek +--- +> Bishkek/M +1183c1912,1914 +< Bizet +--- +> BitTorrent/M +> Bizet/M > Bjorn/M -1197a1916 +1190c1921 +< Blackfeet +--- +> Blackfeet/M +1194,1195c1925,1926 +< Blackstone +< Blackwell +--- +> Blackstone/M +> Blackwell/M +1198c1929,1932 +< Blake +--- > Blaire/M -1198a1918,1919 +> Blake/M > Blakelee/M > Blakeley/M -1199a1921,1922 +1199a1934,1935 > Blanch/M > Blancha/M -1201a1925 +1201a1938 > Blane/M -1205a1930 +1205c1942,1943 +< Blavatsky +--- +> Blavatsky/M > Blayne/M -1208a1934,1939 +1209c1947,1953 +< Bloch +--- > Blinni/M > Blinnie/M > Blinny/M > Bliss > Blisse/M > Blithe/M -1212a1944,1945 +> Bloch/M +1212a1957,1958 > Blondell/M > Blondelle/M -1213a1947 +1213a1960 > Blondy/M -1221a1956 +1215c1962,1963 +< Bloomfield +--- +> Bloomer/M +> Bloomfield/M +1217c1965,1966 +< Bloomsbury +--- +> Bloomsbury/M +> Blu +1221a1971 > Bo/MRZ -1224a1960,1962 +1224a1975,1977 > Bobbe/M > Bobbee/M > Bobbette/M -1228a1967,1971 +1229c1982,1987 +< Boccaccio +--- > Bobbye/M > Bobette/M > Bobina/M > Bobine/M > Bobinette/M -1237a1981 +> Boccaccio/M +1234c1992 +< Boeotian +--- +> Boeotian/M +1236c1994 +< Boethius +--- +> Boethius/M +1237a1996 > Bogey/M -1241a1986 +1239c1998 +< Bohemia +--- +> Bohemia/M +1241c2000,2001 +< Bohr +--- +> Bohr/M > Boigie/M -1259a2005,2008 +1251,1252c2011,2012 +< Bolshevism +< Bolshevist +--- +> Bolshevism/M +> Bolshevist/M +1254,1255c2014,2015 +< Bolton +< Boltzmann +--- +> Bolton/M +> Boltzmann/M +1257,1258c2017,2018 +< Bonaparte +< Bonaventure +--- +> Bonaparte/M +> Bonaventure/M +1259a2020,2023 > Bondie/M > Bondon/M > Bondy/M > Bone/M -1263a2013 +1261c2025 +< Boniface +--- +> Boniface/M +1263a2028 > Bonnee/M -1265a2016,2017 +1265a2031,2032 > Bonni/M > Bonnibelle/M -1266a2019 -> Bonny -1271a2025,2028 +1266a2034 +> Bonny/M +1270c2038 +< Boolean +--- +> Boolean/M +1271a2040,2043 > Boonie/M > Boony/M > Boot/M > Boote/MS -1273a2031,2032 +1273c2045,2047 +< Booth +--- +> Booth/M > Boothe/M > Bord/MN -1275a2035 +1275a2050 > Bordie/M -1276a2037 +1276a2052 > Bordy/M -1304a2066 +1279,1282c2055,2058 +< Borges +< Borgia +< Borglum +< Boris +--- +> Borges/M +> Borgia/M +> Borglum/M +> Boris/M +1285c2061 +< Born +--- +> Born/M +1288c2064 +< Borodin +--- +> Borodin/M +1290,1291c2066,2067 +< Bosch +< Bose +--- +> Bosch/M +> Bose/M +1293c2069 +< Bosnian +--- +> Bosnian/M +1296,1297c2072,2074 +< Bostonian +< Boswell +--- +> Bostonian/M +> Boswell/M +> Botox +1299,1301c2076,2078 +< Botticelli +< Boudicca +< Boulder +--- +> Botticelli/M +> Boudicca/M +> Boulder/M +1305c2082,2083 +< Bournemouth +--- > Bourke/M -1313a2076,2079 +> Bournemouth/M +1310c2088 +< Bowers +--- +> Bowers/M +1312c2090 +< Bowie +--- +> Bowie/M +1314c2092,2096 +< Boyd +--- > Boy/MR > Boyce/M > Boycey/M > Boycie/M -1317c2083 +> Boyd/M +1316,1317c2098,2099 +< Boyle < Br/MT --- +> Boyle/M > Br/MNT -1318a2085 +1319c2101,2102 +< Bradbury +--- > Bradan/M -1320a2088,2089 +> Bradbury/M +1321,1322c2104,2107 +< Bradford +< Bradley +--- > Brade/M > Braden/M -1323a2093 +> Bradford/M +> Bradley/M +1323a2109 > Bradney/M -1339a2110 +1326c2112 +< Brady +--- +> Brady/M +1328c2114 +< Brahe +--- +> Brahe/M +1332,1333c2118,2119 +< Brahmanee +< Brahmani +--- +> Brahmanee/M +> Brahmani/M +1339a2126 > Bram/M -1341a2113 +1341a2129 > Brana/M -1342a2115,2118 +1343c2131,2135 +< Brandeis +--- > Brand/MNR > Brandais/M > Brande/M > Brandea/M -1345a2122 +> Brandeis/M +1345c2137,2138 +< Brandenburg +--- +> Brandenburg/M > Brander/M -1346a2124 +1346a2140 > Brandice/M -1347a2126 +1348c2142,2143 +< Brando +--- > Brandise/M -1350a2130 +> Brando/M +1350c2145,2146 +< Brandt +--- +> Brandt/M > Brandtr/M -1351a2132,2133 +1351a2148,2149 > Brandyn/M > Brannon/M -1352a2135 +1353c2151,2152 +< Braque +--- > Brantley/M -1362a2146,2147 +> Braque/M +1355c2154 +< Bratislava +--- +> Bratislava/M +1362a2162,2163 > Breanne/M > Brear/M -1365a2151,2152 +1364c2165 +< Brecht +--- +> Brecht/M +1366c2167,2171 +< Bremen +--- > Bree/M > Breena/M -1366a2154,2155 +> Bremen/M > Bren/M > Brena/M -1368a2158,2163 +1368a2174,2179 > Brenden/M > Brendin/M > Brendis/M > Brendon/M > Brenn/MNR > Brenna/M -1369a2165 +1369a2181 > Brennen/M -1376a2173 +1372a2185 +> Brest/M +1376a2190 > Brew/MR -1379a2177 +1378,1379c2192,2194 +< Brewster +< Brezhnev +--- +> Brewster/M +> Brezhnev/M > Bria/M -1382a2181,2183 +1382a2198,2200 > Brianne/M > Briano/M > Briant/M -1384a2186 +1384a2203 > Bride/M -1393c2195,2200 -< Brie/SM +1387c2206 +< Bridges --- +> Bridges/M +1389c2208 +< Bridgetown +--- +> Bridgetown/M +1392,1395c2211,2219 +< Bridgman +< Brie/SM +< Brigadoon +< Briggs +--- +> Bridgman/M > Bridie/M > Brie/RSM > Brien/M > Brier/M > Brietta/M -> Brig -1395c2202 -< Briggs ---- +> Brig/M +> Brigadoon/M > Brigg/MS -1399a2207,2209 +1397c2221 +< Bright +--- +> Bright/M +1399a2224,2226 > Brigida/M > Brigit/M > Brigitta/M -1401a2212,2213 +1401c2228,2230 +< Brillo +--- +> Brillo/M > Brina/M > Briney/M -1402a2215,2218 +1402a2232,2235 > Brinn/M > Brinna/M > Briny/M > Brion/M -1405a2222 +1405a2239 > Brita/M -1413a2231 +1407,1408c2241,2242 +< Britannia +< Britannic +--- +> Britannia/M +> Britannic/M +1413a2248 > Britni/M -1415a2234,2237 +1415a2251,2254 > Britta/M > Brittan/M > Brittaney/M > Brittani/M -1416a2239,2241 +1416a2256,2259 > Britte/M +> Britten/M > Britteny/M > Brittne/M -1417a2243,2245 +1418c2261,2264 +< Brno +--- > Brittni/M > Brnaba/M > Brnaby/M -1422a2251,2260 +> Brno/M +1421c2267 +< Brobdingnagian +--- +> Brobdingnagian/M +1422a2269,2278 > Brockie/M > Brocky/M > Brod/M @@ -1297,493 +2416,989 @@ > Brodie/M > Brody/M > Brok/M -1423a2262,2264 +1423a2280,2282 > Bron/M > Bronnie/M > Bronny/M -1426a2268 +1425c2284,2285 +< Bronte +--- +> Bronte/M +> Brontosaurus +1427c2287,2288 +< Brooke +--- > Brook/MS -1429d2270 +> Brooke/M +1429c2290 < Brooks -1430a2272 +--- +> Brooks/M +1431,1432c2292,2294 +< Brown/G +< Browne +--- > Brose/M -1438a2281 +> Brown/MG +> Browne/M +1435,1437c2297,2300 +< Brownshirt +< Brownsville +< Brubeck +--- +> Browning/M +> Brownshirt/M +> Brownsville/M +> Brubeck/M +1439,1441c2302,2306 +< Bruckner +< Bruegel +< Brueghel +--- > Brucie/M -1441a2285 +> Bruckner/M +> Bruegel/M +> Brueghel/M > Bruis/M -1445a2290 +1445c2310,2311 +< Brunelleschi +--- +> Brunelleschi/M > Brunhilda/M -1452a2298 +1447c2313 +< Bruno +--- +> Bruno/M +1452,1453c2318,2321 +< Bryan +< Bryant +--- +> Bryan/M > Bryana/M -1453a2300 +> Bryant/M > Bryanty/M -1454a2302,2306 +1454a2323,2327 > Bryn/M > Bryna/M > Brynn/MR > Brynna/M > Brynne/M -1464a2317 +1459c2332 +< Buber +--- +> Buber/M +1464,1465c2337,2339 +< Buck +< Buckingham +--- +> Buck/M > Buckie/M -1467a2321 +> Buckingham/M +1467a2342 > Bucky/M -1469a2324 +1469a2345 > Budd/M -1472a2328 +1472a2349 > Buddie/M -1479d2334 +1479d2355 < Bugzilla/M -1480a2336 +1480a2357 > Buiron/M -1499a2356,2358 +1482,1487c2359,2364 +< Bukhara +< Bukharin +< Bulawayo +< Bulfinch +< Bulganin +< Bulgar +--- +> Bukhara/M +> Bukharin/M +> Bulawayo/M +> Bulfinch/M +> Bulganin/M +> Bulgar/M +1495c2372 +< Bunche +--- +> Bunche/M +1497,1498c2374,2375 +< Bundestag +< Bunin +--- +> Bundestag/M +> Bunin/M +1500c2377,2380 +< Bunsen +--- > Bunni/M > Bunnie/M > Bunny/M -1505a2365 +> Bunsen/M +1503c2383 +< Burbank +--- +> Burbank/M +1505a2386 > Burg/MR -1510a2371 -> Burk/SM -1512d2372 +1507c2388 +< Burgess +--- +> Burgess/M +1509c2390 +< Burgundian +--- +> Burgundian/M +1511,1512c2392,2394 +< Burke < Burks -1513a2374 +--- +> Burk/SM +> Burke/M +> Burks/M +1513a2396 > Burlie/M -1516a2378,2379 +1517,1520c2400,2405 +< Burnett +< Burns +< Burnside +< Burr +--- > Burnaby/M > Burnard/M -1524a2388 +> Burnett/M +> Burns/M +> Burnside/M +> Burr/M +1522,1523c2407,2408 +< Burroughs +< Bursa +--- +> Burroughs/M +> Bursa/M +1524a2410 > Burtie/M -1525a2390 +1525a2412 > Burty/M -1531a2397 +1530c2417 +< Bushido +--- +> Bushido/M +1531a2419 > Butch/M -1537a2404,2406 +1538,1540c2426,2433 +< Byrd +< Byron +< Byronic +--- > Byram/M > Byran/M > Byrann/M -1538a2408,2409 +> Byrd/M > Byrle/M > Byrom/M -1543c2414 +> Byron/M +> Byronic/M +1543c2436 < C/SM --- > C/SMDY -1559c2430 +1553c2446 +< CBS +--- +> CBS/M +1559c2452 < CEO/M --- > CEO/MS -1561c2432 +1561c2454 < CFC/M --- > CFC/MS -1588a2460,2463 +1565c2458 +< CNN +--- +> CNN/M +1580a2474 +> CVS/M +1585,1586c2479,2480 +< Cabot +< Cabral +--- +> Cabot/M +> Cabral/M +1588c2482,2486 +< Cabrini +--- +> Cabrini/M > Cacilia/M > Cacilie/M > Cad/M > Caddric/M -1598a2474 -> Cahra/M -1600a2477 -> Cairistiona/M -1602a2480 -> Caitrin/M -1605c2483 -< Cal +1590c2488 +< Cadillac --- -> Cal/Y -1610a2489 +> Cadillac/M +1593c2491 +< Caerphilly +--- +> Caerphilly/M +1596c2494 +< Cage +--- +> Cage/M +1599c2497,2498 +< Caiaphas +--- +> Cahra/M +> Caiaphas/M +1600a2500 +> Cairistiona/M +1602a2503 +> Caitrin/M +1605,1606c2506,2507 +< Cal +< Calais +--- +> Cal/YM +> Calais/M +1610c2511,2512 +< Caldwell +--- +> Caldwell/M > Cale/M -1616a2496 +1612c2514 +< Caledonia +--- +> Caledonia/M +1614,1616c2516,2519 +< Calhoun +< Cali +< Caliban +--- +> Calhoun/M +> Cali/M +> Caliban/M > Calida/M -1620a2501 +1620,1621c2523,2525 +< Caligula +< Callaghan +--- +> Caligula/M > Calla/MS -1624c2505,2508 +> Callaghan/M +1623,1624c2527,2532 +< Callao < Callas --- +> Callao/M +> Callas/M > Callean/M > Calley/M > Calli/M > Callida/M -1627a2512 +1627a2536 > Cally/M -1628a2514 +1628a2538 > Calv/M -1634a2521,2522 +1630c2540 +< Calvert +--- +> Calvert/M +1634a2545,2546 > Calypso > Cam -1635a2524 +1635a2548 > Camala/M -1641a2531,2532 +1642c2555,2557 +< Camelopardalis +--- > Camella/M > Camellia/M -1647a2539,2542 +> Camelopardalis/M +1647a2563,2566 > Camey/M > Cami/M > Camila/M > Camile/M -1649a2545,2547 +1649a2569,2571 > Cammi/M > Cammie/M > Cammy/M -1670a2569 +1652,1654c2574,2576 +< Campbell +< Campinas +< Campos +--- +> Campbell/M +> Campinas/M +> Campos/M +1656,1657c2578,2579 +< Camus +< Can +--- +> Camus/M +> Can/M +1664c2586 +< Canaletto +--- +> Canaletto/M +1666c2588 +< Canaveral +--- +> Canaveral/M +1670a2593 > Candi/MS -1671a2571 +1671a2595 > Candida/M -1672a2573,2574 +1672a2597,2598 > Candie/M > Candra/M -1699a2602 +1677c2603 +< Canopus +--- +> Canopus/M +1679c2605 +< Canterbury +--- +> Canterbury/M +1685,1686c2611,2612 +< Canute +< Capablanca +--- +> Canute/M +> Capablanca/M +1689,1690c2615,2616 +< Capet +< Capetian +--- +> Capet/M +> Capetian/M +1695,1697c2621,2623 +< Capitoline +< Capone +< Capote +--- +> Capitoline/M +> Capone/M +> Capote/M +1699a2626 > Caprice/M -1703a2607 +1702c2629 +< Capuchin +--- +> Capuchin/M +1703a2631 > Car/MNY -1706a2611 +1705c2633 +< Caracalla +--- +> Caracalla/M +1707c2635,2636 +< Caravaggio +--- > Caralie/M -1710a2616 +> Caravaggio/M +1710c2639,2640 +< Carborundum +--- +> Carborundum/M > Carce/M -1714a2621,2626 +1715c2645,2653 +< Carey +--- > Care/M > Caren/M > Carena/M > Caresa/M > Caressa/M > Caresse/M -1715a2628,2629 +> Carey/M > Cari/M > Caria -1717a2632,2635 +1718c2656,2662 +< Carina +--- > Carie/M > Caril/M > Carilyn/M > Carin/M -1718a2637,2638 +> Carina/M > Carine/M > Cariotta/M -1720c2640,2642 +1720c2664,2666 < Carl/M --- > Carita/M > Caritta/M > Carl/GMN -1721a2644,2646 +1721a2668,2670 > Carlee/M > Carleen/M > Carlen/M -1722a2648,2650 +1722a2672,2674 > Carleton/M > Carley/M > Carlie/M -1723a2652,2655 +1723a2676,2679 > Carlina/M > Carline/M > Carling/M > Carlita/M -1724a2657,2658 -> Carlota +1725c2681,2684 +< Carlsbad +--- +> Carlos/M +> Carlota/M > Carlotta/M -1728a2663 +> Carlsbad/M +1727c2686 +< Carlton +--- +> Carlton/M +1729c2688,2694 +< Carlyle +--- > Carlye/M -1729a2665,2669 +> Carlyle/M > Carlyn/M > Carlynn/M > Carlynne/M > Carma/M -> Carmel -1730a2671,2673 +> Carmel/M +1730a2696,2698 > Carmelia/M > Carmelina/M > Carmelita/M -1731a2675 +1731a2700 > Carmelle/M -1733a2678 +1733a2703 > Carmencita/M -1734a2680 +1734a2705 > Carmina/M -1735a2682,2683 +1736c2707,2709 +< Carnap +--- > Carmita/M > Carmon/M -1740a2689,2690 +> Carnap/M +1740c2713,2715 +< Carnot +--- +> Carnot/M > Carny/M > Caro/M -1741a2692,2694 +1741a2717,2719 > Carola/M > Carolan/M > Carolann/M -1742a2696,2697 +1743,1745c2721,2725 +< Carolina +< Caroline +< Carolingian +--- > Carolee/M > Carolin/M -1746a2702,2703 +> Carolina/M +> Caroline/M +> Carolingian/M +1746a2727,2728 > Caroljean/M > Carolus/M -1747a2705,2707 +1747a2730,2732 > Carolyne/M > Carolynn/M > Caron/M -1752c2712,2714 -< Carrie/RM +1749c2734,2735 +< Carpenter --- +> Carpathians/M +> Carpenter/M +1751a2738,2739 > Carree/M > Carri/MR -> Carrie/M -1754a2717,2718 +1754a2743,2744 > Carrissa/M > Carrol/M -1755a2720 +1756c2746,2748 +< Carson +--- > Carry/M -1756a2722 +> Carson/M > Cart/MR -1765a2732,2733 +1758c2750 +< Cartesian +--- +> Cartesian/M +1761,1765c2753,2759 +< Cartier +< Cartwright +< Caruso +< Carver +< Cary +--- +> Cartier/M +> Cartwright/M +> Caruso/M +> Carver/M +> Cary/M > Caryl/M > Caryn/M -1769a2738 +1767c2761 +< Casals +--- +> Casals/M +1769a2764 > Casar/M -1773a2743,2744 +1773c2768,2770 +< Cash +--- +> Cash/M > Casi/M > Casie/M -1775a2747 +1775,1776c2772,2775 +< Caspar +< Caspian +--- +> Caspar/M > Casper/M -1776a2749 +> Caspian/M > Cass/M -1777a2751,2752 +1778c2777,2782 +< Cassatt +--- > Cassandre/M > Cassandry/M -1778a2754,2756 +> Cassatt/M > Cassaundra/M > Cassey/M > Cassi/M -1781a2760,2761 +1781a2786,2787 > Cassondra/M > Cassy/M -1791a2772 +1785c2791 +< Castlereagh +--- +> Castlereagh/M +1788c2794 +< Castro +--- +> Castro/M +1791a2798 > Catarina/M -1792a2774,2775 +1792a2800,2801 > Cate/M > Caterina/M -1793a2777,2779 +1793a2803,2805 > Catha/M > Catharina/M > Catharine/M -1795c2781,2784 +1795c2807,2811 < Cather --- > Cathe/MR > Cathee/M +> Cather/M > Catherin/M > Catherina/M -1796a2786,2787 +1796a2813,2814 > Cathi/M > Cathie/M -1797a2789 +1797a2816 > Cathlene/M -1799a2792,2793 +1799a2819,2820 > Cathrin/M > Cathrine/M -1801a2796,2798 +1802,1803c2823,2833 +< Catiline +< Cato +--- > Cathyleen/M > Cati/M > Catie/M -1802a2800,2803 +> Catiline/M > Catina/M > Catlaina/M > Catlee/M > Catlin/M -1803a2805,2806 +> Cato/M > Catrina/M > Catriona/M -1807a2811 +1806,1807c2836,2838 +< Catt +< Catullus +--- +> Catt/M +> Catullus/M > Caty/M -1814a2819 +1811,1815c2842,2848 +< Cauchy +< Cavendish +< Cavour +< Caxton +< Cayenne +--- +> Cauchy/M +> Cavendish/M +> Cavour/M +> Caxton/M > Caye/M -1815a2821 +> Cayenne/M > Cayla/M -1818a2825,2826 +1818a2852,2853 > Caz/M > Cazzie/M -1819a2828 +1819a2855 > Cchaddie/M -1824a2834 +1824a2861 > Cece/M -1827a2838 +1826c2863 +< Cecil +--- +> Cecil/M +1828c2865,2869 +< Cecilia +--- > Ceciley/M -1828a2840,2842 +> Cecilia/M > Cecilio/M > Cecilius/M > Cecilla/M -1829a2844 +1829a2871 > Ced/M -1830a2846,2849 +1830a2873,2876 > Ceil/M > Cele/M > Celene/M > Celesta/M -1832a2852,2856 +1832a2879,2883 > Celestia/M > Celestina/M > Celestine/M > Celestyn/M > Celestyna/M -1833a2858 +1833a2885 > Celie/M -1834a2860,2865 +1835,1836c2887,2895 +< Cellini +< Celsius +--- > Celinda/M > Celine/M > Celinka/M > Celisse/M > Celka/M > Celle/M -1835a2867 +> Cellini/M > Cello/M -1850a2883 +> Celsius/M +1843c2902 +< Cepheid +--- +> Cepheid/M +1846c2905 +< Cerenkov +--- +> Cerenkov/M +1850a2910 > Cesare/M -1851a2885 +1852c2912,2913 +< Cesarian +--- > Cesaro/M -1853a2888 +> Cesarian/M +1854c2915,2916 +< Cetus +--- > Cesya/M -1860c2895 +> Cetus/M +1857c2919 +< Cezanne +--- +> Cezanne/M +1859,1860c2921,2922 +< Ch'in < Ch/N --- +> Ch'in/M > Ch/NRS -1862a2898,2900 +1862a2925,2927 > Chadd/M > Chaddie/M > Chaddy/M -1865a2904 +1864,1865c2929,2931 +< Chadwick +< Chagall +--- +> Chadwick/M +> Chagall/M > Chaim/M -1870a2910 +1869c2935 +< Chaldean +--- +> Chaldean/M +1871,1874c2937,2941 +< Chamberlain +< Chambers +< Champlain +< Champollion +--- > Chalmers -1877a2918,2920 +> Chamberlain/M +> Chambers/M +> Champlain/M +> Champollion/M +1878,1879c2945,2949 +< Chandigarh +< Chandler +--- > Chancey/M > Chanda/M > Chandal/M -1883a2927 +> Chandigarh/M +> Chandler/M +1882c2952 +< Chandragupta +--- +> Chandragupta/M +1884c2954,2955 +< Chanel +--- > Chane/M -1888a2933,2935 +> Chanel/M +1887,1889c2958,2963 +< Changchun +< Changsha +< Chantilly +--- +> Changchun/M +> Changsha/M > Channa/M > Chantal/M > Chantalle/M -1895a2943 +> Chantilly/M +1892,1893c2966,2967 +< Chaplin +< Chapman +--- +> Chaplin/M +> Chapman/M +1895a2970 > Chara -1897a2946,2952 +1897a2973,2979 > Charil/M > Charin/M > Chariot/M -> Charis +> Charis/M > Charissa/M > Charisse/M > Charita/M -1898a2954,2956 +1898a2981,2983 > Charla/M > Charlean/M > Charleen/M -1899a2958 +1899a2985 > Charlena/M -1904a2964,2966 +1903,1904c2989,2993 +< Charley +< Charlie +--- +> Charley/M +> Charlie/M > Charline/M > Charlot/M > Charlotta/M -1906a2969,2970 -> Charlton +1906a2996,2997 +> Charlton/M > Charmain/M -1907a2972,2973 +1907a2999,3000 > Charmane/M > Charmian/M -1908a2975,2977 +1908a3002,3004 > Charmine/M > Charmion/M > Charo/M -1913a2983,2984 +1912c3008 +< Chartres +--- +> Chartres/M +1914c3010,3012 +< Chase +--- > Charyl/M -> Chas -1915a2987 +> Chas/M +> Chase/M +1915a3014 > Chastity/M -1921a2994 +1920c3019 +< Chatterton +--- +> Chatterton/M +1921a3021 > Chaunce/M -1935a3009 +1923c3023 +< Chautauqua +--- +> Chautauqua/M +1927c3027 +< Chechen +--- +> Chechen/M +1929c3029 +< Cheddar +--- +> Cheddar/M +1933c3033 +< Cheever +--- +> Cheever/M +1936c3036,3040 +< Chelsea +--- > Chelsae/M -1936a3011,3013 +> Chelsea/M > Chelsey/M > Chelsie/M > Chelsy/M -1942a3020,3021 +1942c3046,3048 +< Cheops +--- +> Cheops/M > Chere/M > Cherey/M -1943a3023,3025 +1943a3050,3052 > Cherianne/M > Cherice/M > Cherida/M -1944a3027,3032 +1944a3054,3059 > Cherilyn/M > Cherilynn/M > Cherin/M > Cherise/M > Cherish/M > Cherlyn/M -1948a3037,3038 +1948a3064,3065 > Cherri/M > Cherrita/M -1949a3040,3041 +1949a3067,3068 > Chery/M > Cherye/M -1952a3045 +1951,1952c3070,3072 +< Chesapeake +< Cheshire +--- +> Chesapeake/M +> Cheshire/M > Cheslie/M -1955a3049,3051 +1954,1956c3074,3079 +< Chesterfield +< Chesterton +< Chevalier +--- +> Chesterfield/M +> Chesterton/M > Cheston/M > Chet/M > Chev/M -1963a3060 +> Chevalier/M +1964,1965c3087,3090 +< Chiba +< Chibcha +--- > Chiarra/M -1965a3063 +> Chiba/M +> Chibcha/M > Chic/M -1969a3068 +1967,1969c3092,3095 +< Chicagoan +< Chicana +< Chicano +--- +> Chicagoan/M +> Chicana/M +> Chicano/M > Chick/M -1970a3070,3071 +1970a3097,3098 > Chickie/M > Chicky/M -1971a3073 +1971a3100 > Chico/M -1974a3077 +1974a3104 > Chilton/M -1982a3086 +1980c3110 +< Chinatown +--- +> Chinatown/M +1982a3113 > Chip/M -1985a3090 +1985a3117 > Chiquia/M -1991a3097 +1987c3119 +< Chirico +--- +> Chirico/M +1990c3122 +< Chittagong +--- +> Chittagong/M +1992c3124,3127 +< Chloe +--- > Chlo/M -1992a3099,3100 +> Chloe/M > Chloette/M > Chloris/M -2001c3109,3112 +1994,1995c3129,3130 +< Chomsky +< Chongqing +--- +> Chomsky/M +> Chongqing/M +1998c3133 +< Chou +--- +> Chou/M +2001c3136,3139 < Christ/MS --- > Chrisse/M > Chrissie/M > Chrissy/M > Christ/MNS -2002a3114,3118 +2003,2004c3141,3150 +< Christchurch +< Christendom/SM +--- > Christabel/M > Christabella/M > Christal/M > Christalle/M > Christan/M -2003a3120,3122 +> Christchurch/M > Christean/M > Christel/M > Christen/M -2007a3127,3128 +> Christendom/MS +2007a3154,3155 > Christiana/M > Christiane/M -2009c3130,3131 +2009,2011c3157,3161 < Christianize +< Christie +< Christina --- > Christianize/DSG > Christiano/M -2010a3133 +> Christie/M > Christin/M -2016a3140,3141 +> Christina/M +2016a3167,3168 > Christoffer/M > Christoforo/M -2017a3143,3144 +2017a3170,3171 > Christoph/MR -> Christophe -2019c3146,3150 +> Christophe/M +2019c3173,3177 < Christy --- > Christophorus/M @@ -1791,43 +3406,74 @@ > Christye/M > Christyna/M > Chrisy/M -2020a3152,3153 +2020a3179,3180 > Chrotoem/M > Chrysa/M -2023a3157,3159 +2022c3182 +< Chrysostom +--- +> Chrysostom/M +2023a3184,3186 > Chryste/M > Chrystel/M > Chucho/M -2033a3170 +2025,2026c3188,3189 +< Chukchi +< Chumash +--- +> Chukchi/M +> Chumash/M +2029c3192 +< Church +--- +> Church/M +2033c3196,3197 +< Ci +--- +> Ci/M > Cicely/M -2034a3172 +2035c3199,3202 +< Cid +--- > Cicily/M -2035a3174,3175 +> Cid/M > Ciel/M > Cilka/M -2037a3178,3180 +2037c3204,3207 +< Cincinnati +--- +> Cincinnati/M > Cinda/M > Cindee/M > Cindelyn/M -2038a3182,3184 +2038a3209,3211 > Cindi/M > Cindie/M > Cindra/M -2041a3188 +2041c3214,3215 +< Cinerama +--- +> Cinerama/M > Cinnamon/M -2043a3191,3193 +2043a3218,3220 > Cirillo/M > Cirilo/M > Ciro/M -2044a3195,3196 +2044a3222,3223 > Cissiee/M > Cissy/M -2048a3201 +2048a3228 > Claiborn/M -2056a3210,3211 +2057c3237,3239 +< Clare +--- > Clarabelle/M > Clarance/M -2059a3215,3221 +> Clare/M +2059c3241,3248 +< Clarendon +--- +> Clarendon/M > Claresta/M > Clareta/M > Claretta/M @@ -1835,144 +3481,295 @@ > Clarey/M > Clari/M > Claribel/M -2060a3223,3225 +2060a3250,3252 > Clarie/M > Clarinda/M > Clarine/M -2061a3227,3228 +2062c3254,3256 +< Clark +--- > Clarisse/M > Clarita/M -2063a3231 +> Clark/M +2063a3258 > Clary/M -2064a3233,3235 +2064a3260,3262 > Claudell/M > Claudelle/M > Claudetta/M -2066a3238,3241 +2066a3265,3268 > Claudian/M > Claudianus/M > Claudie/M > Claudina/M -2073a3249,3252 +2071,2073c3273,3279 +< Clausewitz +< Clausius +< Clay +--- +> Clausewitz/M +> Clausius/M +> Clay/M > Clayborn/M > Clayborne/M > Claybourne/M > Clayson/M -2074a3254 +2074a3281 > Clea/M -2075a3256 +2075a3283 > Cleavland/M -2076a3258 +2077c3285,3287 +< Clemenceau +--- > Clemence/M -2078a3261,3263 +> Clemenceau/M +> Clemens/M +2078a3289,3292 > Clemente/M +> Clementes/M > Clementia/M > Clementina/M -2079a3265,3267 +2080c3294,3297 +< Clemons +--- > Clementius/M > Clemmie/M > Clemmy/M -2082a3271 -> Cleon -2083a3273,3277 +> Clemons/M +2082a3300 +> Cleon/M +2083a3302,3306 > Clerc/M > Clerissa/M -> Cletis +> Cletis/M > Cletus/M > Cleve/M -2084a3279,3280 +2084a3308,3309 > Clevey/M > Clevie/M -2088a3285 +2087c3312 +< Clifford +--- +> Clifford/M +2088a3314 > Clim/M -2092a3290,3291 +2092a3319,3321 +> Clive/M > Clo/M > Cloe/M -2093a3293 +2093a3323 > Cloris/M -2095a3296 +2094a3325 +> Closure/M +2095a3327 > Clotilda/M -2097a3299 +2098c3330,3331 +< Clyde +--- > Cly/M -2100a3303,3304 +> Clyde/M +2100c3333,3335 +< Clytemnestra +--- +> Clytemnestra/M > Clyve/M > Clywd/M -2103c3307,3308 +2103c3338,3339 < Co/M --- > Co/SM > Cob/M -2105a3311,3312 +2105,2108c3341,3346 +< Cobb +< Cochabamba +< Cochin +< Cochise +--- +> Cobb/M > Cobbie/M > Cobby/M -2112a3320,3322 +> Cochabamba/M +> Cochin/M +> Cochise/M +2111c3349 +< Cocteau +--- +> Cocteau/M +2113c3351,3354 +< Cody +--- > Codee/M > Codi/M > Codie/M -2118a3329 +> Cody/M +2116,2119c3357,3361 +< Cohan +< Cohen +< Coimbatore +< Cointreau +--- +> Cohan/M +> Cohen/M +> Coimbatore/M > Cointon/M -2121a3333,3334 +> Cointreau/M +2121c3363,3365 +< Col +--- +> Col/M > Colan/M -> Colas -2126a3340 +> Colas/M +2123,2124c3367,3368 +< Colby +< Cole +--- +> Colby/M +> Cole/M +2126a3371 > Colene/M -2127a3342,3343 -> Colet +2128c3373,3375 +< Colette +--- +> Colet/M > Coletta/M -2132a3349,3352 +> Colette/M +2132a3380,3383 > Collen/M > Collete/M > Collette/M > Collie/M -2134a3355,3357 +2134a3386,3389 +> Collins/M > Colline/M > Colly/RM > Colman/M -2150a3374 +2145c3400 +< Colosseum +--- +> Colosseum/M +2147c3402 +< Coltrane +--- +> Coltrane/M +2149c3404 +< Columbine +--- +> Columbine/M +2150a3406 > Colver/M -2167a3392 +2155,2156c3411,3412 +< Comintern +< Commons +--- +> Comintern/M +> Commons/M +2161c3417 +< Como +--- +> Como/M +2165c3421 +< Compton +--- +> Compton/M +2167c3423,3424 +< Comte +--- +> Comte/M > Con -2169a3395 +2170c3427,3428 +< Concepcion +--- > Conant/M -2171a3398,3399 +> Concepcion/M +2171a3430,3431 > Concettina/M > Conchita/M -2173a3402 +2173,2175c3433,3436 +< Concorde +< Condillac +< Condorcet +--- +> Concorde/M > Concordia/M -2195a3425,3426 +> Condillac/M +> Condorcet/M +2182c3443 +< Cong +--- +> Cong/M +2189c3450 +< Congreve +--- +> Congreve/M +2191c3452 +< Conn/R +--- +> Conn/MR +2193c3454 +< Connemara +--- +> Connemara/M +2195a3457,3458 > Conney/M > Conni/M -2198c3429,3430 +2198,2199c3461,3466 < Connors +< Conrad --- > Connor/SM +> Connors/M > Conny/M -2199a3432,3433 +> Conrad/M > Conrade/M > Conrado/M -2200a3435,3436 +2200a3468,3469 > Conroy/M > Consalve/M -2201a3438 +2202,2204c3471,3481 +< Constable +< Constance +< Constantine +--- > Consolata/M -2203a3441,3446 +> Constable/M +> Constance/M > Constancia/M > Constancy/M > Constanta/M > Constantia > Constantin/M > Constantina/M -2204a3448 +> Constantine/M > Constantino/M -2206a3451 +2206a3484 > Consuela/M -2213a3459 +2209c3487 +< Continental +--- +> Continental/M +2211,2212c3489,3490 +< Conway +< Cook +--- +> Conway/M +> Cook/M +2213a3492 > Cookie/M -2216c3462 +2216c3495 < Cooper --- > Coop/MR -2230a3477,3489 +2222c3501 +< Copernican +--- +> Copernican/M +2224,2225c3503,3504 +< Copland +< Copley +--- +> Copland/M +> Copley/M +2230a3510,3522 > Corabel/M > Corabella/M > Corabelle/M @@ -1984,15 +3781,18 @@ > Corbett/M > Corbie/M > Corbin/M -> Corby +> Corby/M > Cord/M -2231a3491,3495 +2232c3524,3529 +< Cordilleras +--- > Cordelie/M > Cordell/M > Cordey/M > Cordi/M > Cordie/M -2233a3498,3505 +> Cordilleras/M +2233a3531,3538 > Cordula/M > Cordy/M > Coreen/M @@ -2001,71 +3801,156 @@ > Corene/M > Coretta/M > Corette/M -2235a3508,3510 +2235c3540,3543 +< Corfu +--- +> Corfu/M > Cori/M > Corie/M > Corilla/M -2237a3513 +2237a3546 > Corinna/M -2242a3519,3520 +2240,2241c3549,3551 +< Corinthian/SM +< Coriolanus +--- +> Corinthian/MS +> Corinthians/M +> Coriolanus/M +2243c3553,3555 +< Cork +--- > Coriss/M > Corissa/M -2244a3523,3524 +> Cork/M +2244a3557,3558 > Corliss/M > Corly/M -2245a3526 +2246c3560,3562 +< Corneille +--- > Cornall/M -2246a3528 +> Corneille/M > Cornela/M -2249a3532,3534 +2249a3566,3568 > Cornelle/M > Corney/M > Cornie/M -2253a3539 +2253,2255c3572,3575 +< Cornwallis +< Coronado +< Corot +--- +> Cornwallis/M > Corny/M -2257a3544,3549 +> Coronado/M +> Corot/M +2257c3577,3583 +< Correggio +--- +> Correggio/M > Correna/M > Correy/M > Corri/M > Corrianne/M > Corrie/M > Corrina/M -2258a3551,3552 +2258a3585,3586 > Corrinne/M > Corry/M -2260a3555 +2260c3588,3589 +< Corsican +--- +> Corsican/M > Cort/M -2262a3558 +2262a3592 > Cortie/M -2263a3560,3561 +2263a3594,3595 > Cortney/M > Corty/M -2268a3567,3571 +2269c3601,3608 +< Cossack +--- > Cosetta/M > Cosette/M > Cosimo/M > Cosme/M > Cosmo/M -2269a3573,3574 +> Cossack/M > Costa/M > Costanza/M -2281a3587,3589 +2274c3613 +< Cotonou +--- +> Cotonou/M +2278c3617 +< Coulomb +--- +> Coulomb/M +2280,2281c3619,3623 +< Couperin +< Courbet +--- +> Couperin/M +> Courbet/M > Court/M > Courtenay/M > Courtnay/M -2289a3598 +2283c3625 +< Cousteau +--- +> Cousteau/M +2285,2288c3627,3630 +< Coward +< Cowley +< Cowper +< Cox +--- +> Coward/M +> Cowley/M +> Cowper/M +> Cox/M +2289a3632 > Cozmo/M -2294a3604,3605 +2293c3636 +< Crabbe +--- +> Crabbe/M +2295,2298c3638,3643 +< Craig +< Cranach +< Crane +< Cranmer +--- > Craggie/M > Craggy/M -2307a3619,3620 +> Craig/M +> Cranach/M +> Crane/M +> Cranmer/M +2307a3653,3654 > Creigh/M > Creight/M -2318a3632 +2310c3657,3658 +< Creon +--- +> Creon/M +> Cressida/M +2315,2316c3663,3664 +< Crichton +< Crick +--- +> Crichton/M +> Crick/M +2318,2319c3666,3669 +< Crimean +< Criollo +--- +> Crimean/M > Crin/M -2319a3634 +> Criollo/M > Cris/M -2320a3636,3646 +2320a3671,3681 > Crissie/M > Crissy/M > Crista/M @@ -2077,46 +3962,97 @@ > Cristiano/M > Cristie/M > Cristin/M -2321a3648,3651 +2321a3683,3686 > Cristine/M > Cristionna/M > Cristobal/M > Cristy/M -2345a3676 +2325,2327c3690,3692 +< Croce +< Crockett +< Croesus +--- +> Croce/M +> Crockett/M +> Croesus/M +2329c3694 +< Cromwellian +--- +> Cromwellian/M +2333,2335c3698,3700 +< Crookes +< Crosby +< Cross +--- +> Crookes/M +> Crosby/M +> Cross/M +2339c3704 +< Cruikshank +--- +> Cruikshank/M +2341c3706 +< Crusades +--- +> Crusades/M +2345a3711 > Crysta/M -2346a3678 +2346a3713 > Crystie/M -2349a3682 +2349c3716,3717 +< Ctesiphon +--- +> Ctesiphon/M > Cthrine/M -2356a3690,3691 +2355,2356c3723,3726 +< Cuisinart +< Culbertson +--- +> Cuisinart/M +> Culbertson/M > Cull/MN > Cullan/M -2357a3693,3697 +2357a3728,3732 > Culley/M > Cullie/M > Cullin/M > Cully/M > Culver/M -2363a3704 +2359c3734 +< Cummings +--- +> Cummings/M +2364,2365c3739,3745 +< Curie +< Curitiba +--- > Curcio/M -2365a3707,3710 +> Curie/M +> Curitiba/M > Curr/M > Curran/M > Currey/M > Currie/MR -2367c3712 +2367c3747 < Curry/R --- -> Curry -2368a3714 +> Curry/RM +2368a3749 > Curtice/M -2372a3719,3720 +2370c3751 +< Custer +--- +> Custer/M +2372c3753,3755 +< Cuzco +--- +> Cuzco/M > Cy > Cyb/M -2373a3722,3723 +2373a3757,3758 > Cybil/M > Cybill/M -2378a3729,3735 +2378a3764,3770 > Cymbre/M > Cynde/M > Cyndi/M @@ -2124,31 +4060,50 @@ > Cyndie/M > Cyndy/M > Cynthea/M -2379a3737,3738 +2379a3772,3773 > Cynthie/M > Cynthy/M -2384a3744,3745 +2384c3778,3780 +< Cyril +--- +> Cyril/M > Cyrill/M > Cyrille/M -2385a3747 +2386c3782,3783 +< Cyrus +--- > Cyrillus/M -2393c3755,3756 +> Cyrus/M +2390c3787 +< Czechoslovakian/MS +--- +> Czechoslovakian/SM +2392,2393c3789,3791 +< Czerny < D/M --- +> Czerny/M > D'Arcy > D/MN -2418a3782 +2405a3804 +> DHS +2407a3807 +> DMCA +2418a3819 > DRM -2422a3787 -> DVR/S -2424a3790 +2422a3824 +> DVR/SM +2424a3827 > Dacey/M -2425a3792,3793 +2425a3829,3830 > Dacia > Dacie/M -2426a3795 +2426a3832 > Dacy/M -2429a3799,3805 +2430,2431c3836,3845 +< Daguerre +< Dagwood +--- > Dael/M > Daffi/M > Daffie/M @@ -2156,221 +4111,382 @@ > Dag/M > Dagmar/M > Dagny/M -2431a3808 +> Daguerre/M +> Dagwood/M > Dahlia/M -2432a3810 +2432a3847 > Daile/M -2433a3812,3814 +2434c3849,3852 +< Daisy +--- > Daisey/M > Daisi/M > Daisie/M -2437a3819 +> Daisy/M +2437,2438c3855,3859 +< Dakotan +< Dale +--- +> Dakotan/M > Dal/M -2438a3821 +> Dalai +> Dale/M > Dalenna/M -2440c3823,3824 +2440c3861,3862 < Dali --- > Dali/S > Dalia/M -2441a3826,3827 +2441a3864,3865 > Dalila/M > Dall/M -2442a3829,3830 +2442a3867,3868 > Dalli/MS > Dallon/M -2444a3833,3835 +2444a3871,3873 > Daloris/M > Dalston/M > Dalt/M -2445a3837,3838 +2445a3875,3876 > Damara/M > Damaris/M -2448a3842 +2447c3878 +< Dame/N +--- +> Dame/MN +2449c3880,3881 +< Damien +--- > Damiano/M -2450a3845 +> Damien/M +2451c3883,3884 +< Damocles +--- > Damita/M -2457a3853,3855 +> Damocles/M +2453c3886 +< Dan +--- +> Dan/M +2455c3888 +< Danae +--- +> Danae/M +2457c3890,3893 +< Danelaw +--- +> Danelaw/M > Danell/M > Danella/M > Danette/M -2458a3857,3858 +2458a3895,3896 > Dani/M > Dania/M -2459a3860,3862 +2459a3898,3900 > Danica/M > Danice/M > Danie/M -2460a3864,3866 +2460a3902,3905 > Daniela/M > Daniele/M +> Daniels/M > Daniella/M -2461a3868,3869 +2461a3907,3908 > Danika/M > Danila/M -2462a3871,3875 +2462a3910,3914 > Danit/M > Danita/M > Danna/M > Dannel/M > Danni/M -2464a3878 +2464a3917 > Dannye/M -2469a3884,3888 +2467c3920 +< Danton +--- +> Danton/M +2469c3922,3927 +< Danubian +--- +> Danubian/M > Danya/M > Danyelle/M > Danyette/M > Daphene/M > Daphna/M -2470a3890,3894 +2470a3929,3933 > Dar/MNH > Dara/M > Darb/M > Darbee/M > Darbie/M -2471a3896,3899 +2471a3935,3938 > Darcee/M > Darcey/M > Darci/M > Darcie/M -2472a3901 +2472a3940 > Darda/M -2474a3904,3906 +2474c3942,3945 +< Dare +--- +> Dare/M > Dareen/M > Darell/M > Darelle/M -2476a3909,3912 +2476c3947,3951 +< Darfur +--- +> Darfur/M > Dari/M > Daria/M > Darice/M > Darill/M -2481a3918 +2479,2480c3954,3955 +< Darius +< Darjeeling +--- +> Darius/M +> Darjeeling/M +2481a3957 > Darleen/M -2482a3920 +2482a3959 > Darline/M -2483a3922,3924 +2483a3961,3963 > Darlleen/M > Darn/M > Darnall/M -2484a3926 +2484a3965 > Daron/M -2486a3929 +2486a3968 > Darrelle/M -2487a3931 +2487a3970 > Darrick/M -2490a3935,3936 +2489c3972 +< Darrow +--- +> Darrow/M +2490a3974,3975 > Darsey/M > Darsie/M -2498a3945 +2492,2493c3977,3978 +< Dartmoor +< Dartmouth +--- +> Dartmoor/M +> Dartmouth/M +2496c3981 +< Darwinian +--- +> Darwinian/M +2498a3984 > Darya/M -2499a3947,3952 +2499a3986,3991 > Daryle/M > Daryn/M > Dasha/M > Dasi/M > Dasie/M > Dasya/M -2500a3954 +2500a3993 > Datha/M -2502a3957,3958 +2502,2503c3995,3998 +< Daumier +< Davao +--- +> Daumier/M > Daune/M > Dav/MN -2504a3961,3962 +> Davao/M +2505c4000,4004 +< Davenport +--- > Daveen/M > Daven/M -2505a3964,3965 +> Davenport/M > Daveta/M > Davey/M -2506a3967,3969 +2506a4006,4008 > Davida/M > Davidde/M > Davide/M -2507a3971,3974 +2508,2510c4010,4017 +< Davis +< Davy/S +< Dawes +--- > Davie/MS +> Davies/M > Davin/M > Davina/M > Davine/M -2511a3979 +> Davis/M +> Davy/SM +> Dawes/M +2512,2515c4019,4027 +< Dawson +< Day +< Dayan +< Dayton +--- > Dawna/M -2514a3983,3984 +> Dawson/M +> Day/M +> Dayan/M > Dayle/M > Dayna/M -2515a3986,3987 +> Dayton/M > Ddene/M > De/RSMN -2516a3989 +2516a4029 > DeKalb/M -2520a3994 +2518c4031 +< Dean +--- +> Dean/M +2520a4034 > Deane/M -2523a3998,3999 +2523a4038,4039 > Deb/SM > Debbi/M -2525a4002,4004 +2525a4042,4044 > Debee/M > Debera/M > Debi/M -2526a4006 +2526a4046 > Debor/M -2540c4020,4021 +2528c4048 +< Deborah +--- +> Deborah/M +2531,2532c4051,4052 +< Debs +< Debussy +--- +> Debs/M +> Debussy/M +2536c4056 +< Decatur +--- +> Decatur/M +2538c4058 +< Deccan +--- +> Deccan/M +2540c4060,4061 < Decker --- > Deck/MR > Dede/M -2541a4023,4024 +2542c4063,4068 +< Dee +--- > Dedie/M > Dedra/M -2542a4026,4028 +> Dee/M > Deeann/M > Deeanne/M > Deedee/M -2543a4030 +2543a4070 > Deerdre/M -2544a4032 -> Deeyn/M -2546a4035 -> Dehlia/M -2548a4038 -> Deina/M -2552c4042,4043 -< Del +2545,2546c4072,4075 +< Defoe +< Degas --- -> Del/Y +> Deeyn/M +> Defoe/M +> Degas/M +> Dehlia/M +2548,2550c4077,4080 +< Deimos +< Deirdre +< Deity +--- +> Deimos/M +> Deina/M +> Deirdre/M +> Deity/M +2552,2553c4082,4084 +< Del +< Delacroix +--- +> Del/YM > Dela/M -2554a4046 +> Delacroix/M +2554a4086 > Delainey/M -2559a4052,4053 +2558c4090 +< Delawarean/MS +--- +> Delawarean/SM +2559a4092,4093 > Delcina/M > Delcine/M -2565a4060 +2561c4095 +< Delgado +--- +> Delgado/M +2564c4098 +< Delibes +--- +> Delibes/M +2565a4100 > Delila/M -2567a4063 +2567,2568c4102,4104 +< Delilahs +< Delius +--- +> Delilahs/M > Delinda/M -2570a4067 +> Delius/M +2570a4107 > Delly/M -2574a4072,4074 +2574c4111,4114 +< Delmonico +--- +> Delmonico/M > Delmor/M > Delmore/M > Delora/M -2575a4076 +2575a4116 > Deloria/M -2578a4080,4081 +2578c4119,4121 +< Delphic +--- +> Delphic/M > Delphine/M > Delphinia/M -2584a4088,4091 +2580c4123 +< Delta +--- +> Delta/M +2584a4128,4131 > Demetra/M > Demetre/M > Demetri/SM > Demetria/M -2590a4098 +2589c4136 +< Democritus +--- +> Democritus/M +2591c4138,4139 +< Dempsey +--- > Demott/M -2593a4102 +> Dempsey/M +2594c4142,4143 +< Deneb +--- > Dene -2597c4106,4107 +> Deneb/M +2597c4146,4148 < Denis --- > Deni/SM > Denice/M -2600c4110,4115 +> Denis/M +2600c4151,4157 < Dennis --- > Denna/M @@ -2378,156 +4494,276 @@ > Denney/M > Denni/MS > Dennie/M +> Dennis/M > Dennison/M -2602a4118,4120 +2602a4160,4162 > Deny/M -> Denys +> Denys/M > Denyse/M -2603a4122 +2603a4164 > Deonne/M -2604a4124 +2605c4166,4167 +< Derby +--- > Der/M -2607a4128,4130 +> Derby/M +2607a4170,4172 > Derk/M > Dermot/M > Derrek/M -2609a4133,4138 +2609a4175,4180 > Derrik/M > Derril/M > Derron/M -> Derry +> Derry/M > Derward/M > Derwin/M -2611a4141,4142 +2611a4183,4184 > Desi/M > Desirae/M -2612a4144 +2612a4186 > Desiri/M -2613a4146 +2613a4188 > Desmund/M -2616a4150,4152 +2616a4192,4194 > Dev/M > Deva/M > Devan/M -2620a4157,4161 +2620a4199,4203 > Devina/M > Devinne/M > Devland/M > Devlen/M > Devlin/M -2621a4163 +2621a4205 > Devondra/M -2622a4165,4170 +2622a4207,4212 > Devonna/M > Devonne/M > Devora/M > Devy/M > Dew/M > Dewain/M -2625a4174 +2625a4216 > Dewie/M -2626a4176 +2626a4218 > Dex/M -2628a4179 +2628c4220,4221 +< Dexter +--- +> Dexter/M > Dhabi -2634a4186 +2631c4224 +< Di/S +--- +> Di/S/M +2633,2634c4226,4228 +< DiMaggio +< Diaghilev +--- +> DiMaggio/M +> Diaghilev/M > Diahann/M -2635a4188 +2635a4230 > Dian/M -2636a4190 +2636a4232 > Diandra/M -2637a4192 +2637a4234 > Dianemarie/M -2640a4196,4197 +2640a4238,4239 > Diannne/M > Diarmid/M -2646a4204 +2643,2644c4242,4244 +< Diaz +< Dick/X +--- +> Diaz/M +> Dick/XM +> Dickens/M +2647c4247,4248 +< Dickinson +--- > Dickie/M -2648a4207 +> Dickinson/M +2648a4250 > Dicky/M -2650a4210 +2650c4252,4253 +< Diderot +--- +> Diderot/M > Didi/M -2655a4216,4217 +2653c4256 +< Diefenbaker +--- +> Diefenbaker/M +2655a4259,4260 > Diena/M > Dierdre/M -2656a4219 +2657c4262,4263 +< Dietrich +--- > Dieter/M -2659a4223 +> Dietrich/M +2659c4265,4266 +< Dijon +--- +> Dijon/M > Dilan/M -2660a4225 +2660a4268 > Dill/M -2661a4227 +2661a4270 > Dillie/M -2663a4230,4232 +2663a4273,4275 > Dilly/M > Dimitri/M > Dimitry/M -2665a4235,4236 +2665c4277,4279 +< Dinah +--- +> Dinah/M > Dinnie/M > Dinny/M -2669a4241,4243 -> Dione +2667,2668c4281,4282 +< Diocletian +< Diogenes +--- +> Diocletian/M +> Diogenes/M +2669a4284,4286 +> Dione/M > Dionis/M > Dionisio/M -2683a4258 +2671c4288 +< Dionysian +--- +> Dionysian/M +2674c4291 +< Dior +--- +> Dior/M +2677,2678c4294,4295 +< Dirac +< Dirichlet +--- +> Dirac/M +> Dirichlet/M +2681,2683c4298,4301 +< Disney +< Disneyland +< Disraeli +--- +> Disney/M +> Disneyland/M +> Disraeli/M > Dita/M -2697a4273 +2686c4304 +< Dix +--- +> Dix/M +2688c4306 +< Dixiecrat +--- +> Dixiecrat/M +2695c4313 +< Dnepropetrovsk +--- +> Dnepropetrovsk/M +2697c4315,4316 +< Dniester +--- +> Dniester/M > Dniren/M -2702a4279 +2700c4319 +< Dobro +--- +> Dobro/M +2702a4322 > Dode/M -2704a4282,4283 +2704a4325,4326 > Dodi/M > Dodie/M -2706a4286 +2707c4329,4330 +< Doe +--- > Dody/M -2710a4291,4294 +> Doe/M +2709c4332 +< Dolby +--- +> Dolby/M +2710a4334,4337 > Dolf/M > Doll/M > Dolley/M > Dolli/M -2713a4298,4303 +2713a4341,4346 > Dolorita/SM > Dolph/M > Dom > Domenic/M > Domenico/M > Domeniga/M -2714a4305 +2714a4348 > Dominga/M -2716a4308 +2717c4351,4352 +< Dominic +--- > Domini/M -2720a4313 +> Dominic/M +2720a4356 > Dominik/M -2724a4318 +2723c4359 +< Domitian +--- +> Domitian/M +2725c4361,4362 +< Dona +--- > Don't -2726a4321 +> Dona/M +2726a4364 > Donal/M -2728a4324,4325 +2729c4367,4373 +< Donatello +--- > Donall/M > Donalt/M -2729a4327,4330 +> Donatello/M > Donaugh/M > Donavon/M > Donella/M > Donelle/M -2730a4332,4335 +2730a4375,4378 > Donetta/M > Donia/M > Donica/M > Donielle/M -2733a4339 +2733c4381,4382 +< Donna +--- +> Donna/M > Donnamarie/M -2736a4343 +2736a4386 > Donni/M -2744a4352,4356 +2741c4391 +< Doolittle +--- +> Doolittle/M +2743c4393 +< Doppler +--- +> Doppler/M +2745c4395,4401 +< Dorcas +--- > Doralia/M > Doralin/M > Doralyn/M > Doralynn/M > Doralynne/M -2745a4358 +> Dorcas/M > Dore/M -2746a4360,4369 +2746a4403,4412 > Dorelia/M > Dorella/M > Dorelle/M @@ -2538,72 +4774,131 @@ > Dorey/M > Dori/SM > Doria/M -2748a4372,4374 +2748a4415,4417 > Dorice/M > Dorie/M > Dorine/M -2749a4376,4378 +2749a4419,4421 > Dorisa/M > Dorise/M > Dorita/M -2750a4380,4384 +2750a4423,4427 > Doro/M > Dorolice/M > Dorolisa/M > Dorotea/M > Doroteya/M -2751a4386 +2751a4429 > Dorothee/M -2752a4388,4391 +2753c4431,4435 +< Dorset +--- > Dorree/M > Dorri/SM > Dorrie/M > Dorry/M -2754a4394 +> Dorset/M +2754a4437 > Dorthea/M -2756a4397,4398 +2756c4439,4441 +< Dortmund +--- +> Dortmund/M > Dory/M > Dosi/M -2759a4402 +2759a4445 > Doti/M -2760a4404,4406 +2760a4447,4449 > Dotti/M > Dottie/M > Dotty/M -2764a4411 +2765,2767c4454,4459 +< Douglas +< Douglass +< Douro +--- > Dougie/M -2766a4414 +> Douglas/M +> Douglass/M > Dougy/M -2767a4416 +> Douro/M > Dov/MR -2771a4421 +2769,2770c4461,4462 +< Dow +< Downs +--- +> Dow/M +> Downs/M +2772c4464,4465 +< Doyle +--- > Doy/M -2781a4432,4434 +> Doyle/M +2775c4468 +< Draconian +--- +> Draconian/M +2777c4470 +< Drake +--- +> Drake/M +2779c4472 +< Drambuie +--- +> Drambuie/M +2782c4475,4478 +< Dreiser +--- > Dre/M > Dreddy/M > Dredi/M -2786a4440,4446 +> Dreiser/M +2786a4483,4490 > Drona/M +> Dropbox/M > Dru/M > Druci/M > Drucie/M > Drucill/M > Drucy/M > Drud/M -2787a4448,4452 +2787a4492,4496 > Drugi/M > Drusi/M > Drusie/M > Drusilla/M > Drusy/M -2799a4465 +2789c4498 +< Dryden +--- +> Dryden/M +2792c4501 +< DuPont +--- +> DuPont/M +2794c4503 +< Dubai +--- +> Dubai/M +2799,2800c4508,4512 +< Duchamp +< Dudley +--- +> Duchamp/M > Dud/M -2800a4467,4468 +> Dudley/M > Duff/M > Duffie/M -2801a4470 +2802c4514,4515 +< Duisburg +--- > Dugald/M -2803a4473,4484 +> Duisburg/M +2804,2806c4517,4532 +< Dulles +< Duluth +< Dumas +--- > Dukey/M > Dukie/M > Duky/M @@ -2616,143 +4911,248 @@ > Dulcine/M > Dulcinea/M > Dulcy/M -2804a4486 +> Dulles/M > Dulsea/M -2809a4492 +> Duluth/M +> Dumas/M +2809,2814c4535,4542 +< Dumpster +< Dunant +< Dunbar +< Duncan +< Dundee +< Dunedin +--- +> Dumpster/M > Dun/M -2811a4495 +> Dunant/M +> Dunbar/M > Dunc/M -2818a4503,4504 -> Dunstan +> Duncan/M +> Dundee/M +> Dunedin/M +2818a4547,4548 +> Dunstan/M > Dur/R -2820a4507 +2820a4551 > Durand/M -2829a4517 +2823,2824c4554,4555 +< Durban +< Durer +--- +> Durban/M +> Durer/M +2827,2828c4558,4559 +< Durkheim +< Duroc +--- +> Durkheim/M +> Duroc/M +2829a4561 > Durward/M -2842a4531 +2838c4570 +< Dutchmen +--- +> Dutchmen/M +2840,2842c4572,4575 +< Duvalier +< Dvina +< Dvorak +--- +> Duvalier/M +> Dvina/M +> Dvorak/M > Dwain/M -2845a4535,4540 +2845a4579,4584 > Dyan/M > Dyana/M > Dyane/M > Dyann/M > Dyanna/M > Dyanne/M -2847a4543,4544 +2847a4587,4588 > Dyna/M > Dynah/M -2851c4548 +2850,2851c4591,4592 +< Dzungaria < E/SM --- +> Dzungaria/M > E/SMY -2853a4551 +2853a4595 > ECMAScript/M -2879a4578,4582 +2874c4616 +< ESPN +--- +> ESPN/M +2880,2881c4622,4632 +< Eakins +< Earhart +--- +> EULA/M > Eachelle/M > Eada/M > Eadie/M > Eadith/M > Eadmund/M -2880a4584,4586 +> Eakins/M > Eal/M > Ealasaid/M > Eamon/M -2884a4591 +> Earhart/M +2884a4636 > Earlie/M -2885a4593 +2885a4638 > Early/M -2890a4599,4600 +2890a4644,4645 > Eartha/M > Earvin/M -2896a4607,4609 +2894c4649 +< Eastman +--- +> Eastman/M +2896a4652,4654 > Eb/MN > Eba/M > Ebba/M -2898a4612,4614 +2899,2900c4657,4663 +< Ebert +< Ebola +--- > Ebeneser/M > Ebenezer/M > Eberhard/M -2899a4616 +> Ebert/M > Eberto/M -2900a4618 +> Ebola/M > Ebonee/M -2904a4623 +2904c4667,4668 +< Ecclesiastes +--- +> Ecclesiastes/M > Ecma/M -2911a4631 +2910c4674 +< Ecuadorian/MS +--- +> Ecuadorian/SM +2911a4676 > Eda/M -2912a4633,4634 +2913c4678,4681 +< Edda +--- > Edan/M > Edd/M -2913a4636 +> Edda/M > Eddi/M -2916a4640,4642 +2916a4685,4687 > Ede > Edee/M > Edeline/M -2918a4645 +2918c4689,4690 +< Edgar +--- +> Edgar/M > Edgard/M -2919a4647,4650 +2919a4692,4695 > Edi/MH > Edie/M > Edik/M > Edin/M -2921a4653 +2921a4698 > Edita/M -2922a4655,4659 +2922a4700,4704 > Editha/M > Edithe/M > Ediva/M > Edlin/M > Edmon/M -2926a4664 +2927c4709,4711 +< Edsel +--- > Edouard/M -2927a4666 +> Edsel/M > Eduard/M -2928a4668,4669 +2928a4713,4714 > Eduino/M > Edvard/M -2933a4675,4677 +2932c4718,4719 +< Edwin +--- +> Edwards/M +> Edwin/M +2933a4721,4723 > Edy/M > Edyth/M > Edythe/M -2936a4681 +2936a4727 > Efrem/M -2937a4683,4684 +2937a4729,4730 > Egan/M > Egbert -2938a4686,4687 +2938a4732,4733 > Egon/M > Egor/M -2946a4696,4697 +2943,2945c4738,4740 +< Ehrlich +< Eichmann +< Eiffel +--- +> Ehrlich/M +> Eichmann/M +> Eiffel/M +2946a4742,4743 > Eilis/M > Eimile/M -2948a4700 +2948a4746 > Eirena/M -2951a4704,4706 +2950c4748 +< Eisenstein +--- +> Eisenstein/M +2952,2953c4750,4756 +< Elaine +< Elam +--- > Ekaterina/M > El/Y > Elaina/M -2953a4709,4710 +> Elaine/M +> Elam/M > Elana/M > Elane/M -2954a4712 +2954a4758 > Elayne/M -2958a4717,4719 +2956c4760 +< Elba +--- +> Elba/M +2958,2959c4762,4768 +< Elbert +< Elbrus +--- +> Elbert/M > Elberta/M > Elbertina/M > Elbertine/M -2959a4721,4722 +> Elbrus/M > Elden/M > Eldin/M -2960a4724,4725 +2961c4770,4772 +< Eldorado +--- > Eldredge/M > Eldridge/M -2962a4728,4729 +> Eldorado/M +2962a4774,4775 > Eleanora/M > Eleanore/M -2964a4732 +2964a4778 > Eleen/M -2965a4734,4743 +2966,2968c4780,4798 +< Elgar +< Eli +< Elias +--- > Elene/M > Eleni/M > Elenore/M @@ -2763,41 +5163,60 @@ > Elfrida/M > Elfrieda/M > Elga/M -2968c4746,4751 -< Elias ---- -> Elia/S +> Elgar/M +> Eli/M +> Elia/S/M > Elianora/M > Elianore/M +> Elias/M > Elicia/M > Elie/M > Elihu/M -2970a4754 +2971c4801,4802 +< Eliot +--- > Elinore/M -2972a4757 +> Eliot/M +2973c4804,4806 +< Elisabeth +--- > Elisabet/M -2973a4759 +> Elisabeth/M > Elisabetta/M -2976a4763,4764 +2976c4809,4811 +< Elisha +--- +> Elisha/M > Elissa/M > Elita/M -2977a4766 +2977a4813 > Elizabet/M -2979a4769,4770 +2979c4815,4817 +< Elizabethan/MS +--- +> Elizabethan/SM > Elka/M > Elke/M -2980a4772,4774 +2980a4819,4821 > Elladine/M > Ellary/M > Elle/M -2981a4776,4778 +2981a4823,4825 > Ellene/M > Ellerey/M > Ellery/M -2982a4780,4781 +2982a4827,4828 > Ellette/M > Elli/SM -2988a4788,4794 +2984c4830 +< Ellington +--- +> Ellington/M +2987c4833 +< Ellis +--- +> Ellis/M +2988a4835,4841 > Ellissa/M > Ellswerth/M > Ellsworth/M @@ -2805,53 +5224,63 @@ > Elly/M > Ellyn/M > Ellynn/M -2990a4797 +2990a4844 > Elmira/M -2991a4799,4801 +2991a4846,4848 > Elmore/M > Elna/MH > Elnar/M -2993a4804 +2994c4851,4853 +< Elohim +--- > Elnore/M -2994a4806 +> Elohim/M > Eloisa/M -2995a4808,4809 +2995a4855,4856 > Elonore/M > Elora/M -2998a4813,4817 +2998a4860,4864 > Elsbeth/M > Else/M > Elset/M > Elsey/M > Elsi/M -3000a4820,4823 +3000c4866,4870 +< Elsinore +--- +> Elsinore/M > Elspeth/M > Elston/M > Elsworth/M > Elsy/M -3004a4828 +3004a4875 > Elvera/M -3006a4831 +3006a4878 > Elvina/M -3008a4834,4836 +3008a4881,4883 > Elvyn/M > Elwin/M > Elwira/M -3010a4839,4841 +3010a4886,4888 > Elwyn/M > Elyn/M > Elyse/M -3011a4843,4844 +3012c4890,4892 +< Elysian +--- > Elysha/M -> Elysia -3013a4847,4849 +> Elysia/M +> Elysian/M +3013a4894,4896 > Elyssa/M > Em/M > Ema/M -3014a4851,4852 +3014a4898,4899 > Emalee/M > Emalia/M -3015a4854,4862 +3016c4901,4910 +< Emerson +--- > Emanuele/M > Emelda/M > Emelen/M @@ -2861,81 +5290,142 @@ > Emelita/M > Emelyne/M > Emera/M -3019a4867,4868 +> Emerson/M +3019a4914,4915 > Emilee/M > Emili/M -3020a4870,4871 +3020a4917,4918 > Emilie/M > Emiline/M -3024a4876,4879 +3024a4923,4926 > Emlen/M > Emlyn/M > Emlynn/M > Emlynne/M -3025a4881,4885 +3026c4928,4937 +< Emmanuel +--- > Emmalee/M > Emmaline/M > Emmalyn/M > Emmalynn/M > Emmalynne/M -3026a4887,4890 +> Emmanuel/M > Emmeline/M > Emmerich/M > Emmery/M > Emmet/M -3027a4892,4896 +3028c4939,4946 +< Emmy +--- > Emmey/M > Emmi/M > Emmie/M > Emmit/M > Emmott/M -3028a4898,4899 +> Emmy/M > Emmye/M > Emogene/M -3029a4901,4902 +3029a4948,4949 > Emyle/M > Emylee/M -3032a4906 +3031,3032c4951,4953 +< Endymion +< Eng +--- +> Endymion/M +> Eng/M > Engelbert/M -3034a4909 +3034a4956 > Englebert/M -3039a4915 +3037c4959 +< Englishmen +--- +> Englishmen/M +3040c4962,4963 +< Enid +--- > Engracia/M -3043a4920 -> Ennis -3045a4923,4924 +> Enid/M +3044,3045c4967,4971 +< Enoch +< Enos +--- +> Ennis/M +> Enoch/M +> Enos/M > Enrica/M > Enrichetta/M -3046a4926 +3046a4973 > Enrika/M -3047a4928 +3047a4975 > Enriqueta/M -3050a4932,4933 +3050a4979,4980 > Eolanda/M > Eolande/M -3054a4938,4939 +3053,3056c4983,4988 +< Ephesus +< Ephraim +< Epictetus +< Epicurean +--- +> Ephesus/M +> Ephraim/M > Ephrayim/M > Ephrem/M -3067a4953 +> Epictetus/M +> Epicurean/M +3063c4995 +< Epsom +--- +> Epsom/M +3065,3066c4997,4998 +< Epstein +< Equuleus +--- +> Epstein/M +> Equuleus/M +3067a5000 > Eran/M -3068a4955 +3068a5002 > Erastus/M -3070a4958 +3070a5005 > Erda/M -3072a4961,4962 +3072c5007,5009 +< Erector +--- +> Erector/M > Erek/M > Erena/M -3074a4965 +3074c5011,5012 +< Erhard +--- +> Erhard/M > Erhart/M -3077a4969 +3077a5016 > Ericha/M -3088a4981,4983 +3081,3084c5020,5023 +< Ericson +< Ericsson +< Eridanus +< Erie +--- +> Ericson/M +> Ericsson/M +> Eridanus/M +> Erie/M +3087,3088c5026,5030 +< Eriksson +< Erin +--- +> Eriksson/M +> Erin/M > Erina/M > Erinn/M > Erinna/M -3091a4987 +3091a5034 > Erl/M -3093a4990,4996 +3093a5037,5043 > Ermanno/M > Ermengarde/M > Ermentrude/M @@ -2943,107 +5433,155 @@ > Ermina/M > Erminia/M > Erminie/M -3094a4998 +3094a5045 > Ernaline/M -3095a5000 +3095a5047 > Ernesta/M -3097a5003 +3097a5050 > Ernestus/M -3099a5006 +3099c5052,5053 +< Ernst +--- +> Ernst/M > Erny/M -3100a5008 +3100a5055 > Errick/M -3101a5010 +3101a5057 > Erroll/M -3102a5012,5014 -> Erskine +3102a5059,5061 +> Erskine/M > Ertha/M > Erv/M -3104a5017 +3104a5064 > Eryn/M -3108a5022 -> Esdras -3109a5024,5026 +3108c5068,5069 +< Escondido +--- +> Escondido/M +> Esdras/M +3109a5071,5073 > Esma/M > Esmaria/M > Esme/M -3115a5033,5034 +3115a5080,5081 > Esra/M > Essa/M -3120a5040,5041 +3117,3119c5083,5085 +< Essene +< Essequibo +< Essex +--- +> Essene/M +> Essequibo/M +> Essex/M +3120a5087,5088 > Essy/M > Esta/M -3122a5044 +3122a5091 > Estel/M -3123a5046,5047 +3123a5093,5094 > Estele/M > Estell/M -3128a5053 +3128c5099,5100 +< Estes +--- +> Estes/M > Estevan/M -3132a5058,5060 +3132a5105,5107 > Estrella/M > Estrellita/M > Etan/M -3133a5062 +3133a5109 > Ethe/M -3134a5064,5068 -> Ethelbert +3134a5111,5115 +> Ethelbert/M > Ethelda/M > Ethelin/M > Ethelind/M > Etheline/M -3135a5070 +3136c5117,5118 +< Ethernet +--- > Ethelyn/M -3138a5074,5075 +> Ethernet/M +3138a5121,5122 > Ethyl/M > Etienne/M -3143a5081,5084 +3140,3142c5124,5126 +< Eton +< Etruria +< Etruscan +--- +> Eton/M +> Etruria/M +> Etruscan/M +3143a5128,5131 > Etti/M > Ettie/M > Ettore/M > Etty/M -3148a5090,5092 +3149c5137,5140 +< Eugene +--- > Eudora/M > Euell/M > Eugen/M -3152a5097,5098 +> Eugene/M +3152a5144,5145 > Eugenius/M > Eugine/M -3153a5100 +3154c5147,5148 +< Euler +--- > Eulalie/M -3156a5104 +> Euler/M +3156a5151 > Euphemia/M -3166a5115 +3161,3162c5156,5157 +< Euripides +< Eurodollar/MS +--- +> Euripides/M +> Eurodollar/SM +3166a5162 > Eustace/M -3167a5117 +3167a5164 > Eustacia/M -3168a5119 +3168a5166 > Ev/MN -3169a5121 +3169a5168 > Evaleen/M -3170a5123 +3170a5170 > Evangelia/M -3171a5125 +3171a5172 > Evangelin/M -3174a5129,5130 +3174,3175c5175,5179 +< Evangelist +< Evansville +--- +> Evangelist/M > Evania/M > Evanne/M -3176a5133,5136 +> Evans/M +> Evansville/M +3177c5181,5186 +< Evelyn +--- > Eveleen/M > Evelin/M > Evelina/M > Eveline/M -3177a5138 +> Evelyn/M > Even/M -3179a5141,5142 +3179a5189,5190 > Everard/M > Evered/M -3184a5148 +3184a5196 > Evey/M -3185a5150,5151 +3185a5198,5199 > Evie/M > Evin/M -3186a5153,5162 +3186a5201,5210 > Evonne/M > Evvie/M > Evvy/M @@ -3054,38 +5592,68 @@ > Ewart/M > Ewell/M > Ewen/M -3196a5173,5174 +3192c5216 +< Exercycle +--- +> Exercycle/M +3197c5221,5223 +< Eyre +--- > Eyde/M > Eydie/M -3198a5177 +> Eyre/M +3199,3200c5225,5231 +< Ezekiel +< Ezra +--- > Ezechiel/M -3199a5179,5181 +> Ezekiel/M > Ezequiel/M > Eziechiele/M > Ezmeralda/M -3200a5183 +> Ezra/M > Ezri/M -3224a5208,5209 +3218a5250 +> FSF/M +3225c5257,5259 +< Faberge +--- > Fabe/RM > Faber/M -3226a5212,5215 +> Faberge/M +3226a5261,5264 > Fabiano/M > Fabien/M > Fabio/M > Fae/M -3231a5221,5222 +3228c5266 +< Fafnir +--- +> Fafnir/M +3231,3232c5269,5275 +< Fahrenheit +< Fairbanks +--- +> Fahrenheit/M > Faina/M > Fair/M -3232a5224,5226 +> Fairbanks/M > Fairfax > Fairleigh/M > Fairlie/M -3236a5231 +3234,3236c5277,5280 +< Faisalabad +< Faith +< Falasha +--- +> Faisalabad/M +> Faith/M +> Falasha/M > Falito/M -3237a5233,5234 +3237a5282,5283 > Falkner > Fallon/M -3240a5238,5245 +3240a5287,5294 > Fan > Fanchette/M > Fanchon/M @@ -3094,266 +5662,506 @@ > Fanechka/M > Fania/M > Fanni/M -3242a5248,5250 +3242a5297,5299 > Fanya/M > Far/MY > Fara/M -3243a5252,5253 +3243a5301,5302 > Farah/M > Farand/M -3244a5255,5258 +3244a5304,5307 > Farica/M > Farlay/M > Farlee/M > Farleigh/M -3245a5260,5261 +3246,3247c5309,5315 +< Farmer +< Farragut +--- > Farlie/M > Farly/M -3246a5263,5264 +> Farmer/M > Farr/M > Farra/M -3247a5266 +> Farragut/M > Farrah/M -3248a5268,5269 +3248a5317,5318 > Farrand/M > Farrel/M -3249a5271 +3249a5320 > Farris/M -3261a5284,5285 +3256c5327 +< Fates +--- +> Fates/M +3258,3259c5329,5330 +< Fatima +< Fatimid +--- +> Fatima/M +> Fatimid/M +3261c5332,5334 +< Faulknerian +--- +> Faulknerian/M > Faun/M > Faunie/M -3264a5289,5290 +3264a5338,5339 > Faustina/M > Faustine/M -3267a5294,5297 +3267c5342,5346 +< Fawkes +--- +> Fawkes/M > Fawn/M > Fawne/M > Fawnia/M > Fax/M -3268a5299 +3268a5348 > Faydra/M -3269a5301,5305 +3269a5350,5354 > Fayette/M > Fayina/M > Fayre/M > Fayth/M > Faythe/M -3276a5313 +3274c5359 +< FedEx +--- +> FedEx/M +3276a5362 > Federica/M -3277a5315,5316 +3277a5364,5366 > Fedora/M +> Feds/M > Fee/M -3278a5318,5319 +3278a5368,5369 > Felic/M > Felicdad/M -3280a5322 +3280a5372 > Felicio/M -3281a5324,5327 +3281a5374,5377 > Felicle/M > Felike/M > Feliks/M > Felipa/M -3282a5329,5330 +3282a5379,5380 > Felisha/M > Felita/M -3283a5332,5333 +3284,3285c5382,5388 +< Fellini +< Fenian +--- > Feliza/M > Felizio/M -3284a5335 +> Fellini/M > Fenelia/M -3285a5337,5338 +> Fenian/M > Feodor/M > Feodora/M -3286a5340,5341 +3287,3288c5390,5396 +< Ferdinand +< Fergus +--- > Ferd/M > Ferdie/M -3287a5343,5345 +> Ferdinand/M > Ferdinanda/M > Ferdinande/M > Ferdy/M -3293a5352,5353 +> Fergus/M +3292c5400 +< Fermi +--- +> Fermi/M +3293a5402,5403 > Fernanda/M > Fernande/M -3294a5355 +3294a5405 > Fernandina/M -3295a5357 +3295a5407 > Ferne/M -3297a5360 +3297a5410 > Ferrel/M -3299a5363 +3299c5412,5413 +< Ferris +--- +> Ferris/M > Fey/M -3301a5366,5367 +3301c5415,5417 +< Fez +--- +> Fez/M > Fiann/M > Fianna -3306a5373,5376 +3303c5419 +< Fiberglas +--- +> Fiberglas/M +3305c5421 +< Fichte +--- +> Fichte/M +3306a5423,5426 > Fidela/M > Fidelia/M > Fidelio/M > Fidelity/M -3308,3309c5378,5381 +3308,3309c5428,5433 < Fielding < Fields --- > Fidole/M > Field/GS +> Fielding/M +> Fields/M > Fifi/M > Fifine/M -3313a5386,5391 +3313a5438,5443 > Filbert/M > Filberte/M > Filberto/M > Filia/M > Filide/M > Filip/M -3314a5393,5394 +3314a5445,5446 > Filippa/M > Filippo/M -3315a5396,5397 +3316c5448,5452 +< Filofax +--- > Filmer/M > Filmore/M -3316a5399,5400 +> Filofax/M > Fin > Fina/M -3317a5402,5403 +3317a5454,5455 > Findlay/M > Findley/M -3318a5405 +3318a5457 > Finlay/M -3325c5412,5414 +3325c5464,5466 < Firefox/M --- > Fionna/M > Fionnula/M > Fiorenze/M -3330a5420 +3327,3328c5468,5469 +< Fischer +< Fisher +--- +> Fischer/M +> Fisher/M +3331c5472,5473 +< Fitzgerald +--- > Fitz/M -3342c5432 +> Fitzgerald/M +3340c5482 +< Flaubert +--- +> Flaubert/M +3342c5484,5485 < Fleming --- > Flem/G -3344c5434,5439 +> Fleming/M +3344,3346c5487,5495 < Fletcher +< Flint +< Flintstones --- > Flemming/M > Fletch/MR +> Fletcher/M > Fleur/M > Fleurette/M > Flin/M > Flinn/M -3347a5443 +> Flint/M +> Flintstones/M +3348c5497,5501 +< Flora +--- > Flor/M -3348a5445,5447 +> Flora/M > Florance/M > Flore/SM > Florella/M -3349a5449,5450 +3350,3351c5503,5511 +< Florentine +< Flores +--- > Florencia/M > Florentia/M -3351a5453,5457 +> Florentine/M +> Flores/M > Florenza/M > Florette/M > Flori/SM > Floria/M > Florian/M -3354a5461,5463 +3353c5513 +< Floridan +--- +> Floridan/M +3354a5515,5517 > Florie/M > Florina/M > Florinda/M -3355a5465,5467 +3355a5519,5521 > Florri/M > Florrie/M > Florry/M -3357a5470 +3357a5524 > Flossi/M -3358a5472 +3359,3360c5526,5529 +< Flowers +< Floyd +--- > Flossy/M -3360a5475 +> Flowers/M +> Floyd/M > Flss/M -3369a5485,5488 +3363,3369c5532,5542 +< Foch +< Fokker +< Foley +< Folgers +< Folsom +< Fomalhaut +< Fonda +--- +> Foch/M +> Fokker/M +> Foley/M +> Folgers/M +> Folsom/M +> Fomalhaut/M +> Fonda/M > Fons > Fonsie/M > Fonz/M > Fonzie/M -3378c5497,5498 +3371c5544 +< Forbes +--- +> Forbes/M +3378,3380c5551,5555 < Forrest +< Forster +< Fortaleza --- > Forrest/R > Forrester/M -3380a5501 +> Forster/M +> Fortaleza/M > Foss/M -3392c5513 +3382c5557 +< Foster +--- +> Foster/M +3384,3385c5559,5560 +< Foucault +< Fourier +--- +> Foucault/M +> Fourier/M +3388c5563 +< Fowler +--- +> Fowler/M +3391,3392c5566,5567 +< Fragonard < Fran/M --- +> Fragonard/M > Fran/SM -3393a5515 +3393a5569 > Francene/M -3394a5517,5518 +3394a5571,5572 > Francesco/M > Franchot/M -3399a5524,5525 +3396c5574 +< Francis +--- +> Francis/M +3398c5576 +< Franciscan/SM +--- +> Franciscan/MS +3400,3401c5578,5583 +< Franck +< Franco +--- > Franciska/M > Franciskus/M -3400a5527,5528 +> Franck/M > Francklin/M > Francklyn/M -3403a5532 +> Franco/M +3404c5586,5587 +< Franglais +--- > Francyne/M -3412a5542,5545 +> Franglais/M +3407c5590 +< Frankenstein +--- +> Frankenstein/M +3411,3412c5594,5600 +< Frankish +< Franklin +--- +> Frankish/M +> Franklin/M > Franklyn/M +> Franks/M > Franky/M > Franni/M > Frannie/M -3414c5547,5551 +3414,3415c5602,5609 < Franz/M +< Fraser --- > Fransisco/M > Frants/M > Franz/MN > Franzen/M > Frasco/M -3415a5553,5554 +> Fraser/M > Frasier/M > Frasquito/M -3417a5557,5558 +3417a5612,5613 > Frayda/M > Fraze/RM -3420a5562 +3420a5617 > Freddi/M -3422a5565,5566 +3422a5620,5621 > Fredek/M > Fredelia/M -3423a5568,5569 +3424c5623,5627 +< Frederick +--- > Frederica/M > Frederich/M -3424a5571,5572 +> Frederick/M > Fredericka/M > Frederico/M -3425a5574,5579 +3425a5629,5634 > Frederigo/M > Frederik/M > Frederique/M > Fredi/M > Fredia/M > Fredra/M -3427a5582,5585 +3427a5637,5640 > Fredrika/M > Free/M > Freedman/M > Freeland/M -3430a5589 +3430a5644 > Freemon/M -3449a5609 +3433c5647 +< Fremont +--- +> Fremont/M +3436c5650 +< Frenchmen +--- +> Frenchmen/M +3438,3439c5652,5653 +< Frenchwomen +< Freon +--- +> Frenchwomen/M +> Freon/M +3443c5657 +< Freudian +--- +> Freudian/M +3449,3450c5663,5667 +< Friedan +< Friedman +--- +> Friedan/M > Friederike/M -3450a5611,5612 -> Friedrich +> Friedman/M +> Friedrich/M > Friedrick/M -3481a5644 +3453,3455c5670,5672 +< Frigidaire +< Frisbee +< Frisco +--- +> Frigidaire/M +> Frisbee/M +> Frisco/M +3459,3462c5676,5679 +< Frobisher +< Froissart +< Fromm +< Fronde +--- +> Frobisher/M +> Froissart/M +> Fromm/M +> Fronde/M +3465c5682 +< Frostbelt +--- +> Frostbelt/M +3467c5684 +< Fry +--- +> Fry/M +3470,3471c5687,5688 +< Fuentes +< Fugger +--- +> Fuentes/M +> Fugger/M +3476a5694 +> Fukuyama/M +3478,3480c5696,5698 +< Fulbright +< Fuller +< Fullerton +--- +> Fulbright/M +> Fuller/M +> Fullerton/M +3482,3483c5700,5702 +< Funafuti +< Fundy +--- > Fulvia/M -3498c5661 +> Funafuti/M +> Fundy/M +3486c5705 +< Fushun +--- +> Fushun/M +3488c5707 +< Fuzzbuster +--- +> Fuzzbuster/M +3498c5717 < GHz --- > GHz/M -3513a5677,5684 +3499a5719 +> GIF +3501c5721 +< GM +--- +> GM/M +3504a5725 +> GNU/M +3508a5730,5731 +> GPS +> GPU +3513a5737,5745 > Gabbey/M > Gabbi/M > Gabbie/M @@ -3362,58 +6170,123 @@ > Gabey/M > Gabi/M > Gabie/M -3518a5690,5692 +> Gable/M +3517c5749 +< Gabriel +--- +> Gabriel/M +3518a5751,5753 > Gabriele/M > Gabriell/M > Gabriella/M -3519a5694,5697 +3519a5755,5758 > Gabriellia/M > Gabriello/M > Gabrila/M > Gaby/M -3522a5701 +3521c5760 +< Gaddafi +--- +> Gaddafi/M +3522a5762 > Gae/M -3524a5704 +3524a5765 > Gaelan/M -3528a5709 +3526,3527c5767,5769 +< Gagarin +< Gage +--- +> Gagarin/M +> Gage/M +> Gaia/M +3528a5771 > Gaile/M -3531a5713 +3531a5775 > Gal/N -3544a5727 +3534,3536c5778,5780 +< Galatea +< Galatia +< Galatians +--- +> Galatea/M +> Galatia/M +> Galatians/M +3538c5782 +< Galbraith +--- +> Galbraith/M +3540,3541c5784,5785 +< Galen +< Galibi +--- +> Galen/M +> Galibi/M +3543c5787 +< Galilee +--- +> Galilee/M +3544a5789 > Galina/M -3546a5730 +3546a5792 > Gallard/M -3554a5739 +3548c5794 +< Gallic +--- +> Gallic/M +3552c5798 +< Gallup +--- +> Gallup/M +3554,3555c5800,5803 +< Galsworthy +< Galvani +--- +> Galsworthy/M > Galvan/M -3555a5741 +> Galvani/M > Galven/M -3556a5743 +3557,3558c5805,5808 +< Gama +< Gamay +--- > Galvin/M -3557a5745 +> Gama/M > Gamaliel/M -3562a5751 +> Gamay/M +3562a5813 > Gan/M -3567a5757,5759 +3564c5815 +< Gandhian +--- +> Gandhian/M +3567a5819,5821 > Gannie/M > Gannon/M > Ganny/M -3570a5763,5764 +3571c5825,5827 +< Garbo +--- > Gar/MH > Garald/M -3572a5767,5770 +> Garbo/M +3572a5829,5832 > Gard > Gardener/M > Gardie/M > Gardiner -3573a5772,5774 +3573a5834,5836 > Gardy/M > Gare/MH > Garek/M -3574a5776 +3574a5838 > Garey/M -3578a5781 +3579,3580c5843,5852 +< Garland +< Garner +--- > Garik/M -3580a5784,5790 +> Garland/M +> Garner/M > Garnet/M > Garnette/M > Garold/M @@ -3421,41 +6294,62 @@ > Garrek/M > Garret/M > Garreth/M -3582a5793 +3582,3583c5854,5858 +< Garrick +< Garrison +--- +> Garrick/M > Garrik/M -3583a5795,5796 +> Garrison/M > Garrot/M > Garrott/M -3585a5799 +3586,3587c5861,5867 +< Garvey +< Gary +--- > Garv/M -3586a5801,5804 +> Garvey/M > Garvin/M > Garvy/M > Garwin/M > Garwood/M -3589a5808,5811 -> Gaspar +> Gary/M +3590,3591c5870,5876 +< Gasser +< Gates +--- +> Gaspar/M > Gaspard/M > Gasparo/M > Gasper/M -3590a5813 +> Gasser/M > Gaston/M -3598a5822 +> Gates/M +3598a5884 > Gaultiero/M -3601a5826 +3600c5886 +< Gaussian +--- +> Gaussian/M +3602c5888,5892 +< Gautier +--- > Gauthier/M -3602a5828,5830 +> Gautier/M > Gav/MN > Gavan/M > Gaven/M -3603a5832,5833 +3603a5894,5895 > Gavra/M > Gavrielle/M -3604a5835 -> Gawen/M -3606c5837,5847 +3605,3608c5897,5912 +< Gay < Gayle/M +< Gaza +< Gaziantep --- +> Gawen/M +> Gay/M > Gaye/M > Gayel/M > Gayelord/M @@ -3467,16 +6361,23 @@ > Gaylor/M > Gaylord/M > Gaynor/M -3608a5850 +> Gaza/M +> Gaziantep/M > Gbps -3611a5854,5855 +3611a5916,5917 > Gearalt/M > Gearard/M -3618a5863 +3615c5921 +< Gehrig +--- +> Gehrig/M +3618a5925 > Gelya/M -3626a5872 +3619a5927 +> Gen/M +3626a5935 > Genevra/M -3627a5874,5880 +3627a5937,5943 > Genia/M > Genna/M > Genni/M @@ -3484,38 +6385,46 @@ > Gennifer/M > Genny/M > Geno/M -3628a5882 +3628a5945 > Genovera/M -3631a5886 +3630c5947 +< Gentoo +--- +> Gentoo/M +3631a5949 > Genvieve/M -3632a5888 +3632a5951 > Geoff/M -3633a5890,5893 +3633a5953,5956 > Geoffry/M > Georas/M > Geordie > Georg/M -3634a5895,5898 +3634a5958,5961 > Georgeanna/M > Georgeanne/M > Georgena/M > Georgeta/M -3635a5900 +3636c5963,5965 +< Georgette +--- > Georgetta/M -3636a5902 +> Georgette/M > Georgi/M -3638a5905,5908 +3638a5968,5971 > Georgiana/M > Georgianna/M > Georgianne/M > Georgie/M -3639a5910,5911 +3639a5973,5975 > Georgine/M > Georgy/M -3640a5913 +> Ger/M +3640a5977 > Geralda/M -3644a5918,5927 +3644a5982,5992 > Gerda/M +> Gere/M > Gerek/M > Gerhard/M > Gerhardine/M @@ -3525,37 +6434,61 @@ > Gerianne/M > Gerick/M > Gerik/M -3645a5929,5931 +3645a5994,5996 > Gerladina/M > Germain/M > Germaine/M -3646a5933 +3646a5998 > Germana/M -3648a5936,5937 +3649c6001,6007 +< Geronimo +--- > Germayne/M > Gerome/M -3649a5939,5942 +> Geronimo/M > Gerrard/M > Gerri/M > Gerrie/M > Gerrilee/M -3651a5945,5950 +3651c6009,6015 +< Gershwin +--- +> Gershwin/M > Gert/M > Gerta/M > Gerti/M > Gertie/M > Gertrud/M > Gertruda/M -3652a5952,5954 +3652a6017,6019 > Gertrudis/M > Gerty/M > Gery/M -3663a5966 +3654,3655c6021,6022 +< Gethsemane +< Getty +--- +> Gethsemane/M +> Getty/M +3657c6024 +< Gewurztraminer +--- +> Gewurztraminer/M +3661c6028 +< Ghats +--- +> Ghats/M +3663c6030,6031 +< Ghent +--- +> Ghent/M > Gherardo/M -3664a5968,5969 +3665c6033,6042 +< Giacometti +--- > Giacinta/M > Giacobo/M -3665a5971,5977 +> Giacometti/M > Giacomo/M > Giacopo/M > Gian/M @@ -3563,14 +6496,28 @@ > Gianina/M > Gianna/M > Gianni/M -3667a5980,5983 +3668,3669c6045,6051 +< Gibbon +< Gibbs +--- > Giavani/M > Gib/M > Gibb/SM > Gibbie/M -3669a5986 +> Gibbon/M +> Gibbs/M > Gibby/M -3676c5993,6000 +3671,3674c6053,6056 +< Gibson +< Gide +< Gideon +< Gielgud +--- +> Gibson/M +> Gide/M +> Gideon/M +> Gielgud/M +3676c6058,6065 < Gil/M --- > Giff/MR @@ -3581,189 +6528,405 @@ > Giffy/M > Gigi/M > Gil/MY -3678a6003,6006 +3678a6068,6071 > Gilberta/M > Gilberte/M > Gilbertina/M -> Gilbertine -3679a6008 +> Gilbertine/M +3679a6073 > Gilburt/M -3682a6012 +3682,3686c6076,6083 +< Gilead +< Giles +< Gilgamesh +< Gill +< Gillespie +--- +> Gilead/M > Gilemette/M -3685a6016,6017 +> Giles/M +> Gilgamesh/M +> Gill/M > Gillan/M -> Gilles -3687a6020 +> Gilles/M +> Gillespie/M +3687a6085 > Gilli/M -3689a6023 +3689a6088 > Gillie/M -3690a6025 +3690a6090 > Gilly/M -3692a6028,6029 +3692a6093,6094 > Ginelle/M > Ginevra/M -3694a6032,6034 +3694a6097,6099 > Ginni/M > Ginnie/M > Ginnifer/M -3699a6040,6043 +3697c6102 +< Ginsberg +--- +> Ginsberg/M +3700,3701c6105,6111 +< Giorgione +< Giotto +--- > Giordano/M > Giorgi/M > Giorgia/M > Giorgio/M -3701a6046 +> Giorgione/M +> Giotto/M > Giovanna/M -3703a6049,6051 +3704c6114,6121 +< Giraudoux +--- > Giralda/M > Giraldo/M -> Giraud -3704a6053,6056 +> Giraud/M +> Giraudoux/M > Gisela/M > Giselbert/M > Gisele/M > Gisella/M -3706a6059,6060 +3706c6123,6126 +< Gish +--- +> Gish/M +> GitHub/M > Giuditta/M > Giulia/M -3707a6062,6063 +3707a6128,6129 > Giulietta/M > Giulio/M -3708a6065,6067 +3708a6131,6133 > Giustina/M > Giustino/M > Giusto/M -3709a6069 +3709a6135 > Gizela/M -3710a6071,6072 +3710a6137,6138 > Glad/M > Gladi/M -3719a6082 +3712,3713c6140,6141 +< Gladys +< Glaser +--- +> Gladys/M +> Glaser/M +3719a6148 > Gleda/M -3722a6086,6088 +3722a6152,6154 > Glenden/M > Glendon/M > Glenine/M -3725a6092,6094 +3726,3727c6158,6165 +< Gloria +< Gloucester +--- > Glennie/M > Glennis/M > Glori/M -3726a6096,6098 +> Gloria/M > Gloriana/M > Gloriane/M > Glory/M -3728a6101,6106 +> Gloucester/M +3729c6167,6173 +< Gnostic +--- > Glyn/M > Glynda/M > Glynis/M > Glynn/M > Glynnis/M > Gnni/M -3734a6113 +> Gnostic/M +3731c6175,6176 +< Goa +--- +> GnuPG +> Goa/M +3734,3735c6179,6182 +< Godard +< Goddard +--- +> Godard/M > Godart/M -3735a6115 +> Goddard/M > Goddart/M -3736a6117,6119 +3736a6184,6186 > Godfree/M > Godfrey/M > Godfry/M -3742a6126 -> Godwin -3754a6139 +3741,3742c6191,6193 +< Godthaab +< Godunov +--- +> Godthaab/M +> Godunov/M +> Godwin/M +3744,3745c6195,6196 +< Goebbels +< Goering +--- +> Goebbels/M +> Goering/M +3749,3750c6200,6201 +< Gog +< Gogol +--- +> Gog/M +> Gogol/M +3753c6204 +< Golconda +--- +> Golconda/M +3754a6206 > Goldarina/M -3756a6142,6143 +3756a6209,6210 > Goldi/M > Goldia/M -3758a6146 +3759c6213,6214 +< Golding +--- > Goldina/M -3763a6152 +> Golding/M +3761c6216 +< Goldsmith +--- +> Goldsmith/M +3763,3764c6218,6220 +< Goldwyn +< Golgi +--- +> Goldwyn/M > Goldy/M -3774a6164 +> Golgi/M +3766c6222 +< Goliath +--- +> Goliath/M +3769,3770c6225,6226 +< Gompers +< Gomulka +--- +> Gompers/M +> Gomulka/M +3772c6228 +< Gonzales +--- +> Gonzales/M +3774a6231 > Goober/M -3784a6175,6176 +3777c6234 +< Goodman +--- +> Goodman/M +3781c6238 +< Goodyear +--- +> Goodyear/M +3785c6242,6246 +< Gorbachev +--- > Goran/M > Goraud/M -3785a6178,6179 +> Gorbachev/M > Gordan/M > Gorden/M -3786a6181 +3787,3789c6248,6252 +< Gordimer +< Gordon +< Gore +--- > Gordie/M -3788a6184 +> Gordimer/M +> Gordon/M > Gordy/M -3799a6196 +> Gore/M +3792c6255 +< Gorgas +--- +> Gorgas/M +3799c6262,6263 +< Gotham +--- +> Gotham/M > Gothart/M -3801a6199 +3801a6266 > Gottfried/M -3811a6210 +3803,3804c6268,6269 +< Gould +< Gounod +--- +> Gould/M +> Gounod/M +3806c6271 +< Goya +--- +> Goya/M +3809,3810c6274,6275 +< Gracchus +< Grace +--- +> Gracchus/M +> Grace/M +3811a6277 > Gracia/M -3813a6213,6214 +3813a6280,6281 > Gradeigh/M > Gradey/M -3814a6216,6217 +3814a6283,6284 > Graehme/M > Graeme/M -3818a6222 +3817,3821c6287,6294 +< Graham +< Grahame +< Grail +< Grammy +< Grampians +--- +> Graham/M +> Grahame/M > Graig/M -3819a6224 +> Grail/M > Gram/M -3821a6227 +> Grammy/M +> Grampians/M > Gran/M -3822a6229,6231 +3822a6296,6298 > Grange/R > Grannie/M > Granny/M -3823a6233,6236 +3824,3827c6300,6312 +< Grass +< Graves +< Gray +< Grecian +--- > Grantham/M > Granthem/M > Grantley/M > Granville/M -3824a6238,6240 +> Grass/M > Grata/M > Gratia/M > Gratiana/M -3826a6243,6244 +> Graves/M +> Gray/M > Grayce/M > Grazia/M -3842a6261,6264 +> Grecian/M +3830c6315 +< Greeley +--- +> Greeley/M +3832c6317 +< Greene +--- +> Greene/M +3843c6328,6332 +< Gregorian +--- > Greggory/M > Gregoire/M > Gregoor/M > Gregor/M -3844a6267 +> Gregorian/M +3844a6334 > Gregorius/M -3850a6274 +3848,3851c6338,6342 +< Grenadines +< Grendel +< Grenoble +< Gresham +--- +> Grenadines/M +> Grendel/M +> Grenoble/M > Grenville -3852a6277 +> Gresham/M +3852a6344 > Gretal/M -3853a6279 +3853a6346 > Grete/M -3854a6281,6283 +3854a6348,6350 > Grethel/M > Gretna/M > Gretta/M -3857a6287,6289 +3856,3857c6352,6356 +< Grey +< Grieg +--- +> Grey/M +> Grieg/M > Grier/M > Griff/M > Griffie/M -3859a6292 +3859,3860c6358,6360 +< Griffith +< Grimes +--- +> Griffith/M > Griffy/M -3863a6297,6300 +> Grimes/M +3863,3864c6363,6368 +< Gris +< Gromyko +--- +> Gris/M > Griselda > Grissel/M > Griswold/M > Griz/M -3868a6306 +> Gromyko/M +3866,3868c6370,6373 +< Gross +< Grosz +< Grotius +--- +> Gross/M +> Grosz/M +> Grotius/M > Grove/RM -3881a6320 +3870c6375 +< Grozny +--- +> Grozny/M +3872c6377 +< Grundy +--- +> Grundy/M +3878c6383 +< Guadalquivir +--- +> Guadalquivir/M +3881a6387 > Gualterio/M -3892a6332,6334 +3889c6395 +< Guatemalan/SM +--- +> Guatemalan/MS +3892c6398,6401 +< Guelph +--- +> Guelph/M > Guendolen/M > Guenevere/M > Guenna/M -3897a6340,6342 +3895,3897c6404,6409 +< Guerrero +< Guevara +< Guggenheim +--- +> Guerrero/M +> Guevara/M +> Guggenheim/M > Guglielma/M > Guglielmo/M > Gui/M -3899c6344,6348 +3899c6411,6415 < Guido --- > Guido/M @@ -3771,16 +6934,31 @@ > Guillaume/M > Guillema/M > Guillemette/M -3903a6353 +3903a6420 > Guinna/M -3912a6363,6368 +3905,3906c6422,6423 +< Guiyang +< Guizot +--- +> Guiyang/M +> Guizot/M +3909,3910c6426,6427 +< Gujranwala +< Gullah +--- +> Gujranwala/M +> Gullah/M +3913c6430,6436 +< Gunther +--- > Gun/M > Gunar/M > Gunilla/M > Gunner/M > Guntar/M > Gunter -3917a6374,6380 +> Gunther/M +3917a6441,6447 > Gusella/M > Guss > Gussi/M @@ -3788,20 +6966,27 @@ > Gussy/M > Gusta/M > Gustaf/M -3918a6382 +3918a6449 > Gustave/M -3920a6385,6387 +3921,3922c6452,6458 +< Gutenberg +< Guthrie +--- > Gusti/M > Gustie/M > Gusty/M -3921a6389 +> Gutenberg/M > Guthrey/M -3922a6391 +> Guthrie/M > Guthry/M -3929a6399,6400 +3928c6464 +< Gwalior +--- +> Gwalior/M +3929a6466,6467 > Gwendolen/M > Gwendolin/M -3931a6403,6410 +3931a6470,6477 > Gweneth/M > Gwenette/M > Gwenneth/M @@ -3810,151 +6995,319 @@ > Gwenny/M > Gwenora/M > Gwenore/M -3932a6412,6413 +3932a6479,6480 > Gwyneth/M > Gwynne/M -3954a6436 +3935c6483,6485 +< HBO +--- +> HBO/M +> HDD +> HDMI +3954a6505 > HTTPS -3959a6442 +3956c6507 +< Ha +--- +> Ha/M +3958c6509 +< Habakkuk +--- +> Habakkuk/M +3959a6511 > Had/M -3961a6445,6448 +3961a6514,6517 > Hadlee/M > Hadleigh/M > Hadley/M > Hadria/M -3963a6451 +3964,3965c6520,6523 +< Hagar +< Haggai +--- > Hagan/M -3964a6453 -> Hagen -3970a6460,6462 +> Hagar/M +> Hagen/M +> Haggai/M +3967,3968c6525,6526 +< Hague +< Hahn +--- +> Hague/M +> Hahn/M +3971c6529,6532 +< Haiphong +--- > Hailee/M > Hailey/M > Haily/M -3973a6466,6467 +> Haiphong/M +3973a6535,6536 > Hakeem/M > Hakim/M -3976c6470 +3975,3979c6538,6544 +< Hakluyt < Hal/SM +< Haldane +< Hale +< Haleakala --- +> Hakluyt/M > Hal/SMY -3979a6474,6475 +> Haldane/M +> Hale/M +> Haleakala/M > Haleigh/M > Halette/M -3980a6477,6478 +3980a6546,6547 > Hali/M > Halie/M -3981a6480 +3982,3983c6549,6552 +< Hall +< Halley +--- > Halimeda/M -3983a6483 +> Hall/M +> Halley/M > Halli/M -3987d6486 +3987d6555 < Hallowe'en -3989a6489,6490 +3989c6557,6559 +< Hallstatt +--- +> Hallstatt/M > Hallsy/M > Hally/M -3991a6493 +3991c6561,6562 +< Halsey +--- +> Halsey/M > Halsy/M -3994a6497 +3995c6566,6569 +< Hamhung +--- > Hamel/M -3995a6499,6500 +> Hamhung/M > Hamid/M > Hamil/M -3999a6505 +3999c6573,6574 +< Hamiltonian +--- +> Hamiltonian/M > Hamish/M -4000a6507 +4001c6576,6577 +< Hamlet +--- > Hamlen/M -4002a6510 +> Hamlet/M +4003,4004c6579,6581 +< Hammarskjold +< Hammerstein +--- > Hammad/M -4007a6516 +> Hammarskjold/M +> Hammerstein/M +4006,4007c6583,6585 +< Hammond +< Hammurabi +--- +> Hammond/M +> Hammurabi/M > Hamnet/M -4011a6521,6522 +4009,4012c6587,6592 +< Hampton +< Hamsun +< Han/S +< Hancock +--- +> Hampton/M +> Hamsun/M +> Han/S/M > Hana/M > Hanan/M -4020c6531,6532 +> Hancock/M +4014c6594 +< Handy +--- +> Handy/M +4020c6600,6601 < Hannah --- > Hannah/M > Hanni/SM -4021a6534,6535 +4021a6603,6604 > Hannie/M > Hanny/M -4026a6541 +4024a6608 +> Hans/MN +4026a6611 > Hansiain/M -4029d6543 +4029d6613 < Hanukah/M -4031a6546 +4031a6616 > Happy/M -4032a6548 +4032a6618 > Harald/M -4033a6550 +4034c6620,6622 +< Harbin +--- > Harbert/M -4034a6552 +> Harbin/M > Harcourt/M -4039a6558 +4037,4038c6625,6626 +< Hardy +< Hargreaves +--- +> Hardy/M +> Hargreaves/M +4039a6628 > Harland/M -4040a6560,6561 +4041,4043c6630,6638 +< Harlequin +< Harley +< Harlow +--- > Harlen/M > Harlene/M -4042a6564,6566 +> Harlequin/M +> Harley/M > Harli/M > Harlie/M > Harlin/M -4043a6568 +> Harlow/M > Harman/M -4044a6570,6572 +4044a6640,6642 > Harmonia/M > Harmonie/M > Harmony/M -4045a6574,6575 +4045a6644,6645 > Haroun/M > Harp/MR -4048a6579,6580 +4048a6649,6650 > Harri/SM > Harrie/M -4050a6583,6584 +4050a6653,6654 > Harrietta/M > Harriette/M -4052c6586,6587 +4052c6656,6658 < Harris --- > Harriot/M > Harriott/M -4059a6595 -> Hartley -4061a6598,6599 +> Harris/M +4055c6661 +< Harrods +--- +> Harrods/M +4057,4058c6663,6664 +< Hart +< Harte +--- +> Hart/M +> Harte/M +4059a6666 +> Hartley/M +4061a6669,6670 > Hartwell/M > Harv/M -4063a6602,6603 +4063c6672,6674 +< Harvey +--- +> Harvey/M > Harwell/M > Harwilll/M -4064a6605,6606 +4065c6676,6682 +< Hasidim +--- > Hasheem/M > Hashim/M -4065a6608,6611 +> Hasidim/M > Haskel/M > Haskell/M > Haslett/M > Hastie/M -4066a6613 +4067,4068c6684,6686 +< Hatfield +< Hathaway +--- > Hasty/M -4070a6618 +> Hatfield/M +> Hathaway/M +4070c6688,6689 +< Hatteras +--- +> Hatteras/M > Hatti/M -4071a6620 +4071a6691 > Hatty/M -4077a6627 +4076,4077c6696,6698 +< Havarti +< Havel +--- +> Havarti/M +> Havel/M > Haven/M -4088a6639 +4079c6700 +< Haw +--- +> Haw/M +4082,4083c6703,6704 +< Hawking +< Hawkins +--- +> Hawking/M +> Hawkins/M +4085c6706 +< Hawthorne +--- +> Hawthorne/M +4088a6710 > Haydon/M -4089a6641 +4090,4091c6712,6715 +< Haynes +< Hayward +--- > Hayley/M -4093a6646,6647 +> Haynes/M +> Hays/M +> Hayward/M +4093a6718,6719 > Hayyim/M > Haze/M -4094a6649 +4095c6721,6722 +< Hazlitt +--- > Hazlett/M -4097a6653 +> Hazlitt/M +4098,4099c6725,6727 +< Hearst +< Heath/R +--- > Heall/M -4112a6669,6678 +> Hearst/M +> Heath/MR +4102c6730 +< Heaviside +--- +> Heaviside/M +4104c6732 +< Hebe +--- +> Hebe/M +4106c6734 +< Hebraic +--- +> Hebraic/M +4108a6737 +> Hebrews/M +4110c6739 +< Hecate +--- +> Hecate/M +4112c6741,6751 +< Hecuba +--- +> Hecuba/M > Heda/M > Hedda/M > Heddi/M @@ -3965,120 +7318,248 @@ > Hedwig/M > Hedwiga/M > Hedy/M -4117a6684 +4116,4119c6755,6759 +< Hegelian +< Hegira +< Heidegger +< Heidelberg +--- +> Hegelian/M +> Hegira/M > Heida/M -4120a6688 +> Heidegger/M +> Heidelberg/M +4121c6761,6762 +< Heifetz +--- > Heidie/M -4122a6691 +> Heifetz/M +4123c6764,6765 +< Heine +--- > Heindrick/M -4126a6696,6697 +> Heine/M +4127,4128c6769,6772 +< Heinz +< Heisenberg +--- > Heinrick/M > Heinrik/M -4130c6701,6703 +> Heinz/M +> Heisenberg/M +4130c6774,6776 < Hejira --- > Hejira/MS > Helaina/M > Helaine/M -4133a6707 +4133a6780 > Helenka/M -4134a6709 +4135,4136c6782,6784 +< Helicon +< Heliopolis +--- > Helge/M -4145c6720,6721 +> Helicon/M +> Heliopolis/M +4143,4145c6791,6794 +< Hellenistic +< Hellenization < Hellenize --- +> Hellenistic/M +> Hellenization/M > Hellenize/DSG -> Heller -4146a6723 +> Heller/M +4147c6796,6797 +< Hellman +--- > Helli/M -4149a6727 +> Hellman/M +4149a6800 > Helsa/M -4151a6730 +4151a6803 > Helvetica -4152a6732 +4152a6805 > Helyn/M -4156c6736,6738 +4156,4158c6809,6814 < Hendricks +< Hendrix +< Henley --- > Hendrick/MS > Hendrik/M > Hendrika/M -4157a6740 +> Hendrix/M > Henka/M -4160a6744,6745 +> Henley/M +4160a6817,6818 > Henrie/M > Henrieta/M -4161a6747,6748 +4161a6820,6821 > Henriette/M > Henrik/M -4162a6750 +4162a6823 > Henryetta/M -4166a6755 +4165c6826 +< Hepburn +--- +> Hepburn/M +4167c6828,6829 +< Hepplewhite +--- > Hephzibah/M -4171a6761 +> Hepplewhite/M +4170c6832 +< Heraclitus +--- +> Heraclitus/M +4172,4173c6834,6839 +< Herbart +< Herbert +--- > Herb/M -4173a6764,6766 +> Herbart/M +> Herbert/M > Herbie/M > Herby/M > Herc/M -4174a6768 +4175c6841,6842 +< Herculean +--- > Hercule/MS -4176a6771 +> Herculean/M +4177c6844,6845 +< Herder +--- > Herculie/M -4181a6777 +> Herder/M +4179c6847 +< Herero +--- +> Herero/M +4182c6850,6851 +< Hermaphroditus +--- > Hermann/M -4183a6780,6783 +> Hermaphroditus/M +4183a6853,6856 > Hermia/M > Hermie/M > Hermina/M > Hermine/M -4184a6785 +4185c6858,6859 +< Hermitage +--- > Hermione/M -4186a6788 +> Hermitage/M +4186a6861 > Hermon -4187a6790 +4187a6863 > Hermy/M -4188a6792 +4188a6865 > Hernando/M -4190a6795 +4190a6868 > Herold/M -4194a6800 +4193c6871 +< Herrick +--- +> Herrick/M +4195c6873,6874 +< Herschel +--- > Hersch/M -4196a6803 +> Herschel/M +4196a6876 > Hersh/M -4198a6806,6807 +4198a6879,6880 > Herta/M > Hertha/M -4200a6810,6811 +4201,4202c6883,6886 +< Herzegovina +< Herzl +--- > Herve/M > Hervey/M -4209a6821,6822 +> Herzegovina/M +> Herzl/M +4204,4208c6888,6892 +< Hesiod +< Hesperus +< Hess +< Hesse +< Hessian +--- +> Hesiod/M +> Hesperus/M +> Hess/M +> Hesse/M +> Hessian/M +4209a6894,6895 > Hesther/M > Hestia/M -4210a6824 +4210a6897 > Hetti/M -4211a6826,6831 +4211a6899,6904 > Hetty/M > Hew/M > Hewe/M > Hewet/M > Hewett/M > Hewie/M -4219a6840 +4214,4215c6907,6908 +< Heyerdahl +< Heywood +--- +> Heyerdahl/M +> Heywood/M +4217c6910 +< Hezekiah +--- +> Hezekiah/M +4220c6913,6914 +< Hialeah +--- > Hi/M -4233a6855 +> Hialeah/M +4225c6919 +< Hickok +--- +> Hickok/M +4227c6921 +< Hieronymus +--- +> Hieronymus/M +4230c6924 +< Highlander/MS +--- +> Highlander/SM +4233a6928 > Hilarius/M -4236a6859,6861 +4235c6930 +< Hilbert +--- +> Hilbert/M +4237c6932,6938 +< Hildebrand +--- > Hildagard/M > Hildagarde/M > Hilde/M -4237a6863,6865 +> Hildebrand/M > Hildegaard/M > Hildegarde/M > Hildy/M -4239a6868 +4239,4242c6940,6951 +< Hill +< Hillary +< Hillel +< Hilton +--- +> Hill/M > Hillard/M -4241a6871,6877 +> Hillary/M +> Hillel/M > Hillery/M > Hilliard > Hilliary/M @@ -4086,155 +7567,415 @@ > Hillier/M > Hilly/RM > Hillyer/M -4246a6883 +> Hilton/M +4244,4245c6953,6954 +< Himalayan +< Himmler +--- +> Himalayan/M +> Himmler/M +4247,4249c6956,6959 +< Hindemith +< Hindenburg +< Hindi +--- > Hinda/M -4255a6893 +> Hindemith/M +> Hindenburg/M +> Hindi/M +4254c6964 +< Hines +--- +> Hines/M +4256c6966,6967 +< Hipparchus +--- > Hinze/M -4262a6901 +> Hipparchus/M +4258,4259c6969,6970 +< Hippocratic +< Hiram +--- +> Hippocratic/M +> Hiram/M +4261c6972 +< Hirohito +--- +> Hirohito/M +4262a6974 > Hirsch/M -4271a6911 +4267c6979 +< Hitchcock +--- +> Hitchcock/M +4270c6982 +< Hmong +--- +> Hmong/M +4271a6984 > Hobard/M -4274a6915,6916 +4273,4274c6986,6989 +< Hobbes +< Hobbs +--- +> Hobbes/M +> Hobbs/M > Hobey/M > Hobie/M -4277a6920 +4277c6992,6994 +< Hodgkin +--- +> Hodges/M +> Hodgkin/M > Hoebart/M -4301a6945 +4283c7000 +< Hogarth +--- +> Hogarth/M +4285,4286c7002,7003 +< Hohenlohe +< Hohenstaufen +--- +> Hohenlohe/M +> Hohenstaufen/M +4289c7006 +< Hohokam +--- +> Hohokam/M +4291,4292c7008,7009 +< Hokusai +< Holbein +--- +> Hokusai/M +> Holbein/M +4296c7013 +< Holiday +--- +> Holiday/M +4301a7019,7020 > Holli/SM -4303d6946 +> Hollis/M +4303d7021 < Hollis -4305a6949 +4305c7023,7024 +< Holly +--- +> Holly/M > Hollyanne/M -4314a6959 +4309c7028 +< Holocaust +--- +> Holocaust/M +4311c7030 +< Holst +--- +> Holst/M +4313c7032 +< Holt +--- +> Holt/M +4315c7034,7036 +< Homeric +--- > Homere/M -4315a6961 +> Homeric/M > Homerus/M -4320a6967 +4320a7042 > Honey/M -4324c6971,6972 +4322c7044,7045 +< Honiara +--- +> Hong/M +> Honiara/M +4324c7047,7048 < Honorable --- > Honor/B > Honoria/M -4338a6987 +4326,4327c7050,7052 +< Hood +< Hooke/R +--- +> Hood/M +> Hooke/RM +> Kooker/M +4332c7057 +< Hope +--- +> Hope/M +4335,4337c7060,7062 +< Hopkins +< Hopper +< Horace +--- +> Hopkins/M +> Hopper/M +> Horace/M +4338a7064 > Horatia/M -4339a6989 +4339a7066 > Horatius/M -4345a6996,7000 +4341,4342c7068,7069 +< Hormuz +< Horn +--- +> Hormuz/M +> Horn/M +4345,4346c7072,7078 +< Horowitz +< Horthy +--- +> Horowitz/M > Horst/M > Hort/MN > Horten/M > Hortense > Hortensia/M -4361a7017,7018 +> Horthy/M +4353,4355c7085,7087 +< Houdini +< House +< Housman +--- +> Houdini/M +> House/M +> Housman/M +4359,4360c7091,7092 +< Howard +< Howe +--- +> Howard/M +> Howe/M +4361a7094,7095 > Howey/M > Howie/M -4363a7021 +4363c7097,7098 +< Hoyle +--- +> Hoyle/M > Hoyt/M -4368a7027 +4366,4367c7101,7102 +< Huang +< Hubbard +--- +> Huang/M +> Hubbard/M +4368a7104 > Hube/RM -4370a7030,7032 +4370a7107,7109 > Huberto/M > Hubey/M > Hubie/M -4379a7042,7043 +4378c7117 +< Huggins +--- +> Huggins/M +4379a7119,7121 +> Hughes/M > Hughie > Hugibert/M -4381a7046 +4382c7124,7125 +< Hui +--- > Hugues/M -4383a7049 +> Hui/M +4383a7127 > Hulda/M -4384a7051 +4384a7129 > Humbert/M -4387a7055,7057 +4386,4387c7131,7135 +< Humboldt +< Hume +--- +> Humboldt/M +> Hume/M > Humfrey/M > Humfrid/M > Humfried/M -4391a7062 +4389,4390c7137,7138 +< Humphrey +< Humvee +--- +> Humphrey/M +> Humvee/M +4392c7140,7141 +< Hung +--- > Hunfredo/M -4398a7070 +> Hung/M +4396c7145 +< Hunt/R +--- +> Hunt/MR +4398a7148 > Huntlee/M -4400a7073,7074 +4400c7150,7152 +< Huntsville +--- +> Huntsville/M > Hurlee/M > Hurleigh/M -4404a7079 +4402c7154 +< Huron +--- +> Huron/M +4404,4409c7156,7162 +< Hus +< Hussein +< Husserl +< Hussite +< Huston +< Hutchinson +--- +> Hus/M > Husein/M -4413a7089,7094 +> Hussein/M +> Husserl/M +> Hussite/M +> Huston/M +> Hutchinson/M +4411c7164 +< Hutu +--- +> Hutu/M +4413c7166,7172 +< Huygens +--- +> Huygens/M > Hy/M > Hyacinth/M > Hyacintha/M > Hyacinthe/M > Hyacinthia/M > Hyacinthie/M -4414a7096 +4415,4416c7174,7176 +< Hyde +< Hyderabad +--- > Hyatt/M -4417a7100 +> Hyde/M +> Hyderabad/M +4417a7178 > Hyman/M -4418a7102,7103 +4418a7180,7181 > Hymie > Hynda/M -4455a7141 +4432a7196 +> IDE +4433a7198,7199 +> IED +> IEEE +4443a7210 +> IP +4446a7214 +> IRC +4449c7217,7218 +< ISO +--- +> ISO/M +> ISP +4452a7222 +> IVF +4455a7226 > Iain/M -4456a7143 +4456a7228 > Ianthe/M -4458a7146,7147 +4458c7230,7232 +< Ibadan +--- +> Ibadan/M > Ibbie/M > Ibby/M -4463a7153 +4460,4461c7234,7235 +< Iberian +< Ibiza +--- +> Iberian/M +> Ibiza/M +4463c7237,7238 +< Ibo +--- +> Ibo/M > Ibrahim/M -4470a7161 +4471c7246,7247 +< Ida +--- > Ichabod/M -4474a7166,7171 +> Ida/M +4475c7251,7260 +< Ieyasu +--- > Idalia/M > Idalina/M > Idaline/M > Idell/M > Idelle/M > Idette/M -4475a7173,7175 +> Ieyasu/M > Iggie/M > Iggy/M > Ignace/M -4476a7177 +4477c7262,7265 +< Ignatius +--- > Ignacius/M -4477a7179,7180 +> Ignatius/M > Ignaz/M > Ignazio/M -4483c7186,7187 +4483,4485c7271,7278 < Ikea/M +< Ikhnaton +< Ila --- > IKEA/M > Ikey/M -4485a7190,7193 +> Ikhnaton/M +> Ila/M > Ilaire/M > Ilario/M > Ileana/M > Ileane/M -4487a7196,7197 +4487a7281,7282 > Ilise/M > Ilka/M -4488a7199 +4488a7284 > Illa/M -4491a7203,7207 +4491c7287,7292 +< Illuminati +--- +> Illuminati/M > Ilsa/M > Ilse/M > Ilysa/M > Ilyse/M > Ilyssa/M -4495a7212 +4495a7297 > Immanuel -4496a7214 +4496a7299 > Imogen/M -4497a7216 +4497a7301 > Imojean/M -4499c7218 +4499c7303 < In/M --- > In/MP -4522a7242,7243 +4512a7317 +> Indies/M +4515c7320 +< Indochinese +--- +> Indochinese/M +4518c7323 +< Indore +--- +> Indore/M +4522c7327,7329 +< Ines +--- +> Ines/M > Inesita/M > Inessa/M -4524c7245,7256 +4524c7331,7342 < Inge --- > Inga/M @@ -4242,147 +7983,282 @@ > Ingaborg/M > Ingamar/M > Ingar/M -> Inge/R +> Inge/RM > Ingeberg/M > Ingeborg/M > Ingelbert/M > Ingemar/M > Inger/M > Inglebert/M -4525a7258,7260 +4525a7344,7346 > Inglis/M > Ingmar/M > Ingra/M -4528a7264,7269 +4527c7348 +< Ingres +--- +> Ingres/M +4528a7350,7355 > Ingrim/M > Ingunna/M > Inigo/M > Inna/M > Inness/M > Innis/M -4543a7285,7287 +4532c7359 +< Inquisition +--- +> Inquisition/M +4533a7361 +> Instagram/M +4536c7364 +< Intelsat +--- +> Intelsat/M +4538,4539c7366,7367 +< Internet/S +< Interpol +--- +> Internet/SM +> Interpol/M +4544c7372,7375 +< Ionesco +--- > Iolande/M > Iolanthe/M > Iona -4546a7291,7293 +> Ionesco/M +4546a7378,7380 > Iorgo/MS > Iormina/M > Iosep/M -4560a7308 +4549c7383 +< Iphigenia +--- +> Iphigenia/M +4552,4553c7386,7387 +< Iqbal +< Iquitos +--- +> Iqbal/M +> Iquitos/M +4561,4562c7395,7398 +< Irene +< Iris +--- > Irena/M -4561a7310 +> Irene/M > Irina/M -4567a7317 +> Iris/M +4565c7401 +< Irishmen +--- +> Irishmen/M +4567,4568c7403,7405 +< Irishwomen +< Irkutsk +--- +> Irishwomen/M > Irita/M -4573a7324 +> Irkutsk/M +4572c7409 +< Irrawaddy +--- +> Irrawaddy/M +4573a7411 > Irv/MG -4577a7329,7330 +4575,4576c7413,7414 +< Irvine +< Irving +--- +> Irvine/M +> Irving/M +4577a7416,7417 > Irwinn/M > Isa -4578a7332 +4578a7419 > Isaak/M -4579a7334 +4580c7421,7422 +< Isabella +--- > Isabelita/M -4581a7337,7342 +> Isabella/M +4582,4585c7424,7435 +< Isaiah +< Iscariot +< Isfahan +< Isherwood +--- > Isac/M > Isacco/M > Isador/M > Isadora/M > Isadore/M > Isahella/M -4582a7344 +> Isaiah/M > Isak/M -4583a7346 +> Iscariot/M > Iseabal/M -4589a7353,7357 +> Isfahan/M +> Isherwood/M +4587c7437 +< Ishmael +--- +> Ishmael/M +4589a7440,7444 > Isiahi/M > Isidor/M > Isidora/M > Isidore/M > Isidoro/M -4598a7367 +4594c7449 +< Islamic +--- +> Islamic/M +4596c7451 +< Islamist +--- +> Islamist/M +4599c7454,7455 +< Isolde +--- > Isobel/M -4606a7376,7379 +> Isolde/M +4604c7460 +< Israelite +--- +> Israelite/M +4606c7462,7466 +< Issachar +--- +> Issachar/M > Issi/M > Issiah/M > Issie/M > Issy/M -4615a7389 +4616,4618c7476,7479 +< Ithaca +< Ithacan +< Ito +--- > Itch/M -4622c7396,7403 +> Ithaca/M +> Ithacan/M +> Ito/M +4620c7481 +< Ivan +--- +> Ivan/M +4622c7483,7491 < Ives --- > Ivar/M > Ive/RSM > Iver/M +> Ives/M > Ivett/M > Ivette/M > Ivie/M > Ivonne/M > Ivor/M -4627a7409,7410 +4625c7494 +< Ivy +--- +> Ivy/M +4627a7497,7498 > Izabel/M > Izak/M -4634c7417,7418 +4630,4631c7501,7502 +< Izhevsk +< Izmir +--- +> Izhevsk/M +> Izmir/M +4634c7505,7506 < J/MD --- > Izzy/M > J/MDNX -4639a7424,7429 +4640c7512,7520 +< Jack +--- > Jabez/M > Jacenta/M > Jacinda/M > Jacinta/M > Jacintha/M > Jacinthe/M -4640a7431,7432 +> Jack/M > Jackelyn/M > Jacki/M -4641a7434 +4641a7522 > Jacklin/M -4642a7436,7437 +4642a7524,7525 > Jackquelin/M > Jackqueline/M -4646a7442 +4644c7527 +< Jacksonian +--- +> Jacksonian/M +4646a7530 > Jaclin/M -4652a7449 +4650c7534 +< Jacobi +--- +> Jacobi/M +4652a7537,7538 > Jacobo/M -4654a7452 +> Jacobs/M +4654c7540,7541 +< Jacquard +--- +> Jacquard/M > Jacquelin/M -4656a7455,7457 +4657,4658c7544,7556 +< Jacques +< Jacuzzi +--- > Jacquelynn/M > Jacquenetta/M > Jacquenette/M -4657a7459,7462 +> Jacques/M > Jacquetta/M > Jacquette/M > Jacqui/M > Jacquie/M -4658a7464,7467 +> Jacuzzi/M > Jacynth/M > Jada/M > Jade/M > Jae/M -4663a7473 +4664c7562,7564 +< Jain +--- > Jaimie/M -4664a7475 +> Jain/M > Jaine/M -4668a7480,7481 +4666c7566 +< Jaipur +--- +> Jaipur/M +4668a7569,7570 > Jakie/M > Jakob/M -4676a7490 -> Jameson -4677a7492,7493 +4677c7579,7582 +< Jamestown +--- +> Jameson/M +> Jamestown/M > Jamesy/M > Jamey/M -4679a7496,7501 +4679a7585,7590 > Jamil/M > Jamill/M > Jamima/M > Jamison/M > Jammal/M > Jammie/M -4683c7505,7514 +4683c7594,7603 < Jane --- > Janaya/M @@ -4395,9 +8271,9 @@ > Janek/M > Janel/M > Janela/M -4684a7516 +4684a7605 > Janella/M -4686c7518,7523 +4686c7607,7612 < Janet --- > Janene/M @@ -4406,26 +8282,26 @@ > Janet/M > Janeta/M > Janetta/M -4687a7525,7527 +4687a7614,7616 > Janeva/M > Janey/M > Jania/M -4689a7530,7531 +4689a7619,7620 > Janifer/M -> Janina -4692a7535 +> Janina/M +4692a7624 > Janith/M -4693a7537 +4693a7626 > Janka/M -4694a7539,7540 +4694a7628,7629 > Jannel/M > Jannelle/M -4695a7542,7543 +4695a7631,7632 > Janos/M > Janot/M -4699a7548 +4699a7637 > Jany/M -4702a7552,7559 +4702a7641,7648 > Jaquelin/M > Jaquelyn/M > Jaquenetta/M @@ -4434,56 +8310,84 @@ > Jarad/M > Jard/M > Jareb/M -4703a7561,7562 +4704c7650,7653 +< Jarlsberg +--- > Jarib/M > Jarid/M -4704a7564 +> Jarlsberg/M > Jarrad/M -4705a7566 +4705a7655 > Jarret/M -4706a7568 +4706a7657 > Jarrid/M -4708a7571,7574 +4708a7660,7663 > Jase/M > Jasen/M > Jasmin/M > Jasmina/M -4711a7578 +4712c7667,7668 +< Jataka +--- > Jasun/M -4714d7580 +> Jataka/M +4714d7669 < JavaScript/M -4721a7588,7591 +4717,4718c7672,7673 +< Jaxartes +< Jay +--- +> Jaxartes/M +> Jay/M +4721c7676,7681 +< Jaycee/S +--- +> Jaycee/MS +> Jaycees/M > Jaye/M > Jayme/M > Jaymee/M > Jaymie/M -4722a7593 +4722a7683 > Jaynell/M -4723a7595,7596 +4723a7685,7686 > Jazmin/M > Jdavie/M -4724a7598,7600 +4724a7688,7690 > Jeana/M > Jeane/M > Jeanelle/M -4727a7604 +4727a7694 > Jeanna/M -4731a7609 +4731a7699 > Jecho/M -4732a7611,7613 +4732a7701,7703 > Jedd/M > Jeddy/M > Jedediah/M -4733a7615 +4734c7705,7706 +< Jeep +--- > Jedidiah/M -4740a7623 +> Jeep/M +4739c7711 +< Jeffersonian +--- +> Jeffersonian/M +4741c7713,7714 +< Jeffrey +--- > Jeffie/M -4742a7626,7627 +> Jeffrey/M +4743c7716,7718 +< Jehoshaphat +--- > Jeffy/M > Jehanna/M -4744a7630 -> Jehu -4745a7632,7644 +> Jehoshaphat/M +4744a7720 +> Jehu/M +4745a7722,7734 > Jelene/M > Jemie/M > Jemima/M @@ -4497,115 +8401,166 @@ > Jeni/M > Jenica/M > Jeniece/M -4746a7646,7648 +4747c7736,7740 +< Jenkins +--- > Jeniffer/M > Jenilee/M > Jenine/M -4747a7650 +> Jenkins/M > Jenn/MRJ -4749c7652,7655 +4749c7742,7746 < Jenner --- > Jennee/M +> Jenner/M > Jennette/M > Jenni/M > Jennica/M -4751a7658,7659 +4751a7749,7750 > Jennilee/M > Jennine/M -4753a7662 +4753a7753 > Jeno/M -4755a7665 +4755c7755,7756 +< Jephthah +--- +> Jephthah/M > Jerad/M -4756a7667,7671 +4756a7758,7762 > Jeralee/M > Jeramey/M > Jeramie/M > Jere/M > Jereme/M -4758a7674,7675 +4758c7764,7766 +< Jeremiahs +--- +> Jeremiahs/M > Jeremias/M > Jeremie/M -4761a7679 +4761a7770 > Jermain/M -4762a7681 +4763c7772,7773 +< Jeroboam +--- > Jermayne/M -4765a7685 +> Jeroboam/M +4765c7775,7776 +< Jerome +--- +> Jerome/M > Jeromy/M -4766a7687,7690 +4766a7778,7781 > Jerrie/M > Jerrilee/M > Jerrilyn/M > Jerrine/M -4768a7693 +4768a7784 > Jerrome/M -4769a7695 +4769a7786 > Jerrylee/M -4771a7698 +4771a7789 > Jervis/M -4772a7700,7704 +4773c7791,7800 +< Jesse +--- > Jessa/M > Jessalin/M > Jessalyn/M > Jessamine/M > Jessamyn/M -4773a7706,7709 +> Jesse/M > Jessee/M > Jesselyn/M > Jessey/M > Jessi/M -4775a7712,7713 +4775a7803,7804 > Jessika/M > Jessy/M -4777a7716,7717 +4777,4778c7806,7809 +< Jesus +< Jetway +--- +> Jesus/M > Jeth/M -> Jethro -4781a7722 +> Jethro/M +> Jetway/M +4781a7813 > Jewelle/M -4788a7730,7735 +4784c7816 +< Jewry +--- +> Jewry/M +4786,4788c7818,7826 +< Jidda +< Jilin +< Jill +--- +> Jidda/M +> Jilin/M +> Jill/M > Jillana/M > Jillane/M > Jillayne/M > Jilleen/M > Jillene/M > Jilli/M -4789a7737,7738 +4789a7828,7829 > Jillie/M > Jilly/M -4798c7747,7748 -< Jo/M +4794,4795c7834,7835 +< Jinan +< Jinnah --- +> Jinan/M +> Jinnah/M +4797,4799c7837,7843 +< Jivaro +< Jo/M +< Joan +--- +> Jivaro/M > Jo/MY -> Joachim -4799a7750,7752 +> Joachim/M +> Joan/M > Joana/M > Joane/M > Joanie/M -4802c7755 +4802c7846 < Joanne/M --- > Joanne/SM -4804a7758,7764 +4805c7849,7859 +< Jocasta +--- > Jobey/M > Jobi/M > Jobie/M > Jobina/M +> Jobs/M > Joby/M > Jobye/M > Jobyna/M -4805a7766,7767 +> Jocasta/M > Jocelin/M > Joceline/M -4806a7769 +4807,4808c7861,7865 +< Jock +< Jockey +--- > Jocelyne/M -4808a7772,7773 +> Jock/M +> Jockey/M > Jocko/M > Jodee/M -4813c7778,7788 +4812,4813c7869,7880 +< Joe < Joel --- +> Joe/M > Joeann/M -> Joel/Y +> Joel/YM > Joela/M > Joelie/M > Joell/MN @@ -4615,174 +8570,277 @@ > Joelly/M > Joellyn/M > Joelynn/M -4814a7790 +4814a7882 > Joete/M -4816a7793 +4816a7885 > Johan/M -4818a7796 +4819c7888,7889 +< Johannes +--- > Johannah/M -4821a7800,7801 +> Johannes/M +4821a7892,7893 > Johna/MH > Johnath/M -4823a7804 +4823a7896 > Johnette/M -4824a7806 +4825c7898,7899 +< Johnnie +--- > Johnna/M -4828a7811,7815 +> Johnnie/M +4826a7901 +> Johns/M +4828a7904,7908 > Johny/M > Joice/M > Jojo/M > Jolee/M > Joleen/M -4829a7817,7819 +4829a7910,7912 > Joletta/M > Joli/M > Jolie/M -4830a7821 +4831c7914,7918 +< Jolson +--- > Joline/M -4831a7823,7825 +> Jolson/M > Joly/M > Jolyn/M > Jolynn/M -4838,4839c7832,7835 +4834,4835c7921,7922 +< Jonahs +< Jonas +--- +> Jonahs/M +> Jonas/M +4838,4841c7925,7932 < Jones < Joni/M +< Jonson +< Joplin --- > Jone/SM +> Jones/M > Jonell/M > Joni/SM > Jonie/M -4841a7838 +> Jonson/M +> Joplin/M > Jordain/M -4842a7840 +4842a7934 > Jordana/M -4843a7842,7845 +4843a7936,7939 > Jordanna/M > Jordon/M > Jorey/M > Jorgan/M -4844a7847,7852 +4844a7941,7946 > Jori/M > Jorie/M > Jorrie/M > Jorry/M > Jory/M > Joscelin/M -4845a7854 +4845a7948 > Josee/M -4848a7858 +4848a7952 > Joseito/M -4849a7860,7861 +4850,4851c7954,7957 +< Josephine +< Josephs +--- > Josepha/M > Josephina/M -4853a7866 +> Josephine/M +> Josephs/M +4853,4854c7959,7962 +< Josephus +< Josh +--- +> Josephus/M > Josey/M -4854a7868 +> Josh/M > Joshia/M -4855a7870,7871 +4856c7964,7967 +< Josiah +--- > Joshuah/M > Josi/M -4856a7873 +> Josiah/M > Josias/M -4857a7875 +4857a7969 > Josselyn/M -4858a7877 +4859c7971,7974 +< Joule +--- > Josy/M -4859a7879,7880 +> Joule/M > Jourdain/M > Jourdan/M -4862a7884,7886 +4861c7976 +< Jovian +--- +> Jovian/M +4863,4864c7978,7984 +< Joyce +< Joycean +--- > Joya/M > Joyan/M > Joyann/M -4864a7889,7890 +> Joyce/M +> Joycean/M > Joycelin/M > Joye/M -4865a7892 +4865a7986 > Jozef/M -4867a7895 +4867a7989 > Jsandye/M -4872a7901 +4872,4873c7994,7997 +< Jubal +< Judah +--- +> Jubal/M > Jud -4881a7911,7912 +> Judaeo +> Judah/M +4879,4880c8003,8004 +< Jude +< Judea +--- +> Jude/M +> Judea/M +4881a8006,8007 > Judi/MH > Judie/M -4882a7914,7915 +4882a8009,8010 > Juditha/M > Judon/M -4884a7918 +4884c8012,8013 +< Judy +--- +> Judy/M > Judye/M -4885a7920 +4885a8015 > Juieta/M -4887c7922,7924 +4887c8017,8020 < Jules --- > Jule/SM +> Jules/M > Julee/M > Juli/M -4890a7928,7930 +4889,4890c8022,8026 +< Julian +< Juliana +--- +> Julian/M +> Juliana/M > Juliane/M > Juliann/M > Julianna/M -4892a7933 +4893c8029,8032 +< Juliet +--- > Julienne/M -4893a7935,7936 +> Juliet/M > Julieta/M > Julietta/M -4894a7938,7939 +4894a8034,8035 > Julina/M > Juline/M -4895a7941,7942 +4895a8037,8038 > Julissa/M > Julita/M -4901a7949 +4899c8042 +< Jun +--- +> Jun/M +4901a8045 > Junette/M -4904a7953,7955 +4903,4904c8047,8051 +< Jungfrau +< Jungian +--- +> Jungfrau/M +> Jungian/M > Junia/M > Junie/M > Junina/M -4910a7962 +4910a8058 > Justen/M -4912a7965 +4912a8061 > Justina/M -4914a7968,7971 +4914a8064,8067 > Justinn/M > Justino/M > Justis/M > Justus/M -4917c7974,7975 +4916,4917c8069,8071 +< Juvenal < K/SMNGJ --- +> Juvenal/M > Jyoti/M > K/SMNRGJ -4929a7988,7991 +4921c8075 +< KGB +--- +> KGB/M +4928c8082 +< Kaaba +--- +> Kaaba/M +4929a8084,8087 > Kacey/M > Kacie/M > Kacy/M > Kaela/M -4932a7995,7996 +4931,4932c8089,8092 +< Kafkaesque +< Kagoshima +--- +> Kafkaesque/M +> Kagoshima/M > Kahaleel/M > Kahlil/M -4933a7998,7999 +4934c8094,8101 +< Kaifeng +--- > Kai/M > Kaia/M -4934a8001,8005 +> Kaifeng/M > Kaila/M > Kaile/M > Kailey/M > Kain/M > Kaine/M -4936a8008,8012 +4936a8104,8108 > Kaitlyn/M > Kaitlynn/M > Kaja/M > Kakalina/M > Kala/M -4940a8017,8019 +4938,4939c8110,8111 +< Kalamazoo +< Kalashnikov +--- +> Kalamazoo/M +> Kalashnikov/M +4941,4942c8113,8117 +< Kalevala +< Kalgoorlie +--- > Kale/M > Kaleb/M > Kaleena/M -4943a8023,8031 +> Kalevala/M +> Kalgoorlie/M +4944c8119,8129 +< Kalmyk +--- > Kalie/M > Kalil/M > Kalila/M @@ -4792,38 +8850,70 @@ > Kalle/M > Kalli/M > Kally/M -4944a8033 +> Kalmyk/M > Kalvin/M -4947a8037,8040 +4946c8131 +< Kamchatka +--- +> Kamchatka/M +4947a8133,8136 > Kameko/M > Kamila/M > Kamilah/M > Kamillah/M -4951a8045 +4950c8139 +< Kan/S +--- +> Kan/SM +4952,4953c8141,8144 +< Kandahar +< Kandinsky +--- > Kandace/M -4953a8048 +> Kandahar/M +> Kandinsky/M > Kandy -4954a8050 +4954a8146 > Kania/M -4961a8058 +4956,4957c8148,8149 +< Kano +< Kanpur +--- +> Kano/M +> Kanpur/M +4959c8151 +< Kansas +--- +> Kansas/M +4961,4962c8153,8155 +< Kantian +< Kaohsiung +--- +> Kantian/M > Kanya/M -4967a8065,8066 +> Kaohsiung/M +4966,4967c8159,8162 +< Karaganda +< Karakorum +--- +> Karaganda/M +> Karakorum/M > Karalee/M > Karalynn/M -4968a8068,8069 +4968a8164,8165 > Kare/M > Karee/M -4969a8071 +4969a8167 > Karel/M -4970a8073 +4970a8169 > Karena/M -4972a8076,8080 +4972a8172,8176 > Karia/M > Karie/M > Karil/M > Karilynn/M > Karim/M -4975c8083,8088 +4975c8179,8184 < Karl/M --- > Karine/M @@ -4832,7 +8922,7 @@ > Karissa/M > Karita/M > Karl/MNX -4976a8090,8097 +4976a8186,8193 > Karlan/M > Karlee/M > Karleen/M @@ -4841,7 +8931,7 @@ > Karlie/M > Karlik/M > Karlis -4978c8099,8106 +4978c8195,8202 < Karo/M --- > Karlotta/M @@ -4852,7 +8942,7 @@ > Karna/M > Karney/M > Karo/MY -4979a8108,8115 +4979a8204,8211 > Karola/M > Karole/M > Karolina/M @@ -4861,14 +8951,14 @@ > Karon/M > Karrah/M > Karrie/M -4980a8117,8120 +4980a8213,8216 > Karry/M > Kary/M > Karyl/M > Karylin/M -4984a8125 +4984a8221 > Kaspar/M -4985a8127,8136 +4985a8223,8232 > Kasper/M > Kass > Kassandra/M @@ -4879,57 +8969,80 @@ > Kat/M > Kata/M > Katalin/M -4986a8138 +4986a8234 > Katee/M -4987a8140,8145 +4987a8236,8241 > Katerina/M > Katerine/M > Katey/M > Kath/M > Katha/M > Katharina/M -4988a8147,8149 +4988a8243,8245 > Katharyn/M > Kathe/M > Katherina/M -4990a8152 +4991c8248,8249 +< Kathiawar +--- > Kathi/M -4993a8156 +> Kathiawar/M +4993a8252 > Kathlin/M -4996a8160 +4996a8256 > Kathryne/M -4997a8162,8163 +4997a8258,8259 > Kathye/M > Kati/M -4999a8166,8169 +5000c8262,8266 +< Katmai +--- > Katine/M > Katinka/M > Katleen/M > Katlin/M -5003a8174,8179 +> Katmai/M +5002c8268 +< Katowice +--- +> Katowice/M +5003a8270,8275 > Katrine > Katrinka/M > Katti/M > Kattie/M > Katuscha/M > Katusha/M -5004a8181 +5004a8277 > Katya/M -5011a8189 +5010,5011c8283,8285 +< Kawasaki +< Kay +--- +> Kawasaki/M +> Kay/M > Kaycee/M -5013a8192,8197 +5013a8288,8293 > Kayle/M > Kaylee/M > Kayley/M > Kaylil/M > Kaylyn/M > Kayne/M -5019a8204,8207 +5018c8298 +< Kazantzakis +--- +> Kazantzakis/M +5019a8300,8303 > Kean > Keane/M > Kearney/M > Keary/M -5022a8211,8217 +5021c8305 +< Keats +--- +> Keats/M +5022a8307,8313 > Keefe/RM > Keefer/M > Keelby/M @@ -4937,11 +9050,16 @@ > Keelia/M > Keely/M > Keen/M -5023a8219 +5024c8315,8316 +< Keewatin +--- > Keene/M -5025a8222 +> Keewatin/M +5025a8318 > Keir/M -5027a8225,8234 +5028c8321,8331 +< Keller +--- > Kelbee/M > Kelby/M > Kelcey/M @@ -4952,51 +9070,82 @@ > Kelila/M > Kellby/M > Kellen/M -5030a8238 +> Keller/M +5030a8334 > Kellia/M -5031a8240 +5032,5033c8336,8340 +< Kellogg +< Kelly +--- > Kellina/M -5032a8242 +> Kellogg/M > Kellsie/M -5033a8244 +> Kelly/M > Kellyann/M -5034a8246,8247 +5034a8342,8343 > Kelsi/M > Kelsy/M -5036a8250 +5036,5037c8345,8347 +< Kelvin +< Kemerovo +--- +> Kelvin/M > Kelwin/M -5039a8254 +> Kemerovo/M +5039c8349,8351 +< Kempis +--- +> Kempis/M +> Ken/M > Kendal/M -5040a8256 +5040a8353 > Kendell/M -5042c8258,8259 +5042c8355,8356 < Kendrick/M --- > Kendre/M > Kendrick/MS -5043a8261,8262 +5043a8358,8359 > Kenn/M > Kenna/M -5046a8266,8267 +5046a8363,8364 > Kennett/M > Kennie/M -5048a8270 +5048a8367 > Kenon/M -5059a8282,8283 +5051c8370 +< Kentuckian/SM +--- +> Kentuckian/MS +5055c8374 +< Kenyatta +--- +> Kenyatta/M +5059a8379,8380 > Ker/M > Kerby/M -5061a8286,8289 +5061a8383,8386 > Keriann/M > Kerianne/M > Kerk/M > Kermie/M -5062a8291 +5063,5065c8388,8391 +< Kern +< Kerouac +< Kerr +--- > Kermy/M -5066a8296,8298 +> Kern/M +> Kerouac/M +> Kerr/M +5067,5068c8393,8409 +< Kerry +< Kettering +--- > Kerrie/M > Kerrill/M > Kerrin/M -5067a8300,8306 +> Kerry/M > Kerstin/M > Kerwin/M > Kerwinn/M @@ -5004,46 +9153,80 @@ > Keslie/M > Kessia/M > Kessiah/M -5068a8308,8312 +> Kettering/M > Ketti/M > Kettie/M > Ketty/M > Kev/MN > Kevan/M -5070a8315 +5071c8412,8414 +< Kevlar +--- > Kevina/M -5071a8317 +> Kevlar/M > Kevon/M -5072a8319 +5073,5074c8416,8418 +< Kewpie +< Key +--- > Kevyn/M -5079a8327 +> Kewpie/M +> Key/M +5076,5078c8420,8422 +< Keynesian +< Khabarovsk +< Khachaturian +--- +> Keynesian/M +> Khabarovsk/M +> Khachaturian/M +5079a8424 > Khalil/M -5094a8343,8345 +5090,5091c8435,8436 +< Khrushchev +< Khufu +--- +> Khrushchev/M +> Khufu/M +5095c8440,8443 +< Kickapoo +--- > Ki/M > Kiah/M > Kial/M -5097a8349,8350 +> Kickapoo/M +5097,5098c8445,8449 +< Kiel +< Kierkegaard +--- +> Kiel/M > Kiele/M > Kienan/M -5098a8352 +> Kierkegaard/M > Kiersten/M -5101a8356 +5102,5103c8453,8458 +< Kikuyu +< Kilauea +--- > Kikelia/M -5103a8359,8361 +> Kikuyu/M +> Kilauea/M > Kile/M > Kiley/M > Kilian/M -5104a8363,8365 +5104a8460,8462 > Killian/M > Killie/M > Killy/M -5106a8368,8370 +5107c8465,8469 +< Kimberley +--- > Kimball/M > Kimbell/M > Kimberlee/M -5107a8372 +> Kimberley/M > Kimberli/M -5108a8374,8381 +5108a8471,8478 > Kimberlyn/M > Kimble/M > Kimbra/M @@ -5052,20 +9235,23 @@ > Kimmy/M > Kin/M > Kincaid/M -5109a8383,8384 +5109a8480,8481 > Kingsley > Kingsly/M -5112c8387,8388 +5112c8484,8485 < Kinko's --- > Kinko/M > Kinna/M -5113a8390,8391 +5114c8487,8489 +< Kinsey +--- > Kinnie/M > Kinny/M -5115a8394 +> Kinsey/M +5115a8491 > Kinsley/M -5118a8398,8405 +5118a8495,8502 > Kipp/MR > Kippar/M > Kipper/M @@ -5074,321 +9260,634 @@ > Kira/M > Kirbee/M > Kirbie/M -5124a8412 +5120c8504 +< Kirchhoff +--- +> Kirchhoff/M +5124a8509 > Kiri/M -5131a8420,8423 +5127c8512 +< Kirk +--- +> Kirk/M +5130c8515 +< Kirov +--- +> Kirov/M +5132c8517,8521 +< Kisangani +--- > Kirsteni/M > Kirsti/M > Kirstin/M > Kirstyn/M -5134a8427,8429 +> Kisangani/M +5135c8524,8527 +< Kissinger +--- > Kissee/M > Kissiah/M > Kissie/M -5138a8434,8435 +> Kissinger/M +5138c8530,8532 +< Kitchener +--- +> Kitchener/M > Kitti/M > Kittie/M -5140a8438,8439 +5140c8534,8536 +< Kiwanis +--- +> Kiwanis/M > Kizzee/M > Kizzie/M -5142a8442,8444 +5142a8539,8541 > Klara/M > Klarika/M > Klarrisa/M -5146a8449,8452 +5144c8543 +< Klee +--- +> Klee/M +5147,5148c8546,8551 +< Klimt +< Kline +--- > Klemens/M > Klement/M > Kleon/M > Kliment/M -5172a8479 +> Klimt/M +> Kline/M +5155c8558 +< Knickerbocker +--- +> Knickerbocker/M +5157c8560 +< Knight +--- +> Knight/M +5159,5162c8562,8565 +< Knossos +< Knowles +< Knox +< Knoxville +--- +> Knossos/M +> Knowles/M +> Knox/M +> Knoxville/M +5166,5167c8569,8570 +< Kobe +< Koch +--- +> Kobe/M +> Koch/M +5172a8576 > Koenraad/M -5183a8491,8495 +5179c8583 +< Kolyma +--- +> Kolyma/M +5183a8588,8592 > Konstance/M > Konstantin/M > Konstantine/M > Konstanze/M > Koo/M -5185a8498,8500 +5185a8595,8597 > Kora/M > Koral/M > Koralle/M -5187a8503,8504 +5187a8600,8601 > Kordula/M > Kore/M -5189a8507,8512 +5189a8604,8609 > Korella/M > Koren/M > Koressa/M > Korey/M > Kori/M > Korie/M -5190a8514,8517 +5190a8611,8614 > Korney/M > Korrie/M > Korry/M > Kort/M -5212a8540 +5192,5195c8616,8619 +< Korzybski +< Kosciusko +< Kossuth +< Kosygin +--- +> Korzybski/M +> Kosciusko/M +> Kossuth/M +> Kosygin/M +5197c8621 +< Kowloon +--- +> Kowloon/M +5204,5207c8628,8631 +< Krasnodar +< Krasnoyarsk +< Krebs +< Kremlin +--- +> Krasnodar/M +> Krasnoyarsk/M +> Krebs/M +> Kremlin/M +5212a8637 > Krisha/M -5213a8542 +5213a8639 > Krishnah/M -5214a8544,8546 +5214a8641,8643 > Krispin/M > Krissie/M > Krissy/M -5215a8548,8551 +5215a8645,8648 > Kristal/M > Kristan/M > Kriste/M > Kristel/M -5217c8553,8554 +5217c8650,8651 < Kristi/M --- > Kristi/MN > Kristian/M -5218a8556 +5218a8653 > Kristien/M -5221a8560,8564 +5221a8657,8661 > Kristo/SM > Kristofer/M > Kristoffer/M > Kristofor/M > Kristoforo/M -5223a8567 +5223a8664 > Kristyn/M -5230a8575 +5227,5230c8668,8672 +< Kropotkin +< Kruger +< Krugerrand +< Krupp +--- +> Kropotkin/M +> Kruger/M +> Krugerrand/M +> Krupp/M > Krysta/M -5231a8577,8579 +5231a8674,8676 > Krystalle/M > Krystle/M > Krystyna/M -5259a8608 +5234c8679 +< Kubrick +--- +> Kubrick/M +5236c8681 +< Kuibyshev +--- +> Kuibyshev/M +5238,5240c8683,8685 +< Kunming +< Kuomintang +< Kurd +--- +> Kunming/M +> Kuomintang/M +> Kurd/M +5242c8687 +< Kurdistan +--- +> Kurdistan/M +5244c8689 +< Kurosawa +--- +> Kurosawa/M +5248c8693 +< Kutuzov +--- +> Kutuzov/M +5256c8701 +< Kwangju +--- +> Kwangju/M +5259c8704,8705 +< Ky/H +--- +> Ky/MH > Kyla/M -5260a8610,8615 +5260a8707,8712 > Kylen/M > Kylie/M > Kylila/M > Kylynn/M > Kym/M > Kynthia/M -5262a8618 +5262c8714,8715 +< Kyrgyzstan +--- +> Kyrgyzstan/M > Kyrstin/M -5277c8633 +5264c8717 +< L'Amour +--- +> L'Amour/M +5266,5267c8719,8720 +< L'Oreal +< L'Ouverture +--- +> L'Oreal/M +> L'Ouverture/M +5277c8730,8732 < LG --- > LG/M -5295a8652 +> LGBT +> LGBTQ +5290c8745 +< La/M +--- +> La/SM +5292c8747 +< Laban +--- +> Laban/M +5295a8751 > Lacee/M -5297a8655 +5297a8754 > Lacie/M -5302a8661 +5299c8756 +< Ladoga +--- +> Ladoga/M +5301c8758 +< Lady +--- +> Lady/M +5303c8760,8761 +< Lafayette +--- > Laetitia/M -5308a8668,8670 +> Lafayette/M +5306,5309c8764,8770 +< Lagrange +< Lagrangian +< Lahore +< Laius +--- +> Lagrange/M +> Lagrangian/M +> Lahore/M > Laina/M > Lainey/M > Laird/M -5315a8678 +> Laius/M +5314c8775 +< Lakota +--- +> Lakota/M +5315a8777 > Lalo/M -5324a8688,8689 +5319,5321c8781,8783 +< Lamaze +< Lamb +< Lambert +--- +> Lamaze/M +> Lamb/M +> Lambert/M +5323c8785 +< Lambrusco +--- +> Lambrusco/M +5324a8787,8788 > Lammond/M > Lamond/M -5326a8692 +5326a8791 > Lanae/M -5337a8704,8705 +5328c8793 +< Lancashire +--- +> Lancashire/M +5332c8797 +< Land +--- +> Land/M +5335c8800 +< Landsat +--- +> Landsat/M +5338c8803,8805 +< Lang +--- > Lanette/M > Laney/M -5342a8711,8718 +> Lang/M +5340,5342c8807,8818 +< Langland +< Langley +< Langmuir +--- +> Langland/M +> Langley/M +> Langmuir/M > Langsdon/M > Langston/M > Lani/M > Lanie/M > Lanita/M +> Lankan/M > Lanna/M > Lanni/M > Lannie/M -5352a8729 +5346a8823 +> Laos/M +5349c8826 +< Laplace +--- +> Laplace/M +5352a8830 > Laraine/M -5355a8733,8738 +5355,5356c8833,8840 +< Laredo +< Larousse +--- +> Laredo/M > Lari/M > Larina/M > Larine/M > Larisa/M > Larissa/M > Lark/M -5360a8744 +> Larousse/M +5358c8842 +< Lars/N +--- +> Lars/MN +5360a8845 > Laryssa/M -5366a8751 +5365c8850 +< Lat +--- +> Lat/M +5366a8852 > Latashia/M -5367a8753 +5367a8854 > Latia/M -5373a8760,8761 +5373a8861,8862 > Latrena/M > Latrina/M -5378a8767,8768 +5377,5379c8866,8871 +< Laud/R +< Laue +< Laundromat +--- +> Laud/MR +> Lauder/M +> Laue/M > Laughton > Launce/M -5380a8771,8773 +> Laundromat/M +5380a8873,8875 > Lauraine/M > Laural/M > Lauralee/M -5381a8775,8777 +5381a8877,8879 > Laure/M > Lauree/M > Laureen/M -5383c8779,8781 +5383c8881,8883 < Lauren/M --- > Laurella/M > Lauren/SM > Laurena/M -5384a8783 +5384a8885 > Laurene/M -5385a8785,8786 +5385a8887,8888 > Lauretta/M > Laurette/M -5386a8788,8789 +5386a8890,8891 > Laurianne/M > Laurice/M -5387a8791,8792 +5388c8893,8896 +< Laval +--- > Lauritz/M > Lauryn/M -5388a8794 +> Laval/M > Lavena/M -5389a8796 +5389a8898 > Laverna/M -5390a8798,8800 +5391c8900,8903 +< Lavoisier +--- > Lavina/M > Lavinia/M > Lavinie/M -5392a8803 +> Lavoisier/M +5392a8905 > Law -5394a8806 +5394,5396c8907,8912 +< Lawrence +< Lawson +< Layamon +--- +> Lawrence/M > Lawry/M -5395a8808,8809 +> Lawson/M > Lawton/M > Lay/M -5397a8812,8816 +> Layamon/M +5397a8914,8918 > Layne/M > Layney/M > Layton/M > Lazar/M > Lazare/M -5400c8819 +5400c8921 < Le/SM --- > Le/SMN -5407a8827 +5403,5404c8924,8925 +< Leadbelly +< Leah +--- +> Leadbelly/M +> Leah/M +5407c8928,8929 +< Leander +--- +> Leander/M > Leandra/M -5410a8831,8832 +5410a8933,8934 > Leanor/M > Leanora/M -5416a8839 +5414c8938 +< Leavenworth +--- +> Leavenworth/M +5416a8941 > Lebbie/M -5421a8845,8846 +5419c8944 +< Leda +--- +> Leda/M +5421a8947,8948 > Leeann/M > Leeanne/M -5422a8848,8853 +5423c8950,8956 +< Leeuwenhoek +--- > Leela/M > Leelah/M > Leeland/M > Leena/M > Leesa/M > Leese/M -5425a8857 +> Leeuwenhoek/M +5426c8959,8960 +< Legendre +--- > Lefty/M -5429a8862 +> Legendre/M +5428c8962 +< Leghorn +--- +> Leghorn/M +5429a8964 > Legra/M -5431a8865 +5431a8967 > Leia/M -5436a8871,8872 +5436c8972,8974 +< Leigh +--- +> Leigh/M > Leigha/M > Leighton/M -5437a8874 +5437a8976 > Leilah/M -5438a8876,8877 +5438a8978,8979 > Leisha/M > Lek/M -5439a8879 +5439a8981 > Lelah/M -5441a8882 +5441a8984 > Lem/M -5442a8884,8886 +5442a8986,8988 > Lemar/M > Lemmie/M > Lemmy/M -5447a8892,8894 +5447a8994,8996 > Lenci/M > Lenee/M > Lenette/M -5451a8899,8902 +5451c9000,9004 +< Leninist +--- +> Leninist/M > Lenka/M > Lenna/M > Lennard/M > Lennie/M -5459a8911,8912 +5458a9012 +> Lenten/M +5459a9014,9015 > Leodora/M > Leoine/M -5460a8914 +5461c9017,9018 +< Leon +--- > Leoline/M -5462a8917 +> Leon/M +5462a9020 > Leonanie/M -5465a8921 +5465c9023,9024 +< Leoncavallo +--- +> Leoncavallo/M > Leone/M -5466a8923,8925 +5467c9026,9029 +< Leonid +--- > Leonelle/M > Leonerd/M > Leonhard/M -5468a8928 +> Leonid/M +5468a9031 > Leonie/M -5469a8930,8933 +5469a9033,9036 > Leonora/M > Leonore/M > Leontine/M > Leontyne/M -5471a8936 +5472c9039,9040 +< Lepidus +--- > Leora/M -5475a8941 +> Lepidus/M +5475c9043,9044 +< Lerner +--- +> Lerner/M > Leroi/M -5477a8944 +5476a9046 +> Les/M +5477a9048 > Leshia/M -5478a8946 +5478a9050 > Lesli/M -5479a8948 +5479a9052 > Lesly/M -5484a8954 +5481c9054 +< Lesseps +--- +> Lesseps/M +5484a9058 > Lesya/M -5487a8958 +5487a9062 > Lethia/M -5488a8960 +5488a9064 > Letisha/M -5489a8962,8963 +5489a9066,9067 > Letizia/M > Letta/M -5490a8965,8969 +5490a9069,9073 > Letti/M > Lettie/M > Letty/M > Leupold/M > Lev -5492a8972 +5492a9076 > Levey/M -5494a8975 +5494c9078,9079 +< Leviathan +--- +> Leviathan/M > Levin/M -5497a8979 +5497a9083 > Levon/M -5499a8982,8983 -> Lewes +5499a9086,9087 +> Lewes/M > Lewie/M -5501a8986,8989 +5501c9089,9093 +< Lewis +--- +> Lewis/M > Lewiss > Lexi/SM > Lexie/M > Lexine/M -5503a8992,8995 +5503a9096,9099 > Lexy/M > Leyla/M > Lezley/M > Lezlie/M -5506a8999,9009 +5507c9103,9114 +< Libby +--- > Lia/M > Liam/M > Lian/M @@ -5400,15 +9899,28 @@ > Libbey/M > Libbi/M > Libbie/M -5515a9019 +> Libby/M +5511a9119 +> LibreOffice/M +5516c9124,9126 +< Lichtenstein +--- > Licha/M -5516a9021 +> Lichtenstein/M > Lida/M -5522a9028 +5518c9128 +< Lie +--- +> Lie/M +5520c9130 +< Liebfraumilch +--- +> Liebfraumilch/M +5522a9133 > Lief/M -5523a9030 +5523a9135 > Liesa/M -5525,5526c9032,9035 +5525,5526c9137,9140 < Lila/M < Lilia/M --- @@ -5416,47 +9928,85 @@ > Lila/SM > Lilah/M > Lilia/MS -5528a9038 +5528a9143 > Liliane/M -5530a9041 +5530,5531c9145,9148 +< Liliuokalani +< Lille +--- +> Liliuokalani/M > Lilla/M -5531a9043 +> Lille/M > Lilli/MS -5535a9048 +5535c9152,9153 +< Lilliputian/SM +--- +> Lilliputian/MS > Lilllie/M -5538a9052 +5538a9157 > Lilyan/M -5547a9062 +5542,5543c9161,9162 +< Limburger +< Limoges +--- +> Limburger/M +> Limoges/M +5547a9167 > Linc/M -5551a9067,9069 +5549c9169 +< Lind +--- +> Lind/M +5551,5554c9171,9184 +< Lindbergh +< Lindsay +< Lindsey +< Lindy +--- +> Lindbergh/M > Lindi/M > Lindie/M > Lindon/M -5553a9072 +> Lindsay/M +> Lindsey/M > Lindsy/M -5554a9074,9079 +> Lindy/M > Linea/M > Linell/M > Linet/M > Linette/M > Link/M > Linn/M -5555a9081,9085 +5556c9186,9191 +< Linotype +--- > Linnea/M > Linnell/M > Linnet/M > Linnie/M > Linoel/M -5560a9091 +> Linotype/M +5559c9194 +< Linux/S +--- +> Linux/MS +5560a9196 > Linzy/M -5561a9093 +5562,5564c9198,9201 +< Lipizzaner +< Lippi +< Lippmann +--- > Lionello/M -5566a9099 +> Lipizzaner/M +> Lippi/M +> Lippmann/M +5566a9204 > Lira/M -5567a9101,9102 +5567a9206,9207 > Lisabeth/M > Lisbeth/M -5568a9104,9110 +5568a9209,9215 > Lise/M > Lisetta/M > Lisette/M @@ -5464,172 +10014,292 @@ > Lishe/M > Lisle/M > Lissa/M -5569a9112,9114 +5569a9217,9219 > Lissi/M > Lissie/M > Lissy/M -5573a9119 +5573c9223,9224 +< Liszt +--- +> Liszt/M > Lita/M -5577a9124,9126 +5577a9229,9231 > Liuka/M > Liv/M > Liva/M -5583a9133,9135 +5579c9233 +< Liverpudlian/MS +--- +> Liverpudlian/SM +5581,5582c9235,9236 +< Livingston +< Livingstone +--- +> Livingston/M +> Livingstone/M +5584c9238,9241 +< Livy +--- > Livvie/M > Livvy/M > Livvyy/M -5586a9139,9141 +> Livy/M +5586a9244,9246 > Lizabeth/M > Lizbeth/M > Lizette/M -5591a9147 +5590,5591c9250,9252 +< Llewellyn +< Lloyd +--- +> Llewellyn/M +> Lloyd/M > Llywellyn/M -5595a9152 +5594,5595c9255,9257 +< Lobachevsky +< Lochinvar +--- +> Lobachevsky/M +> Lochinvar/M > Lock/M -5600a9158 +5597c9259 +< Lockean +--- +> Lockean/M +5600c9262,9263 +< Lodge +--- +> Lodge/M > Lodovico/M -5601a9160 +5602,5603c9265,9267 +< Loewe +< Loewi +--- > Loella/M -5608a9168 +> Loewe/M +> Loewi/M +5606c9270 +< Lohengrin +--- +> Lohengrin/M +5608a9273 > Loise/M -5610a9171 +5611,5612c9276,9278 +< Lolita +< Lollard +--- > Loleta/M -5613a9175 +> Lolita/M +> Lollard/M +5613a9280 > Lolly/M -5618a9181 +5618a9286 > Lona/M -5620a9184 +5621c9289,9290 +< Long +--- > Lonee/M -5624a9189,9192 +> Long/M +5624a9294,9297 > Loni/M > Lonna/M > Lonnard/M > Lonni/M -5625a9194 +5625a9299 > Lonny/M -5627a9197 +5627a9302 > Lorain/M -5628a9199,9202 +5628a9304,9307 > Loralee/M > Loralie/M > Loralyn/M > Lorant/M -5630a9205,9206 +5630a9310,9311 > Loree/M > Loreen/M -5632c9208,9209 +5632c9313,9314 < Loren --- > Lorelle/M -> Loren/S -5636a9214 +> Loren/SM +5635,5636c9317,9319 +< Lorentz +< Lorenz +--- +> Lorentz/M +> Lorenz/M > Lorenza/M -5638a9217 +5638a9322 > Lorette/M -5639a9219,9221 +5639a9324,9326 > Loria/M > Lorianna/M > Lorianne/M -5640a9223,9228 +5640a9328,9333 > Lorilee/M > Lorilyn/M > Lorin/M > Lorinda/M > Lorine/M > Lorita/M -5641a9230 +5641a9335 > Lorne/M -5642a9232 +5642a9337 > Lorrayne/M -5643a9234 +5643a9339 > Lorri/M -5644a9236,9238 +5644a9341,9344 > Lorrin/M > Lorry/M > Lory/M -5645a9240 +> Los +5645a9346 > Lothaire/M -5647a9243,9245 +5647a9349,9351 > Lotta/M > Lotte/M > Lotti/M -5648a9247 +5648a9353 > Lotty/M -5654a9254 +5652c9357 +< Louis +--- +> Louis/M +5654a9360 > Louisette/M -5659a9260 +5659c9365,9366 +< Lourdes +--- +> Lourdes/M > Loutitia/M -5663a9265 +5663c9370,9371 +< Lovelace +--- +> Lovelace/M > Lovell -5668a9271,9272 +5665c9373 +< Lowell +--- +> Lowell/M +5668a9377,9378 > Lowrance/M > Loy/M -5670a9275 +5671c9381,9382 +< Loyola +--- > Loydie/M -5681c9286,9287 +> Loyola/M +5678,5681c9389,9394 +< Lubavitcher +< Lubbock +< Lubumbashi < Lucas --- +> Lubavitcher/M +> Lubbock/M +> Lubumbashi/M > Luca/SM > Lucais/M -5683c9289,9291 +> Lucas/M +5683,5684c9396,9400 < Lucia/M +< Lucian --- > Lucho/M > Luci/MN > Lucia/MS -5684a9293 +> Lucian/M > Luciana/M -5685a9295 +5685a9402 > Lucie/M -5686a9297 +5686a9404 > Lucienne/M -5687a9299 +5687a9406 > Lucila/M -5688a9301 +5688a9408 > Lucilia/M -5689a9303 +5689a9410 > Lucina -5690a9305 +5690a9412 > Lucine/M -5691a9307 +5691a9414 > Lucita/M -5694a9311 +5695,5696c9418,9420 +< Lucretia +< Lucretius +--- > Lucky/M -5699a9317,9319 +> Lucretia/M +> Lucretius/M +5699c9423,9426 +< Ludhiana +--- +> Ludhiana/M > Ludovico/M > Ludovika/M > Ludvig/M -5701a9322 +5701a9429 > Luelle/M -5708a9330,9331 +5703c9431 +< Luftwaffe +--- +> Luftwaffe/M +5708a9437,9438 > Luise/M > Lukas/M -5710a9334 +5711c9441,9442 +< Lully +--- > Lulita/M -5717a9342,9343 +> Lully/M +5716c9447 +< Lupercalia +--- +> Lupercalia/M +5717a9449,9450 > Lura/M > Lurette/M -5718a9345,9348 +5718a9452,9455 > Lurleen/M > Lurlene/M > Lurline/M > Lusa/M -5720a9351 +5720a9458 > Lutero/M -5731a9363 +5731c9469,9470 +< Lvov +--- +> Lvov/M > Ly/MY -5735a9368 +5734,5736c9473,9476 +< Lycra +< Lycurgus +< Lydia +--- +> Lycra/M +> Lycurgus/M > Lyda/M -5737a9371,9372 +> Lydia/M +5738c9478,9480 +< Lyell +--- > Lydie/M > Lydon/M -5742a9378 +> Lyell/M +5740c9482 +< Lyly +--- +> Lyly/M +5743c9485,9486 +< Lynch +--- > Lyn/M -5744a9381,9383 +> Lynch/M +5744a9488,9490 > Lynde/M > Lyndel/M > Lyndell/M -5745a9385,9391 +5745a9492,9498 > Lyndsay/M > Lyndsey/M > Lyndsie/M @@ -5637,158 +10307,336 @@ > Lynea/M > Lynelle/M > Lynett/M -5747a9394 +5747c9500,9501 +< Lynn +--- +> Lynn/M > Lynna/M -5748a9396,9400 +5748a9503,9507 > Lynnea/M > Lynnell/M > Lynnelle/M > Lynnet/M > Lynnett/M -5749a9402 +5749a9509 > Lynsey/M -5754a9408 -> Lyssa/M -5768c9422 -< MHz +5750a9511 +> Lyons/M +5752c9513 +< Lysenko --- -> MHz/M -5789a9444 +> Lysenko/M +5754a9516 +> Lyssa/M +5778a9541 +> MOOC +5786c9549 +< MTV +--- +> MTV/M +5789a9553 > Mab -5790a9446 +5790a9555 > Mabelle/M -5818a9475 +5793c9558 +< MacArthur +--- +> MacArthur/M +5795c9560 +< MacDonald +--- +> MacDonald/M +5798,5799c9563,9564 +< Macaulay +< Macbeth +--- +> Macaulay/M +> Macbeth/M +5802c9567 +< Mace +--- +> Mace/M +5806c9571 +< Mach +--- +> Mach/M +5808c9573 +< Machiavellian +--- +> Machiavellian/M +5814,5816c9579,9581 +< Mackinaw +< Macmillan +< Macon +--- +> Mackinaw/M +> Macmillan/M +> Macon/M +5818a9584 > Mada/M -5820a9478,9480 +5820a9587,9589 > Madalena/M > Madalyn/M > Maddalena/M -5821a9482,9483 +5821a9591,9592 > Maddi/M > Maddie/M -5822a9485 +5822a9594 > Maddy/M -5823a9487,9488 +5823a9596,9597 > Madel/M > Madelaine/M -5824a9490,9493 +5824a9599,9602 > Madelena/M > Madelene/M > Madelin/M > Madelina/M -5825a9495,9497 +5825a9604,9606 > Madella/M > Madelle/M > Madelon/M -5828a9501,9502 +5828a9610,9611 > Madlen/M > Madlin/M -5832a9507 +5832a9616 > Mady/M -5833a9509 +5833a9618 > Maegan/M -5836a9513,9516 +5836,5837c9621,9626 +< Mafioso +< Magdalena +--- +> Mafioso/M > Mag/M > Magda/M > Magdaia/M > Magdalen -5840a9521,9522 +> Magdalena/M +5840c9629,9631 +< Magellanic +--- +> Magellanic/M > Maggee/M > Maggi/M -5841a9524 +5841a9633 > Maggy/M -5845a9529 +5845,5846c9637,9639 +< Magnitogorsk +< Magog +--- +> Magnitogorsk/M > Magnum -5852a9537,9538 +> Magog/M +5848c9641 +< Magritte +--- +> Magritte/M +5852a9646,9647 > Mahala/M > Mahalia/M -5860a9547,9548 +5857c9652 +< Mahdi +--- +> Mahdi/M +5860c9655,9657 +< Mahler +--- +> Mahler/M > Mahmoud/M > Mahmud/M -5862a9551,9552 +5862a9660,9661 > Maia/M > Maible/M -5863a9554,9555 +5863a9663,9664 > Maiga/M > Maighdiln/M -5870a9563,9565 +5865,5866c9666,9667 +< Mailer +< Maillol +--- +> Mailer/M +> Maillol/M +5868c9669 +< Maimonides +--- +> Maimonides/M +5870a9672,9674 > Mair/M > Maire/M > Maisey/M -5871a9567,9568 +5871a9676,9677 > Maison/M > Maitilde/M -5873a9571 +5873a9680 > Maje/M -5879a9578,9579 +5875c9682 +< Major +--- +> Major/M +5877c9684 +< Majuro +--- +> Majuro/M +5879c9686,9688 +< Maker +--- +> Maker/M > Mal > Mala/M -5885a9586 +5882,5885c9691,9695 +< Malacca +< Malachi +< Malagasy +< Malamud +--- +> Malacca/M +> Malachi/M +> Malagasy/M +> Malamud/M > Malanie/M -5894a9596 +5895c9705,9706 +< Malcolm +--- > Malchy/M -5900a9603 +> Malcolm/M +5901c9712,9714 +< Mali +--- > Malena/M -5901a9605 +> Mali/M > Malia/M -5903a9608 +5903a9717 > Malina/M -5904a9610 +5905,5906c9719,9724 +< Malinowski +< Mallarme +--- > Malinde/M -5905a9612,9613 +> Malinowski/M > Malissa/M > Malissia/M -5906a9615 +> Mallarme/M > Mallissa/M -5907a9617 +5907a9726 > Mallorie/M -5909a9620 +5909a9729 > Malorie/M -5916a9628,9632 +5912c9732 +< Malraux +--- +> Malraux/M +5917,5918c9737,9743 +< Mameluke +< Mamet +--- > Malva/M > Malvin/M > Malvina/M > Malynda/M > Mame/M -5932a9649 +> Mameluke/M +> Mamet/M +5925c9750 +< Manasseh +--- +> Manasseh/M +5930c9755 +< Manchurian +--- +> Manchurian/M +5932a9758 > Manda/M -5934a9652 +5935,5937c9761,9766 +< Mandela +< Mandelbrot +< Mandingo +--- > Mandel/M -5936a9655,9656 +> Mandela/M +> Mandelbrot/M > Mandi/M > Mandie/M -5938a9659 +> Mandingo/M +5938a9768 > Mandriva/M -5950a9672,9676 +5940c9770 +< Manet +--- +> Manet/M +5943,5944c9773,9774 +< Mani +< Manichean +--- +> Mani/M +> Manichean/M +5949c9779 +< Mann/G +--- +> Mann/GM +5951c9781,9787 +< Mansfield +--- > Mannie/M +> Manning/M > Manny/M > Mano/M > Manolo/M > Manon/M -5957a9684 +> Mansfield/M +5953c9789 +< Mantegna +--- +> Mantegna/M +5957a9794 > Manya/M -5964c9691 +5964c9801 < Mar/SM --- > Mar/SMN -5965a9693 +5966,5967c9803,9805 +< Maracaibo +< Marat +--- > Marabel/M -5973a9702,9703 +> Maracaibo/M +> Marat/M +5971,5972c9809,9810 +< Marc +< Marceau +--- +> Marc/M +> Marceau/M +5973a9812,9813 > Marcela/M > Marcelia/M -5975a9706,9710 +5975a9816,9820 > Marcelle/M > Marcellina/M > Marcelline/M > Marcello/M > Marcellus -5977a9713,9714 +5977a9823,9824 > Marchall/M > Marchelle/M -5981a9719,9720 +5980c9827 +< Marciano +--- +> Marciano/M +5981a9829,9830 > Marcile/M > Marcille/M -5987a9727,9733 +5983c9832 +< Marconi +--- +> Marconi/M +5985c9834 +< Marcuse +--- +> Marcuse/M +5988,5989c9837,9851 +< Margaret +< Margarita +--- > Mareah/M > Maren/M > Marena/M @@ -5796,46 +10644,54 @@ > Marga/M > Margalit/M > Margalo/M -5988a9735,9740 +> Margaret/M > Margareta/M > Margarete/M > Margaretha/M > Margarethe/M > Margaretta/M > Margarette/M -5990a9743 +> Margarita/M +5990a9853 > Margaux -5991a9745 +5991a9855 > Margeaux/M -5992a9747,9749 +5992a9857,9859 > Marget/M > Margette/M > Margi/M -5993a9751 +5993a9861 > Margit/M -5994a9753 +5994a9863 > Margot/M -5997a9757 +5997a9867 > Margy/M -5999a9760 +6000c9870,9871 +< Marian +--- > Mariam/M -6001a9763,9764 +> Marian/M +6002c9873,9876 +< Marianne +--- +> Marianas/M > Mariann/M > Marianna/M -6004a9768,9770 +> Marianne/M +6004a9879,9881 > Maribelle/M > Maribeth/M > Marice/M -6005a9772 +6005a9883 > Maridel/M -6006a9774,9779 +6006a9885,9890 > Marieann/M > Mariejeanne/M > Mariel/M > Mariele/M > Marielle/M > Mariellen/M -6007a9781,9788 +6007a9892,9899 > Mariette/M > Marigold/M > Marijn/M @@ -5844,225 +10700,410 @@ > Marilee/M > Marilin/M > Marillin/M -6011a9793 +6009c9901 +< Marin +--- +> Marin/M +6011a9904 > Marinna/M -6013a9796 +6013a9907,9908 > Mariquilla/M -6014a9798 +> Maris/M +6014a9910 > Mariska/M -6016a9801 +6017c9913,9915 +< Maritain +--- > Marita/M -6017a9803 +> Maritain/M > Maritsa -6020a9807,9812 +6020c9918,9924 +< Marius +--- +> Marius/M > Mariya/M > Marj/M > Marja/M > Marje/M > Marji/M > Marjie/M -6022a9815 +6022a9927 > Marjy/M -6024a9818 +6025,6026c9930,9935 +< Markham +< Markov +--- > Marketa/M -6025a9820 -> Markos -6026a9822 +> Markham/M +> Markos/M +> Markov/M +> Marks/M > Markus/M -6027a9824 +6027a9937 > Marlane/M -6029a9827,9830 +6029c9939,9943 +< Marlborough +--- +> Marlborough/M > Marleah/M > Marlee/M > Marleen/M > Marlena/M -6031a9833 +6032c9946,9949 +< Marlin +--- > Marlie/M -6032a9835,9836 +> Marlin/M > Marline/M > Marlo/M -6033a9838 +6034c9951,9954 +< Marlowe +--- > Marlow/M -6034a9840,9841 +> Marlowe/M > Marlyn/M > Marmaduke/M -6035a9843 +6036,6037c9956,9962 +< Marne +< Maronite +--- > Marna/M -6036a9845,9848 +> Marne/M > Marney/M > Marni/M > Marnia/M > Marnie/M -6044a9857 +> Maronite/M +6040c9965 +< Marquette +--- +> Marquette/M +6042c9967 +< Marquis +--- +> Marquis/M +6044a9970 > Marrilee/M -6045a9859,9860 +6045a9972,9973 > Marris/M > Marrissa/M -6051a9867 +6049a9978 +> Marseilles/M +6051a9981 > Marshal/M -6052a9869,9870 +6052a9983,9984 > Marsiella/M > Mart/MN -6053a9872 +6054,6056c9986,9995 +< Martel +< Martha +< Martial +--- > Martainn/M -6054a9874,9876 +> Martel/M > Martelle/M > Marten/M > Martguerita/M -6055a9878,9880 +> Martha/M > Marthe/M > Marthena/M > Marti/M -6057a9883,9884 +> Martial/M +6058c9997,9999 +< Martin +--- > Martica/M > Martie/M -6061a9889,9890 +> Martin/M +6061a10003,10004 > Martino/M > Martita/M -6062a9892,9894 +6062a10006,10008 > Martyn/M > Martynne/M > Marv/MN -6063a9896 +6063a10010 > Marve/M -6064a9898 +6065c10012,10014 +< Marvin +--- > Marven/M -6065a9900 +> Marvin/M > Marwin/M -6070a9906 +6070a10020 > Marya/M -6071a9908 +6071a10022 > Maryanna/M -6072a9910,9911 +6072a10024,10025 > Marybelle/M > Marybeth/M -6073a9913,9915 +6073a10027,10029 > Maryjane/M > Maryjo/M > Maryl/M -6074a9917,9919 +6074a10031,10034 +> Marylander/M > Marylee/M > Marylin/M > Marylinda/M -6075a9921,9924 +6075a10036,10039 > Marylynne/M > Maryrose/M > Marys > Marysa/M -6082a9932 +6078,6080c10042,10044 +< Masaryk +< Mascagni +< Masefield +--- +> Masaryk/M +> Mascagni/M +> Masefield/M +6082a10047 > Masha/M -6091a9942,9943 +6085c10050 +< Masonic +--- +> Masonic/M +6088,6091c10053,10058 +< Massachusetts +< Massasoit +< Massenet +< Massey +--- +> Massachusetts/M +> Massasoit/M +> Massenet/M +> Massey/M > Massimiliano/M > Massimo/M -6094c9946,9949 +6092a10060 +> Masters/M +6094c10062,10066 < Mather --- > Mata/M > Matelda/M > Mateo/M > Mathe/MR -6096a9952 +> Mather/M +6095a10068 +> Mathews/M +6097,6101c10070,10079 +< Mathias +< Mathis +< Matilda +< Matisse +< Matt +--- > Mathian/M -6097a9954,9955 +> Mathias/M > Mathilda/M > Mathilde/M -6098a9957 +> Mathis/M > Matias/M -6099a9959 +> Matilda/M > Matilde/M -6102a9963 +> Matisse/M +> Matt/M +6102a10081 > Matteo/M -6103a9965,9966 +6103a10083,10084 > Matthaeus/M > Mattheus/M -6105a9969,9973 +6105c10086,10092 +< Matthias +--- +> Matthews/M +> Matthias/M > Matthieu/M > Matthiew/M > Matthus/M > Matti/M > Mattias/M -6106a9975 +6106a10094 > Matty/M -6108a9978 +6109c10097,10098 +< Maugham +--- > Maudie/M -6112a9983 +> Maugham/M +6111c10100 +< Maupassant +--- +> Maupassant/M +6112a10102 > Maure/M -6113a9985,9986 +6114,6115c10104,10107 +< Mauriac +< Maurice +--- > Maureene/M > Maurene/M -6116a9990 +> Mauriac/M +> Maurice/M +6116a10109 > Maurie/M -6117a9992,9993 +6117a10111,10112 > Maurise/M > Maurita/M -6121a9998,10000 +6119c10114 +< Mauritanian/MS +--- +> Mauritanian/SM +6121a10117,10119 > Maurits/M > Maurizia/M > Maurizio/M -6123a10003 +6123c10121,10122 +< Maurois +--- +> Maurois/M > Maury -6126a10007 +6125c10124 +< Mauser +--- +> Mauser/M +6126a10126 > Mavra/M -6127a10009,10011 +6128c10128,10134 +< Maximilian +--- > Maxi/M > Maxie/M > Maxim -6128a10013,10015 +> Maximilian/M > Maximilianus/M > Maximilien/M > Maximo/M -6130a10018 +6130c10136,10137 +< Maxwell +--- +> Maxwell/M > Maxy/M -6133a10022,10023 +6134c10141,10144 +< Mayfair +--- > Maybelle/M > Maye/M -6136a10027,10028 +> Mayer/M +> Mayfair/M +6137c10147,10150 +< Mayo +--- > Mayne/M > Maynord/M -6137a10030 +> Mayo/M > Mayor/M -6203a10097 +6139a10153 +> Mays/M +6142c10156 +< Mazarin +--- +> Mazarin/M +6144c10158 +< Mazda +--- +> Mazda/M +6154c10168 +< McCarthy +--- +> McCarthy/M +6159c10173 +< McClellan +--- +> McClellan/M +6162,6163c10176,10177 +< McCormick +< McCoy +--- +> McCormick/M +> McCoy/M +6200,6202c10214,10216 +< Mead +< Meade +< Meadows +--- +> Mead/M +> Meade/M +> Meadows/M +6203a10218 > Meaghan/M -6204a10099 +6204a10220 > Meara/M -6205a10101 +6206c10222,10223 +< Medan +--- > Mechelle/M -6216c10112 +> Medan/M +6208,6209c10225,10226 +< Medellin +< Media +--- +> Medellin/M +> Media/M +6212,6214c10229,10231 +< Medici +< Medina +< Mediterranean/SM +--- +> Medici/M +> Medina/M +> Mediterranean/MS +6216c10233 < Meg/M --- > Meg/MN -6217a10114,10117 +6217a10235,10238 > Megen/M > Meggi/M > Meggie/M > Meggy/M -6218a10119,10121 +6218a10240,10242 > Meghann/M > Mehetabel/M > Mei/MR -6225c10128,10130 +6222c10246 +< Meir +--- +> Meir/M +6225c10249,10251 < Mel/M --- > Mel/MY > Mela/M > Melamie/M -6227a10133 +6227c10253,10254 +< Melanesian +--- +> Melanesian/M > Melania/M -6228a10135,10136 +6229c10256,10258 +< Melba +--- > Melantha/M > Melany/M -6233a10142,10145 +> Melba/M +6231,6232c10260,10261 +< Melchior +< Melchizedek +--- +> Melchior/M +> Melchizedek/M +6233a10263,10266 > Melesa/M > Melessa/M > Melicent/M > Melina/M -6234a10147 +6234a10268 > Melinde/M -6236a10150,10152 +6236a10271,10273 > Melisandra/M > Melisenda/M > Melisent/M -6237a10154,10162 +6238c10275,10288 +< Mellon +--- > Melisse/M > Melita/M > Melitta/M @@ -6072,31 +11113,77 @@ > Mellie/M > Mellisa/M > Mellisent/M -6238a10164,10167 +> Mellon/M > Melloney/M > Melly/M > Melodee/M > Melodie/M -6239a10169,10171 +6239a10290,10292 > Melonie/M > Melony/M > Melosa/M -6244a10177 +6245c10298,10299 +< Memling +--- > Melvyn/M -6247a10181 +> Memling/M +6247,6249c10301,10304 +< Menander +< Mencius +< Mencken +--- +> Menander/M > Menard/M -6254a10189 +> Mencius/M +> Mencken/M +6252,6253c10307,10308 +< Mendelian +< Mendelssohn +--- +> Mendelian/M +> Mendelssohn/M +6254a10310 > Mendie/M -6256a10192 +6256c10312,10313 +< Mendoza +--- +> Mendoza/M > Mendy/M -6277a10214 +6259c10316 +< Menes +--- +> Menes/M +6267,6268c10324,10325 +< Menotti +< Mensa +--- +> Menotti/M +> Mensa/M +6271,6272c10328,10329 +< Menzies +< Mephistopheles +--- +> Menzies/M +> Mephistopheles/M +6275,6276c10332,10333 +< Mercator +< Mercedes +--- +> Mercator/M +> Mercedes/M +6278c10335,10337 +< Mercia +--- > Merci/M -6278a10216 +> Mercia/M > Mercie/M -6281a10220,10221 +6282,6283c10341,10356 +< Meredith +< Merino +--- > Mercy/M > Meredeth/M -6282a10223,10230 +> Meredith/M > Meredithe/M > Merell/M > Meridel/M @@ -6105,361 +11192,770 @@ > Merilee/M > Merill/M > Merilyn/M -6283a10232,10235 +> Merino/M > Meris > Merissa/M > Merl/M > Merla/M -6285a10238,10239 +6286,6287c10359,10366 +< Merlot +< Merovingian +--- > Merlina/M > Merline/M -6286a10241,10242 +> Merlot/M > Merna/M > Merola/M -6287a10244,10245 +> Merovingian/M > Merralee/M > Merrel/M -6289a10248,10253 +6289a10369,10374 > Merridie/M > Merrie/M > Merrielle/M > Merrile/M > Merrilee/M > Merrili/M -6290a10255 +6290a10376 > Merrily/M -6292a10258,10259 +6292a10379,10380 > Merry/M > Mersey -6294a10262 +6294c10382,10383 +< Merton +--- +> Merton/M > Merv/M -6295a10264,10266 +6296c10385,10388 +< Mesa +--- > Merwin/M > Merwyn/M > Meryl/M -6329a10301,10302 +> Mesa/M +6300c10392 +< Mesolithic +--- +> Mesolithic/M +6305c10397 +< Messiaen +--- +> Messiaen/M +6314,6315c10406,10407 +< Methuselah +< Metternich +--- +> Methuselah/M +> Metternich/M +6318c10410 +< Mexicali +--- +> Mexicali/M +6322c10414,10415 +< Meyerbeer +--- +> Meyerbeer/M +> Meyers/M +6326c10419 +< MiG +--- +> MiG/M +6330,6333c10423,10432 +< Micah +< Micawber +< Mich +< Michael +--- > Mic > Micaela/M -6333a10307,10310 +> Micah/M +> Micawber/M +> Mich/M +> Michael/M > Michaela/M > Michaelina/M > Michaeline/M > Michaella/M -6334a10312,10314 +6334a10434,10436 > Michail/M > Michal/M > Michale/M -6335a10316 +6335a10438 > Micheil/M -6339a10321,10323 +6339a10443,10445 > Michelina/M > Micheline/M > Michell/M -6347a10332 +6342c10448 +< Michelson +--- +> Michelson/M +6344c10450 +< Michigander/SM +--- +> Michigander/MS +6347a10454 > Micki/M -6357a10343 +6352c10459 +< Micronesian +--- +> Micronesian/M +6355c10462 +< Middleton +--- +> Middleton/M +6358c10465,10466 +< Midland/S +--- > Midge/M -6361a10348,10349 +> Midland/MS +6361c10469,10471 +< Midwestern/R +--- +> Midwestern/MR > Mignon/M > Mignonne/M -6362a10351,10354 +6362a10473,10476 > Miguela/M > Miguelita/M > Mikael/M > Mikaela/M -6363a10356,10357 +6363a10478,10479 > Mikel/M > Mikey/M -6364a10359,10360 +6364a10481,10482 > Mikkel/M > Mikol/M -6365a10362 +6365a10484 > Mil/MY -6370c10367,10369 +6370c10489,10492 < Miles --- > Mildrid/M > Mile/SM +> Miles/M > Milena/M -6371a10371,10373 +6371a10494,10496 > Milicent/M > Milissent/M > Milka/M -6376a10379 +6373c10498 +< Mill/SR +--- +> Mill/SMR +6375,6376c10500,10503 +< Millay +< Millet +--- +> Millay/M +> Miller/M +> Millet/M > Milli/M -6379a10383,10384 +6379,6380c10506,10510 +< Millikan +< Milne +--- +> Millikan/M > Millisent/M > Milly/M -6383a10389 +> Mills/M +> Milne/M +6384,6386c10514,10518 +< Miltiades +< Milton +< Miltonic +--- > Milt/M -6384a10391 +> Miltiades/M > Miltie/M -6387a10395 +> Milton/M +> Miltonic/M +6387a10520 > Milty/M -6388a10397 +6388a10522 > Milzie/M -6391c10400,10401 +6391c10525,10526 < Min/M --- > Min/MR > Mina/M -6392a10403 +6393c10528,10529 +< Mindanao +--- > Minda/M -6395a10407 +> Mindanao/M +6395a10532 > Miner/M -6396a10409,10410 +6396a10534,10536 > Minetta/M > Minette/M -6398a10413,10415 +> Ming/M +6398a10539,10541 > Minna > Minnaminnie/M > Minne/M -6402a10420 +6402a10546 > Minni/M -6403a10422,10423 +6403a10548,10549 > Minnnie/M > Minny/M -6405a10426 +6405a10552 > Minor/M -6410a10432 +6410a10558 > Minta/M -6414a10437 +6412c10560 +< Minuit +--- +> Minuit/M +6414a10563 > Miquela/M -6417a10441,10443 +6417c10566,10569 +< Mirabeau +--- +> Mirabeau/M > Mirabel/M > Mirabella/M > Mirabelle/M -6418a10445 +6419c10571,10576 +< Miranda +--- > Miran/M -6419a10447,10450 +> Miranda/M > Mireielle/M > Mireille/M > Mirella/M > Mirelle/M -6421a10453,10454 +6422c10579,10581 +< Miro +--- > Mirilla/M > Mirna/M -6423a10457,10458 +> Miro/M +6424c10583,10585 +< Miskito +--- > Mischa/M > Misha/M -6425a10461 +> Miskito/M +6426c10587,10588 +< Mississauga +--- > Missie/M -6433a10470 +> Mississauga/M +6432c10594 +< Mistassini +--- +> Mistassini/M +6433a10596 > Misti -6436a10474 +6436a10600 > Mitchael/M -6457a10496,10498 +6438c10602 +< Mitchell +--- +> Mitchell/M +6446,6447c10610,10611 +< Mixtec +< Mizar +--- +> Mixtec/M +> Mizar/M +6458,6459c10622,10627 +< Modesto +< Modigliani +--- > Modesta/M > Modestia/M > Modestine/M -6458a10500 +> Modesto/M > Modesty/M -6469a10512,10513 +> Modigliani/M +6462c10630 +< Mogadishu +--- +> Mogadishu/M +6469c10637,10639 +< Mohammedanism/MS +--- +> Mohammedanism/SM > Mohandas/M > Mohandis/M -6475a10520 -> Moina/M -6477c10522 +6476,6477c10646,10649 +< Moira < Moises --- +> Moina/M +> Moira/M > Moise/MS -6478a10524 +> Moises/M +6478a10651 > Moishe/M -6486a10533,10534 +6485c10658 +< Molina +--- +> Molina/M +6486a10660,10661 > Mollee/M > Molli/M -6494a10543 +6493c10668 +< Moluccas +--- +> Moluccas/M +6494a10670 > Mommy/M -6498a10548 +6498a10675 > Monah/M -6510a10561 +6501c10678 +< Mondrian +--- +> Mondrian/M +6504c10681 +< Monet +--- +> Monet/M +6510a10688 > Monika/M -6514a10566 +6513,6514c10691,10693 +< Monmouth +< Monongahela +--- +> Monmouth/M +> Monongahela/M > Monro/M -6535a10588 +6519,6521c10698,10700 +< Mont +< Montague +< Montaigne +--- +> Mont/M +> Montague/M +> Montaigne/M +6524c10703 +< Montcalm +--- +> Montcalm/M +6526c10705 +< Montenegrin +--- +> Montenegrin/M +6528,6531c10707,10710 +< Monterrey +< Montesquieu +< Montessori +< Monteverdi +--- +> Monterrey/M +> Montesquieu/M +> Montessori/M +> Monteverdi/M +6534c10713 +< Montgolfier +--- +> Montgolfier/M +6535a10715 > Monti/M -6549a10603 +6539c10719 +< Montrachet +--- +> Montrachet/M +6543,6544c10723,10724 +< Moody +< Moog +--- +> Moody/M +> Moog/M +6548c10728 +< Moore +--- +> Moore/M +6549a10730 > Mora/M -6553a10608,10609 +6552,6555c10733,10741 +< Moravia +< Moravian +< Mordred +< More +--- +> Moravia/M +> Moravian/M > Mord/M > Mordecai -6554a10611 +> Mordred/M > Mordy/M -6555a10613,10614 +> More/M > Moreen/M > Morena/M -6556a10616 +6556a10743 > Morey/M -6557a10618,10623 +6557a10745,10750 > Morgana/M > Morganica/M > Morganne/M > Morgen/M > Morgun/M > Moria/M -6558a10625 +6558a10752 > Morie/M -6560a10628 +6560a10755 > Morissa/M -6561a10630,10631 +6562c10757,10760 +< Morley +--- > Moritz/M > Morlee/M -6562a10633 +> Morley/M > Morly/M -6564a10636 +6565c10763,10764 +< Moro +--- > Morna/M -6570a10643 +> Moro/M +6568c10767 +< Moroni +--- +> Moroni/M +6571,6572c10770,10772 +< Morris +< Morrison +--- > Morrie/M -6573a10647 +> Morris/M +> Morrison/M +6573a10774 > Morry/M -6575c10649,10651 +6575,6576c10776,10779 < Mort/M +< Mortimer --- > Mort/MN > Morten/M > Mortie/M -6577a10654 +> Mortimer/M +6577a10781 > Morty/M -6579a10657 +6580c10784,10785 +< Moseley +--- > Mose/SM -6582a10661 +> Moseley/M +6582a10788 > Moshe/M -6596a10676,10677 +6585c10791 +< Mosul +--- +> Mosul/M +6589,6591c10795,10797 +< Mott +< Mount +< Mountbatten +--- +> Mott/M +> Mount/M +> Mountbatten/M +6593c10799 +< Moussorgsky +--- +> Moussorgsky/M +6596a10803,10804 > Moyna/M > Moyra/M -6600c10681,10683 +6600c10808,10810 < Mozilla/M --- > Mozelle/M > Mozes/M > Mozillian/SM -6608a10692,10694 +6608a10819,10821 > Muffin/M > Mufi/M > Mufinella/M -6613a10700 +6611c10824 +< Muhammadan/SM +--- +> Muhammadan/MS +6613c10826,10827 +< Muir +--- +> Muir/M > Muire/M -6628a10716 +6620c10834 +< Mullins +--- +> Mullins/M +6622c10836 +< Multan +--- +> Multan/M +6625,6626c10839,10840 +< Mumford +< Munch +--- +> Mumford/M +> Munch/M +6628a10843 > Munmro/M -6630a10719 +6630,6631c10845,10847 +< Munro +< Munster +--- +> Munro/M > Munroe/M -6637a10727,10729 +> Munster/M +6634c10850 +< Murat +--- +> Murat/M +6637c10853,10856 +< Murdoch +--- +> Murdoch/M > Murdock/M > Mureil/M > Murial/M -6638a10731 +6639c10858,10859 +< Murillo +--- > Murielle/M -6645a10739,10740 +> Murillo/M +6641,6642c10861,10862 +< Murmansk +< Murphy +--- +> Murmansk/M +> Murphy/M +6645c10865,10867 +< Murrumbidgee +--- +> Murrumbidgee/M > Murry/M > Murvyn/M -6657a10753 +6655c10877 +< Mussorgsky +--- +> Mussorgsky/M +6657c10879,10880 +< Muzak +--- +> Muzak/M > My/M -6659a10756,10757 +6659a10883,10884 > Myca/M > Mycah/M -6662c10760,10761 +6661,6662c10886,10889 +< Mycenaean < Myers --- +> Mycenaean/M > Mychal/M > Myer/SM -6664a10764 +> Myers/M +6664a10892 > Mylo/M -6665a10766,10767 +6665a10894,10895 > Myrah/M > Myranda/M -6666a10769,10772 +6666a10897,10900 > Myriam/M > Myrilla/M > Myrle/M > Myrlene/M -6668a10775,10778 +6668c10902,10906 +< Myron +--- +> Myron/M > Myrta/M > Myrtia/M > Myrtice/M > Myrtie/M -6669a10780,10781 +6670c10908,10911 +< Mysore +--- > Myrvyn/M > Myrwyn/M -6670a10783 +> Mysore/M > MySpell/M -6720a10834,10836 +6674,6675c10915,10916 +< NAACP +< NAFTA +--- +> NAACP/M +> NAFTA/M +6681,6682c10922,10923 +< NBA +< NBC +--- +> NBA/M +> NBC/M +6685c10926 +< NCAA +--- +> NCAA/M +6692c10933 +< NFL +--- +> NFL/M +6694c10935 +< NHL +--- +> NHL/M +6703c10944 +< NPR +--- +> NPR/M +6707a10949 +> NSA/M +6720,6721c10962,10966 +< Nabokov +< Nader +--- +> Nabokov/M > Nada/M > Nadean/M > Nadeen/M -6723a10840,10842 +> Nader/M +6723a10969,10971 > Nadiya/M > Nady/M > Nadya/M -6733a10853 +6725,6727c10973,10975 +< Nagoya +< Nagpur +< Nagy +--- +> Nagoya/M +> Nagpur/M +> Nagy/M +6729c10977 +< Nahum +--- +> Nahum/M +6733a10982 > Nalani/M -6738a10859 +6739,6741c10988,10998 +< Nanak +< Nanchang +< Nancy +--- > Nana/M -6739a10861,10864 +> Nanak/M > Nananne/M > Nance/M > Nancee/M > Nancey/M -6740a10866,10867 +> Nanchang/M > Nanci/M > Nancie/M -6741a10869 +> Nancy/M > Nanete/M -6742a10871,10873 +6742a11000,11002 > Nani/M > Nanice/M > Nanine/M -6744a10876,10877 +6744a11005,11006 > Nannette/M > Nanni/M -6745a10879,10880 +6745a11008,11009 > Nanny/M > Nanon/M -6749a10885 +6747c11011 +< Nansen +--- +> Nansen/M +6749a11014 > Naoma/M -6750a10887 +6750a11016 > Nap/M -6755a10893,10894 +6755c11021,11023 +< Napoleonic +--- +> Napoleonic/M > Nappie/M > Nappy/M -6756a10896 +6756a11025 > Nara -6757a10898,10899 +6757a11027,11028 > Nari/M > Nariko/M -6767a10910,10914 +6761,6763c11032,11034 +< Narragansett +< Nash +< Nashua +--- +> Narragansett/M +> Nash/M +> Nashua/M +6767a11039,11043 > Nata/M > Natal/M > Natala/M > Natale/M > Natalee/M -6769a10917,10920 +6769a11046,11049 > Natalina/M > Nataline/M > Natalya/M > Nataniel/M -6770a10922 +6771c11051,11052 +< Natchez +--- > Natassia/M -6772a10925,10926 +> Natchez/M +6773c11054,11059 +< Nathan/S +--- > Nathalia/M > Nathalie/M -6773a10928,10929 +> Nathan/SM +> Nathans/M > Nathanael > Nathanial/M -6774a10931 +6774a11061,11062 > Nathanil/M -6775a10933 +> Nation/M +6775a11064 > Natividad/M -6776a10935,10936 +6776a11066,11067 > Natka/M > Natty/M -6800a10961,10966 +6778c11069 +< Naugahyde +--- +> Naugahyde/M +6780c11071 +< Nautilus +--- +> Nautilus/M +6784c11075 +< Navarre +--- +> Navarre/M +6788,6790c11079,11081 +< Nazarene +< Nazareth +< Nazca +--- +> Nazarene/M +> Nazareth/M +> Nazca/M +6801,6802c11092,11099 +< Neanderthal/MS +< Neapolitan +--- > Neala/M > Neale/M > Neall/M > Nealon/M > Nealson/M > Nealy/M -6808a10975,10982 +> Neanderthal/SM +> Neapolitan/M +6807c11104 +< Nebuchadnezzar +--- +> Nebuchadnezzar/M +6809c11106,11114 +< Nefertiti +--- > Neda/M > Nedda/M > Neddie/M @@ -6468,7 +11964,14 @@ > Neel/M > Neely/M > Nefen/M -6818c10992,10997 +> Nefertiti/M +6814a11120 +> Negros/M +6816c11122 +< Nehemiah +--- +> Nehemiah/M +6818c11124,11129 < Neil/M --- > Neil/SM @@ -6477,18 +11980,31 @@ > Neill/M > Neilla/M > Neille/M -6819a10999,11000 +6819a11131,11132 > Nelia/M > Nelie/M -6820a11002,11003 +6820a11134,11135 > Nelle/M > Nelli/M -6822a11006 +6822a11138 > Nels/N -6834a11019,11020 +6824c11140 +< Nelson +--- +> Nelson/M +6827c11143 +< Neogene +--- +> Neogene/M +6834,6836c11150,11161 +< Nerf +< Nero +< Neruda +--- +> Nerf/M > Nerissa/M > Nerita/M -6835a11022,11028 +> Nero/M > Neron/M > Nert/M > Nerta/M @@ -6496,268 +12012,513 @@ > Nerti/M > Nertie/M > Nerty/M -6837a11031 +> Neruda/M +6838c11163,11169 +< Nesselrode +--- > Nessa/M -6838a11033,11037 +> Nesselrode/M > Nessi/M > Nessie/M > Nessy/M > Nesta/M > Nester/M -6844c11043,11044 +6841,6844c11172,11177 +< Nestorius +< Netherlander/MS +< Netherlands < Netscape/M --- +> Nestorius/M +> Netflix/M +> Netherlander/SM +> Netherlands/M > Netta/M > Netti/M -6845a11046,11047 +6845a11179,11180 > Nettle/M > Netty/M -6851a11054,11057 +6847,6848c11182,11183 +< Nev +< Neva +--- +> Nev/M +> Neva/M +6851a11187,11190 > Nevil/M > Nevile/M > Neville/M > Nevin/MS -6852a11059 +6852a11192 > Nevsa/M -6862a11070 +6857c11197 +< Newman +--- +> Newman/M +6862c11202,11203 +< Nexis +--- +> Nexis/M > Neysa/M -6866a11075,11076 +6865c11206 +< Ni +--- +> Ni/M +6866a11208,11209 > Nial/M > Niall/M -6875a11086 +6868,6869c11211,11212 +< Nibelung +< Nicaea +--- +> Nibelung/M +> Nicaea/M +6874c11217 +< Nicene +--- +> Nicene/M +6876c11219,11221 +< Nicholas +--- > Nichol/SM -6878c11089 +> Nichols/M +> Nicholas/M +6878,6879c11223,11224 < Nichols +< Nicholson --- > Nicholle/M -6881a11093,11095 +> Nicholson/M +6882,6883c11227,11237 +< Nicklaus +< Nickolas +--- > Nickey/M > Nicki/M > Nickie/M -6883c11097,11102 -< Nickolas ---- +> Nicklaus/M > Nicko/M > Nickola/SM > Nickolai/M +> Nickolas/M > Nickolaus/M > Nicky/M > Nico/M -6885a11105 +6885c11239,11240 +< Nicodemus +--- +> Nicodemus/M > Nicol/M -6886a11107 +6886a11242,11243 > Nicolai/S -6887a11109,11114 +> Nicolas/M +6887a11245,11250 > Nicolea/M > Nicolette/M > Nicoli/SM > Nicolina/M > Nicoline/M > Nicolle/M -6890c11117,11118 +6890,6891c11253,11256 < Nielsen +< Nietzsche --- > Niel/SM > Niels/N -6899a11128 +> Nielsen/M +> Nietzsche/M +6899c11264,11265 +< Nijinsky +--- +> Nijinsky/M > Nikaniki/M -6900a11130 +6900a11267 > Niki/M -6903a11134,11136 +6902c11269 +< Nikkei +--- +> Nikkei/M +6903a11271,11273 > Nikkie/M > Niko/SM > Nikola/SM -6904a11138,11139 +6904a11275,11276 > Nikolaos/M > Nikolaus/M -6905a11141,11143 +6905a11278,11280 > Nikoletta/M > Nikolia/M > Nikolos/M -6907c11145,11147 +6907,6909c11282,11286 < Nile/M +< Nimitz +< Nimrod --- > Nil/SM > Nile/SM > Nilson/M -6910a11151,11152 +> Nimitz/M +> Nimrod/M +6910a11288,11289 > Ninetta/M > Ninette/M -6911a11154,11156 +6912,6913c11291,11295 +< Nintendo +< Niobe +--- > Ninnetta/M > Ninnette/M > Ninon/M -6919a11165 +> Nintendo/M +> Niobe/M +6917c11299 +< Nirvana +--- +> Nirvana/M +6919c11301,11302 +< Nisei +--- +> Nisei/M > Nissa/M -6920a11167,11169 +6920a11304,11306 > Nisse/M > Nissie/M > Nissy/M -6922a11172,11173 +6922a11309,11310 > Niven/M > Nixie -6926a11178 +6924c11312 +< Nkrumah +--- +> Nkrumah/M +6926a11315 > Noach/M -6927a11180,11183 +6928c11317,11321 +< Nobel +--- > Noak/M > Noam/M > Noami/M > Nobe/M -6929a11186 +> Nobel/M +6929a11323 > Nobie/M -6930a11188 +6930a11325 > Noby/M -6932a11191,11193 +6932a11328,11330 > Noelani/M > Noell/M > Noella/M -6933a11195,11196 +6933a11332,11333 > Noellyn/M > Noelyn/M -6938a11202,11207 +6939c11339,11346 +< Nome +--- > Nolana/M > Noland/M > Nolie/M > Noll/M > Nollie/M > Nolly/M -6939a11209 +> Nome/M > Nomi/M -6940a11211,11215 +6940a11348,11352 > Nonah/M > Noni/M > Nonie/M > Nonna/M > Nonnah/M -6942a11218 +6942a11355 > Norah/M -6944a11221,11222 +6944a11358,11359 > Norbie/M > Norby/M -6945a11224 +6945a11361 > Norean/M -6946a11226 +6946a11363 > Norene/M -6948a11229,11230 +6949c11366,11368 +< Norma +--- > Norina/M > Norine/M -6952a11235,11236 -> Normie/M -> Normy/M -6954c11238,11240 +> Norma/M +6953,6954c11372,11378 +< Norplant < Norris --- +> Normie/M +> Normy/M +> Norplant/M > Norri/MS > Norrie/M +> Norris/M > Norry/M -6973a11260 +6957c11381 +< Norsemen +--- +> Norsemen/M +6959c11383 +< Northampton +--- +> Northampton/M +6971c11395 +< Norwich +--- +> Norwich/M +6973,6974c11397,11399 +< Nostradamus +< Nottingham +--- +> Nostradamus/M > Notre -6979a11267 +> Nottingham/M +6979a11405 > Novelia/M -6985a11274 +6981c11407 +< Novgorod +--- +> Novgorod/M +6984c11410 +< Novokuznetsk +--- +> Novokuznetsk/M +6985a11412 > Nowell/M -7001a11291,11292 +6990,6992c11417,11419 +< Nubia +< Nubian +< Nukualofa +--- +> Nubia/M +> Nubian/M +> Nukualofa/M +6997,6998c11424,11425 +< Nuremberg +< Nureyev +--- +> Nuremberg/M +> Nureyev/M +7001a11429,11430 > Nydia/M > Nye/M -7002a11294 +7003,7014c11432,11444 +< O'Brien +< O'Casey +< O'Connell +< O'Connor +< O'Donnell +< O'Hara +< O'Higgins +< O'Keeffe +< O'Neil +< O'Neill +< O'Rourke +< O'Toole +--- > Nyssa/M -7042c11334 +> O'Brien/M +> O'Casey/M +> O'Connell/M +> O'Connor/M +> O'Donnell/M +> O'Hara/M +> O'Higgins/M +> O'Keeffe/M +> O'Neil/M +> O'Neill/M +> O'Rourke/M +> O'Toole/M +7025c11455 +< OK/SM +--- +> OK/SMDG +7039,7040c11469,11470 +< Oakley +< Oates +--- +> Oakley/M +> Oates/M +7042,7043c11472,11476 < Ob/M +< Obadiah --- > Ob/MD -7043a11336,11338 +> Obadiah/M > Obadias/M > Obed/M > Obediah/M -7046a11342,11344 +7044a11478 +> Obamacare +7046,7049c11480,11486 +< Oberon +< Occam +< Occident +< Occidental/SM +--- +> Oberon/M > Obidiah/M > Obie > Oby/M -7057a11356 +> Occam/M +> Occident/M +> Occidental/MS +7055c11492 +< Octavia +--- +> Octavia/M +7057a11495 > Octavius/M -7058a11358,11361 +7058a11497,11500 > Ode/RM > Odele/M > Odelia/M > Odelinda/M -7059a11363,11364 +7059a11502,11503 > Odella/M > Odelle/M -7062a11368,11373 +7062c11506,11512 +< Odets +--- +> Odets/M > Odetta/M > Odette/M > Odey/M > Odie/M > Odilia/M > Odille/M -7064a11376 +7064a11515 > Odo/M -7065a11378 +7065a11517 > Ody/M -7071a11385 +7068c11520 +< Oedipal +--- +> Oedipal/M +7072c11524,11525 +< Offenbach +--- > Ofella/M -7073a11388 +> Offenbach/M +7074c11527,11529 +< Ogbomosho +--- > Ofilia/M -7074a11390 +> Ogbomosho/M > Ogdan/M -7075a11392 +7075a11531 > Ogdon/M -7094a11412 +7077c11533 +< Oglethorpe +--- +> Oglethorpe/M +7084,7086c11540,11542 +< Okeechobee +< Okefenokee +< Okhotsk +--- +> Okeechobee/M +> Okefenokee/M +> Okhotsk/M +7091,7092c11547,11548 +< Oklahoman +< Oktoberfest +--- +> Oklahoman/M +> Oktoberfest/M +7094a11551 > Olag/M -7100a11419 +7097c11554 +< Oldenburg +--- +> Oldenburg/M +7100a11558 > Ole/MV -7102a11422,11423 +7102a11561,11562 > Olenka/M > Olenolin/M -7103a11425 +7103a11564 > Olia/M -7104a11427 +7104a11566 > Olimpia/M -7106a11430,11431 +7106a11569,11571 +> Oliver/M > Olivero/M > Olivette/M -7109c11434,11436 +7109c11574,11576 < Olivier --- > Olivie/MR > Oliviero/M > Oliy/M -7110a11438 +7111c11578,11579 +< Olmec +--- > Olly/M -7114a11443,11446 +> Olmec/M +7114a11583,11586 > Olva/M > Olvan/M > Olwen/M > Olympe/M -7118a11451 +7118c11590,11592 +< Olympic/S +--- +> Olympic/SM +> Olympics/M > Olympie/M -7125a11459 +7124c11598 +< Omayyad +--- +> Omayyad/M +7125a11600 > Omero/M -7128a11463 +7128c11603,11604 +< Onassis +--- +> Onassis/M > Ondrea/M -7132a11468,11470 +7130c11606 +< Onega +--- +> Onega/M +7132a11609,11611 > Onfre/M > Onfroi/M > Onida/M -7134a11473 +7134a11614 > Onofredo/M -7139a11479 +7139a11620 > Oona/M -7141a11482,11483 +7141a11623,11624 > Opalina/M > Opaline/M -7143a11486 +7142a11626 +> OpenOffice/M +7144c11628,11629 +< Ophiuchus +--- > Ophelie/M -7148a11492,11496 +> Ophiuchus/M +7148a11634,11638 > Oralee/M > Oralia/M > Oralie/M > Oralla/M > Oralle/M -7151a11500,11501 +7150c11640 +< Orange +--- +> Orange/M +7151a11642,11643 > Orazio/M > Orbadiah/M -7157a11508,11514 +7158,7160c11650,11660 +< Oreo +< Orestes +< Orient +--- > Orel > Orelee/M > Orelia/M @@ -6765,14 +12526,18 @@ > Orella/M > Orelle/M > Oren/M -7159a11517 +> Oreo/M +> Orestes/M > Oriana/M -7167a11526,11527 +> Orient/M +7167a11668,11669 > Orlan/M > Orland/M -7174c11534,11540 +7173,7174c11675,11682 +< Orphic < Orr/M --- +> Orphic/M > Orr/MN > Orran/M > Orren/M @@ -6780,348 +12545,920 @@ > Orsa/M > Orsola/M > Orson/M -7175a11542 +7175a11684 > Ortensia/M -7177a11545,11546 +7177a11687,11688 > Orton/M > Orv/M -7186a11556,11557 +7180,7181c11691,11693 +< Orwell +< Orwellian +--- +> Orwell/M +> Orwellian/M +> Os/M +7186c11698,11700 +< Osborne +--- +> Osborne/M > Osbourn/M > Osbourne/M -7194a11566,11568 +7188c11702 +< Osceola +--- +> Osceola/M +7190c11704 +< Oshawa +--- +> Oshawa/M +7194a11709,11711 > Osmond/M > Osmund/M > Ossie/M -7198a11573,11577 +7196c11713 +< Ostwald +--- +> Ostwald/M +7198a11716,11720 > Oswell/M > Otes > Otha/M > Othelia/M > Othella/M -7199a11579,11581 +7199a11722,11724 > Othilia/M > Othilie/M > Otho/M -7201a11584 +7202,7204c11727,11730 +< Otto +< Ottoman +< Ouagadougou +--- > Ottilie/M -7217a11601 +> Otto/M +> Ottoman/M +> Ouagadougou/M +7206,7207c11732,11734 +< Ovid +< Owen/S +--- +> Ovid/M +> Owen/SM +> Owens/M +7209c11736 +< Oxnard +--- +> Oxnard/M +7211c11738 +< Oxus +--- +> Oxus/M +7213c11740 +< Oz +--- +> Oz/M +7217a11745 > Ozzy/M -7264a11649,11651 +7226a11755 +> PCMCIA +7234a11764 +> PGP +7237c11767 +< PLO +--- +> PLO/M +7250c11780 +< PTA +--- +> PTA/M +7264a11795,11797 > Packston/M > Paco/M > Pacorro/M -7265a11653,11654 +7266c11799,11803 +< Paderewski +--- > Paddie/M > Paddy/M -7266a11656,11657 +> Paderewski/M > Padget/M > Padgett/M -7267a11659,11661 +7268,7269c11805,11809 +< Paganini +< Page +--- > Padraic/M > Padraig/M > Padriac/M -7272a11667 -> Pail/M -7288a11684 -> Palin/MS -7289a11686 -> Pall/M -7291c11688 -< Palmer +> Paganini/M +> Page/M +7271c11811 +< Pahlavi --- +> Pahlavi/M +7273c11813,11814 +< Paine +--- +> Pail/M +> Paine/M +7278c11819 +< Palembang +--- +> Palembang/M +7280,7281c11821,11822 +< Paleogene +< Paleolithic +--- +> Paleogene/M +> Paleolithic/M +7286,7287c11827,11828 +< Palestrina +< Paley +--- +> Palestrina/M +> Paley/M +7288a11830 +> Palin/MS +7290,7292c11832,11835 +< Palladio +< Palmer +< Palmerston +--- +> Pall/M +> Palladio/M > Palm/MR -7294a11692 +> Palmerston/M +7294a11838 > Paloma/M -7297a11696,11697 +7298,7299c11842,11848 +< Pamirs +< Pampers +--- > Pamelina/M > Pamella/M -7298a11699,11701 +> Pamirs/M > Pammi/M > Pammie/M > Pammy/M -7303a11707,11708 +> Pampers/M +7303a11853,11854 > Panchito/M > Pancho/M -7307a11713 +7306c11857 +< Pankhurst +--- +> Pankhurst/M +7307a11859 > Pansie/M -7312a11719,11724 +7309c11861 +< Pantagruel +--- +> Pantagruel/M +7311c11863 +< Pantheon +--- +> Pantheon/M +7313,7314c11865,11872 +< Paracelsus +< Paraclete +--- > Paola/M > Paolina/M > Paolo/M > Papagena/M > Papageno/M > Paquito/M -7325a11738 +> Paracelsus/M +> Paraclete/M +7317a11876 +> Paralympic/S +7322c11881 +< Pareto +--- +> Pareto/M +7325c11884,11886 +< Park/SR +--- +> Park/SMR > Parke/M -7335a11749,11750 +> Parker/M +7327,7328c11888,11890 +< Parkman +< Parliament +--- +> Parkman/M +> Parks/M +> Parliament/M +7331,7333c11893,11895 +< Parnell +< Parr +< Parrish +--- +> Parnell/M +> Parr/M +> Parrish/M +7335a11898,11899 > Parrnell/M > Parry -7341a11757 +7337c11901 +< Parsons +--- +> Parsons/M +7341a11906 > Pascale/M -7347c11763 +7345c11910 +< Pasternak +--- +> Pasternak/M +7347c11912 < Pat --- -> Pat/N -7351a11768 +> Pat/NM +7349c11914 +< Patagonian +--- +> Patagonian/M +7352,7353c11917,11923 +< Paterson +< Patna +--- > Paten/M -7352a11770,11771 +> Paterson/M > Patience/M > Patin/M -7353a11773,11774 +> Patna/M > Paton > Patric/M -7356a11778 +7356a11927 > Patricio/M -7357a11780,11782 +7357a11929,11931 > Patrizia/M > Patrizio/M > Patrizius/M -7358a11784 +7358a11933 > Patten/M -7360a11787,11788 +7360,7361c11935,11938 +< Patti +< Patton +--- +> Patti/M > Pattie/M > Pattin/M -7364a11793,11794 +> Patton/M +7364a11942,11943 > Paule/M > Pauletta/M -7366a11797,11798 +7366,7368c11945,11956 +< Pauli +< Pauline +< Pavarotti +--- +> Pauli/M > Paulie/M > Paulina/M -7367a11800,11802 +> Pauline/M +> Pauling/M > Paulita/M > Paulo/M > Pauly/M -7368a11804,11806 +> Pavarotti/M > Pavel/M > Pavia/M > Pavla/M -7372a11811,11812 +7370,7371c11958,11959 +< Pavlova +< Pavlovian +--- +> Pavlova/M +> Pavlovian/M +7372a11961,11962 > Paxon/M > Paxton -7375c11815 -< Paypal/M ---- +7375a11966 > Payton/M -7379a11820 +7380c11971,11973 +< Peale +--- > Peadar/M -7380a11822 +> Peale/M > Pearce/M -7381a11824,11825 +7381a11975,11976 > Pearla/M > Pearle/M -7382a11827 +7382a11978 > Pearline/M -7384a11830 +7384,7385c11980,11982 +< Peary +< Pechora +--- +> Peary/M > Pebrook/M -7388a11835 +> Pechora/M +7388a11986 > Peder/M -7392a11840,11842 +7392a11991,11993 > Pegeen/M > Peggi/M > Peggie/M -7395a11846 +7394c11995 +< Pei +--- +> Pei/M +7395a11997 > Peirce/M -7405c11856 +7402a12005 +> Pen/M +7405,7406c12008,12009 < Penelope/M +< Penn --- > Penelopa/M -7408a11860,11861 +> Penn/M +7408a12012,12013 > Penni/M > Pennie/M -7413a11867 +7411c12016 +< Pennsylvanian/SM +--- +> Pennsylvanian/MS +7413a12019 > Penrod/M -7422a11877,11879 +7422c12028,12031 +< Peoria +--- +> Peoria/M > Pepe/M > Pepi/M > Pepillo/M -7423a11881,11882 +7423a12033,12034 > Pepita/M > Pepito/M -7426a11886 +7425,7429c12036,12041 +< Pepys +< Pequot +< Percheron +< Percival +< Percy +--- +> Pepys/M +> Pequot/M > Perceval -7431a11892,11894 +> Percheron/M +> Percival/M +> Percy/M +7432,7434c12044,12049 +< Periclean +< Pericles +< Perkins +--- > Peri/M > Peria/M > Perice/M -7434c11897 -< Perkins ---- +> Periclean/M +> Pericles/M > Perkin/MS -7435a11899,11900 +7435a12051,12052 > Perla/M > Perle/M -7438a11904 +7438a12056 > Pernell/M -7441a11908,11910 +7440c12058 +< Peron +--- +> Peron/M +7442,7443c12060,12065 +< Perry/R +< Perseid +--- > Perren/M > Perri/M +> Perrier/M > Perrine/M -7449a11919 +> Perry/RM +> Perseid/M +7447c12069 +< Pershing +--- +> Pershing/M +7449a12072 > Persis -7453a11924,11925 +7453c12076,12078 +< Peshawar +--- +> Peshawar/M > Pet > Peta/M -7458a11931,11933 +7456a12082 +> Perters/MN +7459c12085,12088 +< Petra +--- > Peterus/M > Petey/M > Petr/M -7460a11936,11940 +> Petra/M +7460a12090,12094 > Petrina/M > Petronella/M > Petronia/M > Petronilla/M > Petronille/M -7461a11942 +7461a12096 > Petunia/M -7462a11944,11945 +7462a12098,12099 > Peyter/M > Peyton/M -7467a11951 +7466c12103 +< Phaedra +--- +> Phaedra/M +7468c12105,12106 +< Phanerozoic +--- > Phaidra/M -7473a11958,11959 +> Phanerozoic/M +7473a12112,12113 > Phebe > Phedra/M -7474a11961 +7474a12115 > Phelia/M -7478a11966 +7476,7477c12117,12118 +< Phidias +< Phil/Y +--- +> Phidias/M +> Phil/MY +7478a12120 > Philbert/M -7481a11970,11971 +7480,7481c12122,12125 +< Philemon +< Philip/S +--- +> Philemon/M +> Philip/MS > Philipa/M > Philippa/M -7484a11975 +7483c12127 +< Philippians +--- +> Philippians/M +7485,7486c12129,12135 +< Philistine +< Phillip/S +--- +> Philippines/M > Philis/M -7485a11977,11978 +> Philistine/M > Phillida/M > Phillie/M -7487a11981,11983 +> Phillip/SM +> Phillips/M +7487a12137,12139 > Phillipe/M > Phillipp/M > Phillis/M -7488a11985,11987 +7488a12141,12143 > Philomena/M > Phineas/M > Phip/M -7494a11994,11995 +7490c12145 +< Phobos +--- +> Phobos/M +7494a12150,12151 > Photoshopped > Photoshopping -7498a12000,12001 +7498a12156,12157 > Phylis/M > Phyllida/M -7499a12003,12005 +7499a12159,12161 > Phyllys/M > Phylys/M > Pia/M -7509a12016 +7504c12166 +< Piccadilly +--- +> Piccadilly/M +7506c12168 +< Pickett +--- +> Pickett/M +7509c12171,12172 +< Pict +--- +> Pict/M > Pictor -7510a12018 +7510a12174 > Pier/M -7511a12020 +7511a12176 > Pierette/M -7512a12022 +7512a12178 > Pierrette/M -7513a12024,12029 +7513a12180,12185 > Pierson/M > Pieter/M > Pietra/M > Pietrek/M > Pietro/M > Piggy/M -7520a12037,12038 +7516,7518c12188,12191 +< Pilate/S +< Pilcomayo +< Pilgrim/S +--- +> Pilate/MS +> Pilates/M +> Pilcomayo/M +> Pilgrim/SM +7520a12194,12195 > Pincas/M > Pinchas/M -7527a12046,12049 +7523c12198 +< Pinkerton +--- +> Pinkerton/M +7526c12201 +< Pinter +--- +> Pinter/M +7527a12203,12206 > Piotr/M > Pip/MR > Piper/M > Pippa/M -7528a12051,12052 +7529,7531c12208,12212 +< Piraeus +< Pirandello +< Pisa +--- > Pippo/M > Pippy/M -7559c12083 +> Piraeus/M +> Pirandello/M +> Pisa/M +7533c12214 +< Pisistratus +--- +> Pisistratus/M +7536c12217,12218 +< Pitt/S +--- +> Pitt/SM +> Pitts/M +7540c12222 +< Pizarro +--- +> Pizarro/M +7544c12226 +< Planck +--- +> Planck/M +7549c12231 +< Plath +--- +> Plath/M +7559c12241 < Pleiades's --- > Pleiades/M -7620a12145 +7562c12244 +< Pliny +--- +> Pliny/M +7571c12253,12254 +< Podgorica +--- +> Poconos/M +> Podgorica/M +7573,7574c12256,12257 +< Podunk +< Poe +--- +> Podunk/M +> Poe/M +7582c12265 +< Pol/Y +--- +> Pol/MY +7589c12272 +< Politburo +--- +> Politburo/M +7592c12275 +< Pollock +--- +> Pollock/M +7595c12278 +< Pollyanna +--- +> Pollyanna/M +7601,7602c12284,12285 +< Polyphemus +< Pomerania +--- +> Polyphemus/M +> Pomerania/M +7604,7605c12287,12288 +< Pomona +< Pompadour +--- +> Pomona/M +> Pompadour/M +7609,7610c12292,12293 +< Ponce +< Pontchartrain +--- +> Ponce/M +> Pontchartrain/M +7612c12295 +< Pontianak +--- +> Pontianak/M +7615,7616c12298,12299 +< Poona +< Pope +--- +> Poona/M +> Pope/M +7618c12301 +< Popocatepetl +--- +> Popocatepetl/M +7621c12304,12305 +< Popsicle +--- > Poppy/M -7626a12152 +> Popsicle/M +7625c12309,12310 +< Port/R +--- +> Port/MR +> Porter/M +7626a12312 > Portie/M -7631a12158 +7629c12315 +< Portsmouth +--- +> Portsmouth/M +7631a12318 > Porty/M -7639a12167 +7634c12321 +< Potemkin +--- +> Potemkin/M +7636c12323 +< Potsdam +--- +> Potsdam/M +7638c12325 +< Potter +--- +> Potter/M +7640,7641c12327,12329 +< Pound +< Poussin +--- > Poul/M -7647c12175 +> Pound/M +> Poussin/M +7642a12331 +> PowerPC/M +7644c12333 +< Powers +--- +> Powers/M +7647c12336 < Pr/M --- > Pr/MN -7661a12190 +7650c12339 +< Praetorian +--- +> Praetorian/M +7653c12342 +< Prakrit +--- +> Prakrit/M +7657c12346 +< Praxiteles +--- +> Praxiteles/M +7661a12351 > Pren/M -7662a12192 +7662a12353 > Prent/M -7663a12194 +7663a12355 > Prentiss/M -7679a12211,12214 +7665,7666c12357,12358 +< Presbyterian/MS +< Presbyterianism/SM +--- +> Presbyterian/SM +> Presbyterianism/MS +7669,7670c12361,12362 +< Presley +< Preston +--- +> Presley/M +> Preston/M +7674,7675c12366,12367 +< Price +< Priestley +--- +> Price/M +> Priestley/M +7679a12372,12375 > Prinz > Pris > Prisca/M > Priscella/M -7680a12216 +7680a12377 > Prissie/M -7707a12244 +7683c12380 +< Procrustean +--- +> Procrustean/M +7689,7690c12386,12387 +< Prokofiev +< Promethean +--- +> Prokofiev/M +> Promethean/M +7695c12392 +< Protagoras +--- +> Protagoras/M +7698c12395 +< Protestantism/MS +--- +> Protestantism/SM +7705,7706c12402,12403 +< Providence/MS +< Provo +--- +> Providence/SM +> Provo/M +7707a12405 > Pru/M -7709a12247,12249 +7709a12408,12410 > Prudi/M > Prudy/M > Prue/M -7713a12254 +7713c12414,12415 +< Prut +--- +> Prut/M > Pryce/M -7727a12269 +7715c12417 +< Psalms +--- +> Psalms/M +7720c12422 +< Ptolemaic +--- +> Ptolemaic/M +7723,7724c12425,12426 +< Puccini +< Puck +--- +> Puccini/M +> Puck/M +7726,7727c12428,12431 +< Puebla +< Pueblo +--- +> Puebla/M +> Pueblo/M +> Puerto > Puff/M -7751a12294 +7730,7731c12434,12435 +< Pulaski +< Pulitzer +--- +> Pulaski/M +> Pulitzer/M +7733c12437 +< Punch +--- +> Punch/M +7737,7738c12441,12442 +< Purana +< Purcell +--- +> Purana/M +> Purcell/M +7743,7744c12447,12448 +< Puritan +< Puritanism/SM +--- +> Puritan/M +> Puritanism/MS +7747,7748c12451,12452 +< Pusey +< Pushkin +--- +> Pusey/M +> Pushkin/M +7751c12455,12456 +< Putnam +--- +> Putnam/M > Putnem/M -7793a12337 +7757c12462 +< Pym +--- +> Pym/M +7763c12468 +< Pyrrhic +--- +> Pyrrhic/M +7765,7766c12470,12471 +< Pythagorean +< Pythias +--- +> Pythagorean/M +> Pythias/M +7778c12483 +< Qingdao +--- +> Qingdao/M +7785c12490 +< Quasimodo +--- +> Quasimodo/M +7791c12496 +< Quebecois +--- +> Quebecois/M +7793c12498,12499 +< Queen/S +--- +> Queen/MS > Queenie/M -7795a12340 +7795a12502 > Quent/M -7796a12342 +7796a12504 > Querida/M -7798a12345,12347 +7798a12507,12509 > Quill/M > Quillan/M > Quincey/M -7799a12349 +7800c12511,12515 +< Quinn +--- > Quinlan/M -7800a12351,12353 +> Quinn/M > Quint/M > Quinta/M > Quintana/M -7801a12355,12357 +7801a12517,12519 > Quintilla/M > Quintin/M > Quintina/M -7802a12359 +7803c12521,12522 +< Quirinal +--- > Quintus/M -7811c12368 +> Quirinal/M +7806c12525 +< Quixote +--- +> Quixote/M +7808,7809c12527,12528 +< Qumran +< Quonset +--- +> Qumran/M +> Quonset/M +7811c12530 < R/MD --- > R/MGD -7841a12399 +7841a12561 > Rab/M -7842a12401 +7842a12563 > Rabbi/M -7844a12404 +7844c12565,12566 +< Rabelaisian +--- +> Rabelaisian/M > Rabi -7847a12408 +7847a12570 > Rachele/M -7850a12412 +7849c12572 +< Rachmaninoff +--- +> Rachmaninoff/M +7850a12574 > Rad/M -7851a12414,12415 +7851a12576,12577 > Raddie/M > Raddy/M -7852a12417,12419 +7852a12579,12581 > Raeann/M > Raf/M > Rafa/M -7853a12421,12430 +7853a12583,12592 > Rafaela/M > Rafaelia/M > Rafaelita/M @@ -7132,10 +13469,12 @@ > Raffaello/M > Raffarty/M > Rafferty/M -7854a12432,12433 +7854a12594,12595 > Rafi/M > Ragnar/M -7855a12435,12442 +7856c12597,12606 +< Rainier +--- > Rahal/M > Rahel/M > Raimondo/M @@ -7144,236 +13483,374 @@ > Raina/M > Raine/MR > Rainer/M -7856a12444 +> Rainier/M > Rakel/M -7857a12446,12447 +7857a12608,12609 > Ralf/M > Ralina/M -7858a12449 +7858a12611 > Ram -7869a12461 +7862c12615 +< Ramakrishna +--- +> Ramakrishna/M +7864c12617 +< Ramayana +--- +> Ramayana/M +7870,7872c12623,12626 +< Ramos +< Ramsay +< Ramses +--- > Ramonda/M -7873a12466,12468 +> Ramos/M +> Ramsay/M +> Ramses/M +7874c12628,12632 +< Rand +--- > Rana/M > Rance/M > Rancell/M -7874a12470 +> Rand/M > Randa/M -7876a12473 +7876a12635 > Randee/M -7877a12475 +7877a12637 > Randene/M -7878a12477,12478 +7878a12639,12640 > Randie/M > Randolf/M -7880a12481 +7880a12643 > Ranee/M -7881a12483,12486 +7882c12645,12649 +< Rankin +--- > Rani/M > Rania/M > Ranice/M > Ranique/M -7883a12489,12491 +> Rankin/M +7883a12651,12653 > Ranna/M > Ransell/M > Ransom/M -7885a12494 +7885c12655,12656 +< Raphael +--- +> Raphael/M > Raphaela/M -7887a12497 +7887a12659 > Raquela/M -7889a12500,12501 +7889a12662,12663 > Rasia/M > Rasla/M -7897a12510,12513 +7891c12665,12666 +< Rasputin +--- +> Rasputin/M +> Rasta +7893a12669 +> Rastafarianism +7897,7899c12673,12680 +< Ravel +< Rawalpindi +< Ray +--- +> Ravel/M > Raven/M > Ravi/M > Ravid/M > Raviv/M -7898a12515 +> Rawalpindi/M > Rawley/M -7901a12519,12520 +> Ray/M +7902c12683,12685 +< Rayleigh +--- > Raychel/M > Raye/M -7903a12523 +> Rayleigh/M +7903a12687 > Raymund/M -7904a12525,12530 +7904a12689,12694 > Rayna/M > Raynard/M > Raynell/M > Rayner/M > Raynor/M > Rayshell/M -7907a12534,12536 +7907a12698,12700 > Rea/M > Read/GM > Reade -7910a12540 +7911c12704,12706 +< Realtor +--- > Reagen/M -7911a12542 +> Realtor/M > Reamonn/M -7914c12545,12549 +7914,7915c12709,12715 < Rebecca +< Rebekah --- > Rebbecca/M > Rebe/M > Rebeca/M > Rebecka/M > Rebeka/M -7915a12551 +> Rebekah/M > Rebekkah/M -7918a12555 +7918a12719 > Redd/M -7922a12560,12561 +7922c12723,12725 +< Redmond +--- +> Redmond/M > Ree/DSM > Reeba/M -7923a12563 +7923a12727 > Reece/M -7924a12565 +7924a12729 > Reena/M -7925a12567,12568 +7926c12731,12733 +< Reeves +--- > Reeta/M > Reeva/M -7928a12572,12575 +> Reeves/M +7928a12736,12739 > Reg/N > Regan/M > Regen/M > Reggi/MS -7929a12577 +7929a12741 > Reggy/M -7932a12581,12582 +7931c12743 +< Reginae +--- +> Reginae/M +7932a12745,12746 > Reginauld/M > Regine/M -7937c12587,12590 +7935c12749 +< Rehnquist +--- +> Rehnquist/M +7937c12751,12755 < Reid --- -> Reid/R +> Reichstag/M +> Reid/RM > Reidar/M > Reider/M > Reiko/M -7939c12592,12596 +7939,7940c12757,12762 < Reinaldo/M +< Reinhardt --- > Reina/M > Reinald/M > Reinaldo/SM > Reine/M > Reinhard/M -7941a12599,12603 +> Reinhardt/M +7942c12764,12769 +< Remarque +--- > Reinold/M > Reinwald/M > Rem/M > Remanence/S > Remanent -7945a12608 +> Remarque/M +7944c12771 +< Remington +--- +> Remington/M +7945a12773 > Remy/M -7946a12610,12611 +7946a12775,12776 > Renado/M > Renae/M -7947a12613,12614 +7947a12778,12779 > Renaldo/M > Renard/M -7948a12616,12619 +7948a12781,12784 > Renata/M > Renate/M > Renato/M > Renaud/M -7951a12623,12626 +7951a12788,12791 > Renell/M > Renelle/M > Renie/M > Rennie/M -7961a12637,12639 +7953c12793 +< Renoir +--- +> Renoir/M +7962,7964c12802,12807 +< Reuben +< Reunion +< Reuters +--- > Reta/M > Retha/M > Reube/M -7965a12644 +> Reuben/M +> Reunion/M +> Reuters/M +7965a12809 > Reuven/M -7970a12650 +7968a12813 +> Revelations/M +7970a12816 > Revkah/M -7972a12653 +7972,7973c12818,12820 +< Rex +< Reyes +--- +> Rex/M > Rey/M -7977c12658,12659 +> Reyes/M +7977c12824,12826 < Reynolds --- > Reynard/M > Reynold/MS -7980a12663 +> Reynolds/M +7980,7981c12829,12831 +< Rhea +< Rhee +--- +> Rhea/M > Rheba/M -7983a12667,12671 +> Rhee/M +7983c12833,12838 +< Rhenish +--- +> Rhenish/M > Rheta/M > Rhett/M > Rhetta/M > Rhiamon/M > Rhianna/M -7984a12673 +7984a12840 > Rhianon/M -7987a12677 -> Rhode -7990a12681,12684 +7988c12844,12845 +< Rhodes +--- +> Rhode/M +> Rhodes/M +7990a12848,12851 > Rhodia/M > Rhodie/M > Rhody/M > Rhona/M -7992a12687,12690 +7993,7995c12854,12865 +< Ribbentrop +< Ricardo +< Rice +--- > Rhys/M > Riane/M > Riannon/M > Rianon/M -7993a12692,12694 +> Ribbentrop/M > Ric/M > Rica/M > Ricard/M -7994a12696,12697 +> Ricardo/M > Ricca/M > Riccardo/M -7997a12701 +> Rice/M +7997,7998c12867,12871 +< Richard/S +< Richardson +--- +> Richard/MS +> Richards/M > Richardo/M -7998a12703 +> Richardson/M > Richart/M -8001a12707 +8002,8003c12875,12879 +< Richter +< Richthofen +--- > Richmound/M -8003a12710,12711 +> Richter/M +> Richthofen/M > Richy/M > Rici/M -8004a12713 +8004a12881 > Rickard/M -8005a12715 +8005a12883 > Rickert/M -8006a12717 +8006a12885 > Ricki/M -8010a12722 +8008c12887 +< Rickover +--- +> Rickover/M +8010a12890 > Ricoriki/M -8022a12735,12737 +8012c12892 +< Ride +--- +> Ride/M +8023,8025c12903,12911 +< Riley +< Rilke +< Rimbaud +--- > Rik/M > Riki/M > Rikki/M -8025a12741,12743 +> Riley/M +> Rilke/M +> Rimbaud/M > Rina/M > Rinaldo/M > Ring/M -8028a12747,12749 +8029,8030c12915,12921 +< Ripley +< Risorgimento +--- +> Rios/M > Riobard/M > Riordan/M > Rip/M -8029a12751 +> Ripley/M > Risa/M -8032a12755 +> Risorgimento/M +8032a12924 > Ritchie/M -8034c12757,12758 +8034,8036c12926,12930 < Rivas +< Rivera +< Rivers --- > Riva/SM +> Rivas/M > Rivalee/M -8037a12762 +> Rivera/M +> Rivers/M +8037a12932 > Rivi/M -8038a12764,12765 +8038a12934,12935 > Rivkah/M > Rivy/M -8042a12770,12772 +8040c12937 +< Rizal +--- +> Rizal/M +8042a12940,12942 > Roana/M > Roanna/M > Roanne/M -8044c12774,12778 +8044c12944,12948 < Rob/M --- > Roarke/M @@ -7381,167 +13858,258 @@ > Robb/M > Robbert/M > Robbi/M -8047a12782,12785 +8046a12951 +> Robbins/M +8047a12953,12956 > Robbyn/M > Robena/M > Robenia/M > Robers/M -8055a12794,12799 +8051a12961 +> Roberts/M +8053,8054c12963,12964 +< Robeson +< Robespierre +--- +> Robeson/M +> Robespierre/M +8056c12966,12972 +< Robinson +--- > Robina/M > Robinet/M > Robinett/M > Robinetta/M > Robinette/M > Robinia/M -8060a12805 +> Robinson/M +8059c12975 +< Robson +--- +> Robson/M +8060a12977 > Roby/M -8062a12808 +8062a12980 > Roch/M -8065a12812,12813 +8065a12984,12985 > Rochell/M > Rochella/M -8067a12816 +8068,8070c12988,12993 +< Rock +< Rockefeller +< Rockford +--- > Rochette/M -8069a12819 +> Rock/M +> Rockefeller/M > Rockey/M -8070a12821 +> Rockford/M > Rockie/M -8075a12827,12828 +8073c12996 +< Rockwell +--- +> Rockwell/M +8075a12999,13000 > Roda/M > Rodd/M -8076a12830,12833 +8076a13002,13005 > Roddie/M > Roddy/M > Roderic/M > Roderich/M -8077a12835,12836 +8077a13007,13008 > Roderigo/M > Rodge/MZR -8078a12838,12840 +8079,8080c13010,13016 +< Rodin +< Rodney +--- +> Rodgers/M > Rodham/M > Rodi/M > Rodie/M -8079a12842 +> Rodin/M > Rodina/M -8081a12845,12846 +> Rodney/M +8081a13018,13019 > Rodolph/M > Rodolphe/M -8084a12850 +8084a13023 > Rodrique/M -8087a12854 +8087a13027,13029 > Rog/MRZ -8089c12856 +> Roger/MS +> Rogers/M +8089c13031 < Roger/S --- > Rogerio/M -8090a12858 +8090a13033 > Roi/SM -8094a12863 +8091a13035 +> Roku/M +8093c13037 +< Roland +--- +> Roland/M +8094a13039 > Roldan/M -8095a12865,12867 +8096,8099c13041,13051 +< Rolland +< Rollerblade +< Rollins +< Rolodex +--- > Roley/M > Rolf > Rolfe/M -8098c12870,12872 -< Rollins ---- +> Rolland/M +> Rollerblade/M > Rollie/M > Rollin/MS +> Rollins/M > Rollo -8099a12874 +> Rolodex/M > Rolph/M -8101a12877,12878 +8101a13054,13055 > Roma/M > Romain/M -8116a12894,12896 +8106c13060 +< Romano +--- +> Romano/M +8108c13062,13063 +< Romansh +--- +> Romans/M +> Romansh/M +8113c13068 +< Romeo +--- +> Romeo/M +8116c13071,13074 +< Romney +--- +> Romney/M > Romola/M > Romona/M > Romonda/M -8117a12898 +8117a13076 > Romy/M -8118a12900 +8118a13078 > Rona/M -8119a12902 +8119a13080 > Ronalda/M -8120a12904,12907 +8120a13082,13085 > Ronica/M > Ronna/M > Ronni/M > Ronnica/M -8124a12912,12913 +8124a13090,13091 > Roobbie/M > Roomba/MS -8128a12918,12921 +8129c13096,13100 +< Rorschach +--- > Rora/M > Rori/M > Rorie/M > Rorke/M -8130a12924 +> Rorschach/M +8130a13102 > Ros -8131a12926,12929 +8131a13104,13107 > Rosabel/M > Rosabella/M > Rosabelle/M > Rosaleen/M -8132a12931 +8132a13109 > Rosalia/M -8135a12935,12936 +8135a13113,13114 > Rosalinde/M > Rosaline/M -8136a12938,12941 +8136a13116,13119 > Rosalynd/M > Rosamond/M > Rosamund/M > Rosana/M -8139a12945 +8139c13122,13123 +< Rosario +--- +> Rosario/M > Rosco/M -8142a12949,12950 +8142a13127,13128 > Roseanna/M > Roseanne/M -8144a12953,12955 +8144a13131,13133 > Roselia/M > Roselin/M > Roseline/M -8145a12957,12958 +8145a13135,13136 > Roselle/M > Rosemaria/M -8147a12961 +8147a13139 > Rosemonde/M -8149a12964 +8149a13142 > Rosene/M -8151a12967,12968 +8151,8152c13144,13147 +< Rosetta +< Rosicrucian +--- +> Rosetta/M > Rosette/M > Roshelle/M -8153a12971,12972 +> Rosicrucian/M +8153a13149,13150 > Rosina/M > Rosita/M -8154a12974 +8154a13152 > Rosmunda/M -8156a12977 +8156a13155 > Rossie/M -8157a12979 +8158c13157,13158 +< Rostand +--- > Rossy/M -8161a12984 +> Rostand/M +8161a13162 > Rosy/M -8170a12994 +8164,8165c13165,13166 +< Rothko +< Rothschild +--- +> Rothko/M +> Rothschild/M +8168c13169 +< Rouault +--- +> Rouault/M +8170a13172 > Rouvin/M -8171a12996,12997 +8172c13174,13178 +< Rowe +--- +> Rover/M > Row/MN > Rowan/M -8172a12999 +> Rowe/M > Rowen/M -8175a13003,13006 +8175a13182,13185 > Rowney/M > Roxana/M > Roxane/M > Roxanna/M -8176a13008 +8176a13187 > Roxi/M -8177a13010 +8177a13189 > Roxine/M -8180a13014 +8180,8181c13192,13203 +< Royal +< Royce +--- +> Royal/M > Royall/M -8181a13016,13024 +> Royce/M > Roz/M > Rozalie/M > Rozalin/M @@ -7551,229 +14119,559 @@ > Roze/M > Rozele/M > Rozella/M -8182a13026,13027 +8182a13205,13206 > Rozina/M > Rriocard/M -8186a13032 +8186a13211 > Rube/M -8187a13034,13036 +8187a13213,13216 +> Rubens/M > Rubetta/M > Rubi/M > Rubia/M -8188a13038 +8188a13218 > Rubie/M -8190a13041 +8191c13221,13222 +< Rubinstein +--- > Rubina/M -8193a13045,13049 +> Rubinstein/M +8194c13225,13231 +< Rudolf +--- > Rudd/M > Ruddie/M > Ruddy/M > Rudie/M > Rudiger/M -8194a13051 +> Rudolf/M > Rudolfo/M -8197a13055 +8197a13235 > Rufe/M -8199a13058 +8199a13238 > Ruggiero/M -8209a13069,13072 +8207,8208c13246,13247 +< Runnymede +< Runyon +--- +> Runnymede/M +> Runyon/M +8209a13249,13252 > Ruperta/M > Ruperto/M > Ruprecht/M > Rurik -8220a13084,13085 +8213,8214c13256,13257 +< Ruskin +< Russ +--- +> Ruskin/M +> Russ/M +8220a13264,13265 > Rustie/M > Rustin/M -8223c13088 +8223c13268 < Rutgers --- > Rutger/MS -8224a13090,13092 +8225c13270,13274 +< Rutherford +--- > Ruthann/M > Ruthanne/M > Ruthe/M -8225a13094 +> Rutherford/M > Ruthi/M -8226a13096 +8226a13276 > Ruthy/M -8227a13098,13100 +8227a13278,13280 > Rutter/M > Ruttger/M > Ruy/M -8233a13107,13108 +8233a13287,13288 > Ryann/M > Rycca/M -8235a13111,13112 +8235c13290,13292 +< Ryder +--- +> Ryder/M > Ryley/M > Ryon/M -8237c13114,13115 +8237c13294,13295 < S/MN --- > Ryun/M > S/MNY -8285a13164 +8253c13311 +< SEC +--- +> SEC/M +8266a13325 +> SQL +8277c13336 +< SUSE +--- +> SUSE/M +8278a13338 +> SVN/M +8283,8284c13343,13344 +< Saar +< Saarinen +--- +> Saar/M +> Saarinen/M +8285a13346 > Saba/M -8291a13171 +8289c13350 +< Sabin +--- +> Sabin/M +8291a13353 > Sabra -8295a13176 +8294c13356 +< Sacajawea +--- +> Sacajawea/M +8295a13358 > Sacha/M -8297a13179 +8298c13361,13362 +< Sadat +--- > Sada/M -8301a13184 +> Sadat/M +8300c13364 +< Sadducee +--- +> Sadducee/M +8301a13366 > Sadella/M -8303a13187 +8304c13369,13370 +< Safavid +--- > Sadye/M -8311a13196 +> Safavid/M +8311c13377,13378 +< Sahel +--- +> Sahel/M > Saidee/M -8322a13208 +8314c13381 +< Sakai +--- +> Sakai/M +8317c13384 +< Sakharov +--- +> Sakharov/M +8319,8323c13386,13391 +< Saks +< Sal/Y +< Saladin +< Salado +< Salamis +--- +> Saks/M +> Sal/MY +> Saladin/M +> Salado/M > Salaidh/M -8325a13212 +> Salamis/M +8325a13394 > Saleem/M -8327a13215 +8328,8329c13397,13399 +< Salinas +< Salinger +--- > Salim/M -8332a13221,13222 +> Salinas/M +> Salinger/M +8332c13402,13404 +< Salk +--- +> Salk/M > Sallee/M > Salli/M -8335a13226,13229 +8334c13406 +< Sallust +--- +> Sallust/M +8335a13408,13411 > Sallyann/M > Sallyanne/M > Salmon/M > Saloma/M -8336a13231,13234 +8336a13413,13416 > Salomi/M > Salomo/M > Salomon/M > Salomone/M -8343a13242 +8343a13424 > Salvidor/M -8349a13249 +8346c13427 +< Sam +--- +> Sam/M +8349c13430,13431 +< Samara +--- +> Samara/M > Samaria -8362a13263 +8359c13441 +< Samson +--- +> Samson/M +8362c13444,13445 +< Samuel +--- +> Samuel/M > Samuele/M -8371a13273,13277 +8364c13447 +< San +--- +> San/M +8371,8372c13454,13462 +< Sandburg +< Sandinista +--- +> Sandburg/M > Sande/MZR > Sander/M +> Sanders/M > Sanderson/M > Sandi/M > Sandie/M -8372a13279 +> Sandinista/M > Sandor/M -8374a13282 +8374a13465 > Sandro/M -8375a13284 +8375a13467 > Sandye/M -8382a13292,13293 +8377c13469 +< Sanforized +--- +> Sanforized/M +8379c13471 +< Sanhedrin +--- +> Sanhedrin/M +8383c13475,13477 +< Santa +--- > Sanson/M > Sansone/M -8388a13300,13301 -> Sapphira +> Santa/M +8385,8386c13479,13480 +< Santayana +< Santeria +--- +> Santayana/M +> Santeria/M +8388c13482,13484 +< Santos +--- +> Santos/M +> Sapphira/M > Sapphire/M -8391a13305 +8391a13488 > Saraann/M -8394a13309 +8394a13492 > Sarajane/M -8400a13316,13319 +8400a13499,13502 > Saree/M > Sarena/M > Sarene/M > Sarette/M -8401a13321 +8402c13504,13505 +< Sargent +--- > Sarge/M -8403a13324,13327 +> Sargent/M +8403a13507,13510 > Sari/M > Sarina/M > Sarine/M > Sarita/M -8407a13332 +8406,8407c13513,13515 +< Sarto +< Sartre +--- +> Sarto/M +> Sartre/M > Sascha/M -8408a13334 +8408a13517 > Sashenka/M -8422a13349 +8413,8414c13522,13523 +< Sassanian +< Sassoon +--- +> Sassanian/M +> Sassoon/M +8422a13532 > Saudra/M -8424c13351,13353 +8424c13534,13537 < Saunders --- > Sauncho/M > Saunder/MS +> Saunders/M > Saunderson/M -8427a13357 +8426c13539 +< Saussure +--- +> Saussure/M +8428c13541,13543 +< Savage +--- +> Sauternes > Sauveur/M -8429a13360 +> Savage/M +8429a13545 > Savina/M -8433a13365 +8431,8432c13547,13548 +< Savonarola +< Savoy +--- +> Savonarola/M +> Savoy/M +8433a13550 > Saw/M -8434a13367,13369 +8434a13552,13554 > Sawyere/M > Sax > Saxe/M -8437c13372,13374 +8437c13557,13560 < Sayers --- > Say/MRZ > Sayer/MS +> Sayers/M > Sayre/MS -8444a13382 +8442,8445c13565,13571 +< Scandinavian/SM +< Scaramouch +< Scarborough +< Scarlatti +--- +> Scandinavian/MS +> Scaramouch/M +> Scarborough/M > Scarface/M -8445a13384,13385 +> Scarlatti/M > Scarlet/M > Scarlett/M -8498a13439 +8449c13575 +< Schelling +--- +> Schelling/M +8453c13579 +< Schiller +--- +> Schiller/M +8456c13582 +< Schliemann +--- +> Schliemann/M +8458,8459c13584,13585 +< Schmidt +< Schnabel +--- +> Schmidt/M +> Schnabel/M +8463c13589 +< Schopenhauer +--- +> Schopenhauer/M +8467c13593 +< Schubert +--- +> Schubert/M +8470c13596 +< Schumann +--- +> Schumann/M +8477c13603 +< Schweitzer +--- +> Schweitzer/M +8481a13608 +> Scientologist/SM +8490c13617 +< Scotchmen +--- +> Scotchmen/M +8492c13619,13620 +< Scotchwomen +--- +> Scotchwomen/M +> Scotia/M +8495c13623 +< Scotsmen +--- +> Scotsmen/M +8497,8498c13625,13627 +< Scotswomen +< Scott +--- +> Scotswomen/M +> Scott/M > Scotti/M -8518a13460 +8501c13630 +< Scottsdale +--- +> Scottsdale/M +8505,8506c13634,13635 +< Scranton +< Scriabin +--- +> Scranton/M +> Scriabin/M +8509c13638 +< Scrooge +--- +> Scrooge/M +8511c13640 +< Scud +--- +> Scud/M +8514,8515c13643,13644 +< Scythia +< Scythian +--- +> Scythia/M +> Scythian/M +8517c13646 +< Seaborg +--- +> Seaborg/M +8518a13648 > Seamus/M -8519a13462 +8519a13650 > Seana/M -8522a13466,13467 +8522a13654,13655 > Sebastiano/M > Sebastien/M -8528a13474 +8528a13662 > See/M -8537a13484,13485 +8529a13664 +> Seeger/M +8537a13673,13674 > Seka/M > Sela/M -8538a13487 +8538a13676 > Selby/M -8540a13490,13491 +8541c13679,13681 +< Seleucid +--- > Selene/M > Selestina/M -8542a13494,13496 +> Seleucid/M +8542a13683,13685 > Selia/M > Selie/M > Selig/M -8543a13498,13500 +8544c13687,13690 +< Seljuk +--- > Selina/M > Selinda/M > Seline/M -8545a13503,13504 +> Seljuk/M +8545a13692,13693 > Sella/M > Selle/MZ -8554a13514 +8549c13697 +< Semarang +--- +> Semarang/M +8551c13699 +< Semiramis +--- +> Semiramis/M +8554c13702,13703 +< Semtex +--- +> Semtex/M > Sena/M -8567a13528 +8557c13706 +< Sendai +--- +> Sendai/M +8561,8563c13710,13712 +< Senghor +< Senior +< Sennacherib +--- +> Senghor/M +> Senior/M +> Sennacherib/M +8567c13716,13717 +< Sephardi +--- +> Sephardi/M > Sephira/M -8571a13533 +8571,8572c13721,13723 +< Septuagint/SM +< Sequoya +--- +> Septuagint/MS > sequitur -8576a13539 +> Sequoya/M +8576a13728 > Serene -8577a13541,13542 +8577a13730,13731 > Serge/M > Sergeant/M -8578a13544 +8578a13733 > Sergent/M -8585a13552 +8580c13735 +< Serpens +--- +> Serpens/M +8585,8587c13740,13743 +< Seton +< Seurat +< Seuss +--- +> Seton/M > Seumas/M -8600a13568,13569 +> Seurat/M +> Seuss/M +8589,8590c13745,13746 +< Severn +< Severus +--- +> Severn/M +> Severus/M +8592,8594c13748,13750 +< Sevres +< Seward +< Sextans +--- +> Sevres/M +> Seward/M +> Sextans/M +8597c13753 +< Seyfert +--- +> Seyfert/M +8600c13756,13758 +< Shackleton +--- +> Shackleton/M > Shadow/M > Shae/M -8601a13571,13572 +8601a13760,13761 > Shaina/M > Shaine/M -8605a13577,13580 +8605c13765,13769 +< Shakespearean +--- +> Shakespearean/M > Shalna/M > Shalne/M > Shalom/M > Shamus/M -8606a13582,13588 +8606a13771,13777 > Shanan/M > Shanda/M > Shandee/M @@ -7781,36 +14679,46 @@ > Shandie/M > Shandra/M > Shandy/M -8608a13591,13592 +8608a13780,13781 > Shani/M > Shanie/M -8610a13595,13597 +8611,8612c13784,13791 +< Shannon +< Shantung +--- > Shannah/M > Shannan/M > Shannen/M -8611a13599,13601 +> Shannon/M > Shanon/M > Shanta/M > Shantee/M -8613a13604,13605 +> Shantung/M +8614,8615c13793,13797 +< Shari +< Shari'a +--- > Shara/M > Sharai/M -8615a13608 +> Shari/M +> Shari'a/M > Sharia/M -8616a13610,13613 +8616a13799,13802 > Sharity/M > Sharl/M > Sharla/M > Sharleen/M -8617a13615 +8618c13804,13806 +< Sharon +--- > Sharline/M -8618a13617 +> Sharon/M > Sharona/M -8621a13621 +8621a13810 > Sharyl/M -8622a13623 +8622a13812 > Shaughn/M -8631a13633,13639 +8631a13822,13828 > Shay/M > Shayla/M > Shaylah/M @@ -7818,74 +14726,130 @@ > Shaylynn/M > Shayna/M > Shayne/M -8635a13644,13646 +8634c13831 +< Sheba +--- +> Sheba/M +8635a13833,13835 > Sheela/M > Sheelagh/M > Sheelah/M -8636a13648 +8636a13837 > Sheeree/M -8637a13650,13651 +8637a13839,13840 > Sheff/M > Sheffie/M -8638a13653 +8638a13842 > Sheffy/M -8639a13655,13660 +8639a13844,13849 > Sheilah/M > Shel/MY > Shela/M > Shelagh/M > Shelba/M > Shelbi/M -8640a13662 +8640a13851 > Shelden/M -8644a13667,13668 +8644c13855,13857 +< Shelley +--- +> Shelley/M > Shelli/M > Shellie/M -8646a13671,13672 +8647c13860,13862 +< Shenandoah +--- > Shem/M > Shena/M -8649a13676 +> Shenandoah/M +8649c13864,13865 +< Sheol +--- +> Sheol/M > Shep/M -8652a13680,13681 +8652a13869,13870 > Shepperd/M > Sher/M -8657a13687,13690 +8657,8660c13875,13886 +< Sheridan +< Sherlock +< Sherman +< Sherpa +--- +> Sheridan/M > Sherie/M > Sherill/M > Sherilyn/M > Sherline/M -8658a13692,13693 +> Sherlock/M > Sherlocke/M > Sherm/M -8659a13695,13696 +> Sherman/M > Shermie/M > Shermy/M -8663a13701 +> Sherpa/M +8664c13890,13893 +< Sherwood +--- > Sherwin/M -8664a13703,13704 +> Sherwood/M > Sherwynd/M > Sherye/M -8675a13716 +8666a13896 +> Shetlands/M +8669c13899 +< Shi'ite +--- +> Shi'ite/M +8672c13902 +< Shijiazhuang +--- +> Shijiazhuang/M +8674c13904 +< Shillong +--- +> Shillong/M +8675a13906 > Shina/M -8678a13720 +8678a13910 > Shir/M -8679a13722,13725 +8679a13912,13915 > Shirl/M > Shirlee/M > Shirleen/M > Shirlene/M -8680a13727 +8680a13917 > Shirline/M -8682a13730 +8682a13920 > Sholom/M -8684a13733,13734 +8684c13922,13924 +< Shorthorn +--- +> Shorthorn/M > Shoshana/M > Shoshanna/M -8692a13743,13745 +8689,8691c13929,13931 +< Shreveport +< Shriner +< Shropshire +--- +> Shreveport/M +> Shriner/M +> Shropshire/M +8693c13933,13936 +< Shylock +--- > Shurlock/M > Shurlocke/M > Shurwood/M -8698a13752,13758 +> Shylock/M +8695c13938 +< Si +--- +> Si/M +8699c13942,13951 +< Sibelius +--- > Siana/M > Sianna/M > Sib/M @@ -7893,245 +14857,568 @@ > Sibby/M > Sibeal/M > Sibel/M -8699a13760,13761 +> Sibelius/M > Sibella/M > Sibelle/M -8701a13764,13765 +8702c13954,13958 +< Sibyl +--- > Sibilla/M > Sibley/M -8702a13767,13768 +> Sibyl/M > Sibylla/M > Sibylle/M -8706a13773 +8707,8709c13963,13969 +< Sidney +< Siegfried +< Siemens +--- > Sidnee/M -8707a13775,13777 +> Sidney/M > Sidoney/M > Sidonia/M > Sidonnie/M -8711a13782,13787 +> Siegfried/M +> Siemens/M +8712,8714c13972,13983 +< Sigismund +< Sigmund +< Sigurd +--- > Siffre/M > Sig > Sigfrid/M > Sigfried/M > Sigismond/M > Sigismondo/M -8712a13789 +> Sigismund/M > Sigismundo/M -8713a13791 +> Sigmund/M > Sigrid/M -8714a13793 +> Sigurd/M > Sigvard/M -8722a13802,13803 +8719,8721c13988,13990 +< Sikkim +< Sikkimese +< Sikorsky +--- +> Sikkim/M +> Sikkimese/M +> Sikorsky/M +8722a13992,13993 > Sile/M > Sileas/M -8725a13807,13812 +8725a13997,14002 > Silvain/M > Silvan/M > Silvana/M > Silvano/M > Silvanus/M > Silvester/M -8726a13814,13816 +8726a14004,14006 > Silvie/M > Silvio/M > Sim/SM -8727a13818 +8728c14008,14010 +< Simmental +--- > Simeon/M -8728a13820 +> Simmental/M > Simmonds/M -8730a13823 +8730c14012,14013 +< Simon +--- +> Simon/M > Simona/M -8731a13825,13826 +8731a14015,14016 > Simonette/M > Simonne/M -8736a13832 +8733c14018,14019 +< Sims +--- +> Simpsons/M +> Sims/M +8735,8736c14021,14024 +< Sinatra +< Sinclair +--- +> Sinatra/M +> Sinbad/M +> Sinclair/M > Sinclare/M -8737a13834 +8737a14026 > Sindee/M -8745a13843 +8741c14030 +< Singer +--- +> Singer/M +8745a14035 > Siobhan/M -8746a13845 +8746a14037 > Siouxie/M -8748a13848,13851 +8748a14040,14043 > Sisely/M > Sisile/M > Sissie/M > Sissy/M -8752a13856 +8750,8751c14045,14046 +< Sistine +< Sisyphean +--- +> Sistine/M +> Sisyphean/M +8752a14048 > Siusan/M -8754a13859 +8754a14051 > Siward/M -8755a13861,13862 +8755a14053,14054 > Skell/M > Skelly/M -8756a13864,13867 +8756a14056,14059 > Skip/M > Skipp/MR > Skipper/M > Skippie/M -8757a13869 +8758,8759c14061,14064 +< Skopje +< Skye +--- > Skipton/M -8758a13871 +> Skopje/M > Sky/M -8760a13874,13875 +> Skye/M +8760a14066,14067 > Skylar/M > Skyler/M -8762a13878 +8762a14070 > Slade/M -8778a13895 +8769c14077 +< Sloan +--- +> Sloan/M +8773c14081 +< Slovakia +--- +> Slovakia/M +8778a14087 > Sly/M -8785a13903 +8781c14090 +< Smetana +--- +> Smetana/M +8783,8784c14092,14093 +< Smith +< Smithson +--- +> Smith/M +> Smithson/M +8785a14095 > Smitty/M -8809a13928 -> Sofie/M -8811c13930 +8787,8789c14097,14099 +< Smolensk +< Smollett +< Smuts +--- +> Smolensk/M +> Smollett/M +> Smuts/M +8799,8800c14109,14110 +< Snow +< Snowbelt +--- +> Snow/M +> Snowbelt/M +8806,8807c14116,14117 +< Socratic +< Soddy +--- +> Socratic/M +> Soddy/M +8810,8811c14120,14122 +< Soho < Sol/M --- +> Sofie/M +> Soho/M > Sol/MY -8812a13932,13933 +8813,8815c14124,14128 +< Solomon +< Solon +< Solzhenitsyn +--- > Sollie/M > Solly/M -8818a13940 +> Solomon/M +> Solon/M +> Solzhenitsyn/M +8818a14132 > Somerset -8827a13950,13952 +8822c14136 +< Sondheim +--- +> Sondheim/M +8827a14142,14144 > Sonni/M > Sonnie/M > Sonnnie/M -8832a13958,13959 +8833c14150,14152 +< Sophia +--- > Sophey/M > Sophi/M -8836a13964 +> Sophia/M +8835,8836c14154,14156 +< Sophoclean +< Sophocles +--- +> Sophoclean/M +> Sophocles/M > Sophronia/M -8838a13967 +8838a14159 > Sorcha/M -8839a13969 +8839a14161 > Sosanna/M -8847c13977 +8844c14166 +< Southampton +--- +> Southampton/M +8847,8848c14169,14170 < Southerner/M +< Southey --- > Southerner/SM -8875a14006 +> Southey/M +8851c14173 +< Soviet +--- +> Soviet/M +8854c14176 +< Soyuz +--- +> Soyuz/M +8857c14179 +< Spackle +--- +> Spackle/M +8865c14187 +< Sparks +--- +> Sparks/M +8867c14189 +< Spartacus +--- +> Spartacus/M +8870c14192 +< Spears +--- +> Spears/M +8872,8873c14194,14196 +< Spence/R +< Spencerian +--- +> Spence/RM +> Spencer/M +> Spencerian/M +8875c14198,14199 +< Spenglerian +--- +> Spenglerian/M > Spense/RM -8881a14013 +8877c14201 +< Spenserian +--- +> Spenserian/M +8881a14206 > Spike/M -8903a14036,14037 +8883c14208 +< Spinoza +--- +> Spinoza/M +8889,8890c14214,14215 +< Spock +< Spokane +--- +> Spock/M +> Spokane/M +8895c14220 +< Sputnik +--- +> Sputnik/M +8897c14222 +< Squanto +--- +> Squanto/M +8900c14225 +< Srinagar +--- +> Srinagar/M +8903a14229,14230 > Stace/M > Stacee/M -8905a14040 +8905a14233 > Stacia/M -8908a14044,14045 +8909,8910c14237,14241 +< Stafford +< StairMaster +--- > Stafani/M > Staffard/M -8909a14047 +> Stafford/M > Staford/M -8916c14054,14055 -< Stan/M +> StairMaster/M +8913c14244 +< Stalinist --- +> Stalinist/M +8915,8917c14246,14250 +< Stamford +< Stan/M +< Standish +--- +> Stamford/M > Stan/MY > Standford/M -8917a14057 +> Standish/M > Stanfield/M -8918a14059,14060 +8919,8921c14252,14260 +< Stanislavsky +< Stanley +< Stanton +--- > Stanislas/M > Stanislaus/M -8919a14062,14063 +> Stanislavsky/M > Stanislaw/M > Stanleigh/M -8920a14065 +> Stanley/M > Stanly/M -8921a14067 +> Stanton/M > Stanwood/M -8922a14069 +8923,8924c14262,14264 +< Starbucks +< Stark +--- > Star/M -8925a14073,14075 +> Starbucks/M +> Stark/M +8925a14266,14268 > Starla/M > Starlene/M > Starlin/M -8929a14080 +8929a14273 > Stavro/MS -8933a14085,14086 +8933c14277,14279 +< Steadicam +--- +> Steadicam/M > Stearn/M > Stearne/M -8934a14088 +8934a14281 > Stefa/M -8935a14090 +8935a14283 > Stefania/M -8936a14092,14096 +8937,8938c14285,14291 +< Stein/R +< Steinbeck +--- > Stefano/M > Steffane/M > Steffen/M > Steffi/M > Steffie/M -8944a14105 +> Stein/MR +> Steinbeck/M +8939a14293 +> Steiner/M +8942,8943c14296,14297 +< Stella +< Stendhal +--- +> Stella/M +> Stendhal/M +8944a14299 > Stepha/M -8945a14107,14108 +8945a14301,14302 > Stephana/M > Stephani/M -8946a14110,14111 +8947,8948c14304,14312 +< Stephen/S +< Stephenson +--- > Stephannie/M > Stephanus/M -8947a14113 +> Stephen/MS > Stephenie/M -8948a14115,14117 +> Stephens/M +> Stephenson/M > Stephi/M > Stephie/M > Stephine/M -8952a14122 +8950c14314 +< Stern +--- +> Stern/M +8952c14316,14317 +< Sterno +--- +> Sterno/M > Stesha/M -8954a14125 +8954a14320 > Stevana/M -8956a14128 +8957c14323,14325 +< Stevenson +--- > Stevena/M -8958a14131,14132 +> Stevens/M +> Stevenson/M +8958a14327,14328 > Stevy/M > Steward/M -8960a14135,14136 +8960a14331,14332 > Stillman/M > Stillmann/M -8963a14140 +8964c14336,14337 +< Stirling +--- > Stinky/M -8967a14145 +> Stirling/M +8967c14340,14341 +< Stockton +--- +> Stockton/M > Stoddard/M -8975a14154,14157 +8973,8974c14347,14348 +< Stone +< Stonehenge +--- +> Stone/M +> Stonehenge/M +8976,8977c14350,14355 +< Stout +< Stowe +--- > Storm/M > Stormi/M > Stormie/M > Stormy/M -9007a14190 +> Stout/M +> Stowe/M +8980,8982c14358,14360 +< Stradivarius +< Strasbourg +< Strauss +--- +> Stradivarius/M +> Strasbourg/M +> Strauss/M +8986,8987c14364,14365 +< Strindberg +< Stromboli +--- +> Strindberg/M +> Stromboli/M +8993,8994c14371,14372 +< Stuyvesant +< Stygian +--- +> Stuyvesant/M +> Stygian/M +9000c14378 +< Sucre +--- +> Sucre/M +9007,9012c14385,14391 +< Sue +< Suetonius +< Suez +< Suffolk +< Sufi +< Sufism +--- +> Sue/M > Suellen/M -9015a14199,14200 +> Suetonius/M +> Suez/M +> Suffolk/M +> Sufi/M +> Sufism/M +9015c14394,14396 +< Sukarno +--- +> Sukarno/M > Sukey/M > Suki/M -9018a14204 +9018a14400 > Sula/M -9022a14209 +9022a14405 > Sully -9039a14227 +9027a14411 +> Summers/M +9029c14413 +< Sumter +--- +> Sumter/M +9034c14418 +< Sundas +--- +> Sundas/M +9036c14420 +< Sung +--- +> Sung/M +9040c14424,14426 +< Sunnyvale +--- > Sunny/M -9040a14229 +> Sunnyvale/M > Sunshine/M -9055a14245,14246 +9044c14430 +< Superior +--- +> Superior/M +9048,9049c14434,14435 +< Surabaya +< Surat +--- +> Surabaya/M +> Surat/M +9056c14442,14445 +< Susanna +--- > Susanetta/M > Susann/M -9056a14248 +> Susanna/M > Susannah/M -9057a14250,14251 +9057a14447,14448 > Susette/M > Susi/M -9060a14255,14256 +9060c14451,14453 +< Sussex +--- +> Sussex/M > Susy/M > Sutherlan/M -9064a14261,14262 +9064a14458,14459 > Suzann/M > Suzanna/M -9067a14266,14267 +9067a14463,14464 > Suzi/M > Suzie/M -9071a14272 +9072c14469,14470 +< Svengali +--- > Svend/M -9087a14289 +> Svengali/M +9076c14474 +< Swanee +--- +> Swanee/M +9087c14485,14486 +< Sweet +--- +> Sweet/M > Swen/M -9094a14297,14303 +9094a14494,14500 > Sybila/M > Sybilla/M > Sybille/M @@ -8139,19 +15426,32 @@ > Syd/M > Sydel/M > Sydelle/M -9096a14306,14307 +9096a14503,14504 > Sylas/M > Sylvan/M -9099a14311,14312 +9100c14508,14510 +< Synge +--- > Syman/M > Symon/M -9120a14334 +> Synge/M +9103c14513 +< Syriac +--- +> Syriac/M +9108c14518 +< T'ang +--- +> T'ang/M +9110a14521 +> TARP +9120a14532 > TEirtza/M -9121a14336 +9121a14534 > THz/M -9135a14351 +9135a14549 > Tab/MR -9137a14354,14360 +9137a14552,14558 > Tabb/M > Tabbatha/M > Tabbi/M @@ -8159,11 +15459,15 @@ > Tabbitha/M > Tabby/M > Taber/M -9138a14362 +9138a14560 > Tabina/M -9139a14364 +9139a14562 > Tabor -9143a14369,14375 +9141c14564 +< Tacitus +--- +> Tacitus/M +9143a14567,14573 > Tadd/M > Taddeo/M > Taddeusz/M @@ -8171,245 +15475,458 @@ > Tadeo/M > Tades > Tadio/M -9147a14380 +9147c14577,14578 +< Taejon +--- +> Taejon/M > Taffy/M -9155a14389 +9150c14581 +< Tagore +--- +> Tagore/M +9154c14585 +< Tahoe +--- +> Tahoe/M +9155a14587 > Tailor/M -9159a14394,14395 +9159c14591,14593 +< Taiping +--- +> Taiping/M > Tait/M > Taite/M -9164a14401 +9162c14596 +< Taiyuan +--- +> Taiyuan/M +9165c14599,14601 +< Talbot +--- > Talbert/M -9165a14403 +> Talbot/M > Talia/M -9171a14410,14411 +9167c14603 +< Taliesin +--- +> Taliesin/M +9171a14608,14609 > Tallia/M > Tallie/M -9172a14413,14415 +9172a14611,14613 > Tallou/M > Tallulah/M > Tally/M -9175a14419,14422 +9175a14617,14620 > Talya/M > Talyah/M > Tam/M > Tamar/M -9176a14424,14426 +9176a14622,14624 > Tamarah/M > Tamarra/M > Tamas -9181a14432 +9181a14630 > Tamiko/M -9182a14434 +9182a14632 > Tamma/M -9183a14436 +9183a14634 > Tammara/M -9189a14443 +9189a14641 > Tamqrah/M -9191a14446,14447 +9191,9193c14643,14650 +< Tamworth +< Tancred +< Taney +--- +> Tamworth/M > Tan > Tana -9192a14449,14451 +> Tancred/M > Tandi/M > Tandie/M > Tandy/M -9196a14456,14457 +> Taney/M +9196c14653,14655 +< Tangshan +--- +> Tangshan/M > Tanhya/M > Tani/M -9198a14460,14461 +9198a14658,14659 > Tanitansy/M > Tann/MR -9199a14463 +9199a14661 > Tanney/M -9200a14465,14467 +9200a14663,14665 > Tannie/M > Tanny/M > Tansy/M -9208a14476 +9208a14674 > Tarah/M -9216a14485,14487 +9214c14680 +< Tarim +--- +> Tarim/M +9216c14682,14685 +< Tarkington +--- +> Tarkington/M > Tarra/M > Tarrah/M > Tarrance/M -9219a14491 +9218,9219c14687,14689 +< Tartary +< Tartuffe +--- +> Tartary/M +> Tartuffe/M > Taryn/M -9222a14495 +9223c14693,14694 +< Tasman +--- > Tasia/M -9228a14502,14503 +> Tasman/M +9225,9226c14696,14697 +< Tasmanian +< Tass +--- +> Tasmanian/M +> Tass/M +9228,9229c14699,14702 +< Tate +< Tatum +--- +> Tate/M > Tatiana/M > Tatiania/M -9231a14507,14508 +> Tatum/M +9231c14704,14706 +< Tawney +--- +> Tawney/M > Tawnya/M > Tawsha/M -9239a14517 +9236c14711 +< Tchaikovsky +--- +> Tchaikovsky/M +9239a14715 > Teador/M -9243a14522,14525 +9241c14717 +< Technicolor +--- +> Technicolor/M +9243a14720,14723 > Tedd/M > Tedda/M > Teddi/M > Teddie/M -9244a14527,14532 +9244a14725,14730 > Tedi/M > Tedie/M > Tedman/M > Tedmund/M > Tedra/M > Teena/M -9255a14544 +9250,9252c14736,14738 +< TelePrompter +< Telemachus +< Telemann +--- +> TelePrompter/M +> Telemachus/M +> Telemann/M +9254a14741 +> Teller/M +9255a14743 > Temp/M -9257a14547,14548 +9258c14746,14748 +< Tenn +--- > Temple/M > Templeton/M -9262a14554,14558 +> Tenn/M +9261c14751 +< Tennyson +--- +> Tennyson/M +9262a14753,14757 > Teodoor/M > Teodor/M > Teodora/M > Teodorico/M > Teodoro/M -9263a14560 +9264c14759,14761 +< Terence +--- > Tera/M -9264a14562 +> Terence/M > Terencio/M -9265a14564 +9266c14763,14767 +< Tereshkova +--- > Terese/M -9266a14566,14568 +> Tereshkova/M > Teresina > Teresita/M > Teressa/M -9267a14570 +9267a14769 > Teriann/M -9273a14577 +9273a14776 > Terrel/M -9277a14582,14583 +9277a14781,14782 > Terrijo/M > Terrill/M -9280a14587,14588 +9280c14785,14787 +< Terry +--- +> Terry/M > Terrye/M > Tersina/M -9281a14590 +9282,9283c14789,14791 +< Tesla +< Tess +--- > Terza/M -9284a14594 +> Tesla/M +> Tess/M +9284a14793 > Tessi/M -9285a14596 +9285a14795 > Tessy/M -9296a14608 +9288c14798 +< Tetons +--- +> Tetons/M +9290c14800 +< Teutonic +--- +> Teutonic/M +9292c14802 +< Tex +--- +> Tex/M +9297c14807,14808 +< Thackeray +--- > Thacher/M -9299a14612,14613 +> Thackeray/M +9299c14810,14812 +< Thaddeus +--- +> Thaddeus/M > Thaddus/M > Thadeus/M -9301a14616,14617 +9302c14815,14817 +< Thales +--- > Thain/M > Thaine/M -9304a14621 +> Thales/M +9304a14820 > Thane/M -9310c14627,14630 +9306,9307c14822,14823 +< Thanksgiving/SM +< Thant +--- +> Thanksgiving/MS +> Thant/M +9310c14826,14830 < Thatcher --- > Thatch/MR +> Thatcher/M > Thatcherism > Thaxter/M > Thayne/M -9311a14632,14633 +9311a14832,14833 > Theadora/M > Thebault/M -9312a14635,14637 +9312a14835,14837 > Theda/M > Thedric/M > Thedrick/M -9313a14639 +9313a14839 > Thekla/M -9315a14642,14644 +9315,9317c14841,14847 +< Themistocles +< Theocritus +< Theodora +--- +> Themistocles/M > The > Theo/M > Theobald/M -9316a14646 +> Theocritus/M > Theodor/M -9319a14650 +> Theodora/M +9319a14850 > Theodosia/M -9324a14656,14659 +9321,9323c14852,14854 +< Theosophy +< Theravada +< Theresa +--- +> Theosophy/M +> Theravada/M +> Theresa/M +9324a14856,14859 > Theresina/M > Theresita/M > Theressa/M > Therine/M -9333a14669,14671 +9329c14864 +< Thespian +--- +> Thespian/M +9331c14866 +< Thessalonian/S +--- +> Thessalonian/SM +9333a14869,14871 > Thia/M > Thibaud/M > Thibaut/M -9336a14675,14676 +9335c14873 +< Thimbu +--- +> Thimbu/M +9336a14875,14876 > Thom/M > Thoma/SM -9337a14678,14681 +9337a14878,14881 > Thomasa/M > Thomasin/M > Thomasina/M > Thomasine/M -9344a14689,14692 +9339,9341c14883,14885 +< Thomistic +< Thompson +< Thomson +--- +> Thomistic/M +> Thompson/M +> Thomson/M +9344a14889,14892 > Thorin/M > Thorn > Thorndike > Thornie/M -9345a14694 +9346,9347c14894,14899 +< Thoroughbred +< Thorpe +--- > Thorny/M -9347a14697,14699 +> Thoroughbred/M +> Thorpe/M > Thorstein/M > Thorsten/M > Thorvald/M -9354d14705 +9354d14905 < Thunderbird/M -9359a14711,14712 +9356c14907 +< Thurber +--- +> Thurber/M +9359a14911,14912 > Thurstan/M > Thurston/M -9367a14721 +9365c14918 +< Tiberius +--- +> Tiberius/M +9367a14921 > Tibold/M -9370a14725,14727 +9369c14923 +< Ticonderoga +--- +> Ticonderoga/M +9370a14925,14927 > Tiebold/M > Tiebout/M > Tiena/M -9372a14730,14734 +9373c14930,14938 +< Tiffany +--- > Tierney/M > Tiertza/M > Tiff/M > Tiffani/M > Tiffanie/M -9373a14736,14738 +> Tiffany/M > Tiffi/M > Tiffie/M > Tiffy/M -9375a14741,14745 +9376c14941,14947 +< Tillich +--- > Tilda/M > Tildi/M > Tildie/M > Tildy/M > Tiler/M -9376a14747 +> Tillich/M > Tillie/M -9377a14749 +9378c14949,14950 +< Tilsit +--- > Tilly/M -9381a14754,14756 +> Tilsit/M +9381a14954,14956 > Timi/M > Timmi/M > Timmie/M -9382a14758 +9382a14958 > Timofei/M -9384a14761,14764 +9384,9385c14960,14965 +< Timor +< Timothy +--- +> Timor/M > Timoteo/M > Timothea/M > Timothee/M > Timotheus/M -9388a14769 +> Timothy/M +9388a14969 > Tine/M -9393a14775,14777 +9391c14972 +< Tinkertoy +--- +> Tinkertoy/M +9393c14974,14977 +< Tintoretto +--- +> Tintoretto/M > Tiphani/M > Tiphanie/M > Tiphany/M -9400a14785,14786 +9395c14979 +< Tipperary +--- +> Tipperary/M +9400a14985,14986 > Tirrell/M > Tish/M -9408c14794 +9404,9405c14990,14991 +< Titania +< Titanic +--- +> Titania/M +> Titanic/M +9408,9409c14994,14995 < Tito/M +< Titus --- > Tito/SM -9414a14801,14807 +> Titus/M +9415,9418c15001,15012 +< Tobit +< Toby +< Tocantins +< Tocqueville +--- > Tobe/M > Tobey > Tobi/M @@ -8417,147 +15934,316 @@ > Tobias/M > Tobie/M > Tobin/M -9416a14810 +> Tobit/M +> Toby/M > Tobye/M -9420a14815,14816 +> Tocantins/M +> Tocqueville/M +9420c15014,15016 +< Todd +--- +> Todd/M > Toddie/M > Toddy/M -9422a14819,14820 +9423c15019,15021 +< Tojo +--- > Toiboid/M > Toinette/M -9434c14832,14835 +> Tojo/M +9425c15023 +< Tokugawa +--- +> Tokugawa/M +9429c15027 +< Tolkien +--- +> Tolkien/M +9431c15029 +< Toltec +--- +> Toltec/M +9434c15032,15036 < Tomas --- > Toma/SM +> Tomas/M > Tomasina/M > Tomasine/M > Tomaso/M -9435a14837,14839 +9435a15038,15040 > Tome/M > Tomi/M > Tomkin/M -9436a14841 +9436a15042 > Tommi/M -9444a14850,14851 +9438c15044 +< Tommy +--- +> Tommy/M +9440c15046 +< Tomsk +--- +> Tomsk/M +9444a15051,15052 > Tonie/M > Tonnie/M -9447a14855,14856 +9446c15054 +< Tony +--- +> Tony/M +9447a15056,15057 > Tonye/M > Tootsie/M -9451a14861,14865 +9451a15062,15066 > Tore/M > Torey/M > Tori/M > Torie/M > Torin/M -9453a14868 +9453,9456c15068,15075 +< Torquemada +< Torrance +< Torrens +< Torres +--- +> Torquemada/M > Torr/MX -9454a14870,14871 +> Torrance/M > Torre/SM > Torrence/M -9456a14874 +> Torrens/M +> Torres/M > Torrey/M -9457a14876,14878 +9458,9459c15077,15081 +< Tortola +< Tortuga +--- > Torrie/M > Torrin/M > Torry/M -9466a14888,14890 +> Tortola/M +> Tortuga/M +9463c15085 +< Toscanini +--- +> Toscanini/M +9466,9467c15088,15094 +< Toulouse +< Townes +--- +> Toulouse/M > Tova/M > Tove/M > Town/M -9467a14892,14893 +> Townes/M > Towney/M > Townie/M -9468a14895 +9468a15096 > Towny/M -9471a14899,14900 +9471a15100,15101 > Trace/M > Tracee/M -9483a14913 +9478c15108 +< Trajan +--- +> Trajan/M +9480c15110 +< Transcaucasia +--- +> Transcaucasia/M +9482c15112,15113 +< Transylvania +--- +> Transylvania/M +> Transylvanian/M +9483a15115 > Traver/MS -9485a14916 +9485a15118 > Travus/M -9487a14919 +9487c15120,15121 +< Treblinka +--- +> Treblinka/M > Trefor/M -9488a14921,14924 +9488a15123,15126 > Tremain/M > Tremaine/M > Tremayne/M > Trenna/M -9490a14927,14931 +9491c15129,15135 +< Trevelyan +--- > Tresa/M > Trescha/M > Tressa/M > Trev/MR > Trevar/M -9491a14933 +> Trevelyan/M > Trever/M -9504a14947 +9499c15143 +< Trieste +--- +> Trieste/M +9505c15149,15150 +< Tripitaka +--- > Trip/M -9506a14950 +> Tripitaka/M +9506a15152 > Tripp/M -9507a14952,14953 +9507a15154,15155 > Tris > Trish/M -9508a14955,14956 +9508a15157,15158 > Trista/M > Tristam/M -9510a14959,14962 +9510a15161,15164 > Trix/M > Trixi/M > Trixie/M > Trixy/M -9518a14971 +9511a15166 +> Troilus/M +9513c15168 +< Trollope +--- +> Trollope/M +9516c15171 +< Trotsky +--- +> Trotsky/M +9518a15174 > Trstram/M -9519a14973,14974 +9520c15176,15181 +< Trudeau +--- > Truda/M > Trude/M -9520a14976,14978 +> Trudeau/M > Trudey/M > Trudi/M > Trudie/M -9521a14980 +9521a15183 > Trueman/M -9523a14983,14984 +9523c15185,15187 +< Trujillo +--- +> Trujillo/M > Trula/M > Trumaine/M -9524a14986 +9524a15189 > Trumann/M -9537a15000 +9527c15192 +< Truth +--- +> Truth/M +9534c15199 +< Tu +--- +> Tu/M +9537c15202,15203 +< Tubman +--- +> Tubman/M > Tuck/R -9538a15002,15003 +9538a15205,15206 > Tuckie/M > Tucky/M -9546a15012,15013 +9546a15215,15216 > Tulley/M > Tully/M -9590a15058 +9557c15227 +< Tupperware +--- +> Tupperware/M +9559c15229 +< Turgenev +--- +> Turgenev/M +9568,9569c15238,15239 +< Turner +< Turpin +--- +> Turner/M +> Turpin/M +9578,9579c15248,15249 +< Tutankhamen +< Tutsi +--- +> Tutankhamen/M +> Tutsi/M +9583,9584c15253,15254 +< Twain +< Tweed +--- +> Twain/M +> Tweed/M +9588c15258,15259 +< Twinkies +--- +> Twinkies/M +> Twitter/M +9590a15262 > Twyla/M -9591a15060,15062 +9592c15264,15268 +< Tycho +--- > Tybalt/M > Tybi/M > Tybie/M -9592a15064 +> Tycho/M > Tye/M -9594a15067,15069 +9595,9597c15271,15277 +< Tyndale +< Tyndall +< Tyre +--- > Tymon/M > Tymothy/M > Tynan/M -9596a15072 +> Tyndale/M +> Tyndall/M > Tyne/M -9601a15078 +> Tyre/M +9601c15281,15282 +< Tyrone +--- +> Tyrone/M > Tyrus/M -9609a15087 +9609a15291 > UI/MS -9638a15117 +9617,9618c15299,15300 +< UPI +< UPS +--- +> UPI/M +> UPS/M +9622a15305 +> USB +9624c15307 +< USDA +--- +> USDA/M +9635c15318 +< Ubangi +--- +> Ubangi/M +9637c15320 +< Ucayali +--- +> Ucayali/M +9639c15322,15324 +< Udall +--- > Udale/M -9639a15119 +> Udall/M > Udell/M -9642a15123 +9642a15328 > Ugo/M -9646a15128 +9646a15333 > Ula/M -9647a15130,15140 +9647a15335,15345 > Ulberto/M > Ulick/M > Ulises/M @@ -8569,238 +16255,500 @@ > Ulrika/M > Ulrikaumeko/M > Ulrike/M -9651a15145 +9650c15348 +< Ulyanovsk +--- +> Ulyanovsk/M +9651a15350 > Umberto/M -9652a15147,15148 +9652a15352,15353 > Umeko/M > Una/M -9672a15169 +9654c15355 +< Ungava +--- +> Ungava/M +9665,9666c15366,15367 +< Upanishads +< Updike +--- +> Upanishads/M +> Updike/M +9669,9670c15370,15372 +< Ur +< Ural/S +--- +> Ur/M +> Ural/SM +> Urals/M +9672a15375 > Urbain/M -9673a15171,15172 +9673a15377,15378 > Urbano/M > Urbanus/M -9675a15175 +9675,9679c15380,15385 +< Urey +< Uriah +< Uriel +< Uris +< Urquhart +--- +> Urey/M > Uri/SM -9680a15181,15183 +> Uriah/M +> Uriel/M +> Uris/M +> Urquhart/M +9681,9682c15387,15392 +< Ursula +< Ursuline +--- > Ursala/M > Ursola/M > Urson/M -9681a15185 +> Ursula/M > Ursulina/M -9687a15192 +> Ursuline/M +9685c15395 +< Urumqi +--- +> Urumqi/M +9687c15397,15398 +< Ustinov +--- +> Ustinov/M > Uta/M -9723a15229,15230 +9723c15434,15436 +< Va +--- +> Va/M > Vachel/M > Vaclav/M -9726c15233,15236 +9726c15439,15442 < Val/M --- > Vail/M > Val/MY > Valaree/M > Valaria/M -9727a15238 +9727a15444 > Valdemar/M -9728a15240,15241 +9728a15446,15447 > Vale/M > Valeda/M -9729a15243,15244 +9729a15449,15450 > Valene/M > Valenka/M -9730a15246,15247 +9730a15452,15453 > Valentia/M > Valentijn/M -9731a15249 +9731a15455 > Valentina/M -9734a15253 +9733c15457 +< Valentino +--- +> Valentino/M +9734a15459 > Valera -9738a15258 +9738c15463,15464 +< Valery +--- +> Valery/M > Valerye/M -9739a15260,15261 +9739a15466,15467 > Valida/M > Valina/M -9741a15264 +9741a15470 > Valle/M -9743a15267,15270 +9744c15473,15477 +< Valois +--- > Valli/M > Vallie/M > Vally/M > Valma/M -9745a15273 +> Valois/M +9745a15479 > Valry/M -9749a15278 +9747,9748c15481,15482 +< Van +< Vance +--- +> Van/M +> Vance/M +9749a15484 > Vanda/M -9754a15284,15288 +9751,9752c15486,15487 +< Vanderbilt +< Vandyke +--- +> Vanderbilt/M +> Vandyke/M +9754a15490,15494 > Vania/M > Vanna/M > Vanni/M > Vannie/M > Vanny/M -9755a15290 +9755a15496 > Vanya/M -9760a15296,15297 +9757,9759c15498,15500 +< Varanasi +< Varese +< Vargas +--- +> Varanasi/M +> Varese/M +> Vargas/M +9760a15502,15503 > Vasili/MS > Vasily/M -9762a15300,15301 +9762a15506,15507 > Vassili/M > Vassily/M -9780a15320 +9764,9765c15509,15510 +< Vauban +< Vaughan +--- +> Vauban/M +> Vaughan/M +9770c15515 +< Vedanta +--- +> Vedanta/M +9772a15518 +> Vegas/M +9774c15520 +< Vela +--- +> Vela/M +9776c15522 +< Velazquez +--- +> Velazquez/M +9780a15527 > Velvet/M -9784a15325 +9784a15532 > Venita/M -9790a15332 +9788c15536 +< Venusian +--- +> Venusian/M +9791,9792c15539,15541 +< Verde +< Verdi +--- > Veradis -9793a15336,15339 +> Verde/M +> Verdi/M +9793a15543,15546 > Vere/M > Verena/M > Verene/M > Verge/M -9794a15341,15344 +9794a15548,15551 > Veriee/M > Verile/M > Verina/M > Verine/M -9795a15346 +9795a15553 > Verla/M -9800c15351 +9797c15555 +< Vermeer +--- +> Vermeer/M +9800c15558 < Vern/M --- > Vern/MN -9802a15354,15356 +9802c15560,15563 +< Verne +--- +> Verne/M > Vernen/M > Verney/M > Vernice/M -9803a15358 +9803a15565 > Vernor/M -9806a15362,15364 +9805,9806c15567,15571 +< Veronese +< Veronica +--- +> Veronese/M +> Veronica/M > Veronika/M > Veronike/M > Veronique -9813a15372,15373 +9809c15574 +< Vespasian +--- +> Vespasian/M +9813a15579,15580 > Vevay/M > Vi/M -9818a15379 +9815,9816c15582,15583 +< Viagra +< Vic +--- +> Viagra/M +> Vic/M +9818c15585,15586 +< Vichy +--- +> Vichy/M > Vick/M -9822a15384 +9822c15590,15591 +< Vicky +--- +> Vicky/M > Victoir/M -9827a15390 +9827a15597 > Vida/M -9828a15392,15393 +9828a15599,15600 > Vidovic/M > Vidovik/M -9837a15403 +9830c15602 +< Viennese +--- +> Viennese/M +9832,9833c15604,15605 +< Vietcong +< Vietminh +--- +> Vietcong/M +> Vietminh/M +9837a15610 > Viki/M -9838a15405,15406 +9838a15612,15613 > Vikki/M > Vikky/M -9839a15408 +9840c15615,15616 +< Villa +--- > Vilhelmina/M -9845a15415,15416 +> Villa/M +9842c15618 +< Villon +--- +> Villon/M +9845a15622,15623 > Vin/M > Vina/M -9847c15418,15420 +9847c15625,15627 < Vincent/M --- > Vincent/MS > Vincenty/M > Vincenz/M -9848a15422,15425 +9848a15629,15632 > Vinita/M > Vinni/M > Vinnie/M > Vinny/M -9850a15428,15429 +9850a15635,15636 > Violante/M > Viole/M -9851a15431,15433 +9851a15638,15640 > Violetta/M > Violette/M > Virge/M -9853a15436,15437 +9853a15643,15644 > Virgilio/M > Virgina/M -9855a15440 +9855a15647 > Virginie/M -9863a15449,15451 +9859c15651 +< Visayans +--- +> Visayans/M +9863a15656,15658 > Vita/M > Vite/M > Vitia/M -9865a15454,15456 +9865a15661,15663 > Vitoria > Vittoria/M > Vittorio/M -9866a15458,15459 +9867c15665,15667 +< Vivaldi +--- > Viv/M > Viva/M -9868a15462,15463 +> Vivaldi/M +9869c15669,15677 +< Vivian +--- > Vivi/MN > Vivia/M -9869a15465,15470 +> Vivian/M > Viviana/M > Vivianna/M > Vivianne/M > Vivie/M > Vivien/M > Viviene/M -9870a15472,15474 +9870a15679,15681 > Viviyan/M > Vivyan/M > Vivyanne/M -9871a15476 +9872c15683,15684 +< Vladimir +--- > Vladamir/M -9885a15491 +> Vladimir/M +9874c15686 +< Vlaminck +--- +> Vlaminck/M +9883c15695 +< Volta +--- +> Volta/M +9885a15698 > Von/M -9887a15494,15496 +9888c15701,15704 +< Voronezh +--- > Vonni/M > Vonnie/M > Vonny/M -9895a15505 +> Voronezh/M +9895a15712 > Vyky/M -9899c15509 +9899c15716 < WASP/M --- > WASP/SM -9917a15528 +9903a15721 +> WMD +9906a15725 +> WTO +9916,9917c15735,15737 +< Waco +< Wade +--- +> Waco/M +> Wade/M > Wadsworth/M -9921a15533,15535 +9919,9921c15739,15744 +< Wagnerian +< Wahhabi +< Waikiki +--- +> Wagnerian/M +> Wahhabi/M +> Waikiki/M > Wain/M > Wainwright/M > Wait/MR -9922a15537 +9922a15746 > Waiter/M -9923a15539 +9924c15748,15749 +< Waksman +--- > Wakefield -9930a15547 +> Waksman/M +9928,9929c15753,15754 +< Waldensian +< Waldheim +--- +> Waldensian/M +> Waldheim/M +9930a15756 > Waldon/M -9938a15556,15557 +9933c15759 +< Walesa +--- +> Walesa/M +9936c15762 +< Walkman +--- +> Walkman/M +9938,9941c15764,15774 +< Wallace +< Wallenstein +< Wallis +< Walloon +--- +> Wallace/M > Wallache/M > Wallas/M -9939a15559 +> Wallenstein/M > Wallie/M -9940a15561 +> Wallis/M > Walliw/M -9941a15563 +> Walloon/M +> Walls/M > Wally/M -9945a15568 +> Walmart/M +9943c15776 +< Walpurgisnacht +--- +> Walpurgisnacht/M +9945a15779,15781 +> Walter/M +> Walters/M > Walther/M -9946a15570 +9946a15783 > Waly/M -9948a15573,15575 +9948a15786,15788 > Wandie/M > Wandis/M > Waneta/M -9949a15577 +9949a15790 > Wanids/M -9951c15579,15580 +9951c15792,15793 < Ward --- -> Ward/N +> Ward/NM > Warde/M -9963d15591 +9953c15795 +< Warhol +--- +> Warhol/M +9956c15798 +< Warren +--- +> Warren/M +9958c15800 +< Warwick +--- +> Warwick/M +9960c15802 +< Wash +--- +> Wash/M +9962,9967c15804,15809 +< Washingtonian/SM < Wasp -9964a15593 +< Wassermann +< Waterbury +< Waterford +< Watergate +--- +> Washingtonian/MS +> Wassermann/M > Wat/MZ -9976a15606,15613 +> Waterbury/M +> Waterford/M +> Watergate/M +9970,9975c15812,15817 +< Watkins +< Watson +< Watt/S +< Watteau +< Watusi +< Waugh +--- +> Watkins/M +> Watson/M +> Watt/SM +> Watteau/M +> Watusi/M +> Waugh/M +9977c15819,15827 +< Wayne +--- > Waverley/M > Waverly/M > Way/M @@ -8809,208 +16757,478 @@ > Waylen/M > Waylin/M > Waylon/M -9989a15627,15628 +> Wayne/M +9979,9980c15829,15831 +< Web/R +< Webb +--- +> Web/MR +> Webb/M +> Weber/M +9985c15836 +< Wedgwood +--- +> Wedgwood/M +9988c15839 +< Wehrmacht +--- +> Wehrmacht/M +9989a15841,15842 > Weidar/M > Weider/M -9995a15635,15636 +9995c15848,15850 +< Weizmann +--- +> Weizmann/M > Welbie/M > Welby/M -10006a15648,15651 +10000c15855 +< Welles +--- +> Welles/M +10002c15857 +< Wells +--- +> Wells/M +10005c15860 +< Welshmen +--- +> Welshmen/M +10006a15862,15865 > Wenda/M > Wendall/M > Wendel/M > Wendeline/M -10008a15654 +10008a15868 > Wendie/M -10009a15656,15661 +10009a15870,15875 > Wendye/M > Wenona/M > Wenonah/M > Werner/M > Wernher/M > Wes -10015a15668,15669 +10013c15879 +< Wessex +--- +> Wessex/M +10015a15882,15883 > Westbrook/M > Westbrooke/M -10017a15672,15673 +10017,10018c15885,15888 +< Westinghouse +< Westminster +--- +> Westinghouse/M > Westleigh/M > Westley/M -10021a15678 +> Westminster/M +10020c15890 +< Westphalia +--- +> Westphalia/M +10021a15892 > Weylin/M -10031a15689 +10023c15894 +< Wharton +--- +> Wharton/M +10031,10032c15902,15905 +< Whistler +< Whitaker +--- +> Whistler/M > Whit -10032a15691 +> Whitaker/M > Whitby/M -10043a15703 +10035,10036c15908,15909 +< Whitehall +< Whitehead +--- +> Whitehall/M +> Whitehead/M +10041c15914 +< Whitman +--- +> Whitman/M +10043,10045c15916,15920 +< Whitsunday/SM +< Whittier +< Wicca +--- +> Whitsunday/MS > Whittaker/M -10044a15705 +> Whittier/M > Wiatt/M -10057a15719 +> Wicca/M +10050c15925 +< Wiggins +--- +> Wiggins/M +10052a15928 +> Wikileaks +10054c15930 +< Wilberforce +--- +> Wilberforce/M +10057a15934 > Wilburt/M -10060a15723,15726 +10060,10061c15937,15943 +< Wilde/R +< Wiles +--- +> Wilde/MR +> Wilder/M > Wilden/M > Wildon/M > Wileen/M > Wilek/M -10065a15732 +> Wiles/M +10065a15948 > Wilfrid/M -10067a15735,15736 +10067a15951,15952 > Wilhelmine > Wilie/M -10073a15743 +10069,10070c15954,15955 +< Wilkes +< Wilkins +--- +> Wilkes/M +> Wilkins/M +10073a15959 > Willabella/M -10074a15745 +10075,10078c15961,15972 +< Willard +< Willemstad +< William/S +< Williamson +--- > Willamina/M -10075a15747,15748 +> Willard/M > Willdon/M > Willem/M -10076a15750,15753 +> Willemstad/M > Willetta/M > Willette/M > Willey/M > Willi/MS -10080a15758 +> William/SM +> Williams/M +> Williamson/M +10080c15974,15975 +< Willis +--- +> Willis/M > Willow/M -10081a15760 +10081a15977 > Willyt/M -10082a15762 +10082a15979 > Wilmar/M -10083a15764 +10083a15981 > Wilmette/M -10084a15766,15768 +10084a15983,15985 > Wilona/M > Wilone/M > Wilow/M -10086a15771 +10086c15987,15988 +< Wilsonian +--- +> Wilsonian/M > Wilt/M -10089a15775 +10089a15992 > Win/M -10093a15780 +10091,10092c15994,15995 +< Winchester/S +< Windbreaker +--- +> Winchester/MS +> Windbreaker/M +10094,10095c15997,15999 +< Windhoek +< Windows +--- > Windham/M -10097a15785 +> Windhoek/M +> Windows/M +10097a16002 > Windy/M -10098a15787 +10098a16004 > Winfield/M -10100a15790,15791 +10100a16007,16008 > Wini/M > Winifield/M -10102a15794,15797 +10102a16011,16014 > Winn/M > Winna/M > Winnah/M > Winne/M -10103a15799 +10104c16016,16018 +< Winnie +--- > Winni/M -10104a15801 +> Winnie/M > Winnifred/M -10105a15803,15806 +10105a16020,16023 > Winny/M > Winona/M > Winonah/M > Winslow/M -10113a15815 +10107c16025 +< Winters +--- +> Winters/M +10112c16030 +< Wisconsinite/SM +--- +> Wisconsinite/MS +10113a16032 > Wit/M -10115a15818,15819 +10116c16035,16037 +< Witwatersrand +--- > Wittie/M > Witty/M -10123a15828,15829 +> Witwatersrand/M +10120,10122c16041,16043 +< Wolf +< Wolfe +< Wolff +--- +> Wolf/M +> Wolfe/M +> Wolff/M +10124c16045,16047 +< Wollongong +--- > Wolfie/M > Wolfy/M -10133a15840,15841 +> Wollongong/M +10126c16049 +< Wolsey +--- +> Wolsey/M +10128c16051 +< Wonder +--- +> Wonder/M +10131c16054 +< Wood/S +--- +> Wood/SM +10133a16057,16058 > Woodie/M > Woodman -10136a15845 +10134a16060 +> Woods/M +10137c16063,16064 +< Woolf +--- > Woody/M -10144a15854 +> Woolf/M +10140c16067 +< Woolworth +--- +> Woolworth/M +10144c16071,16072 +< Worcestershire +--- +> Worcestershire/M > Worden/M -10147a15858,15860 +10147c16075,16078 +< Worms +--- +> Worms/M > Worth > Worthington/M > Worthy/M -10153a15867 +10153,10154c16084,16086 +< Wren +< Wright +--- +> Wren/M > Wrennie/M -10159a15874 +> Wright/M +10158c16090 +< Wuhan +--- +> Wuhan/M +10160c16092,16093 +< Wyatt +--- > Wyatan/M -10163c15878 +> Wyatt/M +10163c16096,16097 < Wyeth --- > Wye/H -10164a15880,15882 +> Wyeth/M +10164a16099,16101 > Wylma/M > Wyn/M > Wyndham/M -10165a15884,15886 +10165a16103,16105 > Wynne/M > Wynnie/M > Wynny/M -10177a15899 +10168c16108 +< Wyomingite/MS +--- +> Wyomingite/SM +10175,10177c16115,16118 +< Xanadu +< Xanthippe +< Xavier +--- +> Xanadu/M +> Xanthippe/M +> Xavier/M > Xaviera/M -10178a15901 +10178a16120 > Xena/M -10181a15905 +10181c16123,16124 +< Xenophon +--- +> Xenophon/M > Xenos -10183a15908 +10183c16126,16127 +< Xerxes +--- +> Xerxes/M > Xever/M -10188a15914 +10185c16129 +< Xi'an +--- +> Xi'an/M +10188c16132,16133 +< Ximenes +--- +> Ximenes/M > Ximenez/M -10193a15920,15922 +10193a16139,16141 > Xylia/M > Xylina/M > Xymenes/M -10209a15939 +10195c16143 +< YMCA +--- +> YMCA/M +10199c16147 +< YWCA +--- +> YWCA/M +10206c16154 +< Yakima +--- +> Yakima/M +10208c16156 +< Yakutsk +--- +> Yakutsk/M +10209a16158 > Yalonda/M -10215a15946,15949 +10215,10216c16164,16169 +< Yamoussoukro +< Yang +--- +> Yamoussoukro/M > Yanaton/M > Yance/M > Yancey/M > Yancy/M -10223a15958,15959 +> Yang/M +10223c16176,16178 +< Yaqui +--- +> Yaqui/M > Yard/M > Yardley/M -10225a15962,15963 +10225c16180,16182 +< Yaroslavl +--- +> Yaroslavl/M > Yasmeen/M > Yasmin/M -10230a15969,15970 +10227c16184 +< Yates +--- +> Yates/M +10231,10232c16188,16192 +< Yekaterinburg +< Yellowknife +--- > Yehudi/M > Yehudit/M -10231a15972 +> Yekaterinburg/M > Yelena/M -10241a15983,15986 +> Yellowknife/M +10234c16194 +< Yeltsin +--- +> Yeltsin/M +10239c16199 +< Yerevan +--- +> Yerevan/M +10241a16202,16205 > Yetta/M > Yettie/M > Yetty/M > Yevette/M -10245a15991,15992 +10243c16207 +< Yggdrasil +--- +> Yggdrasil/M +10245a16210,16211 > Ynes/M > Ynez/M -10250a15998,16000 +10249c16215 +< Yokohama +--- +> Yokohama/M +10250a16217,16219 > Yolande/M > Yolane/M > Yolanthe/M -10253c16003,16007 +10252,10254c16221,16227 +< Yonkers < York/M +< Yorkie --- +> Yonkers/M > Yooper/MS > Yorgo/MS > York/MR > Yorke/M > Yorker/M -10258a16013,16014 +> Yorkie/M +10258a16232,16233 > Yoshi/M > Yoshiko/M -10262a16019 +10261,10262c16236,16238 +< Young +< Youngstown +--- +> Young/M +> Youngstown/M > Yovonnda/M -10264a16022 +10264c16240,16241 +< Ypsilanti +--- +> Ypsilanti/M > Ysabel/M -10271a16030 +10267c16244 +< Yugo +--- +> Yugo/M +10271a16249 > Yul/M -10273a16033 +10273a16252 > Yulma/M -10276a16037 +10276a16256 > Yurik/M -10278a16040 +10278a16259 > Yvon/M -10280c16042,16047 +10280c16261,16266 < Z/SMNXT --- > Yvor/M @@ -9019,24 +17237,42 @@ > Zaccaria/M > Zach > Zacharia/SM -10281a16049 +10281a16268 > Zacharie/M -10282a16051 +10282a16270 > Zacherie/M -10283a16053,16054 +10283a16272,16273 > Zack/M > Zackariah/M -10284a16056 +10284a16275 > Zahara/M -10286a16059 +10286a16278 > Zak/M -10292a16066 +10290c16282 +< Zamboni +--- +> Zamboni/M +10292c16284,16285 +< Zamora +--- +> Zamora/M > Zandra/M -10293a16068 +10293a16287 > Zaneta/M -10300a16076 +10296,10298c16290,16292 +< Zapata +< Zaporozhye +< Zapotec +--- +> Zapata/M +> Zaporozhye/M +> Zapotec/M +10300a16295 > Zarah/M -10301a16078,16084 +10302,10303c16297,16308 +< Zebedee +< Zechariah +--- > Zared/M > Zaria/M > Zarla/M @@ -9044,31 +17280,60 @@ > Zealand/M > Zeb/M > Zebadiah/M -10302a16086,16087 +> Zebedee/M > Zebulen/M > Zebulon/M -10303a16089 +> Zechariah/M > Zed/M -10307a16094 +10308c16313,16314 +< Zelig +--- > Zelda/M -10310a16098 +> Zelig/M +10310a16317 > Zena/M -10311a16100 +10311a16319 > Zenia/M -10315a16105 +10313,10314c16321,16322 +< Zephaniah +< Zephyrus +--- +> Zephaniah/M +> Zephyrus/M +10315a16324 > Zerk/M -10321a16112 +10319c16328 +< Zhengzhou +--- +> Zhengzhou/M +10321c16330,16331 +< Zhukov +--- +> Zhukov/M > Zia/M -10325a16117 +10323c16333 +< Ziegfeld +--- +> Ziegfeld/M +10325a16336 > Zilvia/M -10333a16126,16127 +10333c16344,16346 +< Ziploc +--- +> Ziploc/M > Zita/M > Zitella/M -10336a16131 +10337,10338c16350,16353 +< Zollverein +< Zoloft +--- > Zollie/M -10337a16133 +> Zollverein/M > Zolly/M -10339a16136,16143 +> Zoloft/M +10340c16355,16363 +< Zorn +--- > Zonda/M > Zondra/M > Zonnya/M @@ -9077,728 +17342,738 @@ > Zorana/M > Zorina/M > Zorine/M -10346a16151 +> Zorn/M +10347c16370,16371 +< Zsigmondy +--- > Zsazsa/M -10350a16156 +> Zsigmondy/M +10350a16375 > Zulema/M -10354a16161 +10353c16378 +< Zuni +--- +> Zuni/M +10354a16380 > Zuzana/M -10460a16268 +10356c16382 +< Zworykin +--- +> Zworykin/M +10460a16487 > abridgement/MS -10488a16297,16298 +10488a16516,16517 > absorbance/S > absorbancy/M -10516,10517c16326 +10516,10517c16545 < abuse's < abuse/EGVDS --- > abuse/EGVDSM -10665a16475 +10665a16694 > acknowledgement/MS -10709,10710c16519 +10709,10710c16738 < act's < act/ASDGV --- > act/ASDGVM -10721,10722c16530 +10721,10722c16749 < active's < active/IKY --- > active/IKYSM -10724d16531 +10724d16750 < actives -10727,10728c16534 +10727,10728c16753 < activity's/I < activity/AS --- > activity/ASIM -10774,10775c16580 +10774,10775c16799 < address's < address/AGDS --- > address/AGDSM -10824c16629 +10824c16848 < admin/S --- > admin/MS -10936a16742 +10936a16961 > advocator/SM -10937a16744 +10937a16963 > adware/MS -10979,10980c16786 +10979,10980c17005 < affect's < affect/EGVDS --- > affect/EGVDSM -10990,10991c16796 +10990,10991c17015 < affiliate's < affiliate/EGNDS --- > affiliate/EGNDSM -11045c16850 +11045c17069 < afterward --- > afterward/S -11073a16879 +11073a17098 > aggregator/SM -11393d17198 +11393d17417 < altho -11579a17385 +11579a17604 > analyses -11631c17437 +11631c17656 < anecdotal --- > anecdotal/Y -11750a17557,17558 +11750a17776,17777 > anonymization/SM > anonymize/DSG -11804c17612 +11804c17831 < anthropomorphizing --- > anthropomorphize/DSG -11931a17740 -> apatosaurus/M -11983c17792 +11983c18010 < app/S --- > app/MS -12035,12036c17844 +12035,12036c18062 < appointment's/A < appointment/ESM --- > appointment/ESMA -12135a17944,17945 +12135a18162,18163 > archaeoastronomy/M > archaeologic -12137a17948,17950 +12137a18166,18168 > archaeology/M > archaeomagnetic > archaeomagnetism -12152c17965 +12152c18183 < archeological --- > archeological/Y -12214,12215c18027 +12214,12215c18245 < arm's < arm/EAGDS --- > arm/EAGDSM -12255,12256c18067 +12255,12256c18285 < arrangement's/E < arrangement/ASM --- > arrangement/ASME -12427,12428c18238 +12427,12428c18456 < assign's < assign/ALGDS --- > assign/ALGDSM -12432c18242 +12432c18460 < assignees --- > assignee/MS -12446,12447c18256 +12446,12447c18474 < associate's < associate/EDSGNV --- > associate/EDSGNVM -12491a18301,18303 +12491a18519,18521 > astroarchaeology/SM > astrobiology/M > astrobleme/S -12518a18331 +12518a18549 > asynchronicity -12584,12585c18397 +12584,12585c18615 < attempt's < attempt/ASDG --- > attempt/ASDGM -12685c18497 +12685c18715 < auteur --- > auteur/MS -12713a18526 +12713a18744 > autocomplete/S -12754a18568 +12754a18786 > avant-garde -12827d18640 +12827d18858 < awol -12829a18643 +12829a18861 > axe/M -12969c18783 +12969c19001 < badge/MZDRS --- > badge/MZDRSG -13018,13019c18832 +13018,13019c19050 < balance's < balance/UDSG --- > balance/UDSGM -13079,13080c18892 +13079,13080c19110 < band's < band/ESGD --- > band/ESGDM -13149,13150c18961 +13149,13150c19179 < bar's < bar/ECUTS --- > bar/ECUTSM -13195,13196c19006 +13195,13196c19224 < bark's < bark/CSGD --- > bark/CSGDM -13249,13250c19059 +13249,13250c19277 < base's < base/CDRSLTG --- > base/CDRSLTGM -13843,13844c19652 +13843,13844c19870 < bind's < bind/AUGS --- > bind/AUGSM -13864a19673 +13864a19891 > biodiesel/M -14118,14119c19927 +14118,14119c20145 < block's < block/UGDS --- > block/UGDSM -14179a19988,19990 +14179a20206,20208 > bloviate/SGD > bloviation > bloviator/SM -14210d20020 +14210d20238 < blueing's -14356,14357c20166 +14356,14357c20384 < bolt's < bolt/USGD --- > bolt/USGDM -14434a20244 +14434a20462 > bookselling -14455,14456c20265 +14455,14456c20483 < boot's < boot/ASGD --- > boot/ASGDM -14501,14502c20310 +14501,14502c20528 < bosom's < bosom/US --- > bosom/USM -14522a20331 +14522a20549 > botnet/MS -14785,14786c20594 +14785,14786c20812 < brief's < brief/CSDTGJ --- > brief/CSDTGJM -14841c20649 +14841c20867 < broadcast/AMGS --- > broadcast/AMGSD -14956,14957c20764 +14956,14957c20982 < buckle's < buckle/UDSG --- > buckle/UDSGM -14986,14987c20793 +14986,14987c21011 < bug's < bug/CS --- > bug/CSM -15039,15040c20845 +15039,15040c21063 < bullshitter's < bullshitter/S! --- > bullshitter/SM! -15078,15079c20883 +15078,15079c21101 < bunk's < bunk/CDGS --- > bunk/CDGSM -15093,15094c20897 +15093,15094c21115 < burden's < burden/USGD --- > burden/USGDM -15211,15212c21014 +15211,15212c21232 < button's < button/USDG --- > button/USDGM -15230d21031 +15230d21249 < byelaw/SM -15383d21183 +15383d21401 < callisthenics/M -15430,15431c21230 +15430,15431c21448 < camp's < camp/CSTGD --- > camp/CSTGDM -15460a21260,21262 +15460a21478,21480 > cancelled/U > canceller/M > cancelling -15518,15519c21320 +15518,15519c21538 < cant's < cant/CZRDGS --- > cant/CZRDGSM -15559a21361 +15559a21579 > capita -15609c21411 +15609c21629 < caravanserai's --- > caravanserai/M -15629,15630d21430 +15629,15630d21648 < carburetter/SM < carburettor/SM -15701a21502 +15701a21720 > carnitas -15788d21588 +15788d21806 < cashpoint/S -15797d21596 +15797d21814 < cassino/M -15832a21632 +15832a21850 > catalyses -15940d21739 +15940d21957 < caviare/M -16013,16014c21812 +16013,16014c22030 < cent's < cent/AR --- > cent/ARM -16098,16099c21896 +16098,16099c22114 < chain's < chain/UGDS --- > chain/UGDSM -16200a21998 +16200a22216 > charcuterie -16231,16232c22029 +16231,16232c22247 < charter's < charter/ASGD --- > charter/ASGDM -16277c22074 +16277c22292 < check/AGMDS --- > check/AGMDSU -16327c22124 +16327c22342 < chemistry/M --- > chemistry/MS -16372c22169 +16372c22387 < chickenshit/S! --- > chickenshit/SM! -16404c22201 +16404c22419 < children --- > children/M -16488d22284 +16488d22502 < chlorophyl/M -16629,16630c22425 +16629,16630c22643 < cider's < cider/S --- > cider/MS -16651,16652c22446,22447 +16651,16652c22664,22665 < cipher's < cipher/CGDS --- > cipher/CGDSM > ciphertext/S -16702,16703c22497 +16702,16703c22715 < cite's < cite/IAGSD --- > cite/IAGSDM -16733,16735c22527 +16733,16735c22745 < claim's < claim/CKEAGDS < claimable --- > claim/CKEAGDSMB -16783,16784c22575 +16783,16784c22793 < clasp's < clasp/UGDS --- > clasp/UGDSM -16794,16796c22585 +16794,16796c22803 < classified's < classified/U < classifieds --- > classified/MSU -16918,16919c22707 +16918,16919c22925 < cloak's < cloak/USDG --- > cloak/USDGM -16930,16931c22718 +16930,16931c22936 < clog's < clog/US --- > clog/USM -16944,16946c22731 +16944,16946c22949 < close's < close/EIGTSD < closeable --- > close/EIGTSDMB -17072d22856 +17072d23074 < cocain/M -17102,17103c22886 +17102,17103c23104 < cocksucker's < cocksucker/S! --- > cocksucker/SM! -17117,17118c22900 +17117,17118c23118 < code's < code/CAGDS --- > code/CAGDSM -17195,17196c22977 +17195,17196c23195 < coil's/A < coil/UADGS --- > coil/UADGSM -17245,17246c23026 +17245,17246c23244 < collect's < collect/ASGVD --- > collect/ASGVDM -17301a23082,23083 +17301a23300,23301 > colonoscope/SM > colonoscopy/SM -17304,17305c23086 +17304,17305c23304 < color's < color/AEGDS --- > color/AEGDSM -17311,17313c23092 +17311,17313c23310 < colored's < colored/U < coloreds --- > colored/MSU -17351,17352c23130 +17351,17352c23348 < combine's < combine/ADSG --- > combine/ADSGM -17371c23149 +17371c23367 < comer's --- > comer/M -17376,17377c23154 +17376,17377c23372 < comfit's < comfit/ES --- > comfit/ESM -17412c23189 +17412c23407 < comment/GSMDR --- > comment/GSMDRZ -17428,17429c23205 +17428,17429c23423 < commission's < commission/ACGSD --- > commission/ACGSDM -17442,17443c23218 +17442,17443c23436 < commode's < commode/EIS --- > commode/EISM -17447,17448c23222 +17447,17448c23440 < common's < common/UPRYT --- > common/UPRYTM -17537,17538c23311 +17537,17538c23529 < compilation's < compilation/AS --- > compilation/ASM -17597,17598c23370 +17597,17598c23588 < compress's < compress/CGVDS --- > compress/CGVDSM -17657,17658c23429 +17657,17658c23647 < concert's < concert/ESDG --- > concert/ESDGM -17719,17720c23490 +17719,17720c23708 < condition's < condition/AGSD --- > condition/AGSDM -17755c23525 +17755c23743 < confer/S --- > confer/SB -17800a23571 +17800a23789 > conformant -17986,17987c23757 +17986,17987c23975 < construct's < construct/CADVGS --- > construct/CADVGSM -17991,17992c23761 +17991,17992c23979 < constructionist's < constructionist/CS --- > constructionist/CSM -18122,18123c23891 +18122,18123c24109 < control's < control/CS --- > control/CSM -18151d23918 +18151d24136 < convenor/S -18169,18170c23936 +18169,18170c24154 < convert's < convert/AGSD --- > convert/AGSDM -18199,18200c23965 +18199,18200c24183 < cook's < cook/ADGS --- > cook/ADGSM -18206c23971 +18206c24189 < cookie/M --- > cookie/SM -18294,18295c24059 +18294,18295c24277 < cork's < cork/UDGS --- > cork/UDGSM -18375a24140,24141 +18375a24358,24359 > corrigibility/IM > corrigible/I -18389a24156 +18389a24374 > corruptibly/I -18467a24235 +18467a24453 > could've -18487,18488c24255 +18487,18488c24473 < countenance's < countenance/EGDS --- > countenance/EGDSM -18542,18543c24309 +18542,18543c24527 < coup's < coup/AS --- > coup/ASM -18545,18546c24311 +18545,18546c24529 < couple's < couple/CUDSG --- > couple/CUDSGM -18559a24325 +18559a24543 > court-martial/SGD -18581,18582c24347 +18581,18582c24565 < cover's < cover/AEUGDS --- > cover/AEUGDSM -18585,18586c24350 +18585,18586c24568 < covering's < coverings --- > covering/MS -18739,18740c24503 +18739,18740c24721 < creation's/K < creation/ASM --- > creation/ASMK -18816a24580 +18816a24798 > crimeware/M -18880,18881c24644 +18880,18881c24862 < cross's < cross/AUGTSD --- > cross/AUGTSDM -18925a24689,24690 +18925a24907,24908 > crowdfunded > crowdfunding -18972,18973c24737 +18972,18973c24955 < crust's < crust/ISDG --- > crust/ISDGM -18988,18989c24752 +18988,18989c24970 < crypt's < crypt/CS --- > crypt/CSM -18999a24763 +18999a24981 > cryptologist/MS -19000a24765 +19000a24983 > cryptosystem/S -19035a24801 +19035a25019 > cul-de-sac -19104,19105c24870 +19104,19105c25088 < cure's < cure/KZGBDRS --- > cure/KZGBDRSM -19119,19120c24884 +19119,19120c25102 < curl's < curl/UDGS --- > curl/UDGSM -19131,19133c24895 +19131,19133c25113 < current's < current/FAY < currents --- > current/FAYSM -19142,19143c24904 +19142,19143c25122 < cursive's < cursive/EAY --- > cursive/EAYM -19167,19168c24928 +19167,19168c25146 < cuss's < cuss/FEGSD --- > cuss/FEGSDM -19246c25006 +19246c25224 < cysteine --- > cysteine/M -19536a25297 +19536a25515 > decertify/DSGNX -19759c25520 +19759c25738 < deliverable/U --- > deliverable/US -19935a25697 +19935a25915 > dequeue/DSG -19999a25762 +19999a25980 > designated/U -20196,20197c25959,25960 +20196,20197c26177,26178 < dialog/SM < dialogue/SM --- > dialog/SMGD > dialogue/SMRGD -20220a25984 +20220a26202 > diatomaceous -20481a26246 +20481a26464 > disclose/DSG -20633a26399 +20633a26617 > dissentious -20695,20696c26461 +20695,20696c26679 < district's < district/AS --- > district/ASM -20768c26533 +20768c26751 < djinn's --- > djinn/M -20830c26595 +20830c26813 < dogie/M --- > dogie/SM -20850,20851c26615 +20850,20851c26833 < dole's < dole/FGDS --- > dole/FGDSM -20895a26660 +20895a26878 > donator/MS -20918,20919c26683 +20918,20919c26901 < door's < door/IS --- > door/ISM -20975,20976c26739 +20975,20976c26957 < double's < double/ADSG --- > double/ADSGM -21067,21068c26830 +21067,21068c27048 < draft's < draft/ASDG --- > draft/ASDGM -21282,21283c27044 +21282,21283c27262 < duct's < duct/CIFDG --- > duct/CIFDGM -21291,21292c27052 +21291,21292c27270 < due's < due/IS --- > due/ISM -21355,21356c27115 +21355,21356c27333 < duplicate's < duplicate/AGNDS --- > duplicate/AGNDSM -21367a27127 +21367a27345 > durian/SM -21468,21469c27228 +21468,21469c27446 < earth's < earth/UDYG --- > earth/UDYGM -21523,21524c27282 +21523,21524c27500 < echo's < echo/ADG --- > echo/ADGM -21587,21588c27345 +21587,21588c27563 < edit's < edit/ADGS --- > edit/ADGSM -21735,21736c27492 +21735,21736c27710 < elect's < elect/ASDGV --- > elect/ASDGVM -21820a27577 +21820a27795 > elicitor/MS -21864,21865c27621 +21864,21865c27839 < em's < em/S --- > em/SM -21992,21993c27748 +21992,21993c27966 < employ's < employ/ADGLS --- > employ/ADGLSM -22071a27827 +22071a28045 > encyclopaedia -22196a27953 +22196a28171 > enqueue/DSG -22508a28266,28267 +22508a28484,28485 > eschatological > eschatologist/SM -22556a28316 +22556a28534 > estoppel -22638c28398 +22638c28616 < euthanize --- > euthanize/DSG -22719a28480 +22719a28698 > exabyte/MS -22722,22724c28483,28486 +22722,22724c28701,28704 < exact/SPDRYTG < exacting/Y < exaction/M @@ -9807,52 +18082,52 @@ > exacta/S > exacting/YP > exaction/MS -22726a28489 +22726a28707 > exactor/MS -22947a28711 +22947a28929 > experimentalism -23165,23166c28929 +23165,23166c29147 < face's < face/ACSDG --- > face/ACSDGM -23207,23208d28969 +23207,23208d29187 < faecal < faeces/M -23215c28976 +23215c29194 < faggoting's --- > faggot/SMG -23238,23239c28999 +23238,23239c29217 < faithful's < faithful/UPY --- > faithful/UPYM -23278,23279c29038 +23278,23279c29256 < fame's < fame/D --- > fame/DM -23418a29178 +23418a29396 > faux -23589,23590c29349 +23589,23590c29567 < fetter's < fetter/USGD --- > fetter/USGDM -23690,23691c29449 +23690,23691c29667 < figure's < figure/FEGSD --- > figure/FEGSDM -23699,23700c29457 +23699,23700c29675 < file's/KC < file/CAKGDS --- > file/CAKGDSM -23701a29459 +23701a29677 > filesystem/MS -23708,23711c29466,29467 +23708,23711c29684,29685 < filing's < filings < fill's @@ -9860,670 +18135,670 @@ --- > filing/SM > fill/AIDGSM -23715,23716c29471 +23715,23716c29689 < filling's < filling/S --- > filling/SM -23733,23734c29488 +23733,23734c29706 < filtrate's < filtrate/IGNDS --- > filtrate/IGNDSM -23745,23746c29499 +23745,23746c29717 < finance's < finance/ADSG --- > finance/ADSGM -23755,23756c29508 +23755,23756c29726 < fine's/F < fine/CAFTGDS --- > fine/CAFTGDSM -23776,23777c29528 +23776,23777c29746 < finish's < finish/ADSG --- > finish/ADSGM -24131,24132c29882 +24131,24132c30100 < flower's < flower/CSDG --- > flower/CSDGM -24155c29905 +24155c30123 < fluidized --- > fluidize/DSG -24185,24186c29935 +24185,24186c30153 < flux's < flux/ADG --- > flux/ADGM -24217,24218c29966,29967 +24217,24218c30184,30185 < focus's < focus/ADSG --- > foci > focus/ADSGM -24223,24224c29972 +24223,24224c30190 < fog's < fog/CS --- > fog/CSM -24238,24239c29986 +24238,24239c30204 < fold's < fold/IAUSGD --- > fold/IAUSGDM -24414,24415c30161 +24414,24415c30379 < forest's < forest/ACGDS --- > forest/ACGDSM -24464,24465c30210 +24464,24465c30428 < form's < form/CAIFDGS --- > form/CAIFDGSM -24585a30331,30332 +24585a30549,30550 > frack/DRGS > fracker/S -24609,24610c30356 +24609,24610c30574 < franchise's < franchise/EDSG --- > franchise/EDSGM -24633,24634c30379 +24633,24634c30597 < fraud's < fraud/S --- > fraud/SM -24639,24640c30384 +24639,24640c30602 < fray's < fray/CDGS --- > fray/CDGSM -24657a30402 +24657a30620 > freegan/S -24681,24682c30426 +24681,24682c30644 < freeze's < freeze/UAGS --- > freeze/UAGSM -24684c30428 +24684c30646 < freezing's --- > freezing/M -24733,24734c30477 +24733,24734c30695 < friendly's < friendly/UTPR --- > friendly/UTPRM -24736d30478 +24736d30696 < frier/M -24752,24753c30494 +24752,24753c30712 < fringe's < fringe/IDSG --- > fringe/IDSGM -24771,24772c30512 +24771,24772c30730 < frock's < frock/CUS --- > frock/CUSM -24786,24787c30526 +24786,24787c30744 < front's < front/FSDG --- > front/FSDGM -24800,24801c30539 +24800,24801c30757 < frost's < frost/CSDG --- > frost/CSDGM -24855,24856c30593,30594 +24855,24856c30811,30812 < fucker/M! < fuckhead/S! --- > fucker/SM! > fuckhead/SM! -24860,24861c30598 +24860,24861c30816 < fuel's < fuel/ADGS --- > fuel/ADGSM -24941,24942c30678 +24941,24942c30896 < furl's < furl/UDGS --- > furl/UDGSM -24953d30688 +24953d30906 < furore/MS -24969,24970c30704 +24969,24970c30922 < fuse's/A < fuse/CAIFGDS --- > fuse/CAIFGDSM -25038,25039c30772 +25038,25039c30990 < gain's < gain/ADGS --- > gain/ADGSM -25051,25052c30784 +25051,25052c31002 < gale's < gale/AS --- > gale/ASM -25095a30828 +25095a31046 > gamify/NGDS -25125c30858 +25125c31076 < gaolbird/S --- > gaolbirds -25169,25170c30902 +25169,25170c31120 < gas's < gas/CS --- > gas/CSM -25180d30911 +25180d31129 < gasolene/M -25190a30922 +25190a31140 > gastroenterologist/M -25262c30994 +25262c31212 < geezer/M --- > geezer/MS -25297,25298c31029 +25297,25298c31247 < generation's/C < generation/ASM --- > generation/ASMC -25327c31058 +25327c31276 < genomic --- > genomic/S -25462a31194 +25462a31412 > gigabit/MS -25464a31197,31199 +25464a31415,31417 > gigajoule/MS > gigapixel/MS > gigawatt/MS -25560d31294 +25560d31512 < glamourize/DSG -25674c31408 +25674c31626 < glycerine's --- > glycerine/M -25816,25817c31550 +25816,25817c31768 < gorge's < gorge/EDSG --- > gorge/EDSGM -25884,25885c31617 +25884,25885c31835 < grade's < grade/CADSG --- > grade/CADSGM -25905c31637 +25905c31855 < gram/MS --- > gram/KMS -25909d31640 +25909d31858 < gramme/SM -26063c31794,31795 +26063c32012,32013 < greybeard --- > grey/MDRTGSP > greybeard/SM -26066c31798 +26066c32016 < greyness --- > greyness/M -26246,26247d31977 +26246,26247d32195 < guerilla's < guerillas -26403,26404c32133 +26403,26404c32351 < habit's < habit/ISB --- > habit/ISBM -26432,26436d32160 +26432,26436d32378 < haemoglobin's < haemophilia/M < haemorrhage/DSMG < haemorrhoid/S < haemorrhoids/M -26555,26556c32279 +26555,26556c32497 < hand's < hand/UDGS --- > hand/UDGSM -26702,26703c32425 +26702,26703c32643 < harness's < harness/UDSG --- > harness/UDSGM -26725a32448 +26725a32666 > hashtag/S -26888,26889c32611 +26888,26889c32829 < hearse's < hearse/AS --- > hearse/ASM -26915,26916c32637 +26915,26916c32855 < heat's < heat/ADGS --- > heat/ADGSM -27167c32888 +27167c33106 < hexane --- > hexane/SM -27227a32949 +27227a33167 > hijab/S -27256,27257c32978 +27256,27257c33196 < hinge's < hinge/UDSG --- > hinge/UDSGM -27273a32995 +27273a33213 > hippopotami -27276,27277c32998 +27276,27277c33216 < hire's < hire/AGDS --- > hire/AGDSM -27302,27303c33023 +27302,27303c33241 < hitch's < hitch/UDSG --- > hitch/UDSGM -27512,27513c33232 +27512,27513c33450 < hook's < hook/UDSG --- > hook/UDSGM -27575,27576c33294 +27575,27576c33512 < horse's < horse/UDSG --- > horse/UDSGM -27666,27667c33384 +27666,27667c33602 < house's < house/ADSG --- > house/ADSGM -27841c33558 +27841c33776 < hurrah's --- > hurrah/M -27875d33591 +27875d33809 < hyaena/SM -27883,27884c33599 +27883,27884c33817 < hydrate's < hydrate/CGNDS --- > hydrate/CGNDSM -28017c33732 +28017c33950 < iPod/M --- > iPod/MS -28029,28030c33744 +28029,28030c33962 < ice's < ice/CDSG --- > ice/CDSGM -28105a33820 +28105a34038 > idolator/SM -28227c33942 +28227c34160 < immerse/XDSGN --- > immerse/XDSGNV -28513c34228 +28513c34446 < inbound --- > inbound/s -28531,28532c34246,34247 +28531,28532c34464,34465 < incentive's < incentive/ES --- > incentive/ESM > incentivize/SDG -28560,28561c34275 +28560,28561c34493 < incline's < incline/EGDS --- > incline/EGDSM -28590,28591c34304 +28590,28591c34522 < incorrigibility/M < incorrigible --- > incorrigibleness -28593d34305 +28593d34523 < incorruptibly -28650a34363 +28650a34581 > indices -28812d34524 +28812d34742 < inflexion/SM -28981,28982c34693 +28981,28982c34911 < insert's < insert/AGSD --- > insert/AGSDM -29204a34916 +29204a35134 > intermediacy/S -29206c34918,34920 +29206c35136,35138 < intermediate/SMY --- > intermediate/SMYPGD > intermediation/SE > intermediator/SM -29216a34931 +29216a35149 > intern/GDL -29266a34982 +29266a35200 > interruptible/U -29272a34989,34992 +29272a35207,35210 > intersex > intersexual/MS > intersexualism > intersexuality -29446c35166 +29446c35384 < ironic --- > ironic/U -29447a35168 +29447a35386 > ironically/U -29724c35445 +29724c35663 < jewellery's --- > jewellery/M -29733,29734c35454 +29733,29734c35672 < jig's < jig/AS --- > jig/ASM -29736,29737c35456 +29736,29737c35674 < jigger's < jigger/ASDG --- > jigger/ASDGM -29799,29800c35518 +29799,29800c35736 < join's < join/AFDSG --- > join/AFDSGM -29803,29804c35521 +29803,29804c35739 < joint's < joint/EGSD --- > joint/EGSDM -29869,29870c35586,35587 +29869,29870c35804,35805 < judge's < judge/ADSG --- > judge/ADSGM > judgement/MS -30035a35753,35754 +30035a35971,35972 > keylogger/MS > keylogging/MS -30066c35785 +30066c36003 < kiddie/M --- > kiddie/SM -30102,30103c35821 +30102,30103c36039 < kind's < kind/UPRYT --- > kind/UPRYTM -30262,30263c35980 +30262,30263c36198 < kraut's < kraut/S! --- > kraut/MS! -30283,30284c36000 +30283,30284c36218 < label's < label/ASDG --- > label/ASDGM -30302,30303c36018 +30302,30303c36236 < lace's < lace/UGDS --- > lace/UGDSM -30497,30498c36212 +30497,30498c36430 < latch's < latch/UDSG --- > latch/UDSGM -30637c36351 +30637c36569 < learning's --- > learning/M -30643,30644c36357 +30643,30644c36575 < leash's < leash/UDSG --- > leash/UDSGM -30665a36379 +30665a36597 > lector/MS -30700c36414 +30700c36632 < legation's/AC --- > legation/ACM -30927,30928c36641 +30927,30928c36859 < light's/C < light/CASTGD --- > light/CASTGDM -30938c36651 +30938c36869 < lighting's --- > lighting/M -30981,30982c36694 +30981,30982c36912 < limit's < limit/CSZGDR --- > limit/CSZGDRM -30986c36698 +30986c36916 < limiter's --- > limiter/M -30990a36703,36705 +30990a36921,36923 > limnological > limnologist/MS > limnology/M -31031c36746 +31031c36964 < linguini's --- > linguini/M -31034c36749 +31034c36967 < linguistically --- > linguistical/Y -31047,31048c36762 +31047,31048c36980 < lint's < lint/CDSG --- > lint/CDSGM -31058a36773 +31058a36991 > lepidopterist/SM -31151,31152c36866 +31151,31152c37084 < liver's < liver/S --- > liver/MS -31170,31171c36884 +31170,31171c37102 < load's < load/AUGSD --- > load/AUGSDM -31211,31212c36924 +31211,31212c37142 < location's/A < location/ESM --- > location/ESMA -31291,31292c37003 +31291,31292c37221 < long's < long/KDSTG --- > long/KDSTGM -31379,31380c37090 +31379,31380c37308 < louse's < louse/CDSG --- > louse/CDSGM -31639a37350 +31639a37568 > mage/SM -31741,31742c37452 +31741,31742c37670 < make's/A < make/UAGS --- > make/UAGSM -31806a37517 +31806a37735 > malware/MS -31822,31823c37533 +31822,31823c37751 < man's/F < man/USY --- > man/USYMF -31924,31925c37634 +31924,31925c37852 < mantle's < mantle/EGDS --- > mantle/EGDSM -31940,31941c37649 +31940,31941c37867 < map's < map/AS --- > map/ASM -32061,32062c37769 +32061,32062c37987 < mask's < mask/UDSG --- > mask/UDSGM -32084,32085c37791 +32084,32085c38009 < master's < master/ADGS --- > master/ADGSM -32230c37936 +32230c38154 < meanie/M --- > meanie/MS -32246,32247c37952 +32246,32247c38170 < measure's < measure/ADSG --- > measure/ADSGM -32317,32318c38022 +32317,32318c38240 < megadeath/M < megadeaths --- > megadeath/SM -32320c38024 +32320c38242 < megajoules --- > megajoule/SM -32329c38033 +32329c38251 < megapixel/S --- > megapixel/MS -32361,32362c38065 +32361,32362c38283 < melt's < melt/ADSG --- > melt/ADSGM -32365,32366c38068 +32365,32366c38286 < member's < member/EAS --- > member/EASM -32386c38088 +32386c38306 < men --- > men/M -32708a38411 +32708a38629 > might've -32717a38421 +32717a38639 > migrator/SM -32760a38465 +32760a38683 > millennia -32777d38481 +32777d38699 < millionnaire/M -32806,32807c38510 +32806,32807c38728 < mind's < mind/ADRSZG --- > mind/ADRSZGM -32934a38638 +32934a38856 > miscommunication/S -32991a38696 +32991a38914 > misjudgement/MS -33027,33028c38732 +33027,33028c38950 < miss's < miss/EDSGV --- > miss/EDSGVM -33051,33052c38755 +33051,33052c38973 < mist's < mist/CDRSZG --- > mist/CDRSZGM -33056c38759 +33056c38977 < mister's --- > mister/M -33083c38786 +33083c39004 < mitigation/M --- > mitigation/MS -33107,33108c38810 +33107,33108c39028 < mob's < mob/CS --- > mob/CSM -33448,33449c39150 +33448,33449c39368 < mortgage's < mortgage/AGDS --- > mortgage/AGDSM -33471,33472c39172 +33471,33472c39390 < mote's < mote/KCXSVN --- > mote/KCXSVNM -33539,33540c39239 +33539,33540c39457 < mounting's < mountings --- > mounting/MS -33784a39484 +33784a39702 > must've -33887,33888c39587 +33887,33888c39805 < name's < name/AGDS --- > name/AGDSM -33963c39662 +33963c39880 < native/MS --- > native/MSY -33970,33971c39669 +33970,33971c39887 < natural's < natural/UPY --- > natural/UPYM -33979,33980c39677 +33979,33980c39895 < nature's < nature/CS --- > nature/CSM -34133,34134c39830 +34133,34134c40048 < nerve's < nerve/UDSG --- > nerve/UDSGM -34169,34171c39865,39867 +34169,34171c40083,40085 < neurone/S < neurophysiology < neuroscience @@ -10531,898 +18806,898 @@ > neurophysiology/M > neuroscience/MS > neuroscientist/MS -34175a39872 +34175a40090 > neurosurgical -34275c39972 +34275c40190 < nightie/M --- > nightie/SM -34388,34389c40085 +34388,34389c40303 < nomination's/A < nomination/CSM --- > nomination/CSMA -34755,34756c40451 +34755,34756c40669 < note's < note/FCSDG --- > note/FCSDGM -34840,34841c40535 +34840,34841c40753 < number's < number/ASDG --- > number/ASDGM -35104a40799 +35104a41017 > octopi -35137,35138c40832 +35137,35138c41050 < offensive's < offensive/IYP --- > offensive/IYPM -35219d40912 +35219d41130 < oleomargarin/M -35226a40920 +35226a41138 > oligo -35345c41039 +35345c41257 < oppose/DSG --- > oppose/DSGRB -35452,35453c41146 +35452,35453c41364 < orient's < orient/AEDGS --- > orient/AEDGSM -35913c41606 +35913c41824 < oversize/D --- > oversize -36031,36032c41724 +36031,36032c41942 < pack's < pack/UADSG --- > pack/UADSGM -36034,36035c41726 +36034,36035c41944 < package's < package/AGDS --- > package/AGDSM -36041c41732 +36041c41950 < packing's --- > packing/M -36056,36059d41746 +36056,36059d41964 < paederast/S < paediatrician's < paediatricians < paediatrics/M -36290a41978,41979 +36290a42196,42197 > parallelization/SM > parallelize/SGD -36291a41981 +36291a42199 > paralyses -36377a42068 +36377a42286 > parkour -36403d42093 +36403d42311 < parrakeet/MS -36418,36419c42108 +36418,36419c42326 < part's < part/CDSG --- > part/CDSGM -36445,36447c42134 +36445,36447c42352 < partition's < partition/ADG < partitions --- > partition/ADGMS -36449d42135 +36449d42353 < partizan/SM -36621,36622c42307 +36621,36622c42525 < pay's < pay/ASGBL --- > pay/ASGBLM -37093a42779 +37093a42997 > petabyte/MS -37102c42788 +37102c43006 < petitioner/M --- > petitioner/MS -37221a42908,42909 +37221a43126,43127 > phlebotomist/SM > phlebotomize/SGD -37228a42917 +37228a43135 > pho -37264a42954 +37264a43172 > phosphorylate/DSGN -37310,37311c43000 +37310,37311c43218 < phrase's < phrase/AGDS --- > phrase/AGDSM -37316d43004 +37316d43222 < phrenetic -37374c43062 +37374c43280 < picky/TR --- > picky/TRP -37469,37470c43157 +37469,37470c43375 < pine's < pine/AGDS --- > pine/AGDSM -37596,37597c43283 +37596,37597c43501 < place's < place/EAGLDS --- > place/EAGLDSM -37630a43317 +37630a43535 > plaintext -37636,37637c43323 +37636,37637c43541 < plane's < plane/CGDS --- > plane/CGDSM -37786,37787c43472 +37786,37787c43690 < ploy's < ploy/S --- > ploy/SM -37792,37793c43477 +37792,37793c43695 < plug's < plug/US --- > plug/USM -37796a43481 +37796a43699 > plugin/MS -37987c43672 +37987c43890 < polypeptide/S --- > polypeptide/MS -38106,38107c43791 +38106,38107c44009 < port's < port/CAEGDS --- > port/CAEGDSM -38134,38135c43818 +38134,38135c44036 < pose's/A < pose/CAKEGDS --- > pose/CAKEGDSM -38140,38141c43823 +38140,38141c44041 < position's/KC < position/ACKES --- > position/ACKESM -38260,38261c43942 +38260,38261c44160 < pound's < pound/KDSG --- > pound/KDSGM -38266a43948 +38266a44166 > poutine/S -38291d43972 +38291d44190 < practise's -38451a44133 +38451a44351 > prejudgement/MS -38568,38569c44250 +38568,38569c44468 < press's < press/ACGSD --- > press/ACGSDM -38638,38639c44319 +38638,38639c44537 < price's < price/AGDS --- > price/AGDSM -38756,38757c44436 +38756,38757c44654 < process's < process/AGDS --- > process/AGDSM -38780,38781c44459 +38780,38781c44677 < produce's < produce/AZGDRS --- > produce/AZGDRSM -38805a44484 +38805a44702 > profiler/SM -38835a44515 +38835a44733 > programmatically -38891a44572,44573 +38891a44790,44791 > pronate/DSGN > pronator/MS -38951c44633 +38951c44851 < proprietorship/M --- > proprietorship/MS -39039a44722 +39039a44940 > provender/M -39095a44779 +39095a44997 > pseudorandom/Y -39564a45249 +39564a45467 > quinoa -39581,39582c45266 +39581,39582c45484 < quire's < quire/IAS --- > quire/IASM -39614,39615c45298 +39614,39615c45516 < quote's < quote/UDSG --- > quote/UDSGM -39653,39654c45336 +39653,39654c45554 < racoon's < racoons --- > racoon/MS -39738,39739c45420 +39738,39739c45638 < rail's < rail/CGDS --- > rail/CGDSM -39816,39817c45497 +39816,39817c45715 < range's < range/CGDS --- > range/CGDSM -39873a45554,45555 +39873a45772,45773 > rasterization/M > rasterize/SGDR -39925,39926c45607 +39925,39926c45825 < ravel's < ravel/UDSG --- > ravel/UDSGM -40036a45718 +40036a45936 > recency -40140a45823 +40140a46041 > recurse/DGSV -40141a45825 +40141a46043 > recuse/DGS -40204,40205c45888 +40204,40205c46106 < reel's < reel/UGDS --- > reel/UGDSM -40208a45892 +40208a46110 > refactor/SMDG -40244d45927 +40244d46145 < reflexion/SM -40659d46341 +40659d46559 < resizing -40829c46511 +40829c46729 < reverie/M --- > reverie/MS -40895a46578,46580 +40895a46796,46798 > rheumatological > rheumatology/M > rheumatologist/SM -40944,40945c46629 +40944,40945c46847 < ride's < ride/CZGS --- > ride/CZGSM -41104,41105c46788 +41104,41105c47006 < robe's < robe/EGDS --- > robe/EGDSM -41132,41133c46815 +41132,41133c47033 < rogue's < rogue/KS --- > rogue/KSM -41185a46868 +41185a47086 > rootkit/MS -41258,41259c46941 +41258,41259c47159 < route's < route/ADSG --- > route/ADSGM -41415a47098 +41415a47316 > sabre/MS -41447,41448c47130 +41447,41448c47348 < saddle's < saddle/UDSG --- > saddle/UDSGM -41463,41464c47145 +41463,41464c47363 < safe's < safe/UYTPR --- > safe/UYTPRM -41544,41545c47225 +41544,41545c47443 < salt's < salt/CTGDS --- > salt/CTGDSM -41765,41766c47445 +41765,41766c47663 < say's < say/USG --- > say/USGM -41787,41788c47466 +41787,41788c47684 < scale's < scale/ACSDG --- > scale/ACSDGM -41806,41807c47484 +41806,41807c47702 < scan's < scan/AS --- > scan/ASM -41880,41881c47557 +41880,41881c47775 < schedule's < schedule/ADSG --- > schedule/ADSGM -41914c47590 +41914c47808 < schnaps's --- > schnaps/M -41949c47625 +41949c47843 < schrod's --- > schrod/SM -41998a47675 +41998a47893 > scot-free -42016,42017c47693 +42016,42017c47911 < scramble's < scramble/UGDS --- > scramble/UGDSM -42055,42056c47731 +42055,42056c47949 < screw's < screw/UDSG --- > screw/UDSGM -42065,42066c47740 +42065,42066c47958 < scribe's < scribe/IKCGSD --- > scribe/IKCGSDM -42170,42171c47844 +42170,42171c48062 < seal's < seal/AUSDG --- > seal/AUSDGM -42204,42205c47877 +42204,42205c48095 < seat's < seat/UGDS --- > seat/UGDSM -42288,42289c47960 +42288,42289c48178 < seed's < seed/AGDS --- > seed/AGDSM -42359c48030,48031 +42359c48248,48249 < self/M --- > self/MG > selfie/S -42361a48034,48035 +42361a48252,48253 > selfism > selfist/S -42365,42367c48039,48040 +42365,42367c48257,48258 < sell's < sell/AZGRS < seller's --- > sell/AZGRSM > seller/M -42524c48197 +42524c48415 < seraphim's --- > seraphim/M -42558,42559c48231 +42558,42559c48449 < serve's/AF < serve/FACGDS --- > serve/FACGDSM -42574,42575c48246 +42574,42575c48464 < serving's < servings --- > serving/MS -42594,42595c48265 +42594,42595c48483 < settle's < settle/AUGDS --- > settle/AUGDSM -42647,42648c48317 +42647,42648c48535 < shackle's < shackle/UGDS --- > shackle/UGDSM -42716,42717c48385 +42716,42717c48603 < shape's < shape/AGDS --- > shape/AGDSM -42851,42852c48519 +42851,42852c48737 < ship's < ship/ALS --- > ship/ALSM -42883,42885c48550 +42883,42885c48768 < shit's < shit/S! < shite/S! --- > shit/MS! -42887,42888c48552,48553 +42887,42888c48770,48771 < shithead/S! < shitload/! --- > shithead/MS! > shitload/MS! -42891c48556 +42891c48774 < shitty/RT! --- > shitty/TR! -42976a48642 +42976a48860 > should've -43008c48674 +43008c48892 < showtime --- > showtime/MS -43090,43091c48756 +43090,43091c48974 < side's < side/AGDS --- > side/AGDSM -43143,43144c48808 +43143,43144c49026 < sign's < sign/AFCGDS --- > sign/AFCGDSM -43163,43164c48827 +43163,43164c49045 < signing's/C < signings --- > signing/MCS -43328c48991 +43328c49209 < size/MGBDRS --- > size/AMGBDRS -43368,43369c49031 +43368,43369c49249 < skill's < skill/CSD --- > skill/CSDM -43724,43726c49386 +43724,43726c49604 < smoulder's < smouldered < smoulders --- > smoulder/GSMD -43752,43753c49412 +43752,43753c49630 < snap's < snap/US --- > snap/USM -43767,43768c49426,49428 +43767,43768c49644,49646 < snarl's < snarl/USDG --- > snarkily > snarky/TR > snarl/USDGM -44012,44013c49672 +44012,44013c49890 < solute's < solute/XN --- > solute/XNM -44015c49674 +44015c49892 < solution's/EA --- > solution/EAM -44021c49680 +44021c49898 < solver's --- > solver/M -44041a49701 +44041a49919 > sommelier/SM -44062c49722 +44062c49940 < sonofabitch --- > sonofabitch/! -44177,44178c49837 +44177,44178c50055 < sow's < sow/ASGD --- > sow/ASGDM -44346a50006 +44346a50224 > spelled -44348a50009 +44348a50227 > spelt -44371a50033 +44371a50251 > spick/S! -44383c50045 +44383c50263 < spik/S --- > spik/S! -44413,44414c50075 +44413,44414c50293 < spire's < spire/IFAS --- > spire/IFASM -44416,44417c50077 +44416,44417c50295 < spirit's < spirit/ISGD --- > spirit/ISGDM -44475,44476c50135 +44475,44476c50353 < spoil's < spoil/CSDRZG --- > spoil/CSDRZGM -44549,44550c50208 +44549,44550c50426 < spray's < spray/ASDG --- > spray/ASDGM -44688,44689c50346 +44688,44689c50564 < staff's < staff/ASDG --- > staff/ASDGM -44729,44730c50386 +44729,44730c50604 < stall's < stall/SDG --- > stall/SDGM -44871a50528 +44871a50746 > steampunk -44985,44986c50642 +44985,44986c50860 < still's < still/ITGSD --- > still/ITGSDM -45024,45025c50680 +45024,45025c50898 < stitch's < stitch/ADSG --- > stitch/ADSGM -45030,45031c50685 +45030,45031c50903 < stock's < stock/AGSD --- > stock/AGSDM -45090,45091c50744 +45090,45091c50962 < stop's < stop/US --- > stop/USM -45105,45106c50758 +45105,45106c50976 < store's < store/ADSG --- > store/ADSGM -45148,45149c50800 +45148,45149c51018 < strain's < strain/FADSG --- > strain/FADSGM -45164,45165c50815 +45164,45165c51033 < strap's < strap/US --- > strap/USM -45290,45291c50940 +45290,45291c51158 < structure's < structure/AGDS --- > structure/AGDSM -45330,45331c50979 +45330,45331c51197 < study's < study/AGDS --- > study/AGDSM -45368,45369c51016 +45368,45369c51234 < style's < style/ADSG --- > style/ADSGM -45455,45456c51102 +45455,45456c51320 < submission's < submission/AS --- > submission/ASM -45872,45873c51518 +45872,45873c51736 < surface's < surface/AGDS --- > surface/AGDSM -45918,45919c51563 +45918,45919c51781 < survey's < survey/ADGS --- > survey/ADGSM -46106a51751 +46106a51969 > syllabi -46160c51805 +46160c52023 < synch/GMD --- > synch/GMDS -46167d51811 +46167d52029 < synchs -46178a51823,51825 +46178a52041,52043 > synesthesia > synesthete/S > synesthetic -46203,46204c51850,51851 +46203,46204c52068,52069 < sysadmin/S < sysop/S --- > sysadmin/MS > sysop/MS -46363,46364c52010 +46363,46364c52228 < tangle's < tangle/UDSG --- > tangle/UDSGM -46632a52279,52280 +46632a52497,52498 > teleport/SGD > teleportation -46675,46676c52323 +46675,46676c52541 < template's < template/S --- > template/SM -46752a52400 +46752a52618 > terabit/MS -46753a52402,52403 +46753a52620,52621 > terahertz/M > terapixel/MS -46756a52407 +46756a52625 > teriyaki -46806,46807c52457 +46806,46807c52675 < test's/AFK < test/AKFCDGS --- > test/AKFCDGSM -46817a52468 +46817a52686 > testcase/MS -46831a52483 +46831a52701 > testsuite/MS -46845a52498 +46845a52716 > textbox/SM -46925a52579 +46925a52797 > theremin/MS -46999c52653 +46999c52871 < thinking's --- > thinking/M -47095,47096c52749 +47095,47096c52967 < throne's < throne/CDS --- > throne/CDSM -47188,47189c52841 +47188,47189c53059 < tie's < tie/AUSD --- > tie/AUSDM -47213,47214c52865 +47213,47214c53083 < till's < till/EDRZGS --- > till/EDRZGSM -47303,47304c52954 +47303,47304c53172 < tire's < tire/AGDS --- > tire/AGDSM -47433,47434c53083 +47433,47434c53301 < tone's < tone/IZGDRS --- > tone/IZGDRSM -47453,47455c53102,53103 +47453,47455c53320,53321 < tool's < tool/ADGS < toolbar --- > tool/ADGSM > toolbar/MS -47540,47541c53188 +47540,47541c53406 < tort's < tort/FEAS --- > tort/FEASM -47644a53292 +47644a53510 > traceur/SM -47657,47658c53305 +47657,47658c53523 < tract's < tract/CEKFAS --- > tract/CEKFASM -47755a53403 +47755a53621 > transfect/DSMG -47774a53423,53424 +47774a53641,53642 > transgenderism > transgene/MS -47807,47808c53457 +47807,47808c53675 < transmission's < transmission/AS --- > transmission/ASM -47928,47929c53577 +47928,47929c53795 < trench's < trench/AIGSD --- > trench/AIGSDM -47951c53599 +47951c53817 < triage/M --- > triage/MGS -47976,47977c53624 +47976,47977c53842 < tribute's < tribute/FS --- > tribute/FSM -47997a53645 +47997a53863 > trifecta/S -48165,48166c53813 +48165,48166c54031 < trust's/E < trust/IESGD --- > trust/IESGDM -48180,48181c53827 +48180,48181c54045 < try's < try/AGDS --- > try/AGDSM -48271a53918 +48271a54136 > turducken -48334a53982 +48334a54200 > tweep/S -48371,48372c54019 +48371,48372c54237 < twist's < twist/USDG --- > twist/USDGM -48396,48397c54043 +48396,48397c54261 < type's < type/AGDS --- > type/AGDSM -48869a54516 +48869a54734 > unlikeable -49163,49164c54810 +49163,49164c55028 < usual's < usual/UY --- > usual/UYM -49211c54857 +49211c55075 < vagina/M --- > vagina/MS -49249,49250c54895 +49249,49250c55113 < value's < value/CAGSD --- > value/CAGSDM -49292,49293c54937 +49292,49293c55155 < variant's < variant/IS --- > variant/ISM -49356,49357c55000 +49356,49357c55218 < veil's < veil/UDGS --- > veil/UDGSM -49368,49369c55011 +49368,49369c55229 < velour's < velours's --- > velour/MS -49398,49399c55040 +49398,49399c55258 < vent's < vent/DGS --- > vent/DGSM -49435,49436c55076 +49435,49436c55294 < verge's < verge/FDSG --- > verge/FDSGM -49478a55119 +49478a55337 > vertices -49488,49489c55129 +49488,49489c55347 < vest's < vest/ILDGS --- > vest/ILDGSM -49681,49682c55321 +49681,49682c55539 < visit's < visit/ASGD --- > visit/ASGDM -49772a55412,55414 +49772a55630,55632 > volcanological > volcanologist/MS > volcanology/M -49807,49808c55449 +49807,49808c55667 < vote's < vote/CGVDS --- > vote/CGVDSM -50148a55790 +50148a56008 > weaponize/DSG -50215,50216c55857 +50215,50216c56075 < weigh's < weigh/AGD --- > weigh/AGDM -50260,50261d55900 +50260,50261d56118 < werwolf/M < werwolves -50555,50556c56194 +50555,50556c56412 < wind's < wind/UASG --- > wind/UASGM -50626,50627c56264 +50626,50627c56482 < wire's < wire/AGDS --- > wire/AGDSM -50728c56365 +50728c56583 < women --- > women/M -50794,50796c56431,56432 +50794,50796c56649,56650 < wop/S! < word's < word/AJDSG --- > wop/MS! > word/AJDSGM -50801c56437 +50801c56655 < wording's --- > wording/M -50808,50809c56444 +50808,50809c56662 < work's < work/ADJSG --- > work/ADJSGM -50824c56459 +50824c56677 < working's --- > working/M -50884,50885c56519 +50884,50885c56737 < worthy's < worthy/UPRT --- > worthy/UPRTM -50903,50904c56537 +50903,50904c56755 < wrap's < wrap/US --- > wrap/USM -50945c56578 +50945c56796 < writing's --- > writing/M -51118,51119c56751 +51118,51119c56969 < yoke's < yoke/UGDS --- > yoke/UGDSM -51212,51213c56844 +51212,51213c57062 < zip's < zip/US --- > zip/USM -51228,51229c56859 +51228,51229c57077 < zone's < zone/AGDS --- diff --git a/extensions/spellcheck/locales/en-US/hunspell/en-US.dic b/extensions/spellcheck/locales/en-US/hunspell/en-US.dic index 2a713afb648c..267b6149e6c8 100644 --- a/extensions/spellcheck/locales/en-US/hunspell/en-US.dic +++ b/extensions/spellcheck/locales/en-US/hunspell/en-US.dic @@ -1,4 +1,4 @@ -57246 +57464 0/nm 0th/pt 1/n1 @@ -27,11 +27,11 @@ AA/M AAA AB/M ABA -ABC/M +ABC/SM ABM/SM ABS AC/M -ACLU +ACLU/M ACT ACTH/M AD/M @@ -41,7 +41,7 @@ ADP/M AF AFAIK/S AFB -AFC +AFC/M AFDC AFN AFT @@ -52,10 +52,11 @@ AK AL AM/M AMA +AMD/M ANSI/S -ANZUS +ANZUS/M AOL/M -AP +AP/M APB API/MS APO @@ -71,7 +72,7 @@ ATP/M ATPase/M ATV AV -AWACS +AWACS/M AWOL/M AZ/M AZT/M @@ -79,13 +80,13 @@ Aachen Aaliyah/M Aaren/M Aarika/M -Aaron +Aaron/M Ab/M Abagael/M Abagail/M Abba/S Abbas/M -Abbasid +Abbasid/M Abbe/M Abbey/M Abbi/M @@ -99,7 +100,7 @@ Abdul/M Abe/M AbeBooks Abel/M -Abelard +Abelard/M Abelson/M Aberdeen/M Abernathy/M @@ -108,9 +109,9 @@ Abey/M Abidjan/M Abie/M Abigael/M -Abigail +Abigail/M Abigale/M -Abilene +Abilene/M Abner/M Aborigine/MS Abra/M @@ -120,7 +121,7 @@ Abram/MS Abramo/M Abran/M Absalom -Abuja +Abuja/M Abyssinia/M Abyssinian/M Ac/M @@ -131,17 +132,17 @@ Accra/M Acevedo/M Achaean/M Achebe/M -Achernar +Achernar/M Acheson/M Achilles/M Aconcagua/M Acosta/M Acropolis Acrux/M -Actaeon +Actaeon/M ActiveX/M -Acton -Acts +Acton/M +Acts/M Acuff/M Acura/MS Ad/MN @@ -151,18 +152,19 @@ Adair/M Adaline/M Adam/SM Adamo/M +Adams/M Adan/M -Adana +Adana/M Adar/M Adara/M AddThis/M Adda/M -Addams +Addams/M Adderley/M Addi/M Addia/M Addie/M -Addison +Addison/M Addy/M Ade/M Adel/M @@ -180,7 +182,7 @@ Adella/M Adelle/M Aden/M Adena/M -Adenauer +Adenauer/M Adey/M Adham/M Adhara/M @@ -192,7 +194,7 @@ Adirondack/MS Adirondacks/M Adkins/M Adlai/M -Adler +Adler/M Adm Admiralty Ado/M @@ -210,7 +212,7 @@ Adorne/M Adrea/M Adrenalin/MS Adria/MX -Adrian +Adrian/M Adriana/M Adriane/M Adrianna/M @@ -236,6 +238,7 @@ Aeschylus/M Aesculapius/M Aesop/M Afghan/SM +Afghani/M Afghanistan/M Afr Africa/M @@ -244,7 +247,7 @@ Afrikaans/M Afrikaner/SM Afro/SM Afrocentric -Afrocentrism +Afrocentrism/M Afton/M Ag/M Agace/M @@ -256,13 +259,13 @@ Agata/M Agatha/M Agathe/M Aggi/M -Aggie +Aggie/M Aggy/M Agilent -Aglaia +Aglaia/M Agna/M Agnella/M -Agnes +Agnes/M Agnese/M Agnesse/M Agneta/M @@ -270,9 +273,9 @@ Agnew/M Agni/M Agnola/M Agosto/M -Agra +Agra/M Agretha/M -Agricola +Agricola/M Agrippa/M Agrippina/M Aguascalientes @@ -286,14 +289,14 @@ Agustin/M Ahab/M Aharon/M Ahmad/M -Ahmadabad +Ahmadabad/M Ahmadinejad/M Ahmed/M Ahriman/M Aida/M Aidan/M Aigneis/M -Aiken +Aiken/M Aila/M Ailbert/M Aile/M @@ -312,18 +315,18 @@ Aindrea/M Ainslee/M Ainsley/M Ainslie/M -Ainu +Ainu/M Airedale/MS -Aisha +Aisha/M Ajax/M Ajay/M -Akbar +Akbar/M Akhmatova/M -Akihito +Akihito/M Akim/M -Akita +Akita/M Akiva/M -Akkad +Akkad/M Akron/M Aksel/M Al/M @@ -348,7 +351,7 @@ Alano/M Alanson/M Alar/M Alard/M -Alaric +Alaric/M Alasdair/M Alaska/M Alaskan/MS @@ -356,38 +359,38 @@ Alastair/M Alasteir/M Alaster/M Alayne/M -Alba +Alba/M Albania/M Albanian/MS Albany/M -Albee +Albee/M Alberik/M Alberio/M -Albert +Albert/M Alberta/M Albertan Albertina/M Albertine/M Alberto/M Albie/M -Albigensian +Albigensian/M Albina/M -Albion +Albion/M Albireo/M Albrecht/M Albuquerque/M -Alcatraz -Alcestis -Alcibiades +Alcatraz/M +Alcestis/M +Alcibiades/M Alcindor/M Alcmena/M Alcoa/M -Alcott -Alcuin -Alcyone -Aldan +Alcott/M +Alcuin/M +Alcyone/M +Aldan/M Aldebaran/M -Alden +Alden/M Alderamin/M Aldin/M Aldis/M @@ -425,7 +428,7 @@ Alex/M Alexa/M Alexander/MS Alexandr/M -Alexandra +Alexandra/M Alexandre/M Alexandria/M Alexandrian @@ -437,6 +440,7 @@ Alexia/M Alexina/M Alexine/M Alexio/M +Alexis/M Alf/M Alfi/M Alfie/M @@ -445,12 +449,12 @@ Alfonse/M Alfonso/M Alfonzo/M Alford/M -Alfred +Alfred/M Alfreda/M -Alfredo +Alfredo/M Alfy/M Algenib/M -Alger +Alger/M Algeria/M Algerian/SM Algernon/M @@ -459,9 +463,9 @@ Algiers/M Algol/M Algonquian/SM Algonquin/MS -Alhambra +Alhambra/M Alhena/M -Ali/S +Ali/SM Alia/M Alibaba Alic/M @@ -492,18 +496,18 @@ Aliza/M Alkaid/M Alla/M Allah/M -Allahabad +Allahabad/M Allan/M Allard/M Allayne/M Alleen/M Alleghenies/M -Allegheny/S +Allegheny/SM Allegra/M -Allen +Allen/M Allende/M Allene/M -Allentown +Allentown/M Alley/M Alleyn/M Allhallows/M @@ -547,7 +551,7 @@ Alphecca/M Alpheratz/M Alphonse/M Alphonso/M -Alpine +Alpine/M Alpo/M Alps/M Alric/M @@ -555,11 +559,11 @@ Alsace/M Alsatian/SM Alsop/M Alston/M -Alta +Alta/M Altai/M Altaic/M -Altair -Altamira +Altair/M +Altamira/M Althea/M Altiplano/M Altman/M @@ -568,7 +572,7 @@ Alton/M Aludra/M Aluin/M Aluino/M -Alva +Alva/M Alvan/M Alvarado/M Alvarez/M @@ -613,11 +617,11 @@ Amandie/M Amandy/M Amara/M Amargo/M -Amarillo +Amarillo/M Amaru/M Amata/M Amaterasu/M -Amati +Amati/M Amazon/SM Amazonian Amber/MY @@ -638,7 +642,7 @@ Ameline/M Amelita/M Amen/M Amenhotep/M -Amerasian +Amerasian/M America/SM American/MS Americana/M @@ -651,7 +655,7 @@ Amerindian/SM Amery/M Ameslan/M Amharic/M -Amherst +Amherst/M Ami/M Amie/M Amiga/M @@ -664,13 +668,13 @@ Ammamaria/M Amman/M Amoco/M Amory/M -Amos +Amos/M Amparo/M Ampere/M -Amritsar +Amritsar/M Amsterdam/M -Amtrak -Amundsen +Amtrak/M +Amundsen/M Amur/M Amway/M Amy/M @@ -682,16 +686,16 @@ Anabel/M Anabella/M Anabelle/M Anacin/M -Anacreon -Anaheim +Anacreon/M +Anaheim/M Analects/M Analiese/M Analise/M Anallese/M Anallise/M Ananias/M -Anasazi -Anastasia +Anasazi/M +Anastasia/M Anastasie/M Anastassia/M Anatol/M @@ -700,19 +704,19 @@ Anatole/M Anatolia/M Anatolian/M Anatollo/M -Anaxagoras +Anaxagoras/M Ancell/M Anchorage/M Andalusia/M -Andalusian -Andaman -Andean +Andalusian/M +Andaman/M +Andean/M Andee/M Andeee/M Anderea/M Anders/N Andersen/M -Anderson +Anderson/M Andes/M Andi/M Andie/M @@ -733,10 +737,11 @@ Andria/M Andriana/M Andrianampoinimerina/M Andriette/M -Andris -Andromache +Andris/M +Android/M +Andromache/M Andromeda/M -Andropov +Andropov/M Andros Andrus/M Andy/M @@ -745,15 +750,15 @@ Anet/M Anett/M Anetta/M Anette/M -Angara +Angara/M Ange/M Angel/M Angela/M Angele/M Angeli/M Angelia/M -Angelica -Angelico +Angelica/M +Angelico/M Angelika/M Angelina/M Angeline/M @@ -761,26 +766,26 @@ Angelique/M Angelita/M Angelle/M Angelo/M -Angelou +Angelou/M Angevin/M Angie/M Angil/M -Angkor +Angkor/M Angle/MS -Anglia +Anglia/M Anglican/SM Anglicanism/MS Anglicism/MS Anglicization Anglicize/DSG -Anglo -Anglophil -Anglophile +Anglo/M +Anglophil/M +Anglophile/M Anglophobe Angola/M Angolan/MS Angora/SM -Angstrom +Angstrom/M Anguilla/M Angus/M Angy/M @@ -795,7 +800,7 @@ Anjanette/M Anjela/M Ankara/M Ann/M -Anna +Anna/M Annabal/M Annabel/M Annabela/M @@ -812,7 +817,7 @@ Annamaria/M Annamarie/M Annapolis/M Annapurna/M -Anne +Anne/M Annecorinne/M Anneliese/M Annelise/M @@ -829,17 +834,17 @@ Annnora/M Annora/M Annunciation/MS Anny/M -Anouilh +Anouilh/M Ansel/M Ansell/M -Anselm +Anselm/M Anselma/M Anselmo/M Anshan/M Ansley/M Anson/M Anstice/M -Antaeus +Antaeus/M Antananarivo/M Antarctic/M Antarctica/M @@ -848,20 +853,21 @@ Anthe/M Anthea/M Anthia/M Anthiathia/M -Anthony +Anthony/M +Anthropocene Antichrist/MS -Antietam +Antietam/M Antigone/M Antigua/M -Antillean +Antillean/M Antilles/M Antin/M -Antioch +Antioch/M Antipas/M Antipodes Antofagasta/M Antoine/M -Antoinette +Antoinette/M Anton/MS Antone/M Antonella/M @@ -873,41 +879,42 @@ Antonietta/M Antonin/M Antonina/M Antonino/M -Antoninus +Antoninus/M Antonio/M -Antonius +Antonius/M Antony/M Antwan/M Antwerp/M Anubis/M Any/M Anya/M -Anzac +Anzac/M Apache/SM Apalachicola/M -Apennines +Apatosaurus/M +Apennines/M Aphrodite/M -Apia +Apia/M Apocalypse/M Apocrypha/M -Apollinaire +Apollinaire/M Apollo/SM -Apollonian +Apollonian/M Appalachia/M Appalachian/S Appaloosa/SM Apple/M -Appleseed -Appleton +Appleseed/M +Appleton/M Appolonia/M -Appomattox +Appomattox/M Apr/M April/MS Aprilette/M -Apuleius +Apuleius/M Aquafresh/M Aquarius/MS -Aquila +Aquila/M Aquinas/M Aquino/M Aquitaine/M @@ -924,7 +931,7 @@ Arabian/MS Arabic/M Arabidopsis Arabist/MS -Araby +Araby/M Araceli/M Arafat/M Araguaya/M @@ -944,12 +951,12 @@ Arcadian/M Arch/R Archaimbaud/M Archambault/M -Archean +Archean/M Archibald/M Archibaldo/M Archibold/M Archie/M -Archimedes +Archimedes/M Archy/M Arctic/M Arcturus/M @@ -962,7 +969,7 @@ Ardelia/M Ardelis/M Ardella/M Ardelle/M -Arden +Arden/M Ardene/M Ardenia/M Ardine/M @@ -974,16 +981,17 @@ Ardyce/M Ardys Ardyth/M Arel/M -Arequipa -Ares +Arequipa/M +Ares/M Aretha/M Argentina/M Argentine Argentinean Argentinian/MS -Argo/S +Argo/SM Argonaut/MS Argonne/M +Argos/M Argus/M Ari/M Ariadne/M @@ -992,30 +1000,30 @@ Ariana/M Arianism/M Aridatha/M Arie/SM -Ariel +Ariel/M Ariela/M Ariella/M Arielle/M Aries/MS Arin/M Ario/M -Ariosto +Ariosto/M Aristarchus/M -Aristides +Aristides/M Aristophanes/M Aristotelian/M Aristotle/M Arius/M -Ariz +Ariz/M Arizona/M Arizonan/SM Arizonian/MS -Arjuna -Ark +Arjuna/M +Ark/M Arkansan/MS Arkansas/M -Arkhangelsk -Arkwright +Arkhangelsk/M +Arkwright/M Arlan/M Arlana/M Arlee/M @@ -1033,7 +1041,7 @@ Arlin/M Arlina/M Arlinda/M Arline/M -Arlington +Arlington/M Arluene/M Arly/M Arlyn/M @@ -1052,32 +1060,32 @@ Armonk/M Armour/M Armstrong/M Arnaldo/M -Arne +Arne/M Arneb/M Arney/M -Arnhem +Arnhem/M Arni/M Arnie/M Arno/M -Arnold +Arnold/M Arnoldo/M Arnuad/M Arnulfo/M Arny/M Aron/M -Arrhenius +Arrhenius/M Arri/M Arron/M Art/M Artair/M Artaxerxes/M Arte/M -Artemas +Artemas/M Artemis/M Artemus/M Arther/M Arthur/M -Arthurian +Arthurian/M Artie/M Artur/M Arturo/M @@ -1090,17 +1098,18 @@ Arvin/M Arvy/M Aryan/MS Aryn/M +As/M Asa/M Asama/M Ascella/M Ascension/M Ase/M -Asgard +Asgard/M Ash/MRY -Ashanti +Ashanti/M Ashbey/M Ashby/M -Ashcroft +Ashcroft/M Ashe/Y Ashely/M Ashgabat @@ -1108,7 +1117,7 @@ Ashia/M Ashien/M Ashikaga/M Ashil/M -Ashkenazim +Ashkenazim/M Ashkhabad/M Ashla/M Ashlan/M @@ -1121,43 +1130,45 @@ Ashlie/M Ashlin/M Ashly/M Ashmolean/M -Ashton -Ashurbanipal +Ashton/M +Ashurbanipal/M Asia/M +Asiago Asian/MS Asiatic/SM -Asimov -Asmara -Asoka +Asimov/M +Asmara/M +Asoka/M Aspell/M Aspen/M +Asperger/M Aspidiske/M -Asquith +Asquith/M Assad/M Assam/M Assamese/M Assembly -Assisi +Assisi/M Assyria/M Assyrian/SM -Astaire +Astaire/M Astana/M Astarte/M -Aston -Astor -Astoria +Aston/M +Astor/M +Astoria/M Astra/M -Astrakhan +Astrakhan/M Astrid/M Astrix/M -AstroTurf -Asturias +AstroTurf/M +Asturias/M Asuncion/M Aswan/M At/SM Atacama/M -Atahualpa -Atalanta +Atahualpa/M +Atalanta/M Atari/M Ataturk/M Athabasca/M @@ -1170,22 +1181,22 @@ Athenian/SM Athens/M Athlon/MS Atkins/M -Atkinson +Atkinson/M Atlanta/M Atlante/SM Atlantic/M Atlantis/M Atlas/MS -Atman -Atreus +Atman/M +Atreus/M Atria/M Atropos/M Attic/M Attica/M Attila/M -Attlee +Attlee/M Attn -Attucks +Attucks/M Atwood/M Au/M Aube @@ -1195,10 +1206,10 @@ Auberta/M Aubine/M Aubree/M Aubrette/M -Aubrey +Aubrey/M Aubrie/M Aubry/M -Auckland +Auckland/M Auden/M Audi/M Audie/M @@ -1209,15 +1220,15 @@ Audrey/M Audrie/M Audry/M Audrye/M -Audubon +Audubon/M Audy/M Aug/M -Augean +Augean/M Augie/M -Augsburg +Augsburg/M August/MS Augusta/M -Augustan +Augustan/M Auguste/M Augustin/M Augustina/M @@ -1228,14 +1239,14 @@ Augustus/M Augy/M Aundrea/M Aura/M -Aurangzeb +Aurangzeb/M Aurea/M Aurel/M Aurelea/M Aurelia/M Aurelie/M Aurelio/M -Aurelius +Aurelius/M Aureomycin/M Auria/M Aurie/M @@ -1246,18 +1257,18 @@ Auroora/M Aurora/M Aurore/M Aurthur/M -Auschwitz +Auschwitz/M Aussie/MS -Austen +Austen/M Austerlitz/M Austin/MS Austina/M Austine/M Australasia/M -Australasian +Australasian/M Australia/M Australian/MS -Australoid +Australoid/M Australopithecus/M Austria/M Austrian/SM @@ -1265,56 +1276,56 @@ Austronesian/M Autumn/M Av/M Ava/M -Avalon -Ave +Avalon/M +Ave/M Aveline/M -Aventine +Aventine/M Averell/M Averil/M Averill/M -Avernus -Averroes +Avernus/M +Averroes/M Avery/M Averyl/M Avesta/M -Avicenna +Avicenna/M Avictor/M Avie/M Avigdor/M -Avignon +Avignon/M Avila/M Avior/M -Avis +Avis/M Aviva/M Avivah/M -Avogadro -Avon +Avogadro/M +Avon/M Avram/M Avril/M Avrit/M Avrom/M Ax/M Axe/M -Axel -Axis -Axum +Axel/M +Axis/M +Axum/M Ayala/M -Ayers +Ayers/M Aylmar/M Aylmer/M -Aymara +Aymara/M Aymer/M Ayn/M Ayrshire/M -Ayurveda +Ayurveda/M Ayyubid/M Azana/M Azania/M -Azazel +Azazel/M Azerbaijan/M Azerbaijani/MS Azores/M -Azov +Azov/M Aztec/SM Aztecan/M Aztlan/M @@ -1322,12 +1333,13 @@ B/MNT BA/M BASIC/SM BB/M -BBB -BBC +BBB/M +BBC/M BBQ BBS BBSes BC/M +BFF BIA BIOS BITNET/S @@ -1335,27 +1347,27 @@ BLT/SM BM/M BMW/M BO -BP +BP/M BPOE BR BS/M BSA -BSD/S +BSD/SM BTU BTW BYOB Ba/M Baal/SM Baath/M -Baathist +Baathist/M Bab/SM Babar/M Babara/M Babb/M -Babbage +Babbage/M Babbette/M Babbie/M -Babbitt +Babbitt/M Babel/MS Babette/M Babita/M @@ -1364,62 +1376,62 @@ Babylon/MS Babylonia/M Babylonian/SM Bacall/M -Bacardi +Bacardi/M Bacchanalia/M Bacchic Bacchus/M Bach/M Backus/M Bacon/M -Bactria -Baden +Bactria/M +Baden/M Badlands/M Baedeker/MS -Baez +Baez/M Baffin/M -Baggies +Baggies/M Baghdad/M -Baguio -Baha'i -Baha'ullah +Baguio/M +Baha'i/M +Baha'ullah/M Bahama/SM Bahamanian Bahamas/M Bahamian/MS -Bahia +Bahia/M Bahrain/M -Baikal +Baikal/M Bail/M Bailey/M Bailie/M Baillie/M Baily/M -Baird +Baird/M Bakelite/M -Baker -Bakersfield +Baker/M +Bakersfield/M Baku/M -Bakunin -Balanchine -Balaton -Balboa +Bakunin/M +Balanchine/M +Balaton/M +Balboa/M Bald/MR Balder/M Balduin/M Baldwin/SM Bale/M Balearic/M -Balfour +Balfour/M Bali/M Balinese/M -Balkan/S -Balkhash -Ball +Balkan/SM +Balkhash/M +Ball/M Ballard/M -Balthazar +Balthazar/M Baltic/M Baltimore/M -Baluchistan +Baluchistan/M Balzac/M Bamako/M Bambi/M @@ -1430,25 +1442,25 @@ Banach/M Bancorp Bancroft/M Bandung/M -Bangalore +Bangalore/M Bangkok/M Bangladesh/M Bangladeshi/MS -Bangor +Bangor/M Bangui/M Banjarmasin/M -Banjul +Banjul/M Bank/SM Banky/M Banneker/M -Bannister -Banting +Bannister/M +Banting/M Bantu/MS Baotou/M Baptist/SM Baptiste/M Bar/H -Barabbas +Barabbas/M Barack/M Barb/MR Barbabas/M @@ -1462,11 +1474,11 @@ Barbarossa/M Barbary/M Barbe/M Barbee/M -Barber +Barber/M Barbette/M Barbey/M Barbi/M -Barbie +Barbie/M Barbour/M Barbra/M Barbuda/M @@ -1482,66 +1494,66 @@ Barker/M Barkley/M Barlow/M Barn/M -Barnabas +Barnabas/M Barnabe/M Barnaby/M -Barnard -Barnaul +Barnard/M +Barnaul/M Barnebas/M -Barnes +Barnes/M Barnett/M Barney/M Barnie/M -Barnum +Barnum/M Barny/M -Baroda +Baroda/M Baron/M Baroque -Barquisimeto +Barquisimeto/M Barr/M -Barranquilla +Barranquilla/M Barrera/M Barret/M Barrett/M Barri/MS Barrie/M Barron/M -Barry -Barrymore -Bart +Barry/M +Barrymore/M +Bart/M Bartel/M -Barth/S +Barth/SM Barthel/M Bartholdi/M Bartholemy/M Bartholomeo/M Bartholomeus/M -Bartholomew +Bartholomew/M Bartie/M Bartlet/M -Bartlett -Bartok +Bartlett/M +Bartok/M Bartolemo/M Bartolomeo/M -Barton +Barton/M Bartram/M Barty/M -Baruch +Baruch/M Bary/M Baryram/M -Baryshnikov +Baryshnikov/M Base/M Basel/M Basho/M Basia/M -Basic -Basie -Basil +Basic/M +Basie/M +Basil/M Basile/M Basilio/M Basilius/M Basque/MS -Basra +Basra/M Bass/M Basseterre/M Bastian/M @@ -1550,10 +1562,10 @@ Bastille/M Basutoland/M Bat/M Bataan/M -Bates +Bates/M Batholomew/M -Bathsheba -Batista +Bathsheba/M +Batista/M Batman/M Batsheva/M Battle/M @@ -1561,9 +1573,9 @@ Batu/M Baudelaire/M Baudoin/M Baudouin/M -Bauer +Bauer/M Bauhaus/M -Baum +Baum/M Bavaria/M Bavarian Bax @@ -1574,24 +1586,24 @@ Bay/MR Bayamon Bayard Bayer/M -Bayes -Bayesian +Bayes/M +Bayesian/M Bayeux/M Baylor/M Bayonne/M -Bayreuth +Bayreuth/M Baywatch/M Be/MH Bea/M Beach/M -Beadle +Beadle/M Beale/M Bealle/M Bean/M Bear/M Beard/M Beardmore/M -Beardsley +Beardsley/M Bearnaise/M Bearnard/M Beasley/M @@ -1602,12 +1614,12 @@ Beatrisa/M Beatrix/M Beatriz/M Beau/M -Beaufort +Beaufort/M Beaujolais/M Beaumarchais -Beaumont +Beaumont/M Beauregard/M -Beauvoir +Beauvoir/M Bebe/M Becca/M Bechtel/M @@ -1620,21 +1632,21 @@ Beckham/M Becki/M Beckie/M Becky/M -Becquerel -Bede +Becquerel/M +Bede/M Bedouin/SM Bee/M Beebe/M -Beecher +Beecher/M Beefaroni/M Beelzebub/M -Beerbohm +Beerbohm/M Beethoven/M Beeton/M -Begin -Behan -Behring -Beiderbecke +Begin/M +Behan/M +Behring/M +Beiderbecke/M Beijing/M Beilul/M Beirut/M @@ -1647,7 +1659,7 @@ Belarus/M Belau/M Belem/M Belfast/M -Belg +Belg/M Belgian/SM Belgium/M Belgrade/M @@ -1663,17 +1675,17 @@ Bellamy/M Bellanca/M Bellatrix/M Belle/M -Belleek +Belleek/M Bellevue/M Bellina/M -Bellini -Bellow +Bellini/M +Bellow/M Belmont/M -Belmopan +Belmopan/M Belorussia/M Belorussian/MS Belshazzar/M -Beltane +Beltane/M Beltran/M Belushi/M Belva/M @@ -1697,7 +1709,7 @@ Benedicto/M Benedikt/M Benedikta/M Benelux/M -Benet +Benet/M Benetta/M Benetton/M Bengal/SM @@ -1710,12 +1722,12 @@ Beninese/M Benita/M Benito/M Benjamen/M -Benjamin +Benjamin/M Benji/M Benjie/M Benjy/M Benn/M -Bennett +Bennett/M Benni/M Bennie/M Benny/M @@ -1723,28 +1735,28 @@ Benoit/M Benoite/M Benson/M Bent/M -Bentham +Bentham/M Bentlee/M -Bentley -Benton +Bentley/M +Benton/M Benyamin/M -Benz +Benz/M Benzedrine/M -Beowulf +Beowulf/M Ber/MG Berber/SM Berenice/M Beret Beretta/M -Berg/NR +Berg/MNR Bergen/M Berger/M -Bergerac +Bergerac/M Berget/M -Bergman -Bergson -Beria -Bering +Bergman/M +Bergson/M +Beria/M +Bering/M Berk/MY Berke/M Berkeley/M @@ -1756,7 +1768,7 @@ Berky/M Berle/M Berlin/SZMR Berliner/M -Berlioz +Berlioz/M Berlitz/M Bermuda/SM Bermudan/SM @@ -1764,11 +1776,11 @@ Bermudian/SM Bern/M Berna/M Bernadene/M -Bernadette +Bernadette/M Bernadina/M Bernadine/M Bernanke/M -Bernard +Bernard/M Bernardina/M Bernardine Bernardo/M @@ -1781,19 +1793,19 @@ Bernete/M Bernetta/M Bernette/M Bernhard/M -Bernhardt +Bernhardt/M Berni/M Bernice/M Bernie/M -Bernini +Bernini/M Bernita/M -Bernoulli -Bernstein +Bernoulli/M +Bernstein/M Berny/M Berra/M Berri/M Berrie/M -Berry +Berry/M Bert/M Berta/M Berte/M @@ -1812,24 +1824,24 @@ Bertrando/M Berty/M Beryl/M Beryle/M -Berzelius +Berzelius/M Bespin/M -Bess -Bessel +Bess/M +Bessel/M Bessemer/M -Bessie +Bessie/M Bessy/M Best/M Betelgeuse/M Beth/M Bethanne/M -Bethany -Bethe +Bethany/M +Bethe/M Bethena/M -Bethesda +Bethesda/M Bethina/M Bethlehem -Bethune +Bethune/M Betsey/M Betsy/M Betta/M @@ -1842,7 +1854,7 @@ Bettina/M Bettine/M Betty/M Bettye/M -Beulah +Beulah/M Bevan Beverie/M Beverlee/M @@ -1852,13 +1864,13 @@ Beverly/M Bevin Bevon/M Bevvy/M -Beyer -Bhopal +Beyer/M +Bhopal/M Bhutan/M Bhutanese/M Bhutto/M Bi/M -Bialystok +Bialystok/M Bianca/M Bianka/M Bib @@ -1872,16 +1884,16 @@ Bible/MS Biblical Bic/M Biddie/M -Biddle +Biddle/M Biddy/M Biden/M Bidget/M -Bierce +Bierce/M Bigfoot/M Biggles/M Biko/M Bil/MY -Bilbao +Bilbao/M Bilbo/M Bili/M Bill/MJ @@ -1898,26 +1910,27 @@ Binnie/M Binny/M Bioko/M Birch/M -Bird +Bird/M Birdie/M Birdseye/M Birgit/M Birgitta/M Birk/M -Birkenstock +Birkenstock/M Birmingham/M Biro/M Biron/M -Biscay +Biscay/M Biscayne/M -Bishkek +Bishkek/M Bishop/M Bismarck/M Bismark/M Bisquick/M Bissau/M +BitTorrent/M BizRate/M -Bizet +Bizet/M Bjerknes/M Bjork/M Bjorn/M @@ -1926,16 +1939,16 @@ Black/MS BlackBerry/M Blackbeard/M Blackburn/M -Blackfeet +Blackfeet/M Blackfoot/M Blackpool/M Blackshirt/M -Blackstone -Blackwell +Blackstone/M +Blackwell/M Blaine/M Blair/M Blaire/M -Blake +Blake/M Blakelee/M Blakeley/M Blanca/M @@ -1947,7 +1960,7 @@ Blane/M Blankenship/M Blantyre/M Blatz/M -Blavatsky +Blavatsky/M Blayne/M Blenheim/M Blevins/M @@ -1959,7 +1972,7 @@ Blinny/M Bliss Blisse/M Blithe/M -Bloch +Bloch/M Blockbuster/M Bloemfontein/M Bloglines/M @@ -1970,9 +1983,11 @@ Blondie/M Blondy/M Bloom/MR Bloomberg/M -Bloomfield +Bloomer/M +Bloomfield/M Bloomingdale/M -Bloomsbury +Bloomsbury/M +Blu Blucher/M Bluebeard/M Bluetooth/M @@ -1994,20 +2009,20 @@ Bobette/M Bobina/M Bobine/M Bobinette/M -Boccaccio +Boccaccio/M Bodhidharma/M Bodhisattva/M Boeing/M Boeotia/M -Boeotian +Boeotian/M Boer/SM -Boethius +Boethius/M Bogart/M Bogey/M Bogota/M -Bohemia +Bohemia/M Bohemian/SM -Bohr +Bohr/M Boigie/M Boise/M Bojangles/M @@ -2018,21 +2033,21 @@ Bolivian/MS Bollywood/M Bologna/M Bolshevik/SM -Bolshevism -Bolshevist +Bolshevism/M +Bolshevist/M Bolshoi/M -Bolton -Boltzmann +Bolton/M +Boltzmann/M Bombay/M -Bonaparte -Bonaventure +Bonaparte/M +Bonaventure/M Bond/M Bondie/M Bondon/M Bondy/M Bone/M Bonhoeffer/M -Boniface +Boniface/M Bonita/M Bonn/MR Bonnee/M @@ -2041,19 +2056,19 @@ Bonneville/M Bonni/M Bonnibelle/M Bonnie/M -Bonny +Bonny/M Bono/M Bonsai/M Booker/M Boole/M -Boolean +Boolean/M Boone/M Boonie/M Boony/M Boot/M Boote/MS Bootes/M -Booth +Booth/M Boothe/M Bord/MN Bordeaux/M @@ -2063,70 +2078,71 @@ Bordon/M Bordy/M Boreas/M Borg/SM -Borges -Borgia -Borglum -Boris +Borges/M +Borgia/M +Borglum/M +Boris/M Bork/M Borlaug/M -Born +Born/M Borneo/M Borobudur/M -Borodin +Borodin/M Boru/M -Bosch -Bose +Bosch/M +Bose/M Bosnia/M -Bosnian +Bosnian/M Bosporus/M Boston/MS -Bostonian -Boswell +Bostonian/M +Boswell/M +Botox Botswana/M -Botticelli -Boudicca -Boulder +Botticelli/M +Boudicca/M +Boulder/M Boulez/M Bourbaki/M Bourbon/SM Bourke/M -Bournemouth +Bournemouth/M Bovary/M Bowditch/M Bowell/M Bowen/M -Bowers +Bowers/M Bowery/M -Bowie +Bowie/M Bowman/M Boy/MR Boyce/M Boycey/M Boycie/M -Boyd +Boyd/M Boyer/M -Boyle +Boyle/M Br/MNT Brad/MY Bradan/M -Bradbury +Bradbury/M Braddock/M Brade/M Braden/M -Bradford -Bradley +Bradford/M +Bradley/M Bradly/M Bradney/M Bradshaw/M Bradstreet/M -Brady +Brady/M Bragg/M -Brahe +Brahe/M Brahma/MS Brahmagupta/M Brahman/MS -Brahmanee -Brahmani +Brahmanee/M +Brahmani/M Brahmanism/SM Brahmaputra/M Brahmin/MS @@ -2142,26 +2158,26 @@ Brand/MNR Brandais/M Brande/M Brandea/M -Brandeis +Brandeis/M Branden/M -Brandenburg +Brandenburg/M Brander/M Brandi/M Brandice/M Brandie/M Brandise/M -Brando +Brando/M Brandon/M -Brandt +Brandt/M Brandtr/M Brandy/M Brandyn/M Brannon/M Brant/M Brantley/M -Braque +Braque/M Brasilia/M -Bratislava +Bratislava/M Brattain/M Bray/M Brazil/M @@ -2172,11 +2188,11 @@ Breakspear/M Breanne/M Brear/M Breathalyzer -Brecht +Brecht/M Breckenridge/M Bree/M Breena/M -Bremen +Bremen/M Bren/M Brena/M Brenda/M @@ -2192,14 +2208,15 @@ Brennen/M Brenner/M Brent/M Brenton/M +Brest/M Bret/M Breton/M Brett/M Breughel Brew/MR Brewer/M -Brewster -Brezhnev +Brewster/M +Brezhnev/M Bria/M Brian/M Briana/M @@ -2212,29 +2229,29 @@ Bridalveil/M Bride/M Bridgeport/M Bridger/M -Bridges +Bridges/M Bridget/M -Bridgetown +Bridgetown/M Bridgett/M Bridgette/M -Bridgman +Bridgman/M Bridie/M Brie/RSM Brien/M Brier/M Brietta/M -Brig -Brigadoon +Brig/M +Brigadoon/M Brigg/MS Brigham/M -Bright +Bright/M Brighton/M Brigid/M Brigida/M Brigit/M Brigitta/M Brigitte/M -Brillo +Brillo/M Brina/M Briney/M Brinkley/M @@ -2247,8 +2264,8 @@ Bristol/M Brit/SM Brita/M Britain/M -Britannia -Britannic +Britannia/M +Britannic/M Britannica/M Briticism/SM British/MRZ @@ -2263,16 +2280,17 @@ Brittaney/M Brittani/M Brittany/SM Britte/M +Britten/M Britteny/M Brittne/M Brittney/M Brittni/M Brnaba/M Brnaby/M -Brno +Brno/M Broadway/SM Brobdingnag/M -Brobdingnagian +Brobdingnagian/M Brock/M Brockie/M Brocky/M @@ -2289,40 +2307,43 @@ Bron/M Bronnie/M Bronny/M Bronson/M -Bronte +Bronte/M +Brontosaurus Bronx/M Brook/MS -Brooke +Brooke/M Brooklyn/M +Brooks/M Bros Brose/M -Brown/G -Browne +Brown/MG +Browne/M Brownian/M Brownie/S -Brownshirt -Brownsville -Brubeck +Browning/M +Brownshirt/M +Brownsville/M +Brubeck/M Bruce/M Brucie/M -Bruckner -Bruegel -Brueghel +Bruckner/M +Bruegel/M +Brueghel/M Bruis/M Brummel/M Brunei/M Bruneian/MS -Brunelleschi +Brunelleschi/M Brunhilda/M Brunhilde/M -Bruno +Bruno/M Brunswick/M Brussels/M Brut/M Brutus/M -Bryan +Bryan/M Bryana/M -Bryant +Bryant/M Bryanty/M Bryce/M Bryn/M @@ -2334,14 +2355,14 @@ Brynner/M Bryon/M Brzezinski/M Btu/M -Buber +Buber/M Buchanan/M Bucharest/M Buchenwald Buchwald/M -Buck +Buck/M Buckie/M -Buckingham +Buckingham/M Buckley/M Buckner/M Bucky/M @@ -2362,12 +2383,12 @@ Bugzilla/M Buick/M Buiron/M Bujumbura/M -Bukhara -Bukharin -Bulawayo -Bulfinch -Bulganin -Bulgar +Bukhara/M +Bukharin/M +Bulawayo/M +Bulfinch/M +Bulganin/M +Bulgar/M Bulgari/M Bulgaria/M Bulgarian/SM @@ -2375,29 +2396,30 @@ Bullock/M Bullwinkle/M Bultmann/M Bumppo/M -Bunche +Bunche/M Bundesbank/M -Bundestag -Bunin +Bundestag/M +Bunin/M Bunker/M Bunni/M Bunnie/M Bunny/M -Bunsen +Bunsen/M Bunuel/M Bunyan/M -Burbank +Burbank/M Burberry/M Burch/M Burg/MR Burger/M -Burgess +Burgess/M Burgoyne/M -Burgundian +Burgundian/M Burgundy/SM Burk/SM -Burke +Burke/M Burkina/M +Burks/M Burl/M Burlie/M Burlington/M @@ -2405,13 +2427,13 @@ Burma/M Burmese/M Burnaby/M Burnard/M -Burnett -Burns -Burnside -Burr +Burnett/M +Burns/M +Burnside/M +Burr/M Burris/M -Burroughs -Bursa +Burroughs/M +Bursa/M Burt/M Burtie/M Burton/M @@ -2420,7 +2442,7 @@ Burundi/M Burundian/MS Busch/M Bush/M -Bushido +Bushido/M Bushnell/M Butch/M Butler @@ -2432,11 +2454,11 @@ Byers/M Byram/M Byran/M Byrann/M -Byrd +Byrd/M Byrle/M Byrom/M -Byron -Byronic +Byron/M +Byronic/M Byzantine/MS Byzantium/M C/SMDY @@ -2449,7 +2471,7 @@ CARE CATV CB CBC/M -CBS +CBS/M CCTV CCU CD/M @@ -2461,7 +2483,7 @@ CFC/MS CFO CIA/M CID -CNN +CNN/M CNS/M CO/M COBOL/SM @@ -2477,30 +2499,31 @@ CRT/SM CST/M CT/M CV +CVS/M CZ Ca/M Cabernet/M Cabinet -Cabot -Cabral +Cabot/M +Cabral/M Cabrera/M -Cabrini +Cabrini/M Cacilia/M Cacilie/M Cad/M Caddric/M Cadette -Cadillac +Cadillac/M Cadiz/M Caedmon/M -Caerphilly +Caerphilly/M Caesar/SM Caesarean -Cage +Cage/M Cagney/M Cahokia/M Cahra/M -Caiaphas +Caiaphas/M Caicos/M Cain/SM Cairistiona/M @@ -2509,28 +2532,29 @@ Caitlin/M Caitrin/M Cajan Cajun/MS -Cal/Y -Calais +Cal/YM +Calais/M Calcutta/M Calder Calderon/M -Caldwell +Caldwell/M Cale/M Caleb/M -Caledonia +Caledonia/M Calgary/M -Calhoun -Cali -Caliban +Calhoun/M +Cali/M +Caliban/M Calida/M Calif California/M Californian/MS -Caligula +Caligula/M Calla/MS -Callaghan +Callaghan/M Callahan/M -Callao +Callao/M +Callas/M Callean/M Calley/M Calli/M @@ -2542,7 +2566,7 @@ Cally/M Caloocan/M Calv/M Calvary/M -Calvert +Calvert/M Calvin/M Calvinism/MS Calvinist/MS @@ -2560,7 +2584,7 @@ Camden/M Camel/M Camella/M Camellia/M -Camelopardalis +Camelopardalis/M Camelot/MS Camembert/MS Cameron/M @@ -2578,21 +2602,21 @@ Cammie/M Cammy/M Camoens/M Campanella/M -Campbell -Campinas -Campos +Campbell/M +Campinas/M +Campos/M Camry/M -Camus -Can +Camus/M +Can/M Canaan/M Canaanite/MS Canad Canada/M Canadian/SM Canadianism -Canaletto +Canaletto/M Canaries/M -Canaveral +Canaveral/M Canberra/M Cancer/SM Cancun/M @@ -2607,43 +2631,43 @@ Candy/M Cannes/M Cannon/M Canon/M -Canopus +Canopus/M Cantabrigian/M -Canterbury +Canterbury/M Canton/M Cantonese/M Cantor/M Cantrell/M Cantu/M -Canute -Capablanca +Canute/M +Capablanca/M Capek/M Capella/M -Capet -Capetian +Capet/M +Capetian/M Capetown/M Caph/M Capistrano/M Capitol/SM -Capitoline -Capone -Capote +Capitoline/M +Capone/M +Capote/M Capra/M Capri/M Caprice/M Capricorn/MS Capt -Capuchin +Capuchin/M Capulet/M Car/MNY Cara/M -Caracalla +Caracalla/M Caracas/M Caralie/M -Caravaggio +Caravaggio/M Carboloy/M Carboniferous/M -Carborundum +Carborundum/M Carce/M Cardenas/M Cardiff/M @@ -2656,7 +2680,7 @@ Carena/M Caresa/M Caressa/M Caresse/M -Carey +Carey/M Cari/M Caria Carib/MS @@ -2665,7 +2689,7 @@ Carie/M Caril/M Carilyn/M Carin/M -Carina +Carina/M Carine/M Cariotta/M Carissa/M @@ -2687,19 +2711,20 @@ Carling/M Carlisle/M Carlita/M Carlo/MS -Carlota +Carlos/M +Carlota/M Carlotta/M -Carlsbad +Carlsbad/M Carlson/M -Carlton +Carlton/M Carly/M Carlye/M -Carlyle +Carlyle/M Carlyn/M Carlynn/M Carlynne/M Carma/M -Carmel +Carmel/M Carmela/M Carmelia/M Carmelina/M @@ -2714,11 +2739,11 @@ Carmina/M Carmine/M Carmita/M Carmon/M -Carnap +Carnap/M Carnation/M Carnegie/M Carney/M -Carnot +Carnot/M Carny/M Caro/M Carol/M @@ -2728,9 +2753,9 @@ Carolann/M Carole/M Carolee/M Carolin/M -Carolina -Caroline -Carolingian +Carolina/M +Caroline/M +Carolingian/M Carolinian/M Caroljean/M Carolus/M @@ -2739,51 +2764,52 @@ Carolyne/M Carolynn/M Caron/M Carpathian/MS -Carpenter +Carpathians/M +Carpenter/M Carr/M Carranza/M Carree/M Carri/MR -Carrie/M +Carrie/RM Carrier/M Carrillo/M Carrissa/M Carrol/M Carroll/M Carry/M -Carson +Carson/M Cart/MR Carter/M -Cartesian +Cartesian/M Carthage/M Carthaginian/MS -Cartier -Cartwright -Caruso -Carver -Cary +Cartier/M +Cartwright/M +Caruso/M +Carver/M +Cary/M Caryl/M Caryn/M Casablanca/M -Casals +Casals/M Casandra/M Casanova/SM Casar/M Cascades/M Case/M Casey/M -Cash +Cash/M Casi/M Casie/M Casio/M -Caspar +Caspar/M Casper/M -Caspian +Caspian/M Cass/M Cassandra/SM Cassandre/M Cassandry/M -Cassatt +Cassatt/M Cassaundra/M Cassey/M Cassi/M @@ -2796,10 +2822,10 @@ Cassy/M Castaneda/M Castile/M Castillo/M -Castlereagh +Castlereagh/M Castor/M Castries/M -Castro +Castro/M Catalan/SM Catalina/M Catalonia/M @@ -2814,6 +2840,7 @@ Catharine/M Cathay/M Cathe/MR Cathee/M +Cather/M Catherin/M Catherina/M Catherine/M @@ -2830,28 +2857,28 @@ Cathy/M Cathyleen/M Cati/M Catie/M -Catiline +Catiline/M Catina/M Catlaina/M Catlee/M Catlin/M -Cato +Cato/M Catrina/M Catriona/M Catskill/SM Catskills/M -Catt -Catullus +Catt/M +Catullus/M Caty/M Caucasian/MS Caucasoid Caucasus/M -Cauchy -Cavendish -Cavour -Caxton +Cauchy/M +Cavendish/M +Cavour/M +Caxton/M Caye/M -Cayenne +Cayenne/M Cayla/M Cayman/M Cayuga/SM @@ -2867,10 +2894,10 @@ Cebu/M Cebuano/M Cece/M Cecelia/M -Cecil +Cecil/M Cecile/M Ceciley/M -Cecilia +Cecilia/M Cecilio/M Cecilius/M Cecilla/M @@ -2897,9 +2924,9 @@ Celinka/M Celisse/M Celka/M Celle/M -Cellini +Cellini/M Cello/M -Celsius +Celsius/M Celt/SM Celtic/SM Cenozoic/M @@ -2907,26 +2934,26 @@ Centaurus/M Centigrade Central Centro/M -Cepheid +Cepheid/M Cepheus/M Cerberus/M -Cerenkov +Cerenkov/M Ceres/M Cerf/M Cervantes/M Cesar/M Cesare/M Cesarean -Cesarian +Cesarian/M Cesaro/M Cessna/M Cesya/M -Cetus +Cetus/M Ceylon/M Ceylonese -Cezanne +Cezanne/M Cf/M -Ch'in +Ch'in/M Ch/NRS Chablis/M Chad/M @@ -2934,45 +2961,45 @@ Chadd/M Chaddie/M Chaddy/M Chadian/MS -Chadwick -Chagall +Chadwick/M +Chagall/M Chaim/M Chaitanya/M Chaitin/M Chaldea -Chaldean +Chaldean/M Challenger/M Chalmers -Chamberlain -Chambers -Champlain -Champollion +Chamberlain/M +Chambers/M +Champlain/M +Champollion/M Chan/M Chance/M Chancellorsville/M Chancey/M Chanda/M Chandal/M -Chandigarh -Chandler +Chandigarh/M +Chandler/M Chandon/M Chandra/M -Chandragupta +Chandragupta/M Chandrasekhar/M Chane/M -Chanel +Chanel/M Chaney/M Chang/M -Changchun -Changsha +Changchun/M +Changsha/M Channa/M Chantal/M Chantalle/M -Chantilly +Chantilly/M Chanukah/M Chanukahs -Chaplin -Chapman +Chaplin/M +Chapman/M Chappaquiddick/M Chapultepec/M Chara @@ -2981,7 +3008,7 @@ Chardonnay/M Charil/M Charin/M Chariot/M -Charis +Charis/M Charissa/M Charisse/M Charita/M @@ -2994,14 +3021,14 @@ Charlena/M Charlene/M Charles/M Charleston/MS -Charley -Charlie +Charley/M +Charlie/M Charline/M Charlot/M Charlotta/M Charlotte/M Charlottetown/M -Charlton +Charlton/M Charmain/M Charmaine/M Charmane/M @@ -3013,11 +3040,11 @@ Charo/M Charolais/M Charon/M Chartism/M -Chartres +Chartres/M Charybdis/M Charyl/M -Chas -Chase +Chas/M +Chase/M Chasity/M Chastity/M ChatZilla/M @@ -3026,25 +3053,25 @@ Chatham/M Chattahoochee/M Chattanooga/M Chatterley/M -Chatterton +Chatterton/M Chaucer/M Chaunce/M Chauncey/M -Chautauqua +Chautauqua/M Chavez/M Chayefsky/M Che/M -Chechen +Chechen/M Chechnya/M -Cheddar +Cheddar/M Cheer/M Cheerios/M Cheetos/M -Cheever +Cheever/M Chekhov/M Chekhovian Chelsae/M -Chelsea +Chelsea/M Chelsey/M Chelsie/M Chelsy/M @@ -3053,7 +3080,7 @@ Chen/M Cheney/M Chengdu Chennai/M -Cheops +Cheops/M Chere/M Cherey/M Cheri/M @@ -3077,16 +3104,16 @@ Cherry/M Chery/M Cherye/M Cheryl/M -Chesapeake -Cheshire +Chesapeake/M +Cheshire/M Cheslie/M Chester/M -Chesterfield -Chesterton +Chesterfield/M +Chesterton/M Cheston/M Chet/M Chev/M -Chevalier +Chevalier/M Cheviot/M Chevrolet/M Chevron/M @@ -3095,13 +3122,13 @@ Cheyenne/SM Chi/M Chianti/MS Chiarra/M -Chiba -Chibcha +Chiba/M +Chibcha/M Chic/M Chicago/M -Chicagoan -Chicana -Chicano +Chicagoan/M +Chicana/M +Chicano/M Chick/M Chickasaw/MS Chickie/M @@ -3117,7 +3144,7 @@ Chimera/MS Chimu/M Chin/M China/M -Chinatown +Chinatown/M Chinese/M Chinook/MS Chip/M @@ -3126,22 +3153,22 @@ Chippendale/M Chippewa/SM Chiquia/M Chiquita/M -Chirico +Chirico/M Chisholm/M Chisinau/M -Chittagong +Chittagong/M Chivas/M Chlo/M -Chloe +Chloe/M Chloette/M Chloris/M Choctaw/SM Choi/M -Chomsky -Chongqing +Chomsky/M +Chongqing/M Chopin/M Chopra/M -Chou +Chou/M Chretien/M Chris/M Chrisse/M @@ -3154,11 +3181,11 @@ Christabella/M Christal/M Christalle/M Christan/M -Christchurch +Christchurch/M Christean/M Christel/M Christen/M -Christendom/SM +Christendom/MS Christensen/M Christi/M Christian/SM @@ -3167,9 +3194,9 @@ Christiane/M Christianity/SM Christianize/DSG Christiano/M -Christie +Christie/M Christin/M -Christina +Christina/M Christine/M Christlike Christmas/MS @@ -3179,7 +3206,7 @@ Christoffer/M Christoforo/M Christoper/M Christoph/MR -Christophe +Christophe/M Christopher/M Christophorus/M Christos/M @@ -3190,29 +3217,29 @@ Chronicles Chrotoem/M Chrysa/M Chrysler/M -Chrysostom +Chrysostom/M Chrystal/M Chryste/M Chrystel/M Chucho/M Chuck/M -Chukchi -Chumash +Chukchi/M +Chumash/M Chung/M Chungking/M -Church +Church/M Churchill/M Churriguera/M Chuvash/M -Ci +Ci/M Cicely/M Cicero/M Cicily/M -Cid +Cid/M Ciel/M Cilka/M Cimabue/M -Cincinnati +Cincinnati/M Cinda/M Cindee/M Cindelyn/M @@ -3222,7 +3249,7 @@ Cindie/M Cindra/M Cindy/M CinemaScope/M -Cinerama +Cinerama/M Cingular/M Cinnamon/M Cipro/M @@ -3249,9 +3276,9 @@ Clapton/M Clara/M Clarabelle/M Clarance/M -Clare +Clare/M Clarence/M -Clarendon +Clarendon/M Claresta/M Clareta/M Claretta/M @@ -3266,7 +3293,7 @@ Clarine/M Clarissa/M Clarisse/M Clarita/M -Clark +Clark/M Clarke/M Clarkson/M Clary/M @@ -3284,9 +3311,9 @@ Claudine/M Claudio/M Claudius/M Claus/M -Clausewitz -Clausius -Clay +Clausewitz/M +Clausius/M +Clay/M Clayborn/M Clayborne/M Claybourne/M @@ -3297,23 +3324,25 @@ Clearasil/M Cleavland/M Clem/XM Clemence/M -Clemenceau +Clemenceau/M +Clemens/M Clement/MS Clemente/M +Clementes/M Clementia/M Clementina/M Clementine/M Clementius/M Clemmie/M Clemmy/M -Clemons +Clemons/M Clemson/M Cleo/M -Cleon +Cleon/M Cleopatra/M Clerc/M Clerissa/M -Cletis +Cletis/M Cletus/M Cleve/M Cleveland/M @@ -3321,26 +3350,28 @@ Clevey/M Clevie/M Cliburn/M Cliff/M -Clifford +Clifford/M Clifton/M Clim/M Cline/M Clint/M Clinton/M Clio/M +Clive/M Clo/M Cloe/M Clorets/M Cloris/M Clorox/M +Closure/M Clotho/M Clotilda/M Clouseau/M Clovis/M Cly/M -Clyde +Clyde/M Clydesdale/M -Clytemnestra +Clytemnestra/M Clyve/M Clywd/M Cm/M @@ -3348,42 +3379,42 @@ Cmdr Co/SM Cob/M Cobain/M -Cobb +Cobb/M Cobbie/M Cobby/M -Cochabamba -Cochin -Cochise +Cochabamba/M +Cochin/M +Cochise/M Cochran/M Cockney/M -Cocteau +Cocteau/M Cod Codee/M Codi/M Codie/M -Cody +Cody/M Coffey/M Cognac/M -Cohan -Cohen -Coimbatore +Cohan/M +Cohen/M +Coimbatore/M Cointon/M -Cointreau +Cointreau/M Coke/SM -Col +Col/M Colan/M -Colas +Colas/M Colbert/M -Colby +Colby/M ColdFusion/M -Cole +Cole/M Coleen/M Coleman/M Colene/M Coleridge/M -Colet +Colet/M Coletta/M -Colette +Colette/M Colfax/M Colgate/M Colin/M @@ -3395,6 +3426,7 @@ Collie/M Collier/M Collin/SM Colline/M +Collins/M Colly/RM Colman/M Colo @@ -3407,11 +3439,11 @@ Colonial Coloradan/SM Colorado/M Coloradoan -Colosseum +Colosseum/M Colt/M -Coltrane +Coltrane/M Columbia/M -Columbine +Columbine/M Columbus/M Colver/M Com @@ -3419,52 +3451,52 @@ Comanche/MS Combs/M Comcast/M Comdr -Comintern -Commons +Comintern/M +Commons/M Commonwealth Communion/SM Communism Communist/SM -Como +Como/M Comoran Comoros/M Compaq/M Composer/M -Compton +Compton/M CompuServe/M Computerworld/M -Comte +Comte/M Con Conakry/M Conan/M Conant/M -Concepcion +Concepcion/M Concetta/M Concettina/M Conchita/M Concord/SM -Concorde +Concorde/M Concordia/M -Condillac -Condorcet +Condillac/M +Condorcet/M Conestoga/M Confederacy/M Confederate/MS Confucian/SM Confucianism/MS Confucius/M -Cong +Cong/M Congo/M Congolese/M Congregational Congregationalist/MS Congress/MS Congressional -Congreve +Congreve/M Conley/M -Conn/R +Conn/MR Connecticut/M -Connemara +Connemara/M Conner/M Connery/M Conney/M @@ -3472,9 +3504,10 @@ Conni/M Connie/M Connolly/M Connor/SM +Connors/M Connotea/M Conny/M -Conrad +Conrad/M Conrade/M Conrado/M Conrail/M @@ -3482,25 +3515,25 @@ Conroy/M Consalve/M Conservative Consolata/M -Constable -Constance +Constable/M +Constance/M Constancia/M Constancy/M Constanta/M Constantia Constantin/M Constantina/M -Constantine +Constantine/M Constantino/M Constantinople/M Constitution Consuela/M Consuelo/M Continent/M -Continental +Continental/M Contreras/M -Conway -Cook +Conway/M +Cook/M Cooke/M Cookie/M Cooley/M @@ -3511,10 +3544,10 @@ Coors/M Copacabana/M Copeland/M Copenhagen/M -Copernican +Copernican/M Copernicus/M -Copland -Copley +Copland/M +Copley/M Copperfield/M Coppertone/M Coppola/M @@ -3531,7 +3564,7 @@ Corbet/M Corbett/M Corbie/M Corbin/M -Corby +Corby/M Cord/M Cordelia/M Cordelie/M @@ -3539,7 +3572,7 @@ Cordell/M Cordey/M Cordi/M Cordie/M -Cordilleras +Cordilleras/M Cordoba/M Cordula/M Cordy/M @@ -3550,7 +3583,7 @@ Corene/M Coretta/M Corette/M Corey/M -Corfu +Corfu/M Cori/M Corie/M Corilla/M @@ -3559,18 +3592,19 @@ Corine/M Corinna/M Corinne/M Corinth/M -Corinthian/SM -Coriolanus +Corinthian/MS +Corinthians/M +Coriolanus/M Coriolis/M Coriss/M Corissa/M -Cork +Cork/M Corleone/M Corliss/M Corly/M Cormack/M Cornall/M -Corneille +Corneille/M Cornela/M Cornelia/M Cornelius/M @@ -3581,12 +3615,12 @@ Cornie/M Corning/M Cornish/MS Cornwall/M -Cornwallis +Cornwallis/M Corny/M -Coronado -Corot +Coronado/M +Corot/M Corp -Correggio +Correggio/M Correna/M Correy/M Corri/M @@ -3597,7 +3631,7 @@ Corrine/M Corrinne/M Corry/M Corsica/M -Corsican +Corsican/M Cort/M Cortes/MS Cortez/M @@ -3615,46 +3649,46 @@ Cosette/M Cosimo/M Cosme/M Cosmo/M -Cossack +Cossack/M Costa/M Costanza/M Costco/M Costello/M Costner/M Cote/M -Cotonou +Cotonou/M Cotopaxi/M Cotswold/M Cotton/M -Coulomb +Coulomb/M Coulter/M Councillor/MS -Couperin -Courbet +Couperin/M +Courbet/M Court/M Courtenay/M Courtnay/M Courtney/M -Cousteau +Cousteau/M Coventry/SM -Coward -Cowley -Cowper -Cox +Coward/M +Cowley/M +Cowper/M +Cox/M Coy/M Cozmo/M Cozumel/M Cpl Cr/MT -Crabbe +Crabbe/M Craft/M Craggie/M Craggy/M -Craig +Craig/M Craigslist/M -Cranach -Crane -Cranmer +Cranach/M +Crane/M +Cranmer/M Crater/M Crawford/M Cray/M @@ -3668,17 +3702,18 @@ Creigh/M Creight/M Creighton/M Creole/SM -Creon +Creon/M +Cressida/M Crest/M Cretaceous/M Cretan/SM Crete/M -Crichton -Crick +Crichton/M +Crick/M Crimea/M -Crimean +Crimean/M Crin/M -Criollo +Criollo/M Cris/M Crisco/M Crissie/M @@ -3700,23 +3735,23 @@ Cristy/M Croat/SM Croatia/M Croatian/MS -Croce -Crockett -Croesus +Croce/M +Crockett/M +Croesus/M Cromwell/M -Cromwellian +Cromwellian/M Cronin/M Cronkite/M Cronus/M -Crookes -Crosby -Cross +Crookes/M +Crosby/M +Cross/M Crow/SM Crowley/M Crucifixion/MS -Cruikshank +Cruikshank/M Cruise/M -Crusades +Crusades/M Crusoe/M Crux/M Cruz/M @@ -3726,15 +3761,15 @@ Crystal/M Crystie/M Csonka/M Ct -Ctesiphon +Ctesiphon/M Cthrine/M Cthulhu/M Cu/M Cuba/M Cuban/SM Cuchulain/M -Cuisinart -Culbertson +Cuisinart/M +Culbertson/M Cull/MN Cullan/M Cullen/M @@ -3745,26 +3780,26 @@ Cully/M Culver/M Cumberland/M Cumbria/M -Cummings +Cummings/M Cunard/M Cunningham/M Cupid/M Curacao/M Curcio/M -Curie -Curitiba +Curie/M +Curitiba/M Curr/M Curran/M Currey/M Currie/MR Currier/M -Curry +Curry/RM Curt/M Curtice/M Curtis/M -Custer +Custer/M Cuvier/M -Cuzco +Cuzco/M Cy Cyb/M Cybele/M @@ -3789,18 +3824,18 @@ Cyprian/M Cypriot/MS Cyprus/M Cyrano/M -Cyril +Cyril/M Cyrill/M Cyrille/M Cyrillic/M Cyrillus/M -Cyrus +Cyrus/M Czech/M Czechoslovak Czechoslovakia/M -Czechoslovakian/MS +Czechoslovakian/SM Czechs -Czerny +Czerny/M D'Arcy D/MN DA/M @@ -3815,8 +3850,10 @@ DE DEA DEC/SDG DH +DHS DI DJ +DMCA DMD/M DMZ DNA/M @@ -3834,7 +3871,7 @@ DTP DUI DVD DVDs -DVR/S +DVR/SM DWI Dacca/M Dacey/M @@ -3853,8 +3890,8 @@ Daffy/M Dag/M Dagmar/M Dagny/M -Daguerre -Dagwood +Daguerre/M +Dagwood/M Dahlia/M Dahomey/M Daile/M @@ -3862,12 +3899,13 @@ Daimler/M Daisey/M Daisi/M Daisie/M -Daisy +Daisy/M Dakar/M Dakota/SM -Dakotan +Dakotan/M Dal/M -Dale +Dalai +Dale/M Dalenna/M Daley/M Dali/S @@ -3887,19 +3925,19 @@ Dalton/M Damara/M Damaris/M Damascus/M -Dame/N +Dame/MN Damian/M Damiano/M -Damien +Damien/M Damion/M Damita/M -Damocles +Damocles/M Damon/M -Dan +Dan/M Dana/M -Danae +Danae/M Dane/SM -Danelaw +Danelaw/M Danell/M Danella/M Danette/M @@ -3915,6 +3953,7 @@ Daniela/M Daniele/M Daniella/M Danielle/M +Daniels/M Danika/M Danila/M Danish/M @@ -3928,9 +3967,9 @@ Danny/M Dannye/M Danone/M Dante/M -Danton +Danton/M Danube/M -Danubian +Danubian/M Danya/M Danyelle/M Danyette/M @@ -3950,20 +3989,20 @@ Darcie/M Darcy/M Darda/M Dardanelles/M -Dare +Dare/M Dareen/M Darell/M Darelle/M Daren/M -Darfur +Darfur/M Dari/M Daria/M Darice/M Darill/M Darin/M Dario/M -Darius -Darjeeling +Darius/M +Darjeeling/M Darla/M Darleen/M Darlene/M @@ -3980,16 +4019,16 @@ Darrelle/M Darren/M Darrick/M Darrin/M -Darrow +Darrow/M Darryl/M Darsey/M Darsie/M Darth/M -Dartmoor -Dartmouth +Dartmoor/M +Dartmouth/M Darvon/M Darwin/M -Darwinian +Darwinian/M Darwinism/SM Darwinist Darya/M @@ -4003,14 +4042,14 @@ Dasya/M Datamation/S Datha/M Daugherty/M -Daumier +Daumier/M Daune/M Dav/MN -Davao +Davao/M Dave/M Daveen/M Daven/M -Davenport +Davenport/M Daveta/M Davey/M David/MS @@ -4019,20 +4058,21 @@ Davidde/M Davide/M Davidson/M Davie/MS +Davies/M Davin/M Davina/M Davine/M -Davis -Davy/S -Dawes +Davis/M +Davy/SM +Dawes/M Dawn/M Dawna/M -Dawson -Day -Dayan +Dawson/M +Day/M +Dayan/M Dayle/M Dayna/M -Dayton +Dayton/M Daytona/M Ddene/M De/RSMN @@ -4040,7 +4080,7 @@ DeGeneres/M DeKalb/M Deadhead/M DealTime/M -Dean +Dean/M Deana/M Deandre/M Deane/M @@ -4057,24 +4097,24 @@ Debi/M Debian/M Debor/M Debora/M -Deborah +Deborah/M Debouillet/M Debra/M -Debs -Debussy +Debs/M +Debussy/M Dec/M Decalog Decalogue/M -Decatur +Decatur/M Decca/M -Deccan +Deccan/M December/SM Deck/MR Dede/M Dedekind/M Dedie/M Dedra/M -Dee +Dee/M Deeann/M Deeanne/M Deedee/M @@ -4082,45 +4122,45 @@ Deena/M Deerdre/M Deere/M Deeyn/M -Defoe -Degas +Defoe/M +Degas/M Dehlia/M Deidre/M -Deimos +Deimos/M Deina/M -Deirdre -Deity +Deirdre/M +Deity/M Dejesus/M -Del/Y +Del/YM Dela/M -Delacroix +Delacroix/M Delacruz/M Delainey/M Delaney/M Delano/M Delaware/MS -Delawarean/MS +Delawarean/SM Delbert/M Delcina/M Delcine/M Deleon/M -Delgado +Delgado/M Delhi/M Delia/M -Delibes +Delibes/M Delicious/M Delila/M Delilah/M -Delilahs +Delilahs/M Delinda/M -Delius +Delius/M Dell/M Della/M Delly/M Delmar/M Delmarva/M Delmer/M -Delmonico +Delmonico/M Delmor/M Delmore/M Deloitte/M @@ -4129,11 +4169,11 @@ Delores/M Deloria/M Deloris/M Delphi/M -Delphic +Delphic/M Delphine/M Delphinia/M Delphinus/M -Delta +Delta/M Dem/G Demavend/M Demerol/M @@ -4146,18 +4186,19 @@ Demetrius/M Deming/M Democrat/SM Democratic -Democritus +Democritus/M Demosthenes/M Demott/M -Dempsey +Dempsey/M Dena/M Denali Dene -Deneb +Deneb/M Denebola/M Deng/M Deni/SM Denice/M +Denis/M Denise/M Denmark/M Denna/M @@ -4165,18 +4206,19 @@ Dennet/M Denney/M Denni/MS Dennie/M +Dennis/M Dennison/M Denny/M Denton/M Denver/M Deny/M -Denys +Denys/M Denyse/M Deon/M Deonne/M Depp/M Der/M -Derby +Derby/M Derek/M Derick/M Derk/M @@ -4187,7 +4229,7 @@ Derrida/M Derrik/M Derril/M Derron/M -Derry +Derry/M Derward/M Derwin/M Descartes/M @@ -4230,14 +4272,14 @@ Dewie/M Dewitt/M Dex/M Dexedrine/M -Dexter +Dexter/M Dhabi Dhaka/M Dhaulagiri/M -Di/S +Di/S/M DiCaprio/M -DiMaggio -Diaghilev +DiMaggio/M +Diaghilev/M Diahann/M Dial/M Dian/M @@ -4252,30 +4294,31 @@ Diannne/M Diarmid/M Dias Diaspora/MS -Diaz -Dick/X +Diaz/M +Dick/XM +Dickens/M Dickensian Dickerson/M Dickie/M -Dickinson +Dickinson/M Dickson/M Dicky/M Dictaphone/SM -Diderot +Diderot/M Didi/M Dido/M Didrikson/M -Diefenbaker +Diefenbaker/M Diego/M Diem/M Diena/M Dierdre/M Diesel/M Dieter/M -Dietrich +Dietrich/M Digg/MS Dijkstra/M -Dijon +Dijon/M Dilan/M Dilbert/MS Dill/M @@ -4287,50 +4330,50 @@ Dilly/M Dimitri/M Dimitry/M Dina/M -Dinah +Dinah/M Dinnie/M Dinny/M Dino/M -Diocletian -Diogenes +Diocletian/M +Diogenes/M Dion/M -Dione +Dione/M Dionis/M Dionisio/M Dionne/M -Dionysian +Dionysian/M Dionysus/M Diophantine/M -Dior +Dior/M Dipper/M Dir -Dirac -Dirichlet +Dirac/M +Dirichlet/M Dirk/M Dis/M -Disney -Disneyland -Disraeli +Disney/M +Disneyland/M +Disraeli/M Dita/M DivX/M Divine/M Diwali/M -Dix +Dix/M Dixie/M -Dixiecrat +Dixiecrat/M Dixieland/SM Dixon/M Djakarta/M Djibouti/M Dmitri/M Dnepr -Dnepropetrovsk +Dnepropetrovsk/M Dnieper -Dniester +Dniester/M Dniren/M Dobbin/M Doberman/M -Dobro +Dobro/M Doctor Doctorow/M Dode/M @@ -4341,9 +4384,9 @@ Dodie/M Dodoma/M Dodson/M Dody/M -Doe +Doe/M Doha/M -Dolby +Dolby/M Dole/M Dolf/M Doll/M @@ -4363,24 +4406,24 @@ Dominga/M Domingo/M Dominguez/M Domini/M -Dominic +Dominic/M Dominica/M Dominican/MS Dominick/M Dominik/M Dominion Dominique/M -Domitian +Domitian/M Don't Don/SM -Dona +Dona/M Donahue/M Donal/M Donald/M Donaldson/M Donall/M Donalt/M -Donatello +Donatello/M Donaugh/M Donavon/M Donella/M @@ -4392,7 +4435,7 @@ Donica/M Donielle/M Donizetti/M Donn/MR -Donna +Donna/M Donnamarie/M Donne/M Donnell/M @@ -4402,16 +4445,16 @@ Donnie/M Donny/M Donovan/M Dooley/M -Doolittle +Doolittle/M Doonesbury/M -Doppler +Doppler/M Dora/M Doralia/M Doralin/M Doralyn/M Doralynn/M Doralynne/M -Dorcas +Dorcas/M Dore/M Doreen/M Dorelia/M @@ -4446,11 +4489,11 @@ Dorree/M Dorri/SM Dorrie/M Dorry/M -Dorset +Dorset/M Dorsey/M Dorthea/M Dorthy/M -Dortmund +Dortmund/M Dory/M Dosi/M Dostoevsky/M @@ -4466,36 +4509,37 @@ Douay/M Doubleday/M Doug/M Dougie/M -Douglas -Douglass +Douglas/M +Douglass/M Dougy/M -Douro +Douro/M Dov/MR Dover/M -Dow -Downs +Dow/M +Downs/M Downy/M Doy/M -Doyle +Doyle/M Dr Draco/M -Draconian +Draconian/M Dracula/M -Drake +Drake/M Dramamine/SM -Drambuie +Drambuie/M Drano/M Dravidian/M Dre/M Dreamweaver/M Dreddy/M Dredi/M -Dreiser +Dreiser/M Dresden/M Drew/M Dreyfus/M Dristan/M Drona/M +Dropbox/M Dru/M Druci/M Drucie/M @@ -4509,24 +4553,24 @@ Drusi/M Drusie/M Drusilla/M Drusy/M -Dryden +Dryden/M Dschubba/M Du -DuPont +DuPont/M Duane/M -Dubai +Dubai/M Dubcek/M Dubhe/M Dublin/M Dubrovnik/M -Duchamp +Duchamp/M Dud/M -Dudley +Dudley/M Duff/M Duffie/M Duffy/M Dugald/M -Duisburg +Duisburg/M Duke/M Dukey/M Dukie/M @@ -4540,37 +4584,37 @@ Dulcie/M Dulcine/M Dulcinea/M Dulcy/M -Dulles +Dulles/M Dulsea/M -Duluth -Dumas +Duluth/M +Dumas/M Dumbledore/M Dumbo/M -Dumpster +Dumpster/M Dun/M -Dunant -Dunbar +Dunant/M +Dunbar/M Dunc/M -Duncan -Dundee -Dunedin +Duncan/M +Dundee/M +Dunedin/M Dunkirk/M Dunlap/M Dunn/M Dunne/M -Dunstan +Dunstan/M Dur/R Duracell/M Duran/M Durand/M Durant Durante/M -Durban -Durer +Durban/M +Durer/M Durex/M Durham/MS -Durkheim -Duroc +Durkheim/M +Duroc/M Durocher/M Durward/M Duse/M @@ -4581,11 +4625,11 @@ Dustin/M Dusty/M Dutch/M Dutchman/M -Dutchmen +Dutchmen/M Dutchwoman -Duvalier -Dvina -Dvorak +Duvalier/M +Dvina/M +Dvorak/M Dwain/M Dwayne/M Dwight/M @@ -4602,7 +4646,7 @@ Dyna/M Dynah/M Dyson/M Dzerzhinsky/M -Dzungaria +Dzungaria/M E/SMY EC ECG/M @@ -4627,22 +4671,23 @@ ERA ESE/M ESL ESP/M -ESPN +ESPN/M EST/M ET ETA ETD EU +EULA/M Eachelle/M Eada/M Eadie/M Eadith/M Eadmund/M -Eakins +Eakins/M Eal/M Ealasaid/M Eamon/M -Earhart +Earhart/M Earl/M Earle/M Earlene/M @@ -4659,7 +4704,7 @@ Earvin/M East/SZMR Easter/M Eastern/R -Eastman +Eastman/M Easton/M Eastwood/M Eaton/M @@ -4671,27 +4716,27 @@ Ebeneezer/M Ebeneser/M Ebenezer/M Eberhard/M -Ebert +Ebert/M Eberto/M -Ebola +Ebola/M Ebonee/M Ebonics/M Ebony/M Ebro/M -Ecclesiastes +Ecclesiastes/M Ecma/M Eco/M Ecstasy Ecuador/M Ecuadoran/SM Ecuadorean -Ecuadorian/MS +Ecuadorian/SM Ed/MNX Eda/M Edam/SM Edan/M Edd/M -Edda +Edda/M Eddi/M Eddie/M Eddington/M @@ -4700,7 +4745,7 @@ Ede Edee/M Edeline/M Eden/M -Edgar +Edgar/M Edgard/M Edgardo/M Edi/MH @@ -4721,7 +4766,7 @@ Edmonton/M Edmund/M Edna/M Edouard/M -Edsel +Edsel/M Eduard/M Eduardo/M Eduino/M @@ -4729,7 +4774,8 @@ Edvard/M Edward/SM Edwardian/M Edwardo/M -Edwin +Edwards/M +Edwin/M Edwina/M Edy/M Edyth/M @@ -4748,9 +4794,9 @@ Egypt/M Egyptian/MS Egyptology/M Ehrenberg/M -Ehrlich -Eichmann -Eiffel +Ehrlich/M +Eichmann/M +Eiffel/M Eileen/M Eilis/M Eimile/M @@ -4758,29 +4804,29 @@ Einstein/MS Eire/M Eirena/M Eisenhower/M -Eisenstein +Eisenstein/M Eisner/M Ekaterina/M El/Y Elaina/M -Elaine -Elam +Elaine/M +Elam/M Elana/M Elane/M Elanor/M Elastoplast/M Elayne/M -Elba +Elba/M Elbe/M -Elbert +Elbert/M Elberta/M Elbertina/M Elbertine/M -Elbrus +Elbrus/M Elden/M Eldin/M Eldon/M -Eldorado +Eldorado/M Eldredge/M Eldridge/M Eleanor/M @@ -4800,31 +4846,32 @@ Elfreda/M Elfrida/M Elfrieda/M Elga/M -Elgar -Eli -Elia/S +Elgar/M +Eli/M +Elia/S/M Elianora/M Elianore/M +Elias/M Elicia/M Elie/M Elihu/M Elijah/M Elinor/M Elinore/M -Eliot +Eliot/M Elisa/M Elisabet/M -Elisabeth +Elisabeth/M Elisabetta/M Elise/M Eliseo/M -Elisha +Elisha/M Elissa/M Elita/M Eliza/M Elizabet/M Elizabeth/M -Elizabethan/MS +Elizabethan/SM Elka/M Elke/M Ella/M @@ -4839,10 +4886,10 @@ Ellesmere/M Ellette/M Elli/SM Ellie/M -Ellington +Ellington/M Elliot/M Elliott/M -Ellis +Ellis/M Ellison/M Ellissa/M Ellswerth/M @@ -4861,7 +4908,7 @@ Elnar/M Elnath/M Elnora/M Elnore/M -Elohim +Elohim/M Eloisa/M Eloise/M Elonore/M @@ -4876,7 +4923,7 @@ Elsevier/M Elsey/M Elsi/M Elsie/M -Elsinore +Elsinore/M Elspeth/M Elston/M Elsworth/M @@ -4901,8 +4948,8 @@ Elyn/M Elyse/M Elysee/M Elysha/M -Elysia -Elysian +Elysia/M +Elysian/M Elysium/SM Elyssa/M Em/M @@ -4920,7 +4967,7 @@ Emeline/M Emelita/M Emelyne/M Emera/M -Emerson +Emerson/M Emery/M Emil/M Emile/M @@ -4943,7 +4990,7 @@ Emmaline/M Emmalyn/M Emmalynn/M Emmalynne/M -Emmanuel +Emmanuel/M Emmeline/M Emmerich/M Emmery/M @@ -4954,7 +5001,7 @@ Emmi/M Emmie/M Emmit/M Emmott/M -Emmy +Emmy/M Emmye/M Emogene/M Emory/M @@ -4962,8 +5009,8 @@ Emyle/M Emylee/M Encarta/M EndNote/M -Endymion -Eng +Endymion/M +Eng/M Engadget/M Engelbert/M Engels/M @@ -4971,17 +5018,17 @@ England/M Englebert/M English/MRS Englishman/M -Englishmen +Englishmen/M Englishwoman/M Englishwomen Engracia/M -Enid +Enid/M Enif/M Eniwetok/M Enkidu/M -Ennis -Enoch -Enos +Ennis/M +Enoch/M +Enos/M Enrica/M Enrichetta/M Enrico/M @@ -4995,12 +5042,12 @@ Eolanda/M Eolande/M Epcot/M Ephesian/S -Ephesus -Ephraim +Ephesus/M +Ephraim/M Ephrayim/M Ephrem/M -Epictetus -Epicurean +Epictetus/M +Epicurean/M Epicurus/M Epimethius/M Epinions/M @@ -5008,10 +5055,10 @@ Epiphany/SM Episcopal Episcopalian/MS Epistle -Epsom +Epsom/M Epson/M -Epstein -Equuleus +Epstein/M +Equuleus/M Er/M Eran/M Erasmus/M @@ -5020,11 +5067,11 @@ Erato/M Eratosthenes/M Erda/M Erebus/M -Erector +Erector/M Erek/M Erena/M Erewhon/M -Erhard +Erhard/M Erhart/M Eric/M Erica/M @@ -5033,14 +5080,14 @@ Ericha/M Erick/M Ericka/M Erickson/M -Ericson -Ericsson -Eridanus -Erie +Ericson/M +Ericsson/M +Eridanus/M +Erie/M Erik/M Erika/M -Eriksson -Erin +Eriksson/M +Erin/M Erina/M Erinn/M Erinna/M @@ -5065,14 +5112,14 @@ Ernestine/M Ernesto/M Ernestus/M Ernie/M -Ernst +Ernst/M Erny/M Eros/MS Errick/M Errol/M Erroll/M Erse/M -Erskine +Erskine/M Ertha/M Erv/M ErvIn/M @@ -5081,8 +5128,8 @@ Eryn/M Esau/M Escher/M Escherichia/M -Escondido -Esdras +Escondido/M +Esdras/M Eskimo/MS Esma/M Esmaria/M @@ -5096,9 +5143,9 @@ Esquire/MS Esra/M Essa/M Essen/M -Essene -Essequibo -Essex +Essene/M +Essequibo/M +Essex/M Essie/M Essy/M Esta/M @@ -5112,7 +5159,7 @@ Estella/M Estelle/M Ester/M Esterhazy/M -Estes +Estes/M Estevan/M Esther/M Estonia/M @@ -5124,22 +5171,22 @@ Etan/M Ethan/M Ethe/M Ethel/M -Ethelbert +Ethelbert/M Ethelda/M Ethelin/M Ethelind/M Etheline/M Ethelred/M Ethelyn/M -Ethernet +Ethernet/M Ethiopia/M Ethiopian/SM Ethyl/M Etienne/M Etna/M -Eton -Etruria -Etruscan +Eton/M +Etruria/M +Etruscan/M Etta/M Etti/M Ettie/M @@ -5153,7 +5200,7 @@ Euclidean Eudora/M Euell/M Eugen/M -Eugene +Eugene/M Eugenia/M Eugenie/M Eugenio/M @@ -5162,7 +5209,7 @@ Eugine/M Eukaryota/MS Eula/M Eulalie/M -Euler +Euler/M Eumenides/M Eunice/M Euphemia/M @@ -5170,8 +5217,8 @@ Euphrates/M Eur Eurasia/M Eurasian/MS -Euripides -Eurodollar/MS +Euripides/M +Eurodollar/SM Europa/M Europe/M European/MS @@ -5189,16 +5236,17 @@ Evangelical Evangelin/M Evangelina/M Evangeline/M -Evangelist +Evangelist/M Evania/M Evanne/M -Evansville +Evans/M +Evansville/M Eve/M Eveleen/M Evelin/M Evelina/M Eveline/M -Evelyn +Evelyn/M Even/M Evenki/M EverReady/M @@ -5229,7 +5277,7 @@ Excalibur/M Excedrin/M Excellency/SM Exchequer -Exercycle +Exercycle/M Exocet/M Exodus/M Expedia/M @@ -5237,14 +5285,14 @@ Exxon/M Eyck/M Eyde/M Eydie/M -Eyre +Eyre/M Eysenck/M Ezechiel/M -Ezekiel +Ezekiel/M Ezequiel/M Eziechiele/M Ezmeralda/M -Ezra +Ezra/M Ezri/M F/MD FAA @@ -5264,6 +5312,7 @@ FNMA/M FOFL FORTRAN/M FPO +FSF/M FSLIC FTC FUD/S @@ -5272,7 +5321,7 @@ FY FYI Fabe/RM Faber/M -Faberge +Faberge/M Fabian/MS Fabiano/M Fabien/M @@ -5280,20 +5329,20 @@ Fabio/M Facebook/M Fae/M Faeroe/M -Fafnir +Fafnir/M Fagin/M Fahd/M -Fahrenheit +Fahrenheit/M Faina/M Fair/M -Fairbanks +Fairbanks/M Fairfax Fairleigh/M Fairlie/M Faisal/M -Faisalabad -Faith -Falasha +Faisalabad/M +Faith/M +Falasha/M Falito/M Falkland/SM Falkner @@ -5325,10 +5374,10 @@ Farleigh/M Farley/M Farlie/M Farly/M -Farmer +Farmer/M Farr/M Farra/M -Farragut +Farragut/M Farrah/M Farrakhan/M Farrand/M @@ -5342,12 +5391,12 @@ Fascist Faso/M Fassbinder/M Fatah/M -Fates +Fates/M Father/SM -Fatima -Fatimid +Fatima/M +Fatimid/M Faulkner/M -Faulknerian +Faulknerian/M Faun/M Faunie/M Fauntleroy/M @@ -5358,7 +5407,7 @@ Faustine/M Faustino/M Faustus/M Favorited -Fawkes +Fawkes/M Fawn/M Fawne/M Fawnia/M @@ -5375,12 +5424,13 @@ Fe/M Feb/M February/SM Fed/SM -FedEx +FedEx/M Federal/MS Federalist/M Federica/M Federico/M Fedora/M +Feds/M Fee/M Felecia/M Felic/M @@ -5399,25 +5449,25 @@ Felita/M Felix/M Feliza/M Felizio/M -Fellini +Fellini/M Fenelia/M Feng/M -Fenian +Fenian/M Fennec/M Feodor/M Feodora/M Ferber/M Ferd/M Ferdie/M -Ferdinand +Ferdinand/M Ferdinanda/M Ferdinande/M Ferdy/M -Fergus +Fergus/M Ferguson/M Ferlinghetti/M Fermat/M -Fermi +Fermi/M Fern/M Fernanda/M Fernande/M @@ -5429,16 +5479,16 @@ Ferrari/M Ferraro/M Ferrel/M Ferrell/M -Ferris +Ferris/M Fey/M Feynman/M -Fez +Fez/M Fiann/M Fianna Fiat/M -Fiberglas +Fiberglas/M Fibonacci/M -Fichte +Fichte/M Fidel/M Fidela/M Fidelia/M @@ -5447,6 +5497,8 @@ Fidelity/M Fido/M Fidole/M Field/GS +Fielding/M +Fields/M Fifi/M Fifine/M Figaro/M @@ -5466,7 +5518,7 @@ Fillmore/M FilmSpot/M Filmer/M Filmore/M -Filofax +Filofax/M Fin Fina/M Finch/M @@ -5487,12 +5539,12 @@ Fionnula/M Fiorenze/M Firefox/M Firestone/M -Fischer -Fisher +Fischer/M +Fisher/M Fisk/M Fitch/M Fitz/M -Fitzgerald +Fitzgerald/M Fitzpatrick/M Fitzroy/M Fizeau/M @@ -5501,38 +5553,40 @@ Flanagan/M Flanders/M Flathead Flatt/M -Flaubert +Flaubert/M Fleischer/M Flem/G +Fleming/M Flemish/M Flemming/M Fletch/MR +Fletcher/M Fleur/M Fleurette/M Flickr/M Flin/M Flinn/M -Flint -Flintstones +Flint/M +Flintstones/M Flo/M Flock/M Flor/M -Flora +Flora/M Florance/M Flore/SM Florella/M Florence/M Florencia/M Florentia/M -Florentine +Florentine/M Florenza/M -Flores +Flores/M Florette/M Flori/SM Floria/M Florian/M Florida/M -Floridan +Floridan/M Floridian/SM Florie/M Florina/M @@ -5546,24 +5600,24 @@ Flory/M Flossi/M Flossie/M Flossy/M -Flowers -Floyd +Flowers/M +Floyd/M Flss/M Flynn/M Fm/M -Foch -Fokker -Foley -Folgers -Folsom -Fomalhaut -Fonda +Foch/M +Fokker/M +Foley/M +Folgers/M +Folsom/M +Fomalhaut/M +Fonda/M Fons Fonsie/M Fonz/M Fonzie/M Foosball/M -Forbes +Forbes/M Ford/M Foreman/M Forest/MR @@ -5573,20 +5627,20 @@ Formosa/M Formosan/M Forrest/R Forrester/M -Forster -Fortaleza +Forster/M +Fortaleza/M Foss/M Fosse/M -Foster +Foster/M Fotomat/M -Foucault -Fourier +Foucault/M +Fourier/M Fourneyron/M Fourth -Fowler +Fowler/M Fox/MS Fr/MD -Fragonard +Fragonard/M Fran/SM France/SM Francene/M @@ -5594,29 +5648,30 @@ Francesca Francesco/M Franchot/M Francine/M -Francis +Francis/M Francisca/M -Franciscan/SM +Franciscan/MS Francisco/M Franciska/M Franciskus/M -Franck +Franck/M Francklin/M Francklyn/M -Franco +Franco/M Francois/M Francoise/M Francyne/M -Franglais +Franglais/M Frank/SM Frankel/M -Frankenstein +Frankenstein/M Frankfort/M Frankfurt/MR Frankie/M -Frankish -Franklin +Frankish/M +Franklin/M Franklyn/M +Franks/M Franky/M Franni/M Frannie/M @@ -5626,7 +5681,7 @@ Frants/M Franz/MN Franzen/M Frasco/M -Fraser +Fraser/M Frasier/M Frasquito/M Frau/MN @@ -5644,7 +5699,7 @@ Fredelia/M Frederic/M Frederica/M Frederich/M -Frederick +Frederick/M Fredericka/M Frederico/M Fredericton/M @@ -5667,67 +5722,68 @@ Freemasonry/SM Freemon/M Freetown/M Freida/M -Fremont +Fremont/M French/MS Frenchman/M -Frenchmen +Frenchmen/M Frenchwoman/M -Frenchwomen -Freon +Frenchwomen/M +Freon/M Fresnel/M Fresno/M Freud/M -Freudian +Freudian/M Frey/M Freya/M Fri/M Friday/SM Frieda/M -Friedan +Friedan/M Friederike/M -Friedman -Friedrich +Friedman/M +Friedrich/M Friedrick/M Friend/SM Frigga/M -Frigidaire -Frisbee -Frisco +Frigidaire/M +Frisbee/M +Frisco/M Frisian/MS Frito/M Fritz/M -Frobisher -Froissart -Fromm -Fronde +Frobisher/M +Froissart/M +Fromm/M +Fronde/M FrontPage/M Frontenac/M Frost/M -Frostbelt +Frostbelt/M Frunze/M -Fry +Fry/M Frye/M Fuchs/M -Fuentes -Fugger +Fuentes/M +Fugger/M Fuji/M Fujitsu/M Fujiwara/M Fujiyama/M Fukuoka/M +Fukuyama/M Fulani/M -Fulbright -Fuller -Fullerton +Fulbright/M +Fuller/M +Fullerton/M Fulton/M Fulvia/M -Funafuti -Fundy +Funafuti/M +Fundy/M Furies/M Furtwangler/M -Fushun +Fushun/M Fuzhou/M -Fuzzbuster +Fuzzbuster/M G/MNRB GA GAO @@ -5739,15 +5795,19 @@ GED GHQ/M GHz/M GI +GIF GIGO -GM +GM/M GMAT GMT/M GNP/M +GNU/M GOP/M GP/M GPA GPO +GPS +GPU GSA GTE/M GU @@ -5762,10 +5822,11 @@ Gabe/M Gabey/M Gabi/M Gabie/M +Gable/M Gabon/M Gabonese/M Gaborone/M -Gabriel +Gabriel/M Gabriela/M Gabriele/M Gabriell/M @@ -5776,15 +5837,16 @@ Gabriello/M Gabrila/M Gaby/M Gacrux/M -Gaddafi +Gaddafi/M Gadsden/M Gae/M Gaea/M Gael/SM Gaelan/M Gaelic/M -Gagarin -Gage +Gagarin/M +Gage/M +Gaia/M Gail/M Gaile/M Gaiman/M @@ -5793,37 +5855,37 @@ Gainsborough/M Gal/N Galahad/SM Galapagos/M -Galatea -Galatia -Galatians +Galatea/M +Galatia/M +Galatians/M Galaxy -Galbraith +Galbraith/M Gale/M -Galen -Galibi +Galen/M +Galibi/M Galilean/SM -Galilee +Galilee/M Galileo/M Galina/M Gall/M Gallagher/M Gallard/M Gallegos/M -Gallic +Gallic/M Gallicism/SM Gallo/M Galloway/M -Gallup +Gallup/M Galois/M -Galsworthy +Galsworthy/M Galvan/M -Galvani +Galvani/M Galven/M Galveston/M Galvin/M -Gama +Gama/M Gamaliel/M -Gamay +Gamay/M Gambia/M Gambian/SM Gamble/M @@ -5833,7 +5895,7 @@ GameSpot/M Gamow/M Gan/M Gandhi/M -Gandhian +Gandhian/M Ganesha/M Ganges/M Gangtok/M @@ -5845,7 +5907,7 @@ Ganymede/M Gap/M Gar/MH Garald/M -Garbo +Garbo/M Garcia/M Gard Gardener/M @@ -5862,9 +5924,9 @@ Garfunkel/M Gargantua Garibaldi/M Garik/M -Garland +Garland/M Garmin/M -Garner +Garner/M Garnet/M Garnette/M Garold/M @@ -5873,29 +5935,29 @@ Garrek/M Garret/M Garreth/M Garrett/M -Garrick +Garrick/M Garrik/M -Garrison +Garrison/M Garrot/M Garrott/M Garry/M Garth/M Garv/M -Garvey +Garvey/M Garvin/M Garvy/M Garwin/M Garwood/M -Gary +Gary/M Garza/M Gascony/M -Gaspar +Gaspar/M Gaspard/M Gasparo/M Gasper/M -Gasser +Gasser/M Gaston/M -Gates +Gates/M Gatling/M Gatorade/M Gatsby/M @@ -5905,10 +5967,10 @@ Gaul/SM Gaulish Gaultiero/M Gauss/M -Gaussian +Gaussian/M Gautama/M Gauthier/M -Gautier +Gautier/M Gav/MN Gavan/M Gaven/M @@ -5917,7 +5979,7 @@ Gavra/M Gavrielle/M Gawain/M Gawen/M -Gay +Gay/M Gaye/M Gayel/M Gayelord/M @@ -5929,8 +5991,8 @@ Gayler/M Gaylor/M Gaylord/M Gaynor/M -Gaza -Gaziantep +Gaza/M +Gaziantep/M Gbps Gd/M Gdansk/M @@ -5941,12 +6003,13 @@ Gecko/M Geer/M Geffen/M Gehenna/M -Gehrig +Gehrig/M Geiger/M Gelbvieh/M Geller/M Gelya/M Gemini/MS +Gen/M GenBank/M Gena/M Genaro/M @@ -5967,7 +6030,7 @@ Geno/M Genoa/SM Genovera/M Gentile/MS -Gentoo +Gentoo/M Gentry/M Genvieve/M Geo/M @@ -5984,7 +6047,7 @@ Georgena/M Georgeta/M Georgetown/M Georgetta/M -Georgette +Georgette/M Georgi/M Georgia/M Georgian/MS @@ -5995,6 +6058,7 @@ Georgie/M Georgina/M Georgine/M Georgy/M +Ger/M Gerald/M Geralda/M Geraldine/M @@ -6002,6 +6066,7 @@ Gerard/M Gerardo/M Gerber/M Gerda/M +Gere/M Gerek/M Gerhard/M Gerhardine/M @@ -6021,13 +6086,13 @@ Germanic/M Germany/M Germayne/M Gerome/M -Geronimo +Geronimo/M Gerrard/M Gerri/M Gerrie/M Gerrilee/M Gerry/M -Gershwin +Gershwin/M Gert/M Gerta/M Gerti/M @@ -6039,21 +6104,21 @@ Gertrudis/M Gerty/M Gery/M Gestapo/SM -Gethsemane -Getty +Gethsemane/M +Getty/M Gettysburg/M -Gewurztraminer +Gewurztraminer/M Ghana/M Ghanaian Ghanian/MS -Ghats +Ghats/M Ghazvanid/M -Ghent +Ghent/M Gherardo/M Ghibelline Giacinta/M Giacobo/M -Giacometti +Giacometti/M Giacomo/M Giacopo/M Gian/M @@ -6067,14 +6132,14 @@ Giavani/M Gib/M Gibb/SM Gibbie/M -Gibbon -Gibbs +Gibbon/M +Gibbs/M Gibby/M Gibraltar/MS -Gibson -Gide -Gideon -Gielgud +Gibson/M +Gide/M +Gideon/M +Gielgud/M Gienah/M Giff/MR Giffard/M @@ -6089,19 +6154,19 @@ Gilbert/M Gilberta/M Gilberte/M Gilbertina/M -Gilbertine +Gilbertine/M Gilberto/M Gilburt/M Gilchrist/M Gilda/M -Gilead +Gilead/M Gilemette/M -Giles -Gilgamesh -Gill +Giles/M +Gilgamesh/M +Gill/M Gillan/M -Gilles -Gillespie +Gilles/M +Gillespie/M Gillette/M Gilli/M Gilliam/M @@ -6120,28 +6185,29 @@ Ginnie/M Ginnifer/M Ginny/M Gino/M -Ginsberg +Ginsberg/M Ginsburg/M Ginsu/M Giordano/M Giorgi/M Giorgia/M Giorgio/M -Giorgione -Giotto +Giorgione/M +Giotto/M Giovanna/M Giovanni/M Gipsy/SM Giralda/M Giraldo/M -Giraud -Giraudoux +Giraud/M +Giraudoux/M Gisela/M Giselbert/M Gisele/M Gisella/M Giselle/M -Gish +Gish/M +GitHub/M Giuditta/M Giulia/M Giuliani/M @@ -6157,8 +6223,8 @@ Gk Glad/M Gladi/M Gladstone/MS -Gladys -Glaser +Gladys/M +Glaser/M Glasgow/M Glass/M Glastonbury/M @@ -6178,11 +6244,11 @@ Glenna/M Glennie/M Glennis/M Glori/M -Gloria +Gloria/M Gloriana/M Gloriane/M Glory/M -Gloucester +Gloucester/M Gloucestershire/M Glover/M Glyn/M @@ -6192,14 +6258,15 @@ Glynn/M Glynnis/M GmbH Gnni/M -Gnostic +Gnostic/M Gnosticism/M -Goa +GnuPG +Goa/M Gobi/M God/M -Godard +Godard/M Godart/M -Goddard +Goddard/M Goddart/M Godel/M Godfree/M @@ -6209,20 +6276,20 @@ Godhead/M Godiva/M Godot/M Godspeed/SM -Godthaab -Godunov -Godwin +Godthaab/M +Godunov/M +Godwin/M Godzilla/M -Goebbels -Goering +Goebbels/M +Goering/M Goethals/M Goethe/M Goff/M -Gog -Gogol +Gog/M +Gogol/M Goiania/M Golan/M -Golconda +Golconda/M Golda/M Goldarina/M Goldberg/M @@ -6232,68 +6299,68 @@ Goldia/M Goldie/M Goldilocks/M Goldina/M -Golding +Golding/M Goldman/M -Goldsmith +Goldsmith/M Goldwater/M -Goldwyn +Goldwyn/M Goldy/M -Golgi +Golgi/M Golgotha/M -Goliath +Goliath/M Gomez/M Gomorrah/M -Gompers -Gomulka +Gompers/M +Gomulka/M Gondwanaland/M -Gonzales +Gonzales/M Gonzalez/M Gonzalo/M Goober/M Good/M Goodall/M -Goodman +Goodman/M Goodrich/M Goodwill/M Goodwin/M -Goodyear +Goodyear/M Google/M Goolagong/M Gopher Goran/M Goraud/M -Gorbachev +Gorbachev/M Gordan/M Gorden/M Gordian/M Gordie/M -Gordimer -Gordon +Gordimer/M +Gordon/M Gordy/M -Gore +Gore/M Goren/M Gorey/M -Gorgas +Gorgas/M Gorgon/M Gorgonzola Gorky/M Gospel/MS Goteborg/M Goth/M -Gotham +Gotham/M Gothart/M Gothic/MS Goths Gottfried/M Gouda/SM -Gould -Gounod +Gould/M +Gounod/M Governor -Goya +Goya/M Gr/B Grable/M -Gracchus -Grace +Gracchus/M +Grace/M Graceland/M Gracia/M Gracie/M @@ -6305,13 +6372,13 @@ Graehme/M Graeme/M Graffias/M Grafton/M -Graham -Grahame +Graham/M +Grahame/M Graig/M -Grail +Grail/M Gram/M -Grammy -Grampians +Grammy/M +Grampians/M Gran/M Granada/M Grange/R @@ -6322,20 +6389,20 @@ Grantham/M Granthem/M Grantley/M Granville/M -Grass +Grass/M Grata/M Gratia/M Gratiana/M -Graves -Gray +Graves/M +Gray/M Grayce/M Grazia/M -Grecian +Grecian/M Greece/M Greek/SM -Greeley +Greeley/M Green/SM -Greene +Greene/M Greenland/M Greenlandic Greenpeace/M @@ -6350,17 +6417,17 @@ Greggory/M Gregoire/M Gregoor/M Gregor/M -Gregorian +Gregorian/M Gregorio/M Gregorius/M Gregory/M Grenada/M Grenadian/MS -Grenadines -Grendel -Grenoble +Grenadines/M +Grendel/M +Grenoble/M Grenville -Gresham +Gresham/M Greta/M Gretal/M Gretchen/M @@ -6370,39 +6437,39 @@ Grethel/M Gretna/M Gretta/M Gretzky/M -Grey -Grieg +Grey/M +Grieg/M Grier/M Griff/M Griffie/M Griffin/M -Griffith +Griffith/M Griffiths Griffy/M -Grimes +Grimes/M Grimm/M Grinch/M -Gris +Gris/M Griselda Grissel/M Griswold/M Griz/M -Gromyko +Gromyko/M Gropius/M -Gross -Grosz -Grotius +Gross/M +Grosz/M +Grotius/M Grove/RM Grover/M -Grozny +Grozny/M Grumman/M -Grundy +Grundy/M Grunewald/M Grus/M Gruyere/SM Guadalajara/M Guadalcanal/M -Guadalquivir +Guadalquivir/M Guadalupe/M Guadeloupe/M Guallatiri/M @@ -6414,18 +6481,18 @@ Guantanamo/M Guarani/M Guarnieri/M Guatemala/M -Guatemalan/SM +Guatemalan/MS Guayaquil/M Gucci/M -Guelph +Guelph/M Guendolen/M Guenevere/M Guenna/M Guernsey/MS Guerra/M -Guerrero -Guevara -Guggenheim +Guerrero/M +Guevara/M +Guggenheim/M Guglielma/M Guglielmo/M Gui/M @@ -6442,12 +6509,12 @@ Guinean/MS Guinevere/M Guinna/M Guinness/M -Guiyang -Guizot +Guiyang/M +Guizot/M Gujarat/M Gujarati/M -Gujranwala -Gullah +Gujranwala/M +Gullah/M Gulliver/M Gumbel/M Gun/M @@ -6456,7 +6523,7 @@ Gunilla/M Gunner/M Guntar/M Gunter -Gunther +Gunther/M Guofeng/M Gupta/M Gurkha/M @@ -6475,16 +6542,16 @@ Gustavus/M Gusti/M Gustie/M Gusty/M -Gutenberg +Gutenberg/M Guthrey/M -Guthrie +Guthrie/M Guthry/M Gutierrez/M Guy/M Guyana/M Guyanese/M Guzman/M -Gwalior +Gwalior/M Gwen/M Gwendolen/M Gwendolin/M @@ -6503,7 +6570,9 @@ Gwyneth/M Gwynne/M Gypsy/SM H/M -HBO +HBO/M +HDD +HDMI HDTV HF/M HHS @@ -6525,9 +6594,9 @@ HTML/M HTTP HTTPS HUD/M -Ha +Ha/M Haas/M -Habakkuk +Habakkuk/M Haber/M Had/M Hadar/M @@ -6539,28 +6608,28 @@ Hadria/M Hadrian Hafiz/M Hagan/M -Hagar -Hagen -Haggai +Hagar/M +Hagen/M +Haggai/M Hagiographa/M -Hague -Hahn +Hague/M +Hahn/M Haida/SM Haifa/M Hailee/M Hailey/M Haily/M -Haiphong +Haiphong/M Haiti/M Haitian/MS Hakeem/M Hakim/M Hakka/M -Hakluyt +Hakluyt/M Hal/SMY -Haldane -Hale -Haleakala +Haldane/M +Hale/M +Haleakala/M Haleigh/M Halette/M Haley/M @@ -6568,52 +6637,52 @@ Hali/M Halie/M Halifax/M Halimeda/M -Hall -Halley +Hall/M +Halley/M Halli/M Halliburton/M Hallie/M Hallmark/M Halloween/MS -Hallstatt +Hallstatt/M Hallsy/M Hally/M Halon/M -Halsey +Halsey/M Halsy/M Ham/M Haman/M Hamas/M Hamburg/MS Hamel/M -Hamhung +Hamhung/M Hamid/M Hamil/M Hamilcar/M Hamill/M Hamilton/M -Hamiltonian +Hamiltonian/M Hamish/M Hamitic/M Hamlen/M -Hamlet +Hamlet/M Hamlin/M Hammad/M -Hammarskjold -Hammerstein +Hammarskjold/M +Hammerstein/M Hammett/M -Hammond -Hammurabi +Hammond/M +Hammurabi/M Hamnet/M Hampshire/M -Hampton -Hamsun -Han/S +Hampton/M +Hamsun/M +Han/S/M Hana/M Hanan/M -Hancock +Hancock/M Handel/M -Handy +Handy/M Haney/M Hangul/M Hangzhou/M @@ -6627,6 +6696,7 @@ Hanny/M Hanoi/M Hanover/M Hanoverian/M +Hans/MN Hansel/M Hansen/M Hansiain/M @@ -6639,23 +6709,23 @@ Hapsburg/M Harald/M Harare/M Harbert/M -Harbin +Harbin/M Harcourt/M Hardin/M Harding/M -Hardy -Hargreaves +Hardy/M +Hargreaves/M Harlan/M Harland/M Harlem/M Harlen/M Harlene/M -Harlequin -Harley +Harlequin/M +Harley/M Harli/M Harlie/M Harlin/M -Harlow +Harlow/M Harman/M Harmon/M Harmonia/M @@ -6676,26 +6746,27 @@ Harriette/M Harrington/M Harriot/M Harriott/M +Harris/M Harrisburg/M Harrison/M -Harrods +Harrods/M Harry/M -Hart -Harte +Hart/M +Harte/M Hartford/M -Hartley +Hartley/M Hartline/M Hartman/M Hartwell/M Harv/M Harvard/M -Harvey +Harvey/M Harwell/M Harwilll/M Hasbro/M Hasheem/M Hashim/M -Hasidim +Hasidim/M Haskel/M Haskell/M Haslett/M @@ -6703,10 +6774,10 @@ Hassan/M Hastie/M Hastings/M Hasty/M -Hatfield -Hathaway +Hatfield/M +Hathaway/M Hatsheput/M -Hatteras +Hatteras/M Hatti/M Hattie/M Hatty/M @@ -6714,50 +6785,52 @@ Hauptmann Hausa/M Hausdorff/M Havana/MS -Havarti -Havel +Havarti/M +Havel/M Haven/M Havoline/M -Haw +Haw/M Hawaii/M Hawaiian/SM -Hawking -Hawkins +Hawking/M +Hawkins/M Hawks -Hawthorne +Hawthorne/M Hay/SM Hayden/M Haydn/M Haydon/M Hayes/M Hayley/M -Haynes -Hayward +Haynes/M +Hays/M +Hayward/M Haywood/M Hayworth/M Hayyim/M Haze/M Hazel/M Hazlett/M -Hazlitt +Hazlitt/M He/M Head/M Heall/M -Hearst -Heath/R +Hearst/M +Heath/MR Heather/M Heaven/MS -Heaviside +Heaviside/M Heb -Hebe +Hebe/M Hebert/M -Hebraic +Hebraic/M Hebraism/SM Hebrew/MS +Hebrews/M Hebrides/M -Hecate +Hecate/M Hector/M -Hecuba +Hecuba/M Heda/M Hedda/M Heddi/M @@ -6771,24 +6844,24 @@ Hedy/M Heep/M Hefner/M Hegel/M -Hegelian -Hegira +Hegelian/M +Hegira/M Heida/M -Heidegger -Heidelberg +Heidegger/M +Heidelberg/M Heidi/M Heidie/M -Heifetz +Heifetz/M Heimlich/M Heindrick/M -Heine +Heine/M Heineken/M Heinlein/M Heinrich/M Heinrick/M Heinrik/M -Heinz -Heisenberg +Heinz/M +Heisenberg/M Heisman/M Hejira/MS Helaina/M @@ -6799,21 +6872,21 @@ Helene/M Helenka/M Helga/M Helge/M -Helicon -Heliopolis +Helicon/M +Heliopolis/M Helios/M Hell/SMR Hellene/SM Hellenic/M Hellenism/MS Hellenist -Hellenistic -Hellenization +Hellenistic/M +Hellenization/M Hellenize/DSG -Heller +Heller/M Hellespont/M Helli/M -Hellman +Hellman/M Helmholtz/M Heloise/M Helsa/M @@ -6828,9 +6901,9 @@ Henderson/M Hendrick/MS Hendrik/M Hendrika/M -Hendrix +Hendrix/M Henka/M -Henley +Henley/M Hennessy/M Henri/M Henrie/M @@ -6842,32 +6915,32 @@ Henry/M Henryetta/M Hensley/M Henson/M -Hepburn +Hepburn/M Hephaestus/M Hephzibah/M -Hepplewhite +Hepplewhite/M Hera/M Heracles/M -Heraclitus +Heraclitus/M Herakles/M Herb/M -Herbart -Herbert +Herbart/M +Herbert/M Herbie/M Herby/M Herc/M Herculaneum/M Hercule/MS -Herculean +Herculean/M Hercules/M Herculie/M -Herder +Herder/M Hereford/SM -Herero +Herero/M Heriberto/M Herman/M Hermann/M -Hermaphroditus +Hermaphroditus/M Hermes/M Hermia/M Hermie/M @@ -6875,7 +6948,7 @@ Hermina/M Hermine/M Herminia/M Hermione/M -Hermitage +Hermitage/M Hermite/M Hermon Hermosillo/M @@ -6887,10 +6960,10 @@ Herodotus/M Herold/M Herr/MG Herrera/M -Herrick +Herrick/M Herring/M Hersch/M -Herschel +Herschel/M Hersey/M Hersh/M Hershel/M @@ -6902,14 +6975,14 @@ Hertz/M Hertzsprung/M Herve/M Hervey/M -Herzegovina -Herzl +Herzegovina/M +Herzl/M Heshvan/M -Hesiod -Hesperus -Hess -Hesse -Hessian +Hesiod/M +Hesperus/M +Hess/M +Hesse/M +Hessian/M Hester/M Hesther/M Hestia/M @@ -6924,43 +6997,43 @@ Hewett/M Hewie/M Hewitt/M Hewlett/M -Heyerdahl -Heywood +Heyerdahl/M +Heywood/M Hezbollah/M -Hezekiah +Hezekiah/M Hf/M Hg/M Hi/M -Hialeah +Hialeah/M Hiawatha/M Hibernia/M Hibernian Hickman/M -Hickok +Hickok/M Hicks/M -Hieronymus +Hieronymus/M Higashiosaka Higgins/M -Highlander/MS +Highlander/SM Highlands Highness/M Hilario/M Hilarius/M Hilary/M -Hilbert +Hilbert/M Hilda/M Hildagard/M Hildagarde/M Hilde/M -Hildebrand +Hildebrand/M Hildegaard/M Hildegarde/M Hildy/M Hilfiger/M -Hill +Hill/M Hillard/M -Hillary -Hillel +Hillary/M +Hillel/M Hillery/M Hilliard Hilliary/M @@ -6969,68 +7042,69 @@ Hillier/M Hillsborough/M Hilly/RM Hillyer/M -Hilton +Hilton/M Himalaya/SM -Himalayan -Himmler +Himalayan/M +Himmler/M Hinayana/M Hinda/M -Hindemith -Hindenburg -Hindi +Hindemith/M +Hindenburg/M +Hindi/M Hindu/SM Hinduism/SM Hindustan/M Hindustani/SM -Hines +Hines/M Hinton/M Hinze/M -Hipparchus +Hipparchus/M Hippocrates/M -Hippocratic -Hiram +Hippocratic/M +Hiram/M Hirobumi/M -Hirohito +Hirohito/M Hiroshima/M Hirsch/M Hispanic/SM Hispaniola/M Hiss/M Hitachi/M -Hitchcock +Hitchcock/M Hitler/MS Hittite/SM -Hmong +Hmong/M Ho/M Hobard/M Hobart/M -Hobbes -Hobbs +Hobbes/M +Hobbs/M Hobey/M Hobie/M Hockney/M Hodge/SM -Hodgkin +Hodges/M +Hodgkin/M Hoebart/M Hoff/M Hoffa/M Hoffman/M Hofstadter/M Hogan/M -Hogarth +Hogarth/M Hogwarts/M -Hohenlohe -Hohenstaufen +Hohenlohe/M +Hohenstaufen/M Hohenzollern/M Hohhot/M -Hohokam +Hohokam/M Hokkaido/M -Hokusai -Holbein +Hokusai/M +Holbein/M Holcomb/M Holden/M Holder/M -Holiday +Holiday/M Holiness Holland/ZSMR Hollander/M @@ -7038,20 +7112,21 @@ Hollerith/M Holley/M Holli/SM Hollie/M +Hollis/M Holloway/M -Holly +Holly/M Hollyanne/M Hollywood/M Holman/M Holmes/M -Holocaust +Holocaust/M Holocene/M -Holst +Holst/M Holstein/SM -Holt +Holt/M Homer/M Homere/M -Homeric +Homeric/M Homerus/M Hon Honda/M @@ -7060,39 +7135,40 @@ Honduras/M Honecker/M Honey/M Honeywell/M -Honiara +Hong/M +Honiara/M Honolulu/M Honor/B Honoria/M Honshu/M -Hood -Hooke/R +Hood/M +Hooke/RM Hooper/M Hoosier/MS Hooters/M Hoover/MS -Hope +Hope/M Hopewell/M Hopi/SM -Hopkins -Hopper -Horace +Hopkins/M +Hopper/M +Horace/M Horacio/M Horatia/M Horatio/M Horatius/M Hormel/M -Hormuz -Horn +Hormuz/M +Horn/M Hornblower/M Horne/M -Horowitz +Horowitz/M Horst/M Hort/MN Horten/M Hortense Hortensia/M -Horthy +Horthy/M Horton/M Horus/M Hosea/M @@ -7100,25 +7176,25 @@ Host/SM Hotmail/M Hotpoint/M Hottentot/SM -Houdini +Houdini/M Houghton/M -House -Housman +House/M +Housman/M Houston/M Houyhnhnm/M Hovhaness/M -Howard -Howe +Howard/M +Howe/M Howell/MS Howey/M Howie/M Howrah -Hoyle +Hoyle/M Hoyt/M Hrothgar/M Hts -Huang -Hubbard +Huang/M +Hubbard/M Hubble/M Hube/RM Huber/M @@ -7133,55 +7209,56 @@ Huerta/M Huey/M Huff/M Huffman/M -Huggins +Huggins/M Hugh/MS +Hughes/M Hughie Hugibert/M Hugo/M Huguenot/MS Hugues/M -Hui +Hui/M Huitzilopotchli/M Hulda/M Hull/M Humbert/M Humberto/M -Humboldt -Hume +Humboldt/M +Hume/M Humfrey/M Humfrid/M Humfried/M Hummer/M -Humphrey -Humvee +Humphrey/M +Humvee/M Hun/SM Hunfredo/M -Hung +Hung/M Hungarian/SM Hungary/M Hunspell/M -Hunt/R +Hunt/MR Hunter/M Huntington/M Huntlee/M Huntley/M -Huntsville +Huntsville/M Hurlee/M Hurleigh/M Hurley/M -Huron +Huron/M Hurst/M -Hus +Hus/M Husein/M -Hussein -Husserl -Hussite -Huston -Hutchinson +Hussein/M +Husserl/M +Hussite/M +Huston/M +Hutchinson/M Hutton/M -Hutu +Hutu/M Huxley/M -Huygens +Huygens/M Hy/M Hyacinth/M Hyacintha/M @@ -7190,8 +7267,8 @@ Hyacinthia/M Hyacinthie/M Hyades/M Hyatt/M -Hyde -Hyderabad +Hyde/M +Hyderabad/M Hydra/M Hyman/M Hymen/M @@ -7211,7 +7288,10 @@ ICBM/SM ICC ICU ID/SM +IDE IE +IED +IEEE IKEA/M IL IMDb/M @@ -7225,16 +7305,20 @@ ING/M INRI INS IOU/M +IP IPA IPO/MS IQ/M IRA/SM +IRC IRS/M ISBN -ISO +ISO/M +ISP IT IUD IV/SM +IVF Ia Iaccoca/M Iago/M @@ -7242,14 +7326,14 @@ Iain/M Ian/M Ianthe/M Iapetus/M -Ibadan +Ibadan/M Ibbie/M Ibby/M Iberia/M -Iberian -Ibiza +Iberian/M +Ibiza/M Iblis/M -Ibo +Ibo/M Ibrahim/M Ibsen/M Icahn/M @@ -7259,7 +7343,7 @@ Iceland/MRZ Icelander/M Icelandic/M Ichabod/M -Ida +Ida/M Idaho/SM Idahoan/MS Idahoes @@ -7269,13 +7353,13 @@ Idaline/M Idell/M Idelle/M Idette/M -Ieyasu +Ieyasu/M Iggie/M Iggy/M Ignace/M Ignacio/M Ignacius/M -Ignatius +Ignatius/M Ignaz/M Ignazio/M Igor/M @@ -7284,8 +7368,8 @@ Ijssel Ijsselmeer/M Ike/M Ikey/M -Ikhnaton -Ila +Ikhnaton/M +Ila/M Ilaire/M Ilario/M Ileana/M @@ -7298,7 +7382,7 @@ Ill Illa/M Illinois/M Illinoisan/MS -Illuminati +Illuminati/M Ilsa/M Ilse/M Ilysa/M @@ -7328,16 +7412,17 @@ Indiana/M Indianan/SM Indianapolis/M Indianian +Indies/M Indira/M Indochina/M -Indochinese +Indochinese/M Indonesia/M Indonesian/MS -Indore +Indore/M Indra/M Indus/M Indy/SM -Ines +Ines/M Inesita/M Inessa/M Inez/M @@ -7346,7 +7431,7 @@ Ingaberg/M Ingaborg/M Ingamar/M Ingar/M -Inge/R +Inge/RM Ingeberg/M Ingeborg/M Ingelbert/M @@ -7358,7 +7443,7 @@ Inglis/M Ingmar/M Ingra/M Ingram/M -Ingres +Ingres/M Ingrid/M Ingrim/M Ingunna/M @@ -7369,14 +7454,15 @@ Innis/M Innocent/M Innsbruck Inonu/M -Inquisition +Inquisition/M Inst +Instagram/M Instamatic/M Intel/M -Intelsat +Intelsat/M Internationale/M -Internet/S -Interpol +Internet/SM +Interpol/M Inuit/MS Inuktitut/M Invar/M @@ -7384,7 +7470,7 @@ Io/M Iolande/M Iolanthe/M Iona -Ionesco +Ionesco/M Ionian/MS Ionic/SM Iorgo/MS @@ -7392,11 +7478,11 @@ Iormina/M Iosep/M Iowa/SM Iowan/MS -Iphigenia +Iphigenia/M Ipswich Iqaluit/M -Iqbal -Iquitos +Iqbal/M +Iquitos/M Ir/M Ira/M Iran/M @@ -7405,25 +7491,25 @@ Iraq/M Iraqi/MS Ireland/M Irena/M -Irene +Irene/M Irina/M -Iris +Iris/M Irish/MR Irishman/M -Irishmen +Irishmen/M Irishwoman/M -Irishwomen +Irishwomen/M Irita/M -Irkutsk +Irkutsk/M Irma/M Iroquoian/SM Iroquois/M -Irrawaddy +Irrawaddy/M Irtish/M Irv/MG Irvin/M -Irvine -Irving +Irvine/M +Irving/M Irwin/M Irwinn/M Isa @@ -7431,7 +7517,7 @@ Isaac/M Isaak/M Isabel/M Isabelita/M -Isabella +Isabella/M Isabelle/M Isac/M Isacco/M @@ -7439,14 +7525,14 @@ Isador/M Isadora/M Isadore/M Isahella/M -Isaiah +Isaiah/M Isak/M -Iscariot +Iscariot/M Iseabal/M -Isfahan -Isherwood +Isfahan/M +Isherwood/M Ishim/M -Ishmael +Ishmael/M Ishtar/M Isiah/M Isiahi/M @@ -7458,20 +7544,20 @@ Isidro/M Isis/M Islam/MS Islamabad/M -Islamic +Islamic/M Islamism/M -Islamist +Islamist/M Ismael/M Ismail/M Isobel/M -Isolde +Isolde/M Ispahan Ispell/M Israel/SM Israeli/SM -Israelite +Israelite/M Issac/M -Issachar +Issachar/M Issi/M Issiah/M Issie/M @@ -7486,15 +7572,16 @@ Italianate Italy/M Itasca/M Itch/M -Ithaca -Ithacan -Ito +Ithaca/M +Ithacan/M +Ito/M Iva/M -Ivan +Ivan/M Ivanhoe/M Ivar/M Ive/RSM Iver/M +Ives/M Ivett/M Ivette/M Ivie/M @@ -7503,15 +7590,15 @@ Ivonne/M Ivor/M Ivorian Ivory/M -Ivy +Ivy/M Iyar/M Izaak/M Izabel/M Izak/M Izanagi/M Izanami/M -Izhevsk -Izmir +Izhevsk/M +Izmir/M Izod/M Izvestia/M Izzy/M @@ -7528,7 +7615,7 @@ Jacinda/M Jacinta/M Jacintha/M Jacinthe/M -Jack +Jack/M Jackelyn/M Jacki/M Jackie/M @@ -7537,31 +7624,32 @@ Jacklyn/M Jackquelin/M Jackqueline/M Jackson/M -Jacksonian +Jacksonian/M Jacksonville/M Jacky/M Jaclin/M Jaclyn/M Jacob/SM Jacobean/M -Jacobi +Jacobi/M Jacobin/M Jacobite/M Jacobo/M +Jacobs/M Jacobson/M -Jacquard +Jacquard/M Jacquelin/M Jacqueline/M Jacquelyn/M Jacquelynn/M Jacquenetta/M Jacquenette/M -Jacques +Jacques/M Jacquetta/M Jacquette/M Jacqui/M Jacquie/M -Jacuzzi +Jacuzzi/M Jacynth/M Jada/M Jade/M @@ -7572,10 +7660,10 @@ Jaguar/M Jahangir/M Jaime/M Jaimie/M -Jain +Jain/M Jaine/M Jainism/M -Jaipur +Jaipur/M Jakarta/M Jake/M Jakie/M @@ -7588,8 +7676,8 @@ Jamar/M Jame/SM Jamel/M James/M -Jameson -Jamestown +Jameson/M +Jamestown/M Jamesy/M Jamey/M Jami/M @@ -7629,7 +7717,7 @@ Jania/M Janice/M Janie/M Janifer/M -Janina +Janina/M Janine/M Janis/M Janissary/M @@ -7661,7 +7749,7 @@ Jareb/M Jared/M Jarib/M Jarid/M -Jarlsberg +Jarlsberg/M Jarrad/M Jarred/M Jarret/M @@ -7677,16 +7765,17 @@ Jasmine/M Jason/M Jasper/M Jasun/M -Jataka +Jataka/M Java/SM JavaScript/M Javanese/M Javier/M -Jaxartes -Jay +Jaxartes/M +Jay/M Jayapura/M Jayawardene/M -Jaycee/S +Jaycee/MS +Jaycees/M Jaye/M Jayme/M Jaymee/M @@ -7715,21 +7804,21 @@ Jeddy/M Jedediah/M Jedi/M Jedidiah/M -Jeep +Jeep/M Jeeves/M Jeff/M Jefferey/M Jefferson/M -Jeffersonian +Jeffersonian/M Jeffery/M Jeffie/M -Jeffrey +Jeffrey/M Jeffry/M Jeffy/M Jehanna/M -Jehoshaphat +Jehoshaphat/M Jehovah/M -Jehu +Jehu/M Jekyll/M Jelene/M Jemie/M @@ -7748,10 +7837,11 @@ Jenifer/M Jeniffer/M Jenilee/M Jenine/M -Jenkins +Jenkins/M Jenn/MRJ Jenna/M Jennee/M +Jenner/M Jennette/M Jenni/M Jennica/M @@ -7763,7 +7853,7 @@ Jennings/M Jenny/M Jeno/M Jensen/M -Jephthah +Jephthah/M Jerad/M Jerald/M Jeralee/M @@ -7772,7 +7862,7 @@ Jeramie/M Jere/M Jereme/M Jeremiah/M -Jeremiahs +Jeremiahs/M Jeremias/M Jeremie/M Jeremy/M @@ -7781,9 +7871,9 @@ Jericho/M Jermain/M Jermaine/M Jermayne/M -Jeroboam +Jeroboam/M Jerold/M -Jerome +Jerome/M Jeromy/M Jerri/M Jerrie/M @@ -7804,7 +7894,7 @@ Jessalin/M Jessalyn/M Jessamine/M Jessamyn/M -Jesse +Jesse/M Jessee/M Jesselyn/M Jessey/M @@ -7814,21 +7904,21 @@ Jessie/M Jessika/M Jessy/M Jesuit/MS -Jesus +Jesus/M Jeth/M -Jethro -Jetway +Jethro/M +Jetway/M Jew/SM Jewel/M Jewell/M Jewelle/M Jewess/MS Jewish/P -Jewry +Jewry/M Jezebel/SM -Jidda -Jilin -Jill +Jidda/M +Jilin/M +Jill/M Jillana/M Jillane/M Jillayne/M @@ -7842,13 +7932,13 @@ Jim/M Jimenez/M Jimmie/M Jimmy/M -Jinan -Jinnah +Jinan/M +Jinnah/M Jinny/M -Jivaro +Jivaro/M Jo/MY -Joachim -Joan +Joachim/M +Joan/M Joana/M Joane/M Joanie/M @@ -7861,24 +7951,25 @@ Jobey/M Jobi/M Jobie/M Jobina/M +Jobs/M Joby/M Jobye/M Jobyna/M -Jocasta +Jocasta/M Jocelin/M Joceline/M Jocelyn/M Jocelyne/M -Jock -Jockey +Jock/M +Jockey/M Jocko/M Jodee/M Jodi/M Jodie/M Jody/M -Joe +Joe/M Joeann/M -Joel/Y +Joel/YM Joela/M Joelie/M Joell/MN @@ -7896,7 +7987,7 @@ Johan/M Johann/M Johanna/M Johannah/M -Johannes +Johannes/M Johannesburg/M John/SM Johna/MH @@ -7906,8 +7997,9 @@ Johnathon/M Johnette/M Johnie/M Johnna/M -Johnnie +Johnnie/M Johnny/M +Johns/M Johnson/M Johnston/M Johny/M @@ -7921,22 +8013,23 @@ Joli/M Jolie/M Joliet Joline/M -Jolson +Jolson/M Joly/M Jolyn/M Jolynn/M Jon/M Jonah/M -Jonahs -Jonas +Jonahs/M +Jonas/M Jonathan/M Jonathon/M Jone/SM Jonell/M +Jones/M Joni/SM Jonie/M -Jonson -Joplin +Jonson/M +Joplin/M Jordain/M Jordan/M Jordana/M @@ -7961,33 +8054,33 @@ Joseito/M Joseph/M Josepha/M Josephina/M -Josephine -Josephs +Josephine/M +Josephs/M Josephson/M -Josephus +Josephus/M Josey/M -Josh +Josh/M Joshia/M Joshua/M Joshuah/M Josi/M -Josiah +Josiah/M Josias/M Josie/M Josselyn/M Josue/M Josy/M -Joule +Joule/M Jourdain/M Jourdan/M Jove/M -Jovian +Jovian/M Joy/M Joya/M Joyan/M Joyann/M -Joyce -Joycean +Joyce/M +Joycean/M Joycelin/M Joye/M Joyner/M @@ -7999,16 +8092,17 @@ Juan/M Juana/M Juanita/M Juarez/M -Jubal +Jubal/M Jud -Judah +Judaeo +Judah/M Judaic Judaical Judaism/MS Judas/MS Judd/M -Jude -Judea +Jude/M +Judea/M Judges Judi/MH Judie/M @@ -8016,24 +8110,25 @@ Judith/M Juditha/M Judon/M Judson/M -Judy +Judy/M Judye/M Juggernaut/M Juieta/M Jul Jule/SM Julee/M +Jules/M Juli/M Julia/M -Julian -Juliana +Julian/M +Juliana/M Juliane/M Juliann/M Julianna/M Julianne/M Julie/M Julienne/M -Juliet +Juliet/M Julieta/M Julietta/M Juliette/M @@ -8045,13 +8140,13 @@ Julita/M Julius/M Julliard/M July/SM -Jun +Jun/M June/SM Juneau/M Junette/M Jung/M -Jungfrau -Jungian +Jungfrau/M +Jungian/M Junia/M Junie/M Junina/M @@ -8072,34 +8167,34 @@ Justino/M Justis/M Justus/M Jutland/M -Juvenal +Juvenal/M Jyoti/M K/SMNRGJ KB/M KC KFC/M -KGB +KGB/M KIA KKK/M KO/M KP KS KY -Kaaba +Kaaba/M Kabul/M Kacey/M Kacie/M Kacy/M Kaela/M Kafka/M -Kafkaesque -Kagoshima +Kafkaesque/M +Kagoshima/M Kahaleel/M Kahlil/M Kahlua/M Kai/M Kaia/M -Kaifeng +Kaifeng/M Kaila/M Kaile/M Kailey/M @@ -8113,14 +8208,14 @@ Kaja/M Kakalina/M Kala/M Kalahari/M -Kalamazoo -Kalashnikov +Kalamazoo/M +Kalashnikov/M Kalb/M Kale/M Kaleb/M Kaleena/M -Kalevala -Kalgoorlie +Kalevala/M +Kalgoorlie/M Kali/M Kalie/M Kalil/M @@ -8131,10 +8226,10 @@ Kalindi/M Kalle/M Kalli/M Kally/M -Kalmyk +Kalmyk/M Kalvin/M Kama/M -Kamchatka +Kamchatka/M Kamehameha/M Kameko/M Kamila/M @@ -8142,28 +8237,28 @@ Kamilah/M Kamillah/M Kampala/M Kampuchea/M -Kan/S +Kan/SM Kanchenjunga/M Kandace/M -Kandahar -Kandinsky +Kandahar/M +Kandinsky/M Kandy Kane/M Kania/M Kannada/M -Kano -Kanpur +Kano/M +Kanpur/M Kansan/MS -Kansas +Kansas/M Kant/M -Kantian +Kantian/M Kanya/M -Kaohsiung +Kaohsiung/M Kaposi/M Kara/M Karachi/M -Karaganda -Karakorum +Karaganda/M +Karakorum/M Karalee/M Karalynn/M Karamazov/M @@ -8253,7 +8348,7 @@ Katherina/M Katherine/M Katheryn/M Kathi/M -Kathiawar +Kathiawar/M Kathie/M Kathleen/M Kathlin/M @@ -8270,9 +8365,9 @@ Katine/M Katinka/M Katleen/M Katlin/M -Katmai +Katmai/M Katmandu/M -Katowice +Katowice/M Katrina/M Katrine Katrinka/M @@ -8287,8 +8382,8 @@ Kaufman/M Kaunas/M Kaunda/M Kawabata/M -Kawasaki -Kay +Kawasaki/M +Kay/M Kaycee/M Kaye/M Kayla/M @@ -8302,14 +8397,14 @@ Kazakh/M Kazakhs Kazakhstan/M Kazan/M -Kazantzakis +Kazantzakis/M Kb/M Kean Keane/M Kearney/M Keary/M Keaton/M -Keats +Keats/M Keck/M Keefe/RM Keefer/M @@ -8320,7 +8415,7 @@ Keely/M Keen/M Keenan/M Keene/M -Keewatin +Keewatin/M Keillor/M Keir/M Keisha/M @@ -8335,25 +8430,26 @@ Kele/M Kelila/M Kellby/M Kellen/M -Keller +Keller/M Kelley/M Kelli/M Kellia/M Kellie/M Kellina/M -Kellogg +Kellogg/M Kellsie/M -Kelly +Kelly/M Kellyann/M Kelsey/M Kelsi/M Kelsy/M Kelt/SM -Kelvin +Kelvin/M Kelwin/M -Kemerovo +Kemerovo/M Kemp/M -Kempis +Kempis/M +Ken/M Kendal/M Kendall/M Kendell/M @@ -8373,11 +8469,11 @@ Kenny/M Kenon/M Kent/M Kenton/M -Kentuckian/SM +Kentuckian/MS Kentucky/M Kenya/M Kenyan/SM -Kenyatta +Kenyatta/M Kenyon/M Keogh/M Keokuk/M @@ -8393,14 +8489,14 @@ Kerk/M Kermie/M Kermit/M Kermy/M -Kern -Kerouac -Kerr +Kern/M +Kerouac/M +Kerr/M Kerri/M Kerrie/M Kerrill/M Kerrin/M -Kerry +Kerry/M Kerstin/M Kerwin/M Kerwinn/M @@ -8408,7 +8504,7 @@ Kesley/M Keslie/M Kessia/M Kessiah/M -Kettering +Kettering/M Ketti/M Kettie/M Ketty/M @@ -8417,16 +8513,16 @@ Kevan/M Keven/M Kevin/M Kevina/M -Kevlar +Kevlar/M Kevon/M Kevorkian/M Kevyn/M -Kewpie -Key +Kewpie/M +Key/M Keynes/M -Keynesian -Khabarovsk -Khachaturian +Keynesian/M +Khabarovsk/M +Khachaturian/M Khalid/M Khalil/M Khan/M @@ -8439,28 +8535,28 @@ Khoikhoi/M Khoisan/M Khomeini/M Khorana/M -Khrushchev -Khufu +Khrushchev/M +Khufu/M Khulna/M Khwarizmi/M Khyber/M Ki/M Kiah/M Kial/M -Kickapoo +Kickapoo/M Kidd/M -Kiel +Kiel/M Kiele/M Kienan/M -Kierkegaard +Kierkegaard/M Kiersten/M Kieth/M Kiev/M Kigali/M Kijiji/M Kikelia/M -Kikuyu -Kilauea +Kikuyu/M +Kilauea/M Kile/M Kiley/M Kilian/M @@ -8473,7 +8569,7 @@ Kim/M Kimball/M Kimbell/M Kimberlee/M -Kimberley +Kimberley/M Kimberli/M Kimberly/M Kimberlyn/M @@ -8494,7 +8590,7 @@ Kinna/M Kinney/M Kinnie/M Kinny/M -Kinsey +Kinsey/M Kinshasa/M Kinsley/M Kiowa/MS @@ -8509,7 +8605,7 @@ Kira/M Kirbee/M Kirbie/M Kirby/M -Kirchhoff +Kirchhoff/M Kirchner/M Kirghistan/M Kirghiz/M @@ -8517,30 +8613,30 @@ Kirghizia/M Kiri/M Kiribati/M Kirinyaga/M -Kirk +Kirk/M Kirkland/M Kirkpatrick/M -Kirov +Kirov/M Kirsten/M Kirsteni/M Kirsti/M Kirstin/M Kirstyn/M -Kisangani +Kisangani/M Kishinev/M Kislev/M Kissee/M Kissiah/M Kissie/M -Kissinger +Kissinger/M Kit/M Kitakyushu/M -Kitchener +Kitchener/M Kitti/M Kittie/M Kitts/M Kitty/M -Kiwanis +Kiwanis/M Kizzee/M Kizzie/M Klan/M @@ -8549,34 +8645,34 @@ Klara/M Klarika/M Klarrisa/M Klaus/M -Klee +Klee/M Kleenex/MS Klein/M Klemens/M Klement/M Kleon/M Kliment/M -Klimt -Kline +Klimt/M +Kline/M Klingon/M Klondike/MS Kmart/M Knapp/M Knesset/M Kngwarreye/M -Knickerbocker +Knickerbocker/M Knievel/M -Knight +Knight/M Knopf/M -Knossos -Knowles -Knox -Knoxville +Knossos/M +Knowles/M +Knox/M +Knoxville/M Knudsen/M Knuth/M Knuths -Kobe -Koch +Kobe/M +Koch/M Kochab/M Kodachrome/M Kodak @@ -8589,7 +8685,7 @@ Kohl Koizumi/M Kojak/M Koln/M -Kolyma +Kolyma/M Kommunizma/M Kong/M Kongo/M @@ -8599,6 +8695,7 @@ Konstantin/M Konstantine/M Konstanze/M Koo/M +Kooker/M Koontz/M Koppel/M Kora/M @@ -8622,23 +8719,23 @@ Korrie/M Korry/M Kort/M Kory/M -Korzybski -Kosciusko +Korzybski/M +Kosciusko/M Kosovo/M -Kossuth -Kosygin +Kossuth/M +Kosygin/M Koufax/M -Kowloon +Kowloon/M Kr/M Kraft/M Krakatau/M Krakatoa/M Krakow/M Kramer/M -Krasnodar -Krasnoyarsk -Krebs -Kremlin +Krasnodar/M +Krasnoyarsk/M +Krebs/M +Kremlin/M Kremlinologist Kremlinology Kresge/M @@ -8675,10 +8772,10 @@ Kristyn/M Kroc/M Kroger/M Kronecker/M -Kropotkin -Kruger -Krugerrand -Krupp +Kropotkin/M +Kruger/M +Krugerrand/M +Krupp/M Krysta/M Krystal/M Krystalle/M @@ -8687,21 +8784,21 @@ Krystyna/M Kshatriya/M Kuala/M Kublai/M -Kubrick +Kubrick/M Kuhn/M -Kuibyshev +Kuibyshev/M Kulthumm/M -Kunming -Kuomintang -Kurd +Kunming/M +Kuomintang/M +Kurd/M Kurdish/M -Kurdistan +Kurdistan/M Kurile -Kurosawa +Kurosawa/M Kurt/M Kurtis/M Kusch/M -Kutuzov +Kutuzov/M Kuwait/M Kuwaiti/SM Kuznets/M @@ -8709,10 +8806,10 @@ Kuznetsk/M Kwakiutl/M Kwan/M Kwangchow/M -Kwangju +Kwangju/M Kwanza/MS Kwanzaa/MS -Ky/H +Ky/MH Kyla/M Kyle/M Kylen/M @@ -8722,13 +8819,13 @@ Kylynn/M Kym/M Kynthia/M Kyoto/M -Kyrgyzstan +Kyrgyzstan/M Kyrstin/M Kyushu/M -L'Amour +L'Amour/M L'Enfant -L'Oreal -L'Ouverture +L'Oreal/M +L'Ouverture/M L/MN LA LAN/M @@ -8739,6 +8836,8 @@ LCM LDC LED/M LG/M +LGBT +LGBTQ LIFO LL LLB/M @@ -8751,9 +8850,9 @@ LPN/SM LSAT LSD/M LVN -La/M +La/SM Lab -Laban +Laban/M Labrador/SM Labradorean Labradorian @@ -8762,37 +8861,37 @@ Lacey/M Lachesis/M Lacie/M Lacy/M -Ladoga +Ladoga/M Ladonna/M -Lady +Lady/M Ladyship/MS Laetitia/M -Lafayette +Lafayette/M Lafitte/M Lagos/M -Lagrange -Lagrangian -Lahore +Lagrange/M +Lagrangian/M +Lahore/M Laina/M Lainey/M Laird/M -Laius +Laius/M Lajos/M Lakeisha/M Lakers/M Lakewood Lakisha/M -Lakota +Lakota/M Lakshmi/M Lalo/M Lamaism/SM Lamar/M Lamarck/M -Lamaze -Lamb -Lambert +Lamaze/M +Lamb/M +Lambert/M Lamborghini/M -Lambrusco +Lambrusco/M Lamentations Lammond/M Lamond/M @@ -8800,29 +8899,30 @@ Lamont/M Lana/M Lanae/M Lanai/M -Lancashire +Lancashire/M Lancaster/M Lance/M Lancelot/M -Land +Land/M Landon/M Landry/M -Landsat +Landsat/M Landsteiner/M Lane/M Lanette/M Laney/M -Lang +Lang/M Langerhans/M -Langland -Langley -Langmuir +Langland/M +Langley/M +Langmuir/M Langsdon/M Langston/M Lani/M Lanie/M Lanita/M Lanka/M +Lankan/M Lanna/M Lanni/M Lannie/M @@ -8831,24 +8931,25 @@ Lansing/M Lanzhou/M Lao/SM Laocoon/M +Laos/M Laotian/SM -Laplace +Laplace/M Lapland/MR Lapp/SM Lara/M Laraine/M Laramie/M Lardner/M -Laredo +Laredo/M Lari/M Larina/M Larine/M Larisa/M Larissa/M Lark/M -Larousse +Larousse/M Larry/M -Lars/N +Lars/MN Larsen/M Larson/M Laryssa/M @@ -8856,7 +8957,7 @@ Lascaux/M Lassa/M Lassen/M Lassie/M -Lat +Lat/M Latasha/M Latashia/M Lateran/M @@ -8872,11 +8973,12 @@ Latrina/M Latrobe/M Latvia/M Latvian/MS -Laud/R -Laue +Laud/MR +Lauder/M +Laue/M Laughton Launce/M -Laundromat +Laundromat/M Laura/M Lauraine/M Laural/M @@ -8900,7 +9002,7 @@ Laurice/M Laurie/M Lauritz/M Lauryn/M -Laval +Laval/M Lavena/M Lavern/M Laverna/M @@ -8908,16 +9010,16 @@ Laverne/M Lavina/M Lavinia/M Lavinie/M -Lavoisier +Lavoisier/M Lavonne/M Law Lawanda/M -Lawrence +Lawrence/M Lawry/M -Lawson +Lawson/M Lawton/M Lay/M -Layamon +Layamon/M Layla/M Layne/M Layney/M @@ -8929,11 +9031,11 @@ Lazarus/M Le/SMN Lea/M Leach/M -Leadbelly -Leah +Leadbelly/M +Leah/M Leakey/M Lean/M -Leander +Leander/M Leandra/M Leann/M Leanna/M @@ -8943,13 +9045,13 @@ Leanora/M Lear/M Learjet/M Leary/M -Leavenworth +Leavenworth/M Lebanese/M Lebanon/M Lebbie/M Lebesgue/M Leblanc/M -Leda +Leda/M Lederberg/M Lee/M Leeann/M @@ -8961,13 +9063,13 @@ Leeland/M Leena/M Leesa/M Leese/M -Leeuwenhoek +Leeuwenhoek/M Leeward/M Left Lefty/M -Legendre +Legendre/M Leger/M -Leghorn +Leghorn/M Lego/M Legra/M Legree/M @@ -8978,7 +9080,7 @@ Leica/M Leicester/SM Leiden/M Leif/M -Leigh +Leigh/M Leigha/M Leighton/M Leila/M @@ -9006,7 +9108,7 @@ Lenette/M Lenin/M Leningrad/M Leninism/M -Leninist +Leninist/M Lenka/M Lenna/M Lennard/M @@ -9018,23 +9120,24 @@ Lenoir/M Lenora/M Lenore/M Lent/SMN +Lenten/M Leo/SM Leodora/M Leoine/M Leola/M Leoline/M -Leon +Leon/M Leona/M Leonanie/M Leonard/M Leonardo/M -Leoncavallo +Leoncavallo/M Leone/M Leonel/M Leonelle/M Leonerd/M Leonhard/M -Leonid +Leonid/M Leonidas/M Leonie/M Leonor/M @@ -9045,12 +9148,13 @@ Leontyne/M Leopold/M Leopoldo/M Leora/M -Lepidus +Lepidus/M Lepke/M Lepus/M -Lerner +Lerner/M Leroi/M Leroy/M +Les/M Lesa/M Leshia/M Lesley/M @@ -9058,7 +9162,7 @@ Lesli/M Leslie/M Lesly/M Lesotho/M -Lesseps +Lesseps/M Lessie/M Lester/M Lestrade/M @@ -9082,7 +9186,7 @@ Levant/M Levesque/M Levey/M Levi/SM -Leviathan +Leviathan/M Levin/M Levine/M Leviticus/M @@ -9090,10 +9194,10 @@ Levitt/M Levon/M Levy/M Lew/M -Lewes +Lewes/M Lewie/M Lewinsky/M -Lewis +Lewis/M Lewiss Lexi/SM Lexie/M @@ -9120,22 +9224,23 @@ Lib Libbey/M Libbi/M Libbie/M -Libby +Libby/M Liberace/M Liberia/M Liberian/SM Libra/MS +LibreOffice/M Libreville/M Librium/M Libya/M Libyan/SM Licha/M -Lichtenstein +Lichtenstein/M Lida/M Lidia/M -Lie +Lie/M Lieberman/M -Liebfraumilch +Liebfraumilch/M Liechtenstein/ZMR Liechtensteiner/M Lief/M @@ -9151,14 +9256,14 @@ Lilian/M Liliana/M Liliane/M Lilith/M -Liliuokalani +Liliuokalani/M Lilla/M -Lille +Lille/M Lilli/MS Lillian/M Lillie/M Lilliput/M -Lilliputian/SM +Lilliputian/MS Lilllie/M Lilly/M Lilongwe/M @@ -9167,8 +9272,8 @@ Lilyan/M Lima/M Limbaugh/M Limbo -Limburger -Limoges +Limburger/M +Limoges/M Limousin/M Limpopo/M Lin/M @@ -9176,16 +9281,16 @@ Lina/M Linc/M Lincoln/MS Lincolnshire/M -Lind +Lind/M Linda/M -Lindbergh +Lindbergh/M Lindi/M Lindie/M Lindon/M -Lindsay -Lindsey +Lindsay/M +Lindsey/M Lindsy/M -Lindy +Lindy/M Linea/M Linell/M Linet/M @@ -9199,17 +9304,17 @@ Linnell/M Linnet/M Linnie/M Linoel/M -Linotype +Linotype/M Linton/M Linus/M -Linux/S +Linux/MS Linwood/M Linzy/M Lionel/M Lionello/M -Lipizzaner -Lippi -Lippmann +Lipizzaner/M +Lippi/M +Lippmann/M Lipscomb/M Lipton/M Lira/M @@ -9231,7 +9336,7 @@ Lissy/M Lister/M Listerine/M Liston/M -Liszt +Liszt/M Lita/M Lithuania/M Lithuanian/MS @@ -9242,15 +9347,15 @@ Liv/M Liva/M LiveJournal/M Liverpool/M -Liverpudlian/MS +Liverpudlian/SM Livia/M -Livingston -Livingstone +Livingston/M +Livingstone/M Livonia/M Livvie/M Livvy/M Livvyy/M -Livy +Livy/M Liz/M Liza/M Lizabeth/M @@ -9259,36 +9364,36 @@ Lizette/M Lizzie/M Lizzy/M Ljubljana/M -Llewellyn -Lloyd +Llewellyn/M +Lloyd/M Llywellyn/M Ln Loafer/SM -Lobachevsky -Lochinvar +Lobachevsky/M +Lochinvar/M Lock/M Locke/M -Lockean +Lockean/M Lockheed/M Lockwood/M -Lodge +Lodge/M Lodovico/M Lodz/M Loella/M -Loewe -Loewi +Loewe/M +Loewi/M Loews/M Logan/M Logitech/M -Lohengrin +Lohengrin/M Loire/M Lois/M Loise/M Loki/M Lola/M Loleta/M -Lolita -Lollard +Lolita/M +Lollard/M Lollobrigida/M Lolly/M Lombard/M @@ -9300,7 +9405,7 @@ Lona/M London/MRZ Londoner/M Lonee/M -Long +Long/M Longfellow/M Longstreet/M Longueuil @@ -9325,11 +9430,11 @@ Loree/M Loreen/M Lorelei/M Lorelle/M -Loren/S +Loren/SM Lorena/M Lorene/M -Lorentz -Lorenz +Lorentz/M +Lorenz/M Lorenza/M Lorenzo/M Loretta/M @@ -9355,6 +9460,7 @@ Lorrie/M Lorrin/M Lorry/M Lory/M +Los Lot/M Lothaire/M Lothario/SM @@ -9367,7 +9473,7 @@ Lotty/M Lou/M Louella/M Louie/M -Louis +Louis/M Louisa/M Louise/M Louisette/M @@ -9375,15 +9481,15 @@ Louisiana/M Louisianan/MS Louisianian/MS Louisville/M -Lourdes +Lourdes/M Loutitia/M Louvre/M Love/M Lovecraft/M -Lovelace +Lovelace/M Lovell Lowe/M -Lowell +Lowell/M Lowenbrau/M Lowery/M Lowlands @@ -9392,23 +9498,24 @@ Loy/M Loyang/M Loyd/M Loydie/M -Loyola +Loyola/M Lr Lt Ltd Lu/M Luanda/M Luann/M -Lubavitcher -Lubbock -Lubumbashi +Lubavitcher/M +Lubbock/M +Lubumbashi/M Luca/SM Lucais/M +Lucas/M Luce/M Lucho/M Luci/MN Lucia/MS -Lucian +Lucian/M Luciana/M Luciano/M Lucie/M @@ -9428,11 +9535,11 @@ Lucite/SM Lucius/M Lucknow/M Lucky/M -Lucretia -Lucretius +Lucretia/M +Lucretius/M Lucy/M Luddite/MS -Ludhiana +Ludhiana/M Ludovico/M Ludovika/M Ludvig/M @@ -9440,7 +9547,7 @@ Ludwig/M Luella/M Luelle/M Lufthansa/M -Luftwaffe +Luftwaffe/M Luger/M Lugosi/M Luigi/M @@ -9451,12 +9558,12 @@ Lukas/M Luke/M Lula/M Lulita/M -Lully +Lully/M Lulu/M Lumiere/M Luna/M Lupe/M -Lupercalia +Lupercalia/M Lupus/M Lura/M Lurette/M @@ -9478,25 +9585,25 @@ Luxembourgian Luxemburg/M Luz/M Luzon/M -Lvov +Lvov/M Ly/MY LyX/M Lyallpur Lycos/M -Lycra -Lycurgus +Lycra/M +Lycurgus/M Lyda/M -Lydia +Lydia/M Lydian/SM Lydie/M Lydon/M -Lyell +Lyell/M Lyle/M -Lyly +Lyly/M Lyman/M Lyme/M Lyn/M -Lynch +Lynch/M Lynda/M Lynde/M Lyndel/M @@ -9510,7 +9617,7 @@ Lynea/M Lynelle/M Lynett/M Lynette/M -Lynn +Lynn/M Lynna/M Lynne/M Lynnea/M @@ -9521,8 +9628,9 @@ Lynnett/M Lynnette/M Lynsey/M Lyon/SM +Lyons/M Lyra/M -Lysenko +Lysenko/M Lysistrata/M Lysol/M Lyssa/M @@ -9539,7 +9647,7 @@ ME MEGO/S MFA/M MGM/M -MHz/M +MHz MI/M MIA MIDI/M @@ -9550,6 +9658,7 @@ MIT/M MM MN MO +MOOC MP/M MPEG/MS MRI/M @@ -9558,7 +9667,7 @@ MSG/M MST/M MSW MT/M -MTV +MTV/M MVP/M MW Maalox/M @@ -9567,31 +9676,31 @@ Mabel/M Mabelle/M Mable/M Mac -MacArthur +MacArthur/M MacBride/M -MacDonald +MacDonald/M MacLeish/M Macao/M Macau/M -Macaulay -Macbeth +Macaulay/M +Macbeth/M Maccabees Maccabeus/M -Mace +Mace/M Macedon/M Macedonia/M Macedonian/SM -Mach +Mach/M Machiavelli/M -Machiavellian +Machiavellian/M Macias/M Macintosh/M Mack/M Mackenzie/M Mackinac/M -Mackinaw -Macmillan -Macon +Mackinaw/M +Macmillan/M +Macon/M Macromedia/M Macumba/M Macy/M @@ -9632,15 +9741,15 @@ Mae/M Maegan/M Maeterlinck/M Mafia/MS -Mafioso +Mafioso/M Mag/M Magda/M Magdaia/M Magdalen -Magdalena +Magdalena/M Magdalene/M Magellan/M -Magellanic +Magellanic/M Maggee/M Maggi/M Maggie/M @@ -9648,11 +9757,11 @@ Maggy/M Maghreb/M Magi Maginot/M -Magnitogorsk +Magnitogorsk/M Magnum -Magog +Magog/M Magoo/M -Magritte +Magritte/M Magsaysay/M Magus Magyar/SM @@ -9663,10 +9772,10 @@ Maharashtra/M Mahavira/M Mahayana/M Mahayanist/M -Mahdi +Mahdi/M Mahfouz/M Mahican/SM -Mahler +Mahler/M Mahmoud/M Mahmud/M Mahomet/M @@ -9677,10 +9786,10 @@ Maidenform/M Maiga/M Maighdiln/M Maigret/M -Mailer -Maillol +Mailer/M +Maillol/M Maiman/M -Maimonides +Maimonides/M Maine/MZR Mainer/M Mair/M @@ -9693,19 +9802,19 @@ Maitreya/M Maj Maje/M Majesty -Major +Major/M Majorca/M -Majuro +Majuro/M Makarios/M -Maker +Maker/M Mal Mala/M Malabar/M Malabo/M -Malacca -Malachi -Malagasy -Malamud +Malacca/M +Malachi/M +Malagasy/M +Malamud/M Malanie/M Malaprop/M Malawi/M @@ -9717,24 +9826,24 @@ Malayan/MS Malaysia/M Malaysian/MS Malchy/M -Malcolm +Malcolm/M Maldive/MS Maldives/M Maldivian/MS Maldonado/M Male/M Malena/M -Mali +Mali/M Malia/M Malian/SM Malibu/M Malina/M Malinda/M Malinde/M -Malinowski +Malinowski/M Malissa/M Malissia/M -Mallarme +Mallarme/M Mallissa/M Mallomars/M Mallorie/M @@ -9743,7 +9852,7 @@ Malone/M Malorie/M Malory/M Malplaquet/M -Malraux +Malraux/M Malta/M Maltese/M Malthus/M @@ -9753,53 +9862,54 @@ Malvin/M Malvina/M Malynda/M Mame/M -Mameluke -Mamet +Mameluke/M +Mamet/M Mamie/M Mammon/SM Mamore/M Man/M Managua/M Manama/M -Manasseh +Manasseh/M Manaus Manchester/M Manchu/SM Manchuria/M -Manchurian +Manchurian/M Mancini/M Mancunian/MS Manda/M Mandalay/M Mandarin/M Mandel/M -Mandela -Mandelbrot +Mandela/M +Mandelbrot/M Mandi/M Mandie/M -Mandingo +Mandingo/M Mandrell/M Mandriva/M Mandy/M -Manet +Manet/M Manfred/M Manhattan/SM -Mani -Manichean +Mani/M +Manichean/M Manila/SM Manitoba/M Manitoulin/M Manley/M -Mann/G +Mann/GM Mannheim/M Mannie/M +Manning/M Manny/M Mano/M Manolo/M Manon/M -Mansfield +Mansfield/M Manson/M -Mantegna +Mantegna/M Mantle/M Manuel/M Manuela/M @@ -9815,13 +9925,13 @@ Maputo/M Mar/SMN Mara/M Marabel/M -Maracaibo -Marat +Maracaibo/M +Marat/M Maratha/M Marathi/M Marathon/M -Marc -Marceau +Marc/M +Marceau/M Marcel/M Marcela/M Marcelia/M @@ -9838,14 +9948,14 @@ Marchall/M Marchelle/M Marci/M Marcia/M -Marciano +Marciano/M Marcie/M Marcile/M Marcille/M Marco/MS -Marconi +Marconi/M Marcus/M -Marcuse +Marcuse/M Marcy/M Marduk/M Mareah/M @@ -9855,14 +9965,14 @@ Maressa/M Marga/M Margalit/M Margalo/M -Margaret +Margaret/M Margareta/M Margarete/M Margaretha/M Margarethe/M Margaretta/M Margarette/M -Margarita +Margarita/M Margarito/M Margaux Marge/M @@ -9882,11 +9992,12 @@ Margy/M Mari/SM Maria/M Mariam/M -Marian +Marian/M Mariana/SM +Marianas/M Mariann/M Marianna/M -Marianne +Marianne/M Mariano/M Maribel/M Maribelle/M @@ -9911,23 +10022,24 @@ Marilee/M Marilin/M Marillin/M Marilyn/M -Marin +Marin/M Marina/M Marine/SM Marinna/M Mario/M Marion/M Mariquilla/M +Maris/M Marisa/M Mariska/M Marisol/M Marissa/M Marita/M -Maritain +Maritain/M Maritsa Maritza/M Mariupol -Marius +Marius/M Mariya/M Marj/M Marja/M @@ -9940,14 +10052,15 @@ Marjy/M Mark/SM Markab/M Marketa/M -Markham -Markos -Markov +Markham/M +Markos/M +Markov/M +Marks/M Markus/M Marla/M Marlane/M Marlboro/M -Marlborough +Marlborough/M Marleah/M Marlee/M Marleen/M @@ -9955,27 +10068,27 @@ Marlena/M Marlene/M Marley/M Marlie/M -Marlin +Marlin/M Marline/M Marlo/M Marlon/M Marlow/M -Marlowe +Marlowe/M Marlyn/M Marmaduke/M Marmara/M Marna/M -Marne +Marne/M Marney/M Marni/M Marnia/M Marnie/M -Maronite +Maronite/M Marple/M Marquesas/M -Marquette +Marquette/M Marquez/M -Marquis +Marquis/M Marquita/M Marrakesh/M Marrilee/M @@ -9986,6 +10099,7 @@ Mars/MS Marsala/M Marseillaise/MS Marseille/S +Marseilles/M Marsh/M Marsha/M Marshal/M @@ -9994,19 +10108,19 @@ Marsiella/M Mart/MN Marta/M Martainn/M -Martel +Martel/M Martelle/M Marten/M Martguerita/M -Martha +Martha/M Marthe/M Marthena/M Marti/M -Martial +Martial/M Martian/SM Martica/M Martie/M -Martin +Martin/M Martina/M Martinez/M Martinique/M @@ -10020,7 +10134,7 @@ Marva/M Marve/M Marvell/M Marven/M -Marvin +Marvin/M Marwin/M Marx/M Marxian @@ -10038,6 +10152,7 @@ Maryjane/M Maryjo/M Maryl/M Maryland/MR +Marylander/M Marylee/M Marylin/M Marylinda/M @@ -10048,49 +10163,53 @@ Marys Marysa/M Masada/M Masai/M -Masaryk -Mascagni -Masefield +Masaryk/M +Mascagni/M +Masefield/M Maserati/M Maseru/M Masha/M Mashhad/M Mason/MS -Masonic +Masonic/M Masonite/M Mass/MS -Massachusetts -Massasoit -Massenet -Massey +Massachusetts/M +Massasoit/M +Massenet/M +Massey/M Massimiliano/M Massimo/M Master/S MasterCard/M +Masters/M Mata/M Matelda/M Mateo/M MathML/M Mathe/MR +Mather/M Mathew/SM +Mathews/M Mathewson/M Mathian/M -Mathias +Mathias/M Mathilda/M Mathilde/M -Mathis +Mathis/M Matias/M -Matilda +Matilda/M Matilde/M -Matisse -Matt +Matisse/M +Matt/M Mattel/M Matteo/M Matterhorn/M Matthaeus/M Mattheus/M Matthew/SM -Matthias +Matthews/M +Matthias/M Matthieu/M Matthiew/M Matthus/M @@ -10101,65 +10220,67 @@ Matty/M Maud/M Maude/M Maudie/M -Maugham +Maugham/M Maui/M -Maupassant +Maupassant/M Maura/M Maure/M Maureen/M Maureene/M Maurene/M -Mauriac -Maurice +Mauriac/M +Maurice/M Mauricio/M Maurie/M Maurine/M Maurise/M Maurita/M Mauritania/M -Mauritanian/MS +Mauritanian/SM Mauritian/SM Mauritius/M Maurits/M Maurizia/M Maurizio/M Mauro/M -Maurois +Maurois/M Maury Mauryan/M -Mauser +Mauser/M Mavis/M Mavra/M Max/M Maxi/M Maxie/M Maxim -Maximilian +Maximilian/M Maximilianus/M Maximilien/M Maximo/M Maxine/M -Maxwell +Maxwell/M Maxy/M May/SMR Maya/SM Mayan/MS Maybelle/M Maye/M -Mayfair +Mayer/M +Mayfair/M Mayflower/M Maynard/M Mayne/M Maynord/M -Mayo +Mayo/M Mayor/M Maypole Mayra/M +Mays/M Maytag/M Mazama/M -Mazarin +Mazarin/M Mazatlan/M -Mazda +Mazda/M Mazola/M Mazzini/M Mb/M @@ -10172,16 +10293,16 @@ McBride/M McCain/M McCall/M McCann/M -McCarthy +McCarthy/M McCarthyism/M McCartney/M McCarty/M McClain/M -McClellan +McClellan/M McClure/M McConnell/M -McCormick -McCoy +McCormick/M +McCoy/M McCray/M McCullough/M McDaniel/M @@ -10218,24 +10339,24 @@ McQueen/M McVeigh/M Md/M Me -Mead -Meade -Meadows +Mead/M +Meade/M +Meadows/M Meagan/M Meaghan/M Meany/M Meara/M Mecca/MS Mechelle/M -Medan +Medan/M Medea/M -Medellin -Media +Medellin/M +Media/M Medicaid/SM Medicare/SM -Medici -Medina -Mediterranean/SM +Medici/M +Medina/M +Mediterranean/MS Medline/M Medusa/M Meg/MN @@ -10251,22 +10372,22 @@ Mei/MR Meier/M Meighen/M Meiji/M -Meir +Meir/M Mejia/M Mekong/M Mel/MY Mela/M Melamie/M Melanesia/M -Melanesian +Melanesian/M Melania/M Melanie/M Melantha/M Melany/M -Melba +Melba/M Melbourne/M -Melchior -Melchizedek +Melchior/M +Melchizedek/M Melendez/M Melesa/M Melessa/M @@ -10289,7 +10410,7 @@ Mellicent/M Mellie/M Mellisa/M Mellisent/M -Mellon +Mellon/M Melloney/M Melly/M Melodee/M @@ -10304,24 +10425,24 @@ Melva/M Melville/M Melvin/M Melvyn/M -Memling +Memling/M Memphis/M -Menander +Menander/M Menard/M -Mencius -Mencken +Mencius/M +Mencken/M Mendel/M Mendeleev/M -Mendelian -Mendelssohn +Mendelian/M +Mendelssohn/M Mendez/M Mendie/M Mendocino/M -Mendoza +Mendoza/M Mendy/M Menelaus/M Menelik/M -Menes +Menes/M Mengzi Menkalinan/M Menkar/M @@ -10329,26 +10450,26 @@ Menkent/M Mennen/M Mennonite/MS Menominee/M -Menotti -Mensa +Menotti/M +Mensa/M Mentholatum/M Menuhin/M -Menzies -Mephistopheles +Menzies/M +Mephistopheles/M Merak/M Mercado/M -Mercator -Mercedes +Mercator/M +Mercedes/M Mercer/M Merci/M -Mercia +Mercia/M Mercie/M Merck/M Mercurochrome/M Mercury/SM Mercy/M Meredeth/M -Meredith +Meredith/M Meredithe/M Merell/M Meridel/M @@ -10357,7 +10478,7 @@ Meriel/M Merilee/M Merill/M Merilyn/M -Merino +Merino/M Meris Merissa/M Merl/M @@ -10366,10 +10487,10 @@ Merle/M Merlin/M Merlina/M Merline/M -Merlot +Merlot/M Merna/M Merola/M -Merovingian +Merovingian/M Merralee/M Merrel/M Merriam/M @@ -10387,22 +10508,22 @@ Merritt/M Merry/M Mersey Merthiolate/M -Merton +Merton/M Merv/M Mervin/M Merwin/M Merwyn/M Meryl/M -Mesa +Mesa/M Mesabi/M Meshed/M Mesmer/M -Mesolithic +Mesolithic/M Mesopotamia/M Mesopotamian Mesozoic/M Messerschmidt/M -Messiaen +Messiaen/M Messiah/M Messiahs Messianic @@ -10412,28 +10533,29 @@ Metallica/M Metamucil/M Methodism/SM Methodist/SM -Methuselah -Metternich +Methuselah/M +Metternich/M Meuse/M Mex -Mexicali +Mexicali/M Mexican/MS Mexico/M Meyer/MS -Meyerbeer +Meyerbeer/M +Meyers/M Mfume/M Mg/M Mgr -MiG +MiG/M Mia/M Miami/MS Miaplacidus/M Mic Micaela/M -Micah -Micawber -Mich -Michael +Micah/M +Micawber/M +Mich/M +Michael/M Michaela/M Michaelina/M Michaeline/M @@ -10453,9 +10575,9 @@ Micheline/M Michell/M Michelle/M Michelob/M -Michelson +Michelson/M Michigan/M -Michigander/SM +Michigander/MS Michiganite Mick/M Mickey/M @@ -10464,17 +10586,17 @@ Mickie/M Micky/M Micmac/SM Micronesia/M -Micronesian +Micronesian/M Microsoft/M Midas/M -Middleton +Middleton/M Mideast Mideastern Midge/M -Midland/S +Midland/MS Midway/M Midwest/M -Midwestern/R +Midwestern/MR Mignon/M Mignonne/M Miguel/M @@ -10497,30 +10619,33 @@ Mildred/M Mildrid/M Mile/SM Milena/M +Miles/M Milford/M Milicent/M Milissent/M Milka/M Milken/M -Mill/SR +Mill/SMR Millard/M -Millay -Millet +Millay/M +Miller/M +Millet/M Milli/M Millicent/M Millie/M -Millikan +Millikan/M Millisent/M +Mills/M Milly/M -Milne +Milne/M Milo/M Milosevic/M Milquetoast/M Milt/M -Miltiades +Miltiades/M Miltie/M -Milton -Miltonic +Milton/M +Miltonic/M Miltown/M Milty/M Milwaukee/M @@ -10531,13 +10656,14 @@ Min/MR Mina/M Minamoto/M Minda/M -Mindanao +Mindanao/M Mindoro/M Mindy/M Miner/M Minerva/M Minetta/M Minette/M +Ming/M Mingus/M Minn Minna @@ -10561,19 +10687,19 @@ Minsk/M Minsky/M Minta/M Mintaka/M -Minuit +Minuit/M Minuteman/M Miocene/M Miquela/M Mir/M Mira/M -Mirabeau +Mirabeau/M Mirabel/M Mirabella/M Mirabelle/M Mirach/M Miran/M -Miranda +Miranda/M Mireielle/M Mireille/M Mirella/M @@ -10582,20 +10708,20 @@ Mirfak/M Miriam/M Mirilla/M Mirna/M -Miro +Miro/M Mirzam/M Mischa/M Misha/M -Miskito +Miskito/M Miss Missie/M -Mississauga +Mississauga/M Mississippi/M Mississippian/SM Missouri/M Missourian/MS Missy/M -Mistassini +Mistassini/M Mister Misti Mistress @@ -10603,7 +10729,7 @@ Misty/M Mitch/M Mitchael/M Mitchel/M -Mitchell +Mitchell/M Mitford/M Mithra/M Mithridates/M @@ -10611,8 +10737,8 @@ Mitsubishi/M Mitterrand/M Mitty/M Mitzi/M -Mixtec -Mizar +Mixtec/M +Mizar/M Mk Mlle Mme/S @@ -10626,19 +10752,19 @@ Mobutu/M Modesta/M Modestia/M Modestine/M -Modesto +Modesto/M Modesty/M -Modigliani +Modigliani/M Moe/M Moet/M -Mogadishu +Mogadishu/M Mogul/MS Mohacs/M Mohamed/M Mohammad/M Mohammed/M Mohammedan/SM -Mohammedanism/MS +Mohammedanism/SM Mohandas/M Mohandis/M Mohave/SM @@ -10648,8 +10774,9 @@ Mohican/MS Moho/M Mohorovicic/M Moina/M -Moira +Moira/M Moise/MS +Moises/M Moiseyev/M Moishe/M Mojave/SM @@ -10658,7 +10785,7 @@ Moldavian Moldova/M Moldovan Moliere/M -Molina +Molina/M Moll/M Mollee/M Molli/M @@ -10668,7 +10795,7 @@ Molnar/M Moloch/M Molokai/M Molotov/M -Moluccas +Moluccas/M Mombasa/M Mommy/M Mon/SM @@ -10678,10 +10805,10 @@ Monaco/M Monah/M Mondale/M Monday/SM -Mondrian +Mondrian/M Monegasque/SM Monera/M -Monet +Monet/M Mongol/SM Mongolia/M Mongolian/SM @@ -10691,55 +10818,55 @@ Monica/M Monika/M Monique/M Monk/M -Monmouth -Monongahela +Monmouth/M +Monongahela/M Monro/M Monroe/M Monrovia/M Monsanto/M Monsignor/SM -Mont -Montague -Montaigne +Mont/M +Montague/M +Montaigne/M Montana/M Montanan/SM -Montcalm +Montcalm/M Monte/M -Montenegrin +Montenegrin/M Montenegro/M -Monterrey -Montesquieu -Montessori -Monteverdi +Monterrey/M +Montesquieu/M +Montessori/M +Monteverdi/M Montevideo/M Montezuma/M -Montgolfier +Montgolfier/M Montgomery/M Monti/M Monticello Montoya/M Montpelier/M -Montrachet +Montrachet/M Montreal/M Montserrat/M Monty/M -Moody -Moog +Moody/M +Moog/M Moon/M Mooney/M Moor/SM -Moore +Moore/M Moorish/M Mora/M Morales/M Moran/M -Moravia -Moravian +Moravia/M +Moravian/M Mord/M Mordecai -Mordred +Mordred/M Mordy/M -More +More/M Moreen/M Morena/M Moreno/M @@ -10759,47 +10886,47 @@ Morissa/M Morita/M Moritz/M Morlee/M -Morley +Morley/M Morly/M Mormon/SM Mormonism/SM Morna/M -Moro +Moro/M Moroccan/SM Morocco/M -Moroni +Moroni/M Morpheus/M Morphy/M Morrie/M -Morris -Morrison +Morris/M +Morrison/M Morrow/M Morry/M Morse/M Mort/MN Morten/M Mortie/M -Mortimer +Mortimer/M Morton/M Morty/M Mosaic/M Moscow/M Mose/SM -Moseley +Moseley/M Moselle/M Moses/M Moshe/M Mosley/M Moss/M -Mosul +Mosul/M Motorola/M Motown/M Motrin/M -Mott -Mount -Mountbatten +Mott/M +Mount/M +Mountbatten/M Mountie/MS -Moussorgsky +Moussorgsky/M Mouthe/M Mouton/M Mowgli/M @@ -10825,9 +10952,9 @@ Mufi/M Mufinella/M Mugabe/M Muhammad/M -Muhammadan/SM +Muhammadan/MS Muhammadanism/SM -Muir +Muir/M Muire/M Mujib/M Mulder/M @@ -10835,38 +10962,38 @@ Mullen/M Muller/M Mulligan/M Mullikan/M -Mullins +Mullins/M Mulroney/M -Multan +Multan/M Multics/S Mumbai/M -Mumford -Munch +Mumford/M +Munch/M Munchhausen/M Munich/M Munmro/M Munoz/M -Munro +Munro/M Munroe/M -Munster +Munster/M Muppet/M Murasaki/M -Murat +Murat/M Murchison/M Murcia -Murdoch +Murdoch/M Murdock/M Mureil/M Murial/M Muriel/M Murielle/M -Murillo +Murillo/M Murine/M -Murmansk -Murphy +Murmansk/M +Murphy/M Murray/M Murrow/M -Murrumbidgee +Murrumbidgee/M Murry/M Murvyn/M Muscat/M @@ -10878,9 +11005,9 @@ Musial/M Muskogee/M Muslim/MS Mussolini/M -Mussorgsky +Mussorgsky/M Mutsuhito/M -Muzak +Muzak/M My/M MySQL/M MySpace/M @@ -10889,9 +11016,10 @@ Myanmar/M Myca/M Mycah/M Mycenae/M -Mycenaean +Mycenaean/M Mychal/M Myer/SM +Myers/M Mylar/MS Myles/M Mylo/M @@ -10904,7 +11032,7 @@ Myrilla/M Myrle/M Myrlene/M Myrna/M -Myron +Myron/M Myrta/M Myrtia/M Myrtice/M @@ -10912,32 +11040,32 @@ Myrtie/M Myrtle/M Myrvyn/M Myrwyn/M -Mysore +Mysore/M Myst/M N'Djamena N/MD -NAACP -NAFTA +NAACP/M +NAFTA/M NASA/M NASCAR/M NASDAQ/M NATO/M NB -NBA -NBC +NBA/M +NBC/M NBS NC -NCAA +NCAA/M NCO ND NE/M NEH NF NFC -NFL +NFL/M NGO/MS NH -NHL +NHL/M NIH NIMBY NJ @@ -10946,11 +11074,12 @@ NM NORAD/M NOW NP -NPR +NPR/M NR NRA NRC NS +NSA/M NSC NSF NSPR/M @@ -10965,11 +11094,11 @@ NYSE NZ Na/M Nabisco/M -Nabokov +Nabokov/M Nada/M Nadean/M Nadeen/M -Nader +Nader/M Nadia/M Nadine/M Nadiya/M @@ -10977,11 +11106,11 @@ Nadu/M Nady/M Nadya/M Nagasaki/M -Nagoya -Nagpur -Nagy +Nagoya/M +Nagpur/M +Nagy/M Nahuatl/MS -Nahum +Nahum/M Naipaul/M Nair/M Nairobi/M @@ -10993,15 +11122,15 @@ Namibia/M Namibian/MS Nan/M Nana/M -Nanak +Nanak/M Nananne/M Nance/M Nancee/M Nancey/M -Nanchang +Nanchang/M Nanci/M Nancie/M -Nancy +Nancy/M Nanete/M Nanette/M Nani/M @@ -11015,7 +11144,7 @@ Nannie/M Nanny/M Nanon/M Nanook/M -Nansen +Nansen/M Nantes/M Nantucket/M Naoma/M @@ -11026,7 +11155,7 @@ Naphtali/M Napier/M Naples/M Napoleon/MS -Napoleonic +Napoleonic/M Nappie/M Nappy/M Napster/M @@ -11037,10 +11166,10 @@ Nariko/M Narmada/M Narnia/M Narraganset -Narragansett +Narragansett/M Naruto/M -Nash -Nashua +Nash/M +Nashua/M Nashville/M Nassau/M Nasser/M @@ -11058,34 +11187,36 @@ Natalya/M Nataniel/M Natasha/M Natassia/M -Natchez +Natchez/M Nate/MN Nathalia/M Nathalie/M -Nathan/S +Nathan/SM Nathanael Nathanial/M Nathaniel/M Nathanil/M +Nathans/M +Nation/M Nationwide/M Natividad/M Nativity/M Natka/M Natty/M Nature -Naugahyde +Naugahyde/M Nauru/M -Nautilus +Nautilus/M Navaho/M Navajo/SM Navajoes -Navarre +Navarre/M Navarro/M Navratilova/M Navy -Nazarene -Nazareth -Nazca +Nazarene/M +Nazareth/M +Nazca/M Nazi/SM Naziism/SM Nazism/MS @@ -11102,13 +11233,13 @@ Neall/M Nealon/M Nealson/M Nealy/M -Neanderthal/MS -Neapolitan +Neanderthal/SM +Neapolitan/M Neb Nebr Nebraska/M Nebraskan/MS -Nebuchadnezzar +Nebuchadnezzar/M Necko/M Ned/M Neda/M @@ -11119,14 +11250,15 @@ Nedi/M Neel/M Neely/M Nefen/M -Nefertiti +Nefertiti/M Negev/M Negress/MS Negritude Negro/MS Negroes Negroid/SM -Nehemiah +Negros/M +Nehemiah/M Nehru/M Neil/SM Neila/M @@ -11144,20 +11276,20 @@ Nellie/M Nelly/M Nels/N Nelsen/M -Nelson +Nelson/M Nembutal/M Nemesis/M -Neogene +Neogene/M Neolithic Nepal/M Nepalese/M Nepali/MS Neptune/M Nereid/M -Nerf +Nerf/M Nerissa/M Nerita/M -Nero +Nero/M Neron/M Nert/M Nerta/M @@ -11165,10 +11297,10 @@ Nerte/M Nerti/M Nertie/M Nerty/M -Neruda +Neruda/M Nescafe/M Nessa/M -Nesselrode +Nesselrode/M Nessi/M Nessie/M Nessy/M @@ -11176,10 +11308,11 @@ Nesta/M Nester/M Nestle/M Nestor/M -Nestorius +Nestorius/M NetBSD/M -Netherlander/MS -Netherlands +Netflix/M +Netherlander/SM +Netherlands/M Netscape/M Netta/M Netti/M @@ -11187,8 +11320,8 @@ Nettie/M Nettle/M Netty/M Netzahualcoyotl/M -Nev -Neva +Nev/M +Neva/M Nevada/M Nevadan/SM Nevadian @@ -11202,53 +11335,56 @@ Nevsky/M Newark/M Newcastle/M Newfoundland/MRS -Newman +Newman/M Newport/M Newsvine/M Newsweek/M Newton/M Newtonian/M NexTag/M -Nexis +Nexis/M Nextel/M Neysa/M Ngaliema/M Nguyen/M -Ni +Ni/M Niagara/M Nial/M Niall/M Niamey/M -Nibelung -Nicaea +Nibelung/M +Nicaea/M Nicaragua/M Nicaraguan/SM Niccolo/M Nice/M -Nicene +Nicene/M Nichiren/M Nichol/SM -Nicholas +Nicholas/M Nichole/M Nicholle/M -Nicholson +Nichols/M +Nicholson/M Nick/M Nickelodeon/M Nickey/M Nicki/M Nickie/M -Nicklaus +Nicklaus/M Nicko/M Nickola/SM Nickolai/M +Nickolas/M Nickolaus/M Nicky/M Nico/M Nicobar/M -Nicodemus +Nicodemus/M Nicol/M Nicola/SM Nicolai/S +Nicolas/M Nicole/M Nicolea/M Nicolette/M @@ -11260,7 +11396,8 @@ Nicosia/M Niebuhr/M Niel/SM Niels/N -Nietzsche +Nielsen/M +Nietzsche/M Nieves/M Nigel/M Niger/M @@ -11268,12 +11405,12 @@ Nigeria/M Nigerian/MS Nigerien/M Nightingale/M -Nijinsky +Nijinsky/M Nikaniki/M Nike/M Niki/M Nikita/M -Nikkei +Nikkei/M Nikki/M Nikkie/M Niko/SM @@ -11289,8 +11426,8 @@ Nikon/M Nil/SM Nile/SM Nilson/M -Nimitz -Nimrod +Nimitz/M +Nimrod/M Nina/M Ninetta/M Ninette/M @@ -11298,14 +11435,14 @@ Nineveh/M Ninnetta/M Ninnette/M Ninon/M -Nintendo -Niobe +Nintendo/M +Niobe/M Nippon/M Nipponese/M Nirenberg/M -Nirvana +Nirvana/M Nisan/M -Nisei +Nisei/M Nissa/M Nissan/M Nisse/M @@ -11317,7 +11454,7 @@ Nivea/M Niven/M Nixie Nixon/M -Nkrumah +Nkrumah/M No/M NoDoz/M Noach/M @@ -11326,7 +11463,7 @@ Noak/M Noam/M Noami/M Nobe/M -Nobel +Nobel/M Nobelist/MS Nobie/M Noble/M @@ -11350,7 +11487,7 @@ Nolie/M Noll/M Nollie/M Nolly/M -Nome +Nome/M Nomi/M Nona/M Nonah/M @@ -11373,22 +11510,23 @@ Norfolk/M Noriega/M Norina/M Norine/M -Norma +Norma/M Norman/MS Normand/M Normandy/M Normie/M Normy/M -Norplant +Norplant/M Norri/MS Norrie/M +Norris/M Norry/M Norse/M Norseman/M -Norsemen +Norsemen/M Nortel/M North/M -Northampton +Northampton/M Northeast/MS Northern/MR Northerner/M @@ -11400,11 +11538,11 @@ Norton/M Norw Norway/M Norwegian/SM -Norwich +Norwich/M Nosferatu/M -Nostradamus +Nostradamus/M Notre -Nottingham +Nottingham/M Nouakchott/M Noumea/M Nov/M @@ -11412,25 +11550,25 @@ Nova Novartis/M Novelia/M November/MS -Novgorod +Novgorod/M Novocain/MS Novocaine -Novokuznetsk +Novokuznetsk/M Novosibirsk/M Nowell/M Noxzema/M Noyce/M Noyes/M Np/M -Nubia -Nubian -Nukualofa +Nubia/M +Nubian/M +Nukualofa/M Numbers/M Nunavut/M Nunez/M Nunki/M -Nuremberg -Nureyev +Nuremberg/M +Nureyev/M NutraSweet/M NyQuil/M Nyasa/M @@ -11438,18 +11576,18 @@ Nydia/M Nye/M Nyerere/M Nyssa/M -O'Brien -O'Casey -O'Connell -O'Connor -O'Donnell -O'Hara -O'Higgins -O'Keeffe -O'Neil -O'Neill -O'Rourke -O'Toole +O'Brien/M +O'Casey/M +O'Connell/M +O'Connor/M +O'Donnell/M +O'Hara/M +O'Higgins/M +O'Keeffe/M +O'Neil/M +O'Neill/M +O'Rourke/M +O'Toole/M O/SM OAS/M OB @@ -11460,7 +11598,7 @@ OED OH OHSA/M OJ -OK/SM +OK/SMDG OMB/M ON OPEC/M @@ -11474,29 +11612,30 @@ OTC OTOH Oahu/M Oakland/M -Oakley -Oates +Oakley/M +Oates/M Oaxaca/M Ob/MD -Obadiah +Obadiah/M Obadias/M Obama/M +Obamacare Obed/M Obediah/M Oberlin/M -Oberon +Oberon/M Obidiah/M Obie Oby/M -Occam -Occident -Occidental/SM +Occam/M +Occident/M +Occidental/MS Oceania/M Oceanside Oceanus/M Ochoa/M Oct/M -Octavia +Octavia/M Octavian/M Octavio/M Octavius/M @@ -11510,7 +11649,7 @@ Odella/M Odelle/M Oder/M Odessa/M -Odets +Odets/M Odetta/M Odette/M Odey/M @@ -11524,41 +11663,41 @@ Odom/M Ody/M Odysseus/M Odyssey/M -Oedipal +Oedipal/M Oedipus/M Oersted/M Ofelia/M Ofella/M -Offenbach +Offenbach/M OfficeMax/M Ofilia/M -Ogbomosho +Ogbomosho/M Ogdan/M Ogden/M Ogdon/M Ogilvy/M -Oglethorpe +Oglethorpe/M Ohio/M Ohioan/SM Oise/M Ojibwa/SM Ojibway/MS Okayama -Okeechobee -Okefenokee -Okhotsk +Okeechobee/M +Okefenokee/M +Okhotsk/M Okinawa/M Okinawan Okla Oklahoma/M -Oklahoman -Oktoberfest +Oklahoman/M +Oktoberfest/M Ola/M Olaf/M Olag/M Olajuwon/M Olav/M -Oldenburg +Oldenburg/M Oldfield/M Oldsmobile/M Olduvai/M @@ -11573,6 +11712,7 @@ Oligocene/M Olimpia/M Olin/M Olive/MR +Oliver/M Olivero/M Olivette/M Olivetti/M @@ -11582,7 +11722,7 @@ Oliviero/M Oliy/M Ollie/M Olly/M -Olmec +Olmec/M Olmsted/M Olsen/M Olson/M @@ -11593,22 +11733,23 @@ Olympe/M Olympia/SM Olympiad/MS Olympian/MS -Olympic/S +Olympic/SM +Olympics/M Olympie/M Olympus/M Omaha/MS Oman/M Omani/MS Omar/M -Omayyad +Omayyad/M Omdurman/M Omero/M Omnipotent Omsk/M -Onassis +Onassis/M Ondrea/M Oneal/M -Onega +Onega/M Onegin/M Oneida/MS Onfre/M @@ -11629,9 +11770,10 @@ Opalina/M Opaline/M Opel/M OpenBSD/M +OpenOffice/M Ophelia/M Ophelie/M -Ophiuchus +Ophiuchus/M Oppenheimer/M Oprah/M Ora/M @@ -11642,7 +11784,7 @@ Oralie/M Oralla/M Oralle/M Oran/M -Orange +Orange/M Oranjestad/M Orazio/M Orbadiah/M @@ -11659,10 +11801,10 @@ Orelie/M Orella/M Orelle/M Oren/M -Oreo -Orestes +Oreo/M +Orestes/M Oriana/M -Orient +Orient/M Oriental/MS Orin/M Orinoco/M @@ -11677,7 +11819,7 @@ Orleans/M Orlon/MS Orly/M Orpheus/M -Orphic +Orphic/M Orr/MN Orran/M Orren/M @@ -11693,20 +11835,21 @@ Orton/M Orv/M Orval/M Orville/M -Orwell -Orwellian +Orwell/M +Orwellian/M Oryza/M +Os/M Osage/MS Osaka/M Osbert/M Osborn/M -Osborne +Osborne/M Osbourn/M Osbourne/M Oscar/MS -Osceola +Osceola/M Osgood/M -Oshawa +Oshawa/M Oshkosh/M Osiris/M Oslo/M @@ -11715,7 +11858,7 @@ Osmond/M Osmund/M Ossie/M Ostrogoth/M -Ostwald +Ostwald/M Osvaldo/M Oswald Oswell/M @@ -11730,19 +11873,20 @@ Otho/M Otis/M Ottawa/SM Ottilie/M -Otto -Ottoman -Ouagadougou +Otto/M +Ottoman/M +Ouagadougou/M Ouija/MS -Ovid -Owen/S +Ovid/M +Owen/SM +Owens/M Oxford/SM Oxley/M -Oxnard +Oxnard/M Oxonian/M -Oxus +Oxus/M Oxycontin/M -Oz +Oz/M Ozark/MS Ozarks/M Ozymandias/M @@ -11757,6 +11901,7 @@ PBS/M PBX PC/SM PCB +PCMCIA PCP/M PD PDA/MS @@ -11767,9 +11912,10 @@ PE PET/M PFC PG +PGP PIN PJ's -PLO +PLO/M PM/SMDG PMS/M PO @@ -11783,7 +11929,7 @@ PRO PS/M PST/M PT -PTA +PTA/M PTO PVC/M PW @@ -11804,41 +11950,41 @@ Pacorro/M Padang Paddie/M Paddy/M -Paderewski +Paderewski/M Padget/M Padgett/M Padilla/M Padraic/M Padraig/M Padriac/M -Paganini -Page +Paganini/M +Page/M Paglia/M -Pahlavi +Pahlavi/M Paige/M Pail/M -Paine +Paine/M Paiute/SM Pakistan/M Pakistani/SM Palau -Palembang +Palembang/M Paleocene/M -Paleogene -Paleolithic +Paleogene/M +Paleolithic/M Paleozoic/M Palermo/M Palestine/M Palestinian/SM -Palestrina -Paley +Palestrina/M +Paley/M Palikir/M Palin/MS Palisades/M Pall/M -Palladio +Palladio/M Palm/MR -Palmerston +Palmerston/M Palmolive/M Palmyra/M Paloma/M @@ -11847,11 +11993,11 @@ Pam/M Pamela/M Pamelina/M Pamella/M -Pamirs +Pamirs/M Pammi/M Pammie/M Pammy/M -Pampers +Pampers/M Pan/M Panama/SM Panamanian/MS @@ -11860,13 +12006,13 @@ Panchito/M Pancho/M Pandora/M Pangaea/M -Pankhurst +Pankhurst/M Panmunjom/M Pansie/M Pansy/M -Pantagruel +Pantagruel/M Pantaloon/M -Pantheon +Pantheon/M Panza/M Paola/M Paolina/M @@ -11875,34 +12021,37 @@ Papagena/M Papageno/M Papua/M Paquito/M -Paracelsus -Paraclete +Paracelsus/M +Paraclete/M Paradise Paraguay/M Paraguayan/MS +Paralympic/S Paramaribo/M Paramount/M Parana/M Parcheesi/M -Pareto +Pareto/M Paris/M Parisian/MS -Park/SR +Park/SMR Parke/M +Parker/M Parkinson/M -Parkman -Parliament +Parkman/M +Parks/M +Parliament/M Parmesan/MS Parnassus/MS -Parnell -Parr -Parrish +Parnell/M +Parr/M +Parrish/M Parrnell/M Parry Parsee/SM Parsi/MS Parsifal/M -Parsons +Parsons/M Parthenon/M Parthia/M Pasadena/M @@ -11911,18 +12060,18 @@ Pascale/M Pasquale/M Passion/SM Passover/MS -Pasternak +Pasternak/M Pasteur/M -Pat/N +Pat/NM Patagonia/M -Patagonian +Patagonian/M Pate/M Patel/M Paten/M -Paterson +Paterson/M Patience/M Patin/M -Patna +Patna/M Paton Patric/M Patrica/M @@ -11936,42 +12085,44 @@ Patrizius/M Patsy/M Patten/M Patterson/M -Patti +Patti/M Pattie/M Pattin/M -Patton +Patton/M Patty/M Paul/GM Paula/M Paule/M Pauletta/M Paulette/M -Pauli +Pauli/M Paulie/M Paulina/M -Pauline +Pauline/M +Pauling/M Paulita/M Paulo/M Pauly/M -Pavarotti +Pavarotti/M Pavel/M Pavia/M Pavla/M Pavlov/M -Pavlova -Pavlovian +Pavlova/M +Pavlovian/M Pawnee/SM Paxon/M Paxton PayPal/M Payne/M +Paypal/M Payton/M Pb/M Pd/M Peabody/M Peace/M Peadar/M -Peale +Peale/M Pearce/M Pearl/M Pearla/M @@ -11979,9 +12130,9 @@ Pearle/M Pearlie/M Pearline/M Pearson/M -Peary +Peary/M Pebrook/M -Pechora +Pechora/M Peck/M Peckinpah/M Pecos/M @@ -11994,7 +12145,7 @@ Pegeen/M Peggi/M Peggie/M Peggy/M -Pei +Pei/M Peiping/M Peirce/M Pekinese/MS @@ -12004,18 +12155,19 @@ Pele/M Pelee/M Peloponnese/M Pembroke/M +Pen/M Pena/M Penderecki/M Penelopa/M Penelope/M -Penn +Penn/M Penna Penney/M Penni/M Pennie/M Pennington/M Pennsylvania/M -Pennsylvanian/SM +Pennsylvanian/MS Penny/M Pennzoil/M Penrod/M @@ -12027,7 +12179,7 @@ Pentecost/SM Pentecostal/MS Pentecostalism Pentium/SM -Peoria +Peoria/M Pepe/M Pepi/M Pepillo/M @@ -12035,19 +12187,19 @@ Pepin/M Pepita/M Pepito/M Pepsi/M -Pepys -Pequot +Pepys/M +Pequot/M Perceval -Percheron -Percival -Percy +Percheron/M +Percival/M +Percy/M Perelman/M Perez/M Peri/M Peria/M Perice/M -Periclean -Pericles +Periclean/M +Pericles/M Perkin/MS Perl/SM Perla/M @@ -12057,24 +12209,26 @@ Permalloy/M Permian/M Pernell/M Pernod/M -Peron +Peron/M Perot/M Perren/M Perri/M +Perrier/M Perrine/M -Perry/R -Perseid +Perry/RM +Perseid/M Persephone/M Persepolis/M Perseus/M -Pershing +Pershing/M Persia/M Persian/SM Persis +Perters/MN Perth/M Peru/M Peruvian/MS -Peshawar +Peshawar/M Pet Peta/M Petain/M @@ -12086,7 +12240,7 @@ Peterson/M Peterus/M Petey/M Petr/M -Petra +Petra/M Petrarch/M Petrina/M Petronella/M @@ -12101,10 +12255,10 @@ Peyton/M Pfc Pfizer/M PhD/M -Phaedra +Phaedra/M Phaethon/M Phaidra/M -Phanerozoic +Phanerozoic/M Pharaoh/M Pharaohs Pharisaic @@ -12115,34 +12269,36 @@ Phedra/M Phekda/M Phelia/M Phelps/M -Phidias -Phil/Y +Phidias/M +Phil/MY Philadelphia/M Philbert/M Philby/M -Philemon -Philip/S +Philemon/M +Philip/MS Philipa/M Philippa/M Philippe/M -Philippians +Philippians/M Philippine/SM +Philippines/M Philips/M Philis/M -Philistine +Philistine/M Phillida/M Phillie/M -Phillip/S +Phillip/SM Phillipa/M Phillipe/M Phillipp/M +Phillips/M Phillis/M Philly/M Philomena/M Phineas/M Phip/M Phipps/M -Phobos +Phobos/M Phoebe/M Phoenicia/M Phoenician/SM @@ -12164,12 +12320,12 @@ Piaf/M Piaget/M Pianola/M Picasso/M -Piccadilly +Piccadilly/M Pickering/M -Pickett +Pickett/M Pickford/M Pickwick/M -Pict +Pict/M Pictor Piedmont/M Pier/M @@ -12186,19 +12342,20 @@ Pietro/M Piggy/M Pigmy/SM Pike/M -Pilate/S -Pilcomayo -Pilgrim/S +Pilate/MS +Pilates/M +Pilcomayo/M +Pilgrim/SM Pillsbury/M Pinatubo/M Pincas/M Pinchas/M Pincus/M Pindar/M -Pinkerton +Pinkerton/M Pinocchio/M Pinochet/M -Pinter +Pinter/M Pinyin Piotr/M Pip/MR @@ -12207,27 +12364,28 @@ Pippa/M Pippin/M Pippo/M Pippy/M -Piraeus -Pirandello -Pisa +Piraeus/M +Pirandello/M +Pisa/M Pisces/M -Pisistratus +Pisistratus/M Pissaro/M Pitcairn/M -Pitt/S +Pitt/SM Pittman/M +Pitts/M Pittsburgh/M Pius/M -Pizarro +Pizarro/M Pkwy Pl Place -Planck +Planck/M Plano Plantagenet/M Plasticine/M Plataea/M -Plath +Plath/M Plato/M Platonic Platonism/M @@ -12240,7 +12398,7 @@ Playtex/M Pleiades/M Pleistocene/M Plexiglas/MS -Pliny +Pliny/M Pliocene/SM Plutarch/M Pluto/M @@ -12249,10 +12407,11 @@ Pm/M Po/M Pocahontas/M Pocono/SM -Podgorica +Poconos/M +Podgorica/M Podhoretz/M -Podunk -Poe +Podunk/M +Poe/M Pogo/M Poincare/M Poiret/M @@ -12260,56 +12419,57 @@ Poirot/M Poisson/M Poitier/M Pokemon/M -Pol/Y +Pol/MY Poland/M Polanski/M Polaris/M Polaroid/MS Pole/SM Polish/M -Politburo +Politburo/M Polk/M Pollard/M -Pollock +Pollock/M Pollux/M Polly/M -Pollyanna +Pollyanna/M Polo/M Poltava/M Polyhymnia/M Polynesia/M Polynesian/MS -Polyphemus -Pomerania +Polyphemus/M +Pomerania/M Pomeranian/M -Pomona -Pompadour +Pomona/M +Pompadour/M Pompeian Pompeii/M Pompey/M -Ponce -Pontchartrain +Ponce/M +Pontchartrain/M Pontiac/M -Pontianak +Pontianak/M Pooh/M Poole/M -Poona -Pope +Poona/M +Pope/M Popeye/M -Popocatepetl +Popocatepetl/M Popper/M Poppins/M Poppy/M -Popsicle +Popsicle/M Porfirio/M Porrima/M Porsche/M -Port/R +Port/MR +Porter/M Portia/M Portie/M Portland/M Porto/M -Portsmouth +Portsmouth/M Portugal/M Portuguese/M Porty/M @@ -12317,32 +12477,33 @@ Poseidon/M Post/M PostScript/M PostgreSQL/M -Potemkin +Potemkin/M Potomac/M -Potsdam +Potsdam/M Pottawatomie/M -Potter +Potter/M Potts/M Poul/M -Pound -Poussin +Pound/M +Poussin/M Powell/M +PowerPC/M PowerPoint/M -Powers +Powers/M Powhatan/M Poynter/M Poznan/M Pr/MN Prada/M Prado/M -Praetorian +Praetorian/M Prague/M Praia/M -Prakrit +Prakrit/M Pratchett/M Pratt/M Pravda/M -Praxiteles +Praxiteles/M Preakness/M Precambrian/M Preminger/M @@ -12353,17 +12514,17 @@ Prent/M Prentice/M Prentiss/M Pres -Presbyterian/MS -Presbyterianism/SM +Presbyterian/SM +Presbyterianism/MS Prescott/M President/SM -Presley -Preston +Presley/M +Preston/M Pretoria/M Priam/M Pribilof/M -Price -Priestley +Price/M +Priestley/M Prince/M Princeton/M Principal @@ -12379,30 +12540,30 @@ Prius/M Private Prix ProQuest/M -Procrustean +Procrustean/M Procrustes/M Procter/M Procyon/M Prof Prohibition -Prokofiev -Promethean +Prokofiev/M +Promethean/M Prometheus/M Prophets Proserpina/M Proserpine/M -Protagoras +Protagoras/M Proterozoic/M Protestant/MS -Protestantism/MS +Protestantism/SM Proteus/M Proudhon Proust/M Provencal/MS Provence/M Proverbs -Providence/MS -Provo +Providence/SM +Provo/M Prozac/MS Pru/M Prudence/M @@ -12413,65 +12574,66 @@ Prue/M Pruitt/M Prussia/M Prussian/MS -Prut +Prut/M Pryce/M Pryor/M -Psalms +Psalms/M Psalter/MS Pseudomonas/MS Psyche/M Pt/M Ptah/M -Ptolemaic +Ptolemaic/M Ptolemy/SM Pu/M PubMed/M -Puccini -Puck +Puccini/M +Puck/M Puckett/M -Puebla -Pueblo +Puebla/M +Pueblo/M +Puerto Puff/M Puget/M Pugh/M -Pulaski -Pulitzer +Pulaski/M +Pulitzer/M Pullman/MS -Punch +Punch/M Punic/M Punjab/M Punjabi/M -Purana -Purcell +Purana/M +Purcell/M Purdue/M Purgatory Purim/MS Purina/M -Puritan -Puritanism/SM +Puritan/M +Puritanism/MS Purus/M Pusan/M -Pusey -Pushkin +Pusey/M +Pushkin/M Pushtu/M Putin/M -Putnam +Putnam/M Putnem/M Puzo/M Pvt Pygmalion/M Pygmy/SM Pyle/M -Pym +Pym/M Pynchon/M Pyongyang/M Pyotr/M Pyrenees/M Pyrex/MS -Pyrrhic +Pyrrhic/M Pythagoras/M -Pythagorean -Pythias +Pythagorean/M +Pythias/M Python/M Q QB @@ -12484,22 +12646,22 @@ Qaeda/M Qantas/M Qatar/M Qatari/MS -Qingdao +Qingdao/M Qiqihar/M Qom/M Quaalude/M Quaker/MS Quakerism/SM Quaoar/M -Quasimodo +Quasimodo/M Quaternary/M Quayle/M Que Quebec/M Quebecker -Quebecois +Quebecois/M Quechua/M -Queen/S +Queen/MS Queenie/M Queens/M Queensland/M @@ -12515,7 +12677,7 @@ Quillan/M Quincey/M Quincy/M Quinlan/M -Quinn +Quinn/M Quint/M Quinta/M Quintana/M @@ -12525,13 +12687,13 @@ Quintin/M Quintina/M Quinton/M Quintus/M -Quirinal +Quirinal/M Quisling/M Quito/M -Quixote +Quixote/M Quixotism/M -Qumran -Quonset +Qumran/M +Quonset/M Qur'an Qwest/M R/MGD @@ -12569,14 +12731,14 @@ Rab/M Rabat/M Rabbi/M Rabelais/M -Rabelaisian +Rabelaisian/M Rabi Rabin/M Rachael/M Rachel/M Rachele/M Rachelle/M -Rachmaninoff +Rachmaninoff/M Racine/M Rad/M Radcliffe/M @@ -12609,7 +12771,7 @@ Raimundo/M Raina/M Raine/MR Rainer/M -Rainier +Rainier/M Rakel/M Raleigh/M Ralf/M @@ -12619,23 +12781,23 @@ Ram Rama/M Ramada/M Ramadan/MS -Ramakrishna +Ramakrishna/M Ramanujan/M -Ramayana +Ramayana/M Rambo/M Ramirez/M Ramiro/M Ramon/M Ramona/M Ramonda/M -Ramos -Ramsay -Ramses +Ramos/M +Ramsay/M +Ramses/M Ramsey/M Rana/M Rance/M Rancell/M -Rand +Rand/M Randa/M Randal/M Randall/M @@ -12653,13 +12815,13 @@ Rani/M Rania/M Ranice/M Ranique/M -Rankin +Rankin/M Rankine/M Ranna/M Ransell/M Ransom/M Raoul/M -Raphael +Raphael/M Raphaela/M Rapunzel/M Raquel/M @@ -12669,25 +12831,27 @@ Rasalhague/M Rasia/M Rasla/M Rasmussen/M -Rasputin +Rasputin/M +Rasta Rastaban/M Rastafarian/M +Rastafarianism Rather/M Ratliff/M Raul/M -Ravel +Ravel/M Raven/M Ravi/M Ravid/M Raviv/M -Rawalpindi +Rawalpindi/M Rawley/M -Ray +Ray/M RayBan/M Rayburn/M Raychel/M Raye/M -Rayleigh +Rayleigh/M Raymond/M Raymund/M Raymundo/M @@ -12707,7 +12871,7 @@ Reading/M Reagan/M Reaganomics/M Reagen/M -Realtor +Realtor/M Reamonn/M Reasoner/M Reba/M @@ -12717,7 +12881,7 @@ Rebeca/M Rebecca/M Rebecka/M Rebeka/M -Rebekah +Rebekah/M Rebekkah/M Recife/M Reconstruction/M @@ -12727,7 +12891,7 @@ Reddit/M Redeemer/M Redford/M Redgrave/M -Redmond +Redmond/M Ree/DSM Reeba/M Reebok/M @@ -12737,7 +12901,7 @@ Reena/M Reese/M Reeta/M Reeva/M -Reeves +Reeves/M Reformation/MS Refugio/M Reg/N @@ -12747,15 +12911,16 @@ Reggi/MS Reggie/M Reggy/M Regina/M -Reginae +Reginae/M Reginald/M Reginauld/M Regine/M Regor/M Regulus/M -Rehnquist +Rehnquist/M Reich/M -Reid/R +Reichstag/M +Reid/RM Reidar/M Reider/M Reiko/M @@ -12765,16 +12930,16 @@ Reinald/M Reinaldo/SM Reine/M Reinhard/M -Reinhardt +Reinhardt/M Reinhold/M Reinold/M Reinwald/M Rem/M Remanence/S Remanent -Remarque +Remarque/M Rembrandt/M -Remington +Remington/M Remus/M Remy/M Rena/M @@ -12796,7 +12961,7 @@ Renelle/M Renie/M Rennie/M Reno/M -Renoir +Renoir/M Rep Representative Republican/SM @@ -12808,33 +12973,35 @@ Resurrection Reta/M Retha/M Reube/M -Reuben -Reunion -Reuters +Reuben/M +Reunion/M +Reuters/M Reuther/M Reuven/M Rev Reva/M Revelation/SM +Revelations/M Revere Reverend/M Revkah/M Revlon/M -Rex +Rex/M Rey/M -Reyes +Reyes/M Reykjavik/M Reyna/M Reynaldo/M Reynard/M Reynold/MS +Reynolds/M Rf/M Rh/M -Rhea +Rhea/M Rheba/M -Rhee +Rhee/M Rheingau/M -Rhenish +Rhenish/M Rheta/M Rhett/M Rhetta/M @@ -12846,8 +13013,8 @@ Rhine/M Rhineland/M Rhino/M Rhoda/M -Rhode -Rhodes +Rhode/M +Rhodes/M Rhodesia/M Rhodesian Rhodia/M @@ -12860,25 +13027,26 @@ Rhys/M Riane/M Riannon/M Rianon/M -Ribbentrop +Ribbentrop/M Ric/M Rica/M Ricard/M -Ricardo +Ricardo/M Ricca/M Riccardo/M -Rice +Rice/M Rich/M -Richard/S +Richard/MS Richardo/M -Richardson +Richards/M +Richardson/M Richart/M Richelieu/M Richie/M Richmond/M Richmound/M -Richter -Richthofen +Richter/M +Richthofen/M Richy/M Rici/M Rick/M @@ -12888,12 +13056,12 @@ Rickert/M Rickey/M Ricki/M Rickie/M -Rickover +Rickover/M Ricky/M Rico/M Ricoriki/M Riddle/M -Ride +Ride/M Riefenstahl/M Riel/M Riemann/M @@ -12907,9 +13075,9 @@ Rigoletto/M Rik/M Riki/M Rikki/M -Riley -Rilke -Rimbaud +Riley/M +Rilke/M +Rimbaud/M Rina/M Rinaldo/M Ring/M @@ -12918,25 +13086,27 @@ Ringo/M Rio/SM Riobard/M Riordan/M +Rios/M Rip/M -Ripley +Ripley/M Risa/M -Risorgimento +Risorgimento/M Rita/M Ritalin/M Ritchie/M Ritz/M Riva/SM Rivalee/M -Rivera -Rivers +Rivas/M +Rivera/M +Rivers/M Riverside Rivi/M Riviera/MS Rivkah/M Rivy/M Riyadh/M -Rizal +Rizal/M Rn/M Roach/M Roana/M @@ -12950,6 +13120,7 @@ Robbert/M Robbi/M Robbie/M Robbin/MS +Robbins/M Robby/M Robbyn/M Robena/M @@ -12959,9 +13130,10 @@ Roberson/M Robert/MS Roberta/M Roberto/M +Roberts/M Robertson/M -Robeson -Robespierre +Robeson/M +Robespierre/M Robin/M Robina/M Robinet/M @@ -12969,10 +13141,10 @@ Robinett/M Robinetta/M Robinette/M Robinia/M -Robinson +Robinson/M Robitussin/M Robles/M -Robson +Robson/M Robt/M Roby/M Robyn/M @@ -12986,14 +13158,14 @@ Rochella/M Rochelle/M Rochester/M Rochette/M -Rock -Rockefeller +Rock/M +Rockefeller/M Rockey/M -Rockford +Rockford/M Rockie/M Rockies/M Rockne/M -Rockwell +Rockwell/M Rocky/SM Rod/M Roda/M @@ -13007,12 +13179,13 @@ Roderick/M Roderigo/M Rodge/MZR Rodger/MS +Rodgers/M Rodham/M Rodi/M Rodie/M -Rodin +Rodin/M Rodina/M -Rodney +Rodney/M Rodolfo/M Rodolph/M Rodolphe/M @@ -13025,24 +13198,28 @@ Roeg/M Roentgen Rog/MRZ Rogelio/M +Roger/MS Rogerio/M +Rogers/M Roget/M Roi/SM Rojas/M +Roku/M Rolaids/M -Roland +Roland/M Rolando/M Roldan/M Rolex/M Roley/M Rolf Rolfe/M -Rolland -Rollerblade +Rolland/M +Rollerblade/M Rollie/M Rollin/MS +Rollins/M Rollo -Rolodex +Rolodex/M Rolph/M Rolvaag/M Rom @@ -13052,17 +13229,18 @@ Roman/MS Romanesque/MS Romania/M Romanian/MS -Romano +Romano/M Romanov/M -Romansh +Romans/M +Romansh/M Romantic Romanticism Romany/SM Rome/SM -Romeo +Romeo/M Romero/M Rommel/M -Romney +Romney/M Romola/M Romona/M Romonda/M @@ -13091,7 +13269,7 @@ Rora/M Rori/M Rorie/M Rorke/M -Rorschach +Rorschach/M Rory/M Ros Rosa/M @@ -13113,7 +13291,7 @@ Rosamund/M Rosana/M Rosanna/M Rosanne/M -Rosario +Rosario/M Rosco/M Roscoe/M Rose/M @@ -13135,10 +13313,10 @@ Rosenberg/M Rosendo/M Rosene/M Rosenzweig/M -Rosetta +Rosetta/M Rosette/M Roshelle/M -Rosicrucian +Rosicrucian/M Rosie/M Rosina/M Rosita/M @@ -13149,26 +13327,27 @@ Rossetti/M Rossie/M Rossini/M Rossy/M -Rostand +Rostand/M Rostov/M Rostropovich/M Roswell/M Rosy/M Rotarian/M Roth/M -Rothko -Rothschild +Rothko/M +Rothschild/M Rotterdam/M Rottweiler/M -Rouault +Rouault/M Rourke/M Rousseau/M Routledge/M Rouvin/M Rove/RM +Rover/M Row/MN Rowan/M -Rowe +Rowe/M Rowen/M Rowena/M Rowland/M @@ -13183,9 +13362,9 @@ Roxie/M Roxine/M Roxy/M Roy/M -Royal +Royal/M Royall/M -Royce +Royce/M Roz/M Rozalie/M Rozalin/M @@ -13204,6 +13383,7 @@ Rubaiyat/M Rubbermaid/M Rube/M Ruben/SM +Rubens/M Rubetta/M Rubi/M Rubia/M @@ -13212,7 +13392,7 @@ Rubie/M Rubik/M Rubin/M Rubina/M -Rubinstein +Rubinstein/M Ruby/M Ruchbah/M Rudd/M @@ -13220,7 +13400,7 @@ Ruddie/M Ruddy/M Rudie/M Rudiger/M -Rudolf +Rudolf/M Rudolfo/M Rudolph/M Rudy/M @@ -13236,8 +13416,8 @@ Rumania/M Rumanian/SM Rumpelstiltskin/M Rumsfeld/M -Runnymede -Runyon +Runnymede/M +Runyon/M Rupert/M Ruperta/M Ruperto/M @@ -13246,8 +13426,8 @@ Rurik Rush/M Rushdie/M Rushmore/M -Ruskin -Russ +Ruskin/M +Russ/M Russel/M Russell/M Russia/M @@ -13263,7 +13443,7 @@ Ruth/M Ruthann/M Ruthanne/M Ruthe/M -Rutherford +Rutherford/M Ruthi/M Ruthie/M Ruthy/M @@ -13280,7 +13460,7 @@ Ryan/M Ryann/M Rycca/M Rydberg/M -Ryder +Ryder/M Ryley/M Ryon/M Ryukyu/M @@ -13301,7 +13481,7 @@ SD SDI SE/M SEATO -SEC +SEC/M SF SGML/M SIDS/M @@ -13316,6 +13496,7 @@ SOS/M SOSes SPCA SPF +SQL SRO SS SSA @@ -13326,77 +13507,78 @@ SSW/M ST STD STOL -SUSE +SUSE/M SUV +SVN/M SW/M SWAK SWAT Saab/M -Saar -Saarinen +Saar/M +Saarinen/M Saatchi/M Saba/M Sabbath/M Sabbaths Sabik/M -Sabin +Sabin/M Sabina/M Sabine/M Sabra Sabre/M Sabrina/M -Sacajawea +Sacajawea/M Saccharomyces/M Sacco/M Sacha/M Sachs/M Sacramento/M Sada/M -Sadat +Sadat/M Saddam/M -Sadducee +Sadducee/M Sade/M Sadella/M Sadie/M Sadr/M Sadye/M -Safavid +Safavid/M Safeway/M Sagan/M Saginaw/M Sagittarius/MS Sahara/M Saharan/M -Sahel +Sahel/M Saidee/M Saigon/M Saiph/M -Sakai +Sakai/M Sakha/M Sakhalin/M -Sakharov +Sakharov/M Saki/M -Saks -Sal/Y -Saladin -Salado +Saks/M +Sal/MY +Saladin/M +Salado/M Salaidh/M -Salamis +Salamis/M Salas/M Salazar/M Saleem/M Salem/M Salerno/M Salim/M -Salinas -Salinger +Salinas/M +Salinger/M Salisbury/M Salish/M -Salk +Salk/M Sallee/M Salli/M Sallie/M -Sallust +Sallust/M Sally/M Sallyann/M Sallyanne/M @@ -13417,10 +13599,10 @@ Salvatore/M Salvidor/M Salween/M Salyut/M -Sam +Sam/M Samantha/M Samar/M -Samara +Samara/M Samaria Samaritan/MS Samarkand/M @@ -13431,26 +13613,27 @@ Samoan/SM Samoset/M Samoyed/M Sampson/M -Samson +Samson/M Samsonite/M Samsung/M -Samuel +Samuel/M Samuele/M Samuelson/M -San San'a +San/M Sana/M Sanaa/M Sanchez/M Sancho/M Sand/Z -Sandburg +Sandburg/M Sande/MZR Sander/M +Sanders/M Sanderson/M Sandi/M Sandie/M -Sandinista +Sandinista/M Sandor/M Sandoval/M Sandra/M @@ -13458,21 +13641,21 @@ Sandro/M Sandy/M Sandye/M Sanford/M -Sanforized +Sanforized/M Sang/MR -Sanhedrin +Sanhedrin/M Sanka/M Sankara/M Sanskrit/M Sanson/M Sansone/M -Santa +Santa/M Santana/M -Santayana -Santeria +Santayana/M +Santeria/M Santiago/M -Santos -Sapphira +Santos/M +Sapphira/M Sapphire/M Sappho/M Sapporo/M @@ -13495,7 +13678,7 @@ Sarene/M Sarette/M Sargasso/M Sarge/M -Sargent +Sargent/M Sargon/M Sari/M Sarina/M @@ -13503,8 +13686,8 @@ Sarine/M Sarita/M Sarnoff/M Saroyan/M -Sarto -Sartre +Sarto/M +Sartre/M Sascha/M Sasha/M Sashenka/M @@ -13512,8 +13695,8 @@ Sask Saskatchewan/M Saskatoon/M Sasquatch/MS -Sassanian -Sassoon +Sassanian/M +Sassoon/M Sat/M Satan/M Satanism/M @@ -13526,17 +13709,19 @@ Saudra/M Saul/M Sauncho/M Saunder/MS +Saunders/M Saunderson/M Saundra/M -Saussure +Saussure/M Sauterne/MS +Sauternes Sauveur/M -Savage +Savage/M Savannah/M Savina/M Savior/M -Savonarola -Savoy +Savonarola/M +Savoy/M Savoyard/M Saw/M Sawyer/M @@ -13547,43 +13732,44 @@ Saxon/MS Saxony/M Say/MRZ Sayer/MS +Sayers/M Sayre/MS Sb/M Sc/M Scan Scandinavia/M -Scandinavian/SM -Scaramouch -Scarborough +Scandinavian/MS +Scaramouch/M +Scarborough/M Scarface/M -Scarlatti +Scarlatti/M Scarlet/M Scarlett/M Scheat/M Schedar/M Scheherazade/M -Schelling +Schelling/M Schenectady/M Schiaparelli/M Schick/M -Schiller +Schiller/M Schindler/M Schlesinger/M -Schliemann +Schliemann/M Schlitz/M -Schmidt -Schnabel +Schmidt/M +Schnabel/M Schnauzer/M Schneider/M Schoenberg/M -Schopenhauer +Schopenhauer/M Schrieffer/M Schrodinger/M Schroeder/M -Schubert +Schubert/M Schultz/M Schulz/M -Schumann +Schumann/M Schumpeter/M Schuyler/M Schuylkill/M @@ -13591,10 +13777,11 @@ Schwartz/M Schwarz/M Schwarzenegger/M Schwarzkopf/M -Schweitzer +Schweitzer/M Schweppes/M Schwinger/M Schwinn/M +Scientologist/SM Scientology/M Scipio/M Scopes/M @@ -13604,36 +13791,37 @@ Scorsese/M Scot/SM Scotch/MS Scotchman/M -Scotchmen +Scotchmen/M Scotchwoman/M -Scotchwomen +Scotchwomen/M +Scotia/M Scotland/M Scotsman/M -Scotsmen +Scotsmen/M Scotswoman/M -Scotswomen -Scott +Scotswomen/M +Scott/M Scotti/M Scottie/SM Scottish/M -Scottsdale +Scottsdale/M Scotty Scout Scrabble/MS -Scranton -Scriabin +Scranton/M +Scriabin/M Scribner/M Scripture/SM -Scrooge +Scrooge/M Scruggs/M -Scud +Scud/M Sculley/M Scylla/M -Scythia -Scythian +Scythia/M +Scythian/M Se/MH SeaMonkey/M -Seaborg +Seaborg/M Seagram/M Seamus/M Sean/M @@ -13652,6 +13840,7 @@ Seder/MS Sedna/M See/M Seebeck/M +Seeger/M Sega/M Segovia/M Segre/M @@ -13668,7 +13857,7 @@ Selectric/M Selena/M Selene/M Selestina/M -Seleucid +Seleucid/M Seleucus/M Selia/M Selie/M @@ -13677,39 +13866,39 @@ Selim/M Selina/M Selinda/M Seline/M -Seljuk +Seljuk/M Selkirk/M Sella/M Selle/MZ Sellers/M Selma/M Selznick/M -Semarang +Semarang/M Seminole/MS -Semiramis +Semiramis/M Semite/MS Semitic/SM -Semtex +Semtex/M Sena/M Senate/MS Senator -Sendai +Sendai/M Seneca/MS Senegal/M Senegalese/M -Senghor -Senior -Sennacherib +Senghor/M +Senior/M +Sennacherib/M Sennett/M Sensurround/M Seoul/M -Sephardi +Sephardi/M Sephira/M Sepoy/M Sept/M September/MS -Septuagint/SM -Sequoya +Septuagint/MS +Sequoya/M Serb/SM Serbia/M Serbian/MS @@ -13721,28 +13910,28 @@ Sergeant/M Sergei/M Sergent/M Sergio/M -Serpens +Serpens/M Serra/M Serrano/M Set/M Seth/M -Seton +Seton/M Seumas/M -Seurat -Seuss +Seurat/M +Seuss/M Sevastopol/M -Severn -Severus +Severn/M +Severus/M Seville/M -Sevres -Seward -Sextans +Sevres/M +Seward/M +Sextans/M Sexton/M Seychelles/M -Seyfert +Seyfert/M Seymour/M Sgt -Shackleton +Shackleton/M Shadow/M Shae/M Shaffer/M @@ -13751,7 +13940,7 @@ Shaine/M Shaka/M Shaker Shakespeare/M -Shakespearean +Shakespearean/M Shalna/M Shalne/M Shalom/M @@ -13773,17 +13962,17 @@ Shanna/M Shannah/M Shannan/M Shannen/M -Shannon +Shannon/M Shanon/M Shanta/M Shantee/M -Shantung +Shantung/M Shapiro/M Shara/M Sharai/M SharePoint/M -Shari -Shari'a +Shari'a/M +Shari/M Sharia/M Sharif/M Sharity/M @@ -13793,7 +13982,7 @@ Sharleen/M Sharlene/M Sharline/M Sharma/M -Sharon +Sharon/M Sharona/M Sharp/M Sharpe/M @@ -13819,7 +14008,7 @@ Shayna/M Shayne/M Shcharansky/M Shea/M -Sheba +Sheba/M Shebeli/M Sheela/M Sheelagh/M @@ -13843,7 +14032,7 @@ Shelden/M Sheldon/M Shelia/M Shell/M -Shelley +Shelley/M Shelli/M Shellie/M Shelly/M @@ -13851,10 +14040,10 @@ Shelton/M Shem/M Shen/M Shena/M -Shenandoah +Shenandoah/M Shenyang/M Shenzhen/M -Sheol +Sheol/M Shep/M Shepard/M Shepherd/M @@ -13865,35 +14054,36 @@ Sheratan/M Sheraton/M Sheree/M Sheri/M -Sheridan +Sheridan/M Sherie/M Sherill/M Sherilyn/M Sherline/M -Sherlock +Sherlock/M Sherlocke/M Sherm/M -Sherman +Sherman/M Shermie/M Shermy/M -Sherpa +Sherpa/M Sherri/M Sherrie/M Sherry/M Sherwin/M -Sherwood +Sherwood/M Sherwynd/M Sherye/M Sheryl/M Shetland/SM +Shetlands/M Shevardnadze/M Shevat/M -Shi'ite +Shi'ite/M Shields/M Shiite/MS -Shijiazhuang +Shijiazhuang/M Shikoku/M -Shillong +Shillong/M Shiloh/M Shina/M Shinto/MS @@ -13912,23 +14102,23 @@ Shockley/M Sholom/M Shopzilla/M Short/M -Shorthorn +Shorthorn/M Shoshana/M Shoshanna/M Shoshone/SM Shoshoni/SM Shostakovitch/M Shrek/M -Shreveport -Shriner -Shropshire +Shreveport/M +Shriner/M +Shropshire/M Shula/M Shurlock/M Shurlocke/M Shurwood/M -Shylock +Shylock/M Shylockian/M -Si +Si/M Siam/M Siamese/M Sian/M @@ -13939,14 +14129,14 @@ Sibbie/M Sibby/M Sibeal/M Sibel/M -Sibelius +Sibelius/M Sibella/M Sibelle/M Siberia/M Siberian/MS Sibilla/M Sibley/M -Sibyl +Sibyl/M Sibylla/M Sibylle/M Sicilian/SM @@ -13954,12 +14144,12 @@ Sicily/M Sid/M Siddhartha/M Sidnee/M -Sidney +Sidney/M Sidoney/M Sidonia/M Sidonnie/M -Siegfried -Siemens +Siegfried/M +Siemens/M Sierpinski/M Sierras Siffre/M @@ -13968,19 +14158,19 @@ Sigfrid/M Sigfried/M Sigismond/M Sigismondo/M -Sigismund +Sigismund/M Sigismundo/M -Sigmund +Sigmund/M Sigrid/M -Sigurd +Sigurd/M Sigvard/M Sihanouk/M Sikh/M Sikhism Sikhs -Sikkim -Sikkimese -Sikorsky +Sikkim/M +Sikkimese/M +Sikorsky/M Silas/M Sile/M Sileas/M @@ -13999,26 +14189,28 @@ Silvio/M Sim/SM Simenon/M Simeon/M -Simmental +Simmental/M Simmonds/M Simmons/M -Simon +Simon/M Simona/M Simone/M Simonette/M Simonne/M Simpson/SM -Sims +Simpsons/M +Sims/M Sinai/M -Sinatra -Sinclair +Sinatra/M +Sinbad/M +Sinclair/M Sinclare/M Sindbad/M Sindee/M Sindhi/M Singapore/M Singaporean/SM -Singer +Singer/M Singh/M Singleton/M Sinhalese/M @@ -14034,8 +14226,8 @@ Sisile/M Sissie/M Sissy/M Sister/MS -Sistine -Sisyphean +Sistine/M +Sisyphean/M Sisyphus/M Siusan/M Siva/M @@ -14051,9 +14243,9 @@ Skipper/M Skippie/M Skippy/M Skipton/M -Skopje +Skopje/M Sky/M -Skye +Skye/M Skylab/M Skylar/M Skyler/M @@ -14066,11 +14258,11 @@ Slav/SM Slavic/M Slavonic/M Slinky/M -Sloan +Sloan/M Sloane/M Slocum/M Slovak/SM -Slovakia +Slovakia/M Slovakian Slovene/SM Slovenia/M @@ -14079,16 +14271,16 @@ Slurpee/M Sly/M Sm/M Small/M -Smetana +Smetana/M Smirnoff/M -Smith -Smithson +Smith/M +Smithson/M Smithsonian/M Smitty/M Smokey/M -Smolensk -Smollett -Smuts +Smolensk/M +Smollett/M +Smuts/M Smyrna Sn/M Snake/M @@ -14098,28 +14290,28 @@ Snell/M Snickers/M Snider/M Snoopy/M -Snow -Snowbelt +Snow/M +Snowbelt/M Snowl/M Snyder/M Soave/M Soc Socorro/M Socrates/M -Socratic -Soddy +Socratic/M +Soddy/M Sodom/M Sofia/M Sofie/M -Soho +Soho/M Sol/MY Solaris/M Solis/M Sollie/M Solly/M -Solomon -Solon -Solzhenitsyn +Solomon/M +Solon/M +Solzhenitsyn/M Somali/SM Somalia/M Somalian/MS @@ -14127,7 +14319,7 @@ Somerset Somme/M Somoza/M Son/M -Sondheim +Sondheim/M Sondra/M Songbird/M Songhai/M @@ -14144,10 +14336,10 @@ Sony/M Sonya/M Sophey/M Sophi/M -Sophia +Sophia/M Sophie/M -Sophoclean -Sophocles +Sophoclean/M +Sophocles/M Sophronia/M Sopwith/M Sorbonne/M @@ -14158,20 +14350,20 @@ Soto/M Souphanouvong/M Sousa/M South/M -Southampton +Southampton/M Southeast/MS Southern/ZR Southerner/SM -Southey +Southey/M Souths Southwest/MS -Soviet +Soviet/M Soweto/M Soyinka/M -Soyuz +Soyuz/M Sp Spaatz/M -Spackle +Spackle/M Spahn/M Spain/M Spam/M @@ -14180,20 +14372,21 @@ Spanglish Spaniard/SM Spanish/M Sparc -Sparks +Sparks/M Sparta/M -Spartacus +Spartacus/M Spartan/MS Speaker -Spears +Spears/M Speer/M -Spence/R -Spencerian +Spence/RM +Spencer/M +Spencerian/M Spengler/M -Spenglerian +Spenglerian/M Spense/RM Spenser/M -Spenserian +Spenserian/M Sperry/M Sphinx/M Spica/M @@ -14201,24 +14394,24 @@ SpiderMonkey/M Spielberg/M Spike/M Spillane/M -Spinoza +Spinoza/M Spinx/M Spiro/M Spirograph/M Spitsbergen/M Spitz/M -Spock -Spokane +Spock/M +Spokane/M Springfield/M Springsteen/M Sprint/M Sprite/M -Sputnik +Sputnik/M Sq -Squanto +Squanto/M Squibb/M Sr/M -Srinagar +Srinagar/M Srivijaya/M St Sta @@ -14232,32 +14425,32 @@ Stacy/M Stael/M Stafani/M Staffard/M -Stafford +Stafford/M Staford/M -StairMaster +StairMaster/M Stalin/M Stalingrad/M -Stalinist +Stalinist/M Stallone/M -Stamford +Stamford/M Stan/MY Standford/M -Standish +Standish/M Stanfield/M Stanford/M Stanislas/M Stanislaus/M -Stanislavsky +Stanislavsky/M Stanislaw/M Stanleigh/M -Stanley +Stanley/M Stanly/M -Stanton +Stanton/M Stanwood/M Staples/M Star/M -Starbucks -Stark +Starbucks/M +Stark/M Starkey/M Starla/M Starlene/M @@ -14270,7 +14463,7 @@ Stateside Staubach/M Stavro/MS Ste -Steadicam +Steadicam/M Stearn/M Stearne/M Steele @@ -14283,13 +14476,14 @@ Steffane/M Steffen/M Steffi/M Steffie/M -Stein/R -Steinbeck +Stein/MR +Steinbeck/M Steinem/M +Steiner/M Steinmetz/M Steinway/M -Stella -Stendhal +Stella/M +Stendhal/M Stengel/M Stepha/M Stephan/M @@ -14298,16 +14492,17 @@ Stephani/M Stephanie/M Stephannie/M Stephanus/M -Stephen/S +Stephen/MS Stephenie/M -Stephenson +Stephens/M +Stephenson/M Stephi/M Stephie/M Stephine/M Sterling/M -Stern +Stern/M Sterne/M -Sterno +Sterno/M Stesha/M Stetson/M Steuben/M @@ -14315,7 +14510,8 @@ Stevana/M Steve/M Steven/MS Stevena/M -Stevenson +Stevens/M +Stevenson/M Stevie/M Stevy/M Steward/M @@ -14327,65 +14523,65 @@ Stilton/SM Stimson/M Stine/M Stinky/M -Stirling +Stirling/M Stockhausen/M Stockholm/M -Stockton +Stockton/M Stoddard/M Stoic/SM Stoicism/MS Stokes/M Stolichnaya/M Stolypin/M -Stone -Stonehenge +Stone/M +Stonehenge/M Stoppard/M Storm/M Stormi/M Stormie/M Stormy/M -Stout -Stowe +Stout/M +Stowe/M Strabo/M Stradivari -Stradivarius -Strasbourg -Strauss +Stradivarius/M +Strasbourg/M +Strauss/M Stravinsky/M Streisand/M Strickland/M -Strindberg -Stromboli +Strindberg/M +Stromboli/M Strong/M Stu/M Stuart/MS Studebaker/M StumbleUpon/M Stuttgart/M -Stuyvesant -Stygian +Stuyvesant/M +Stygian/M Styrofoam/SM Styron/M Styx/M Suarez/M Subaru/M -Sucre +Sucre/M Sucrets/M Sudan/M Sudanese/M Sudetenland/M Sudoku/M Sudra/M -Sue +Sue/M Suellen/M -Suetonius -Suez -Suffolk -Sufi -Sufism +Suetonius/M +Suez/M +Suffolk/M +Sufi/M +Sufism/M Suharto/M Sui/M -Sukarno +Sukarno/M Sukey/M Suki/M Sukkot @@ -14402,32 +14598,33 @@ Sumatran/SM Sumeria/M Sumerian/SM Summer/MS +Summers/M Sumner/M -Sumter +Sumter/M Sun/SM Sunbeam/M Sunbelt/M Sunbird/M Sundanese/M -Sundas +Sundas/M Sunday/MS Sunderland/M -Sung +Sung/M Sunkist/M Sunni/SM Sunnite/MS Sunny/M -Sunnyvale +Sunnyvale/M Sunshine/M Superbowl/M Superfund/M Superglue/M -Superior +Superior/M Superman/M Supt Surabaja -Surabaya -Surat +Surabaya/M +Surat/M Surinam/M Suriname/M Surinamese @@ -14436,14 +14633,14 @@ Susan/M Susana/M Susanetta/M Susann/M -Susanna +Susanna/M Susannah/M Susanne/M Susette/M Susi/M Susie/M Susquehanna/M -Sussex +Sussex/M Susy/M Sutherlan/M Sutherland/M @@ -14462,11 +14659,11 @@ Suzy/M Svalbard/M Sven/M Svend/M -Svengali +Svengali/M Sverdlovsk Swahili/SM Swammerdam/M -Swanee +Swanee/M Swansea/M Swanson/M Swazi/SM @@ -14477,7 +14674,7 @@ Sweden/M Swedenborg/M Swedish/M Sweeney/M -Sweet +Sweet/M Swen/M Swift/M Swinburne/M @@ -14505,17 +14702,18 @@ Syman/M Symantec/M Symbian/M Symon/M -Synge +Synge/M Syracuse/M Syria/M -Syriac +Syriac/M Syrian/MS Szechuan/M Szilard/M Szymborska/M -T'ang +T'ang/M T/MDG TA +TARP TB/M TBA TD @@ -14558,7 +14756,7 @@ Tabina/M Tabitha/M Tabor Tabriz/MS -Tacitus +Tacitus/M Tacoma/M Tad/M Tadd/M @@ -14571,33 +14769,33 @@ Tadio/M Tadzhik/M Tadzhikistan/M Taegu/M -Taejon +Taejon/M Taffy/M Taft/M Tagalog/SM -Tagore +Tagore/M Tagus/M Tahiti/M Tahitian/MS -Tahoe +Tahoe/M Taichung/M Tailor/M Tainan Taine/M Taipei/M -Taiping +Taiping/M Tait/M Taite/M Taiwan/M Taiwanese/M -Taiyuan +Taiyuan/M Tajikistan/M Taklamakan/M Talbert/M -Talbot +Talbot/M Talia/M Taliban/M -Taliesin +Taliesin/M Tallahassee/M Tallchief/M Talley/M @@ -14638,17 +14836,17 @@ Tampa/M Tampax/M Tamqrah/M Tamra/M -Tamworth +Tamworth/M Tan Tana -Tancred +Tancred/M Tandi/M Tandie/M Tandy/M -Taney +Taney/M Tanganyika/M Tangier/MS -Tangshan +Tangshan/M Tanhya/M Tani/M Tania/M @@ -14675,45 +14873,45 @@ Tarawa/M Tarazed/M Tarbell/M Target/M -Tarim +Tarim/M Tarkenton/M -Tarkington +Tarkington/M Tarra/M Tarrah/M Tarrance/M Tartar/MS -Tartary -Tartuffe +Tartary/M +Tartuffe/M Taryn/M Tarzan/M Tasha/M Tashkent/M Tasia/M -Tasman +Tasman/M Tasmania/M -Tasmanian -Tass +Tasmanian/M +Tass/M Tatar/MS -Tate +Tate/M Tatiana/M Tatiania/M -Tatum +Tatum/M Taurus/MS -Tawney +Tawney/M Tawnya/M Tawsha/M Taylor/M Tb/M Tbilisi/M Tc/M -Tchaikovsky +Tchaikovsky/M Te/M TeX TeXes Teador/M Teasdale/M TechRepublic/M -Technicolor +Technicolor/M Technorati/M Tecumseh/M Ted/M @@ -14733,21 +14931,22 @@ Tegucigalpa/M Teheran/M Tehran TelePrompTer -TelePrompter -Telemachus -Telemann +TelePrompter/M +Telemachus/M +Telemann/M Teletype Tell/MR +Teller/M Telugu/M Temp/M Tempe Templar/M Temple/M Templeton/M -Tenn +Tenn/M Tennessean/SM Tennessee/M -Tennyson +Tennyson/M Tenochtitlan/M Teodoor/M Teodor/M @@ -14756,11 +14955,11 @@ Teodorico/M Teodoro/M Teotihuacan/M Tera/M -Terence +Terence/M Terencio/M Teresa/M Terese/M -Tereshkova +Tereshkova/M Teresina Teresita/M Teressa/M @@ -14781,49 +14980,50 @@ Terrijo/M Terrill/M Territorial Territory -Terry +Terry/M Terrye/M Tersina/M Tertiary/M Terza/M Tesco/M -Tesla -Tess +Tesla/M +Tess/M Tessa/M Tessi/M Tessie/M Tessy/M Tet/M Tethys/M -Tetons +Tetons/M Teuton/MS -Teutonic +Teutonic/M Tevet/M -Tex +Tex/M Texaco/M Texan/MS Texas/M Th/M Thacher/M -Thackeray +Thackeray/M Thad/M -Thaddeus +Thaddeus/M Thaddus/M Thadeus/M Thai/SM Thailand/M Thain/M Thaine/M -Thales +Thales/M Thalia/M Thames/M Thane/M Thanh/M -Thanksgiving/SM -Thant +Thanksgiving/MS +Thant/M Thar/M Tharp/M Thatch/MR +Thatcher/M Thatcherism Thaxter/M Thayne/M @@ -14838,19 +15038,19 @@ Thedrick/M Theiler/M Thekla/M Thelma/M -Themistocles +Themistocles/M Theo/M Theobald/M -Theocritus +Theocritus/M Theodor/M -Theodora +Theodora/M Theodore/M Theodoric/M Theodosia/M Theodosius/M -Theosophy -Theravada -Theresa +Theosophy/M +Theravada/M +Theresa/M Therese/M Theresina/M Theresita/M @@ -14860,16 +15060,16 @@ Thermopylae/M Thermos Theron/M Theseus/M -Thespian +Thespian/M Thespis/M -Thessalonian/S +Thessalonian/SM Thessaloniki/M Thessaly/M Thia/M Thibaud/M Thibaut/M Thieu/M -Thimbu +Thimbu/M Thimphu Thom/M Thoma/SM @@ -14879,9 +15079,9 @@ Thomasin/M Thomasina/M Thomasine/M Thomism/M -Thomistic -Thompson -Thomson +Thomistic/M +Thompson/M +Thomson/M Thor/M Thorazine/M Thoreau/M @@ -14891,8 +15091,8 @@ Thorndike Thornie/M Thornton/M Thorny/M -Thoroughbred -Thorpe +Thoroughbred/M +Thorpe/M Thorstein/M Thorsten/M Thorvald/M @@ -14904,7 +15104,7 @@ Thucydides/M Thule/M Thunderbird/M Thur/S -Thurber +Thurber/M Thurman/M Thurmond/M Thursday/SM @@ -14915,12 +15115,12 @@ Ti/M Tia/M Tianjin/M Tiber/M -Tiberius +Tiberius/M Tibet/M Tibetan/MS Tibold/M Ticketmaster/M -Ticonderoga +Ticonderoga/M Tide/M Tiebold/M Tiebout/M @@ -14932,7 +15132,7 @@ Tiertza/M Tiff/M Tiffani/M Tiffanie/M -Tiffany +Tiffany/M Tiffi/M Tiffie/M Tiffy/M @@ -14943,11 +15143,11 @@ Tildi/M Tildie/M Tildy/M Tiler/M -Tillich +Tillich/M Tillie/M Tillman/M Tilly/M -Tilsit +Tilsit/M Tim/M Timbuktu/M Timex/M @@ -14957,12 +15157,12 @@ Timmie/M Timmy/M Timofei/M Timon/M -Timor +Timor/M Timoteo/M Timothea/M Timothee/M Timotheus/M -Timothy +Timothy/M Timur/M Timurid/M Tina/M @@ -14970,14 +15170,14 @@ Tinderbox/M Tine/M Ting/M Tinkerbell/M -Tinkertoy +Tinkertoy/M Tinseltown/M -Tintoretto +Tintoretto/M Tiphani/M Tiphanie/M Tiphany/M Tippecanoe/M -Tipperary +Tipperary/M Tirana/M Tirane Tiresias/M @@ -14988,12 +15188,12 @@ Tish/M Tisha/M Tishri/M Titan/SM -Titania -Titanic +Titania/M +Titanic/M Titian/M Titicaca Tito/SM -Titus +Titus/M Tl/M Tlaloc/M Tlingit/M @@ -15006,31 +15206,32 @@ Tobiah/M Tobias/M Tobie/M Tobin/M -Tobit -Toby +Tobit/M +Toby/M Tobye/M -Tocantins -Tocqueville +Tocantins/M +Tocqueville/M Tod/M -Todd +Todd/M Toddie/M Toddy/M Togo/M Togolese/M Toiboid/M Toinette/M -Tojo +Tojo/M Tokay/M -Tokugawa +Tokugawa/M Tokyo/M Tokyoite Toledo/MS -Tolkien +Tolkien/M Tolstoy/M -Toltec +Toltec/M Tolyatti/M Tom/M Toma/SM +Tomas/M Tomasina/M Tomasine/M Tomaso/M @@ -15041,9 +15242,9 @@ Tomkin/M Tomlin/M Tommi/M Tommie/M -Tommy +Tommy/M Tompkins/M -Tomsk +Tomsk/M Tonga/M Tongan/MS Toni/M @@ -15051,7 +15252,7 @@ Tonia/M Tonie/M Tonnie/M Tonto/M -Tony +Tony/M Tonya/M Tonye/M Tootsie/M @@ -15065,31 +15266,31 @@ Tori/M Torie/M Torin/M Toronto/M -Torquemada +Torquemada/M Torr/MX -Torrance +Torrance/M Torre/SM Torrence/M -Torrens -Torres +Torrens/M +Torres/M Torrey/M Torricelli/M Torrie/M Torrin/M Torry/M -Tortola -Tortuga +Tortola/M +Tortuga/M Torvalds/M Tory/SM Tosca/M -Toscanini +Toscanini/M Toshiba/M Toto/M -Toulouse +Toulouse/M Tova/M Tove/M Town/M -Townes +Townes/M Towney/M Townie/M Townsend/M @@ -15105,18 +15306,19 @@ Tracie/M Tracy/M Trafalgar/M Trailways/M -Trajan +Trajan/M Tran/M -Transcaucasia +Transcaucasia/M Transvaal/M -Transylvania +Transylvania/M +Transylvanian/M Trappist/SM Traver/MS Travis/M Travolta/M Travus/M Treasury/SM -Treblinka +Treblinka/M Trefor/M Trekkie/M Tremain/M @@ -15131,7 +15333,7 @@ Trescha/M Tressa/M Trev/MR Trevar/M -Trevelyan +Trevelyan/M Trever/M Trevino/M Trevor/M @@ -15140,7 +15342,7 @@ Triangulum/M Triassic/M Tricia/M Trident/M -Trieste +Trieste/M Trimurti/M Trina/M Trinidad/M @@ -15148,7 +15350,7 @@ Trinidadian/MS Trinity/SM Trip/M TripAdvisor/M -Tripitaka +Tripitaka/M Tripoli/M Tripp/M Trippe/M @@ -15164,42 +15366,43 @@ Trixi/M Trixie/M Trixy/M Trobriand/M +Troilus/M Trojan/MS -Trollope +Trollope/M Trondheim/M Tropicana/M -Trotsky +Trotsky/M Troy/M Troyes Trstram/M Truckee/M Truda/M Trude/M -Trudeau +Trudeau/M Trudey/M Trudi/M Trudie/M Trudy/M Trueman/M Truffaut/M -Trujillo +Trujillo/M Trula/M Trumaine/M Truman/M Trumann/M Trumbull/M Trump/M -Truth +Truth/M Tsimshian/M Tsingtao Tsiolkovsky/M Tsitsihar/M Tsongkhapa/M Tswana/M -Tu +Tu/M Tuamotu/M Tuareg/M -Tubman +Tubman/M Tuck/R Tucker/M Tuckie/M @@ -15224,9 +15427,9 @@ Tunisia/M Tunisian/MS Tunney/M Tupi/M -Tupperware +Tupperware/M Tupungato/M -Turgenev +Turgenev/M Turin/M Turing/M Turk/SM @@ -15235,8 +15438,8 @@ Turkey/M Turkic/MS Turkish/M Turkmenistan/M -Turner -Turpin +Turner/M +Turpin/M Tuscaloosa/M Tuscan/M Tuscany/M @@ -15245,17 +15448,18 @@ Tuscon/M Tuskegee/M Tussaud/M Tut/M -Tutankhamen -Tutsi +Tutankhamen/M +Tutsi/M Tutu/M Tuvalu/M Tuvaluan -Twain -Tweed +Twain/M +Tweed/M Tweedledee/M Tweedledum/M Twila/M -Twinkies +Twinkies/M +Twitter/M Twizzlers/M Twp Twyla/M @@ -15263,21 +15467,21 @@ Ty/M Tybalt/M Tybi/M Tybie/M -Tycho +Tycho/M Tye/M Tylenol/M Tyler/M Tymon/M Tymothy/M Tynan/M -Tyndale -Tyndall +Tyndale/M +Tyndall/M Tyne/M -Tyre +Tyre/M Tyree/M Tyrol/M Tyrolean -Tyrone +Tyrone/M Tyrus/M Tyson/M U/M @@ -15295,15 +15499,16 @@ UNESCO/M UNICEF/M UNIX/M UPC -UPI -UPS +UPI/M +UPS/M URL/S URLs US/M USA/M USAF +USB USCG -USDA +USDA/M USIA USMC USN @@ -15314,13 +15519,13 @@ USS USSR/M UT/M UV/M -Ubangi +Ubangi/M Ubiquity/M Ubuntu/M -Ucayali +Ucayali/M Uccello/M Udale/M -Udall +Udall/M Udell/M Ufa/M Uganda/M @@ -15345,14 +15550,14 @@ Ulrikaumeko/M Ulrike/M Ulster/M Ultrasuede/M -Ulyanovsk +Ulyanovsk/M Ulysses/M Umberto/M Umbriel/M Umeko/M Una/M Underwood/M -Ungava +Ungava/M Unicode/M Unilever/M Union/SM @@ -15363,12 +15568,13 @@ Unitarianism/MS Unitas/M Unix/S Unukalhai/M -Upanishads -Updike +Upanishads/M +Updike/M Upjohn/M Upton/M -Ur -Ural/S +Ur/M +Ural/SM +Urals/M Urania/M Uranus/M Urbain/M @@ -15376,24 +15582,24 @@ Urban/M Urbano/M Urbanus/M Urdu/M -Urey +Urey/M Uri/SM -Uriah -Uriel -Uris -Urquhart +Uriah/M +Uriel/M +Uris/M +Urquhart/M Ursa/M Ursala/M Ursola/M Urson/M -Ursula +Ursula/M Ursulina/M -Ursuline +Ursuline/M Uruguay/M Uruguayan/MS -Urumqi +Urumqi/M Usenet/MS -Ustinov +Ustinov/M Uta/M Utah/M Utahan/MS @@ -15430,7 +15636,7 @@ VOA VP VT VTOL -Va +Va/M Vachel/M Vaclav/M Vader/M @@ -15453,13 +15659,13 @@ Valentijn/M Valentin/M Valentina/M Valentine/M -Valentino +Valentino/M Valenzuela/M Valera Valeria/M Valerian/M Valerie/M -Valery +Valery/M Valerye/M Valhalla/M Valida/M @@ -15473,17 +15679,17 @@ Valli/M Vallie/M Vally/M Valma/M -Valois +Valois/M Valparaiso/M Valry/M Valvoline/M -Van -Vance +Van/M +Vance/M Vancouver/M Vanda/M Vandal/MS -Vanderbilt -Vandyke +Vanderbilt/M +Vandyke/M Vanessa/M Vang/M Vania/M @@ -15494,9 +15700,9 @@ Vanny/M Vanuatu/M Vanya/M Vanzetti/M -Varanasi -Varese -Vargas +Varanasi/M +Varese/M +Vargas/M Vaseline/SM Vasili/MS Vasily/M @@ -15505,19 +15711,20 @@ Vassar/M Vassili/M Vassily/M Vatican/M -Vauban -Vaughan +Vauban/M +Vaughan/M Vaughn/M Vazquez/M Veblen/M Veda/SM -Vedanta +Vedanta/M Veep Vega/SM +Vegas/M Vegemite/M -Vela +Vela/M Velasquez/M -Velazquez +Velazquez/M Velcro/MS Velez/M Velma/M @@ -15532,12 +15739,12 @@ Venkman/M Venn/M Ventolin/M Venus/MS -Venusian +Venusian/M Vera/M Veracruz/M Veradis -Verde -Verdi +Verde/M +Verdi/M Verdun/M Vere/M Verena/M @@ -15551,26 +15758,26 @@ Verine/M Verizon/M Verla/M Verlaine/M -Vermeer +Vermeer/M Vermont/ZMR Vermonter/M Vern/MN Verna/M -Verne +Verne/M Vernen/M Verney/M Vernice/M Vernon/M Vernor/M Verona/M -Veronese -Veronica +Veronese/M +Veronica/M Veronika/M Veronike/M Veronique Versailles/M Vesalius/M -Vespasian +Vespasian/M Vespers Vespucci/M Vesta/M @@ -15578,15 +15785,15 @@ Vesuvius/M Vevay/M Vi/M Viacom/M -Viagra -Vic +Viagra/M +Vic/M Vicente/M -Vichy +Vichy/M Vick/M Vicki/M Vickie/M Vicksburg/M -Vicky +Vicky/M Vicodin/M Victoir/M Victor/M @@ -15599,10 +15806,10 @@ Vidal/M Vidovic/M Vidovik/M Vienna/M -Viennese +Viennese/M Vientiane/M -Vietcong -Vietminh +Vietcong/M +Vietminh/M Vietnam/M Vietnamese/M Vijayanagar/M @@ -15613,9 +15820,9 @@ Vikki/M Vikky/M Vila/M Vilhelmina/M -Villa +Villa/M Villarreal/M -Villon +Villon/M Vilma/M Vilnius/M Vilyui/M @@ -15648,7 +15855,7 @@ Virginie/M Virgo/SM Visa/M Visakhapatnam -Visayans +Visayans/M Vishnu/M Visigoth/M Visigoths @@ -15664,11 +15871,11 @@ Vittorio/M Vitus/M Viv/M Viva/M -Vivaldi +Vivaldi/M Vivekananda/M Vivi/MN Vivia/M -Vivian +Vivian/M Viviana/M Vivianna/M Vivianne/M @@ -15681,9 +15888,9 @@ Vivyan/M Vivyanne/M Vlad/M Vladamir/M -Vladimir +Vladimir/M Vladivostok/M -Vlaminck +Vlaminck/M Vlasic/M VoIP Vodafone/M @@ -15694,7 +15901,7 @@ Volga/M Volgograd/M Volkswagen/M Volstead/M -Volta +Volta/M Voltaire/M Volvo/M Von/M @@ -15703,7 +15910,7 @@ Vonnegut/M Vonni/M Vonnie/M Vonny/M -Voronezh +Voronezh/M Vorster/M Voyager/M Vt @@ -15720,9 +15927,11 @@ WATS/M WC WHO/M WI +WMD WNW/M WP WSW/M +WTO WV WW WWI @@ -15732,13 +15941,13 @@ WY WYSIWYG Wabash/M Wac -Waco -Wade +Waco/M +Wade/M Wadsworth/M Wagner/M -Wagnerian -Wahhabi -Waikiki +Wagnerian/M +Wahhabi/M +Waikiki/M Wain/M Wainwright/M Wait/MR @@ -15746,34 +15955,38 @@ Waite/M Waiter/M Wake/M Wakefield -Waksman +Waksman/M Wald/MN Waldemar/M Walden/M -Waldensian -Waldheim +Waldensian/M +Waldheim/M Waldo/M Waldon/M Waldorf/M Wales/M -Walesa +Walesa/M Walgreen/M Walker/M -Walkman +Walkman/M Wall/SMR -Wallace +Wallace/M Wallache/M Wallas/M -Wallenstein +Wallenstein/M Wallie/M -Wallis +Wallis/M Walliw/M -Walloon +Walloon/M +Walls/M Wally/M +Walmart/M Walpole/M -Walpurgisnacht +Walpurgisnacht/M Walsh/M Walt/MRZ +Walter/M +Walters/M Walther/M Walton/M Waly/M @@ -15786,33 +15999,33 @@ Wang/M Wanids/M Wankel/M Warcraft/M -Ward/N +Ward/NM Warde/M Ware/MG -Warhol +Warhol/M Waring/M Warner/M -Warren +Warren/M Warsaw/M -Warwick +Warwick/M Warwickshire/M Wasatch/M -Wash +Wash/M Washington/M -Washingtonian/SM -Wassermann +Washingtonian/MS +Wassermann/M Wat/MZ -Waterbury -Waterford -Watergate +Waterbury/M +Waterford/M +Watergate/M Waterloo/MS Waters/M -Watkins -Watson -Watt/S -Watteau -Watusi -Waugh +Watkins/M +Watson/M +Watt/SM +Watteau/M +Watusi/M +Waugh/M Wave Waverley/M Waverly/M @@ -15822,20 +16035,21 @@ Wayland/M Waylen/M Waylin/M Waylon/M -Wayne +Wayne/M Weave/M Weaver/M -Web/R +Web/MR WebSphere/M -Webb +Webb/M +Weber/M Webern/M Webster/MS Wed/M Weddell/M -Wedgwood +Wedgwood/M Wednesday/MS Weeks/M -Wehrmacht +Wehrmacht/M Wei/M Weidar/M Weider/M @@ -15844,19 +16058,19 @@ Weill/M Weinberg/M Weiss/M Weissmuller/M -Weizmann +Weizmann/M Welbie/M Welby/M Welch Weldon/M Welland/M Weller/M -Welles +Welles/M Wellington/SM -Wells +Wells/M Welsh/M Welshman/M -Welshmen +Welshmen/M Welshwoman Wenda/M Wendall/M @@ -15875,22 +16089,22 @@ Wes Wesak/M Wesley/M Wesleyan/M -Wessex +Wessex/M Wesson/M West/SM Westbrook/M Westbrooke/M Western/MRS -Westinghouse +Westinghouse/M Westleigh/M Westley/M -Westminster +Westminster/M Weston/M -Westphalia +Westphalia/M Weyden/M Weylin/M Wezen/M -Wharton +Wharton/M Wheaties/M Wheatstone/M Wheeler/M @@ -15898,54 +16112,56 @@ Wheeling/M Whig/SM Whipple/M Whirlpool/M -Whistler +Whistler/M Whit -Whitaker +Whitaker/M Whitby/M White/SM Whitefield/M -Whitehall -Whitehead +Whitehall/M +Whitehead/M Whitehorse/M Whiteley/M Whitfield/M Whitley/M -Whitman +Whitman/M Whitney/M -Whitsunday/SM +Whitsunday/MS Whittaker/M -Whittier +Whittier/M WiFi/M Wiatt/M -Wicca +Wicca/M Wichita/M Wiemar/M Wiesel/M Wiesenthal/M -Wiggins +Wiggins/M Wigner/M Wii/M WikiPatents/M Wikibooks/M +Wikileaks Wikimedia/M Wikinews/M Wikipedia/M Wikiquote/M Wikisource/M Wiktionary/M -Wilberforce +Wilberforce/M Wilbert/M Wilbur/M Wilburn/M Wilburt/M Wilcox/M Wilda/M -Wilde/R +Wilde/MR Wilden/M +Wilder/M Wildon/M Wileen/M Wilek/M -Wiles +Wiles/M Wiley/M Wilford/M Wilfred/M @@ -15956,26 +16172,27 @@ Wilhelmina/M Wilhelmine Wilie/M Wilkerson/M -Wilkes -Wilkins +Wilkes/M +Wilkins/M Wilkinson/M Will/M Willa/M Willabella/M Willamette/M Willamina/M -Willard +Willard/M Willdon/M Willem/M -Willemstad +Willemstad/M Willetta/M Willette/M Willey/M Willi/MS -William/S -Williamson +William/SM +Williams/M +Williamson/M Willie/M -Willis +Willis/M Willow/M Willy/M Willyt/M @@ -15988,7 +16205,7 @@ Wilona/M Wilone/M Wilow/M Wilson/M -Wilsonian +Wilsonian/M Wilt/M Wilton/M Wiltshire/M @@ -15996,12 +16213,12 @@ Wimbledon/M Wimsey/M Win/M Winchell/M -Winchester/S -Windbreaker +Winchester/MS +Windbreaker/M Windex/M Windham/M -Windhoek -Windows +Windhoek/M +Windows/M Windsor/SM Windward/M Windy/M @@ -16019,7 +16236,7 @@ Winnah/M Winne/M Winnebago/M Winni/M -Winnie +Winnie/M Winnifred/M Winnipeg/M Winny/M @@ -16027,58 +16244,59 @@ Winona/M Winonah/M Winslow/M Winston/M -Winters +Winters/M Winthrop/M Wis Wisc Wisconsin/M -Wisconsinite/SM +Wisconsinite/MS Wise/M Wit/M Witt/M Wittgenstein/M Wittie/M Witty/M -Witwatersrand +Witwatersrand/M Wm/M Wobegon/M Wodehouse/M -Wolf -Wolfe -Wolff +Wolf/M +Wolfe/M +Wolff/M Wolfgang/M Wolfie/M Wolfy/M -Wollongong +Wollongong/M Wollstonecraft/M -Wolsey +Wolsey/M Wolverhampton -Wonder +Wonder/M Wonderbra/M Wong/M -Wood/S +Wood/SM Woodard/M Woodhull/M Woodie/M Woodman Woodrow/M +Woods/M Woodstock/M Woodward/M Woody/M -Woolf +Woolf/M Woolite/M Woolongong/M -Woolworth +Woolworth/M Wooster/M Wooten/M Worcester/SM -Worcestershire +Worcestershire/M WordPress/M Worden/M Wordsworth/M Workman/M WorldCat/M -Worms +Worms/M Worth Worthington/M Worthy/M @@ -16087,19 +16305,20 @@ Wovoka/M Wozniak/M Wozzeck/M Wrangell/M -Wren +Wren/M Wrennie/M -Wright +Wright/M Wrigley/M Wroclaw/M Wu/M -Wuhan +Wuhan/M Wurlitzer/M Wyatan/M -Wyatt +Wyatt/M Wycherley/M Wycliffe/M Wye/H +Wyeth/M Wylie/M Wylma/M Wyn/M @@ -16110,7 +16329,7 @@ Wynnie/M Wynny/M Wyo Wyoming/M -Wyomingite/MS +Wyomingite/SM X/M XBL/M XEmacs/M @@ -16123,26 +16342,26 @@ XS XUL/M XULRunner/M XXL -Xanadu +Xanadu/M Xanax/M -Xanthippe -Xavier +Xanthippe/M +Xavier/M Xaviera/M Xbox/M Xe/SM Xena/M Xenakis/M Xenia/M -Xenophon +Xenophon/M Xenos Xerox/MS -Xerxes +Xerxes/M Xever/M Xhosa/M -Xi'an +Xi'an/M Xian/SM Xiaoping/M -Ximenes +Ximenes/M Ximenez/M Xingu/M Xiongnu/M @@ -16153,20 +16372,20 @@ Xylia/M Xylina/M Xymenes/M Y/M -YMCA +YMCA/M YMHA YMMV YT -YWCA +YWCA/M YWHA Yacc/M Yahoo/M Yahtzee/M Yahveh/M Yahweh/M -Yakima +Yakima/M Yakut/M -Yakutsk +Yakutsk/M Yale/M Yalonda/M Yalow/M @@ -16174,42 +16393,42 @@ Yalta/M Yalu/M Yamagata/M Yamaha/M -Yamoussoukro +Yamoussoukro/M Yanaton/M Yance/M Yancey/M Yancy/M -Yang +Yang/M Yangon/M Yangtze/M Yank/SM Yankee/SM Yaobang/M Yaounde/M -Yaqui +Yaqui/M Yard/M Yardley/M Yaren -Yaroslavl +Yaroslavl/M Yasmeen/M Yasmin/M Yataro/M -Yates +Yates/M Yb/M Yeager/M Yeats/M Yehudi/M Yehudit/M -Yekaterinburg +Yekaterinburg/M Yelena/M -Yellowknife +Yellowknife/M Yellowstone/M -Yeltsin +Yeltsin/M Yemen/M Yemeni/SM Yemenite Yenisei/M -Yerevan +Yerevan/M Yerkes/M Yesenia/M Yetta/M @@ -16217,7 +16436,7 @@ Yettie/M Yetty/M Yevette/M Yevtushenko/M -Yggdrasil +Yggdrasil/M Yiddish/M Ymir/M Ynes/M @@ -16225,19 +16444,19 @@ Ynez/M Yoda/M Yoknapatawpha/M Yoko/M -Yokohama +Yokohama/M Yolanda/M Yolande/M Yolane/M Yolanthe/M Yong/M -Yonkers +Yonkers/M Yooper/MS Yorgo/MS York/MR Yorke/M Yorker/M -Yorkie +Yorkie/M Yorkshire/MS Yorktown/M Yoruba/M @@ -16246,15 +16465,15 @@ Yoshi/M Yoshiko/M Yossarian/M YouTube/M -Young -Youngstown +Young/M +Youngstown/M Yovonnda/M Ypres/M -Ypsilanti +Ypsilanti/M Ysabel/M Yuan/M Yucatan/M -Yugo +Yugo/M Yugoslav/MS Yugoslavia/M Yugoslavian/SM @@ -16293,17 +16512,17 @@ Zak/M Zambezi/M Zambia/M Zambian/SM -Zamboni +Zamboni/M Zamenhof/M -Zamora +Zamora/M Zandra/M Zane/M Zaneta/M Zanuck/M Zanzibar/M -Zapata -Zaporozhye -Zapotec +Zapata/M +Zaporozhye/M +Zapotec/M Zappa/M Zara/M Zarah/M @@ -16315,25 +16534,25 @@ Zea/M Zealand/M Zeb/M Zebadiah/M -Zebedee +Zebedee/M Zebulen/M Zebulon/M -Zechariah +Zechariah/M Zed/M Zedekiah/M Zedong/M Zeffirelli/M Zeke/M Zelda/M -Zelig +Zelig/M Zelma/M Zen/M Zena/M Zenger/M Zenia/M Zeno/M -Zephaniah -Zephyrus +Zephaniah/M +Zephyrus/M Zeppelin Zerk/M Zest/M @@ -16341,13 +16560,13 @@ Zeus/M Zhang/M Zhao/M Zhdanov -Zhengzhou +Zhengzhou/M Zhivago/M Zhou/M -Zhukov +Zhukov/M Zia/M Zibo/M -Ziegfeld +Ziegfeld/M Ziegler/M Ziff/M Ziggy/M @@ -16359,16 +16578,16 @@ Zinfandel/M Zion/SM Zionism/SM Zionist/SM -Ziploc +Ziploc/M Zita/M Zitella/M Zn/M Zoe/M Zola/M Zollie/M -Zollverein +Zollverein/M Zolly/M -Zoloft +Zoloft/M Zomba/M Zonda/M Zondra/M @@ -16378,7 +16597,7 @@ Zorah/M Zorana/M Zorina/M Zorine/M -Zorn +Zorn/M Zoroaster/M Zoroastrian/MS Zoroastrianism/SM @@ -16386,7 +16605,7 @@ Zorro/M Zosma/M Zr/M Zsazsa/M -Zsigmondy +Zsigmondy/M Zubenelgenubi/M Zubeneschamali/M Zukor/M @@ -16394,11 +16613,11 @@ Zulema/M Zulu/SM Zululand Zune/M -Zuni +Zuni/M Zurich/M Zuzana/M Zwingli/M -Zworykin +Zworykin/M Zyrtec/M Zyuganov/M Zzz @@ -17983,7 +18202,6 @@ apathetic apathetically apathy/M apatite/M -apatosaurus/M ape/DSMG apelike aperiodic From 574e00c2b0a4f229c4c86178f8442cd28531c994 Mon Sep 17 00:00:00 2001 From: Ekanan Ketunuti Date: Tue, 17 Feb 2015 16:04:04 +0700 Subject: [PATCH 021/112] Bug 1133363 - Part 2 - add new words to en-US dictioanry. r=ehsan --- .../dictionary-sources/upstream-hunspell.diff | 2710 ++++++++++------- .../locales/en-US/hunspell/en-US.dic | 230 +- 2 files changed, 1765 insertions(+), 1175 deletions(-) diff --git a/extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/upstream-hunspell.diff b/extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/upstream-hunspell.diff index 8cd300add387..55623a8b7f62 100644 --- a/extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/upstream-hunspell.diff +++ b/extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/upstream-hunspell.diff @@ -14609,25 +14609,26 @@ --- > Sephardi/M > Sephira/M -8571,8572c13721,13723 +8571,8572c13721,13724 < Septuagint/SM < Sequoya --- > Septuagint/MS +> sequinned > sequitur > Sequoya/M -8576a13728 +8576a13729 > Serene -8577a13730,13731 +8577a13731,13732 > Serge/M > Sergeant/M -8578a13733 +8578a13734 > Sergent/M -8580c13735 +8580c13736 < Serpens --- > Serpens/M -8585,8587c13740,13743 +8585,8587c13741,13744 < Seton < Seurat < Seuss @@ -14636,13 +14637,13 @@ > Seumas/M > Seurat/M > Seuss/M -8589,8590c13745,13746 +8589,8590c13746,13747 < Severn < Severus --- > Severn/M > Severus/M -8592,8594c13748,13750 +8592,8594c13749,13751 < Sevres < Seward < Sextans @@ -14650,20 +14651,20 @@ > Sevres/M > Seward/M > Sextans/M -8597c13753 +8597c13754 < Seyfert --- > Seyfert/M -8600c13756,13758 +8600c13757,13759 < Shackleton --- > Shackleton/M > Shadow/M > Shae/M -8601a13760,13761 +8601a13761,13762 > Shaina/M > Shaine/M -8605c13765,13769 +8605c13766,13770 < Shakespearean --- > Shakespearean/M @@ -14671,7 +14672,7 @@ > Shalne/M > Shalom/M > Shamus/M -8606a13771,13777 +8606a13772,13778 > Shanan/M > Shanda/M > Shandee/M @@ -14679,10 +14680,10 @@ > Shandie/M > Shandra/M > Shandy/M -8608a13780,13781 +8608a13781,13782 > Shani/M > Shanie/M -8611,8612c13784,13791 +8611,8612c13785,13792 < Shannon < Shantung --- @@ -14694,7 +14695,7 @@ > Shanta/M > Shantee/M > Shantung/M -8614,8615c13793,13797 +8614,8615c13794,13798 < Shari < Shari'a --- @@ -14703,22 +14704,22 @@ > Shari/M > Shari'a/M > Sharia/M -8616a13799,13802 +8616a13800,13803 > Sharity/M > Sharl/M > Sharla/M > Sharleen/M -8618c13804,13806 +8618c13805,13807 < Sharon --- > Sharline/M > Sharon/M > Sharona/M -8621a13810 +8621a13811 > Sharyl/M -8622a13812 +8622a13813 > Shaughn/M -8631a13822,13828 +8631a13823,13829 > Shay/M > Shayla/M > Shaylah/M @@ -14726,51 +14727,51 @@ > Shaylynn/M > Shayna/M > Shayne/M -8634c13831 +8634c13832 < Sheba --- > Sheba/M -8635a13833,13835 +8635a13834,13836 > Sheela/M > Sheelagh/M > Sheelah/M -8636a13837 +8636a13838 > Sheeree/M -8637a13839,13840 +8637a13840,13841 > Sheff/M > Sheffie/M -8638a13842 +8638a13843 > Sheffy/M -8639a13844,13849 +8639a13845,13850 > Sheilah/M > Shel/MY > Shela/M > Shelagh/M > Shelba/M > Shelbi/M -8640a13851 +8640a13852 > Shelden/M -8644c13855,13857 +8644c13856,13858 < Shelley --- > Shelley/M > Shelli/M > Shellie/M -8647c13860,13862 +8647c13861,13863 < Shenandoah --- > Shem/M > Shena/M > Shenandoah/M -8649c13864,13865 +8649c13865,13866 < Sheol --- > Sheol/M > Shep/M -8652a13869,13870 +8652a13870,13871 > Shepperd/M > Sher/M -8657,8660c13875,13886 +8657,8660c13876,13887 < Sheridan < Sherlock < Sherman @@ -14788,47 +14789,47 @@ > Shermie/M > Shermy/M > Sherpa/M -8664c13890,13893 +8664c13891,13894 < Sherwood --- > Sherwin/M > Sherwood/M > Sherwynd/M > Sherye/M -8666a13896 +8666a13897 > Shetlands/M -8669c13899 +8669c13900 < Shi'ite --- > Shi'ite/M -8672c13902 +8672c13903 < Shijiazhuang --- > Shijiazhuang/M -8674c13904 +8674c13905 < Shillong --- > Shillong/M -8675a13906 +8675a13907 > Shina/M -8678a13910 +8678a13911 > Shir/M -8679a13912,13915 +8679a13913,13916 > Shirl/M > Shirlee/M > Shirleen/M > Shirlene/M -8680a13917 +8680a13918 > Shirline/M -8682a13920 +8682a13921 > Sholom/M -8684c13922,13924 +8684c13923,13925 < Shorthorn --- > Shorthorn/M > Shoshana/M > Shoshanna/M -8689,8691c13929,13931 +8689,8691c13930,13932 < Shreveport < Shriner < Shropshire @@ -14836,18 +14837,18 @@ > Shreveport/M > Shriner/M > Shropshire/M -8693c13933,13936 +8693c13934,13937 < Shylock --- > Shurlock/M > Shurlocke/M > Shurwood/M > Shylock/M -8695c13938 +8695c13939 < Si --- > Si/M -8699c13942,13951 +8699c13943,13952 < Sibelius --- > Siana/M @@ -14860,7 +14861,7 @@ > Sibelius/M > Sibella/M > Sibelle/M -8702c13954,13958 +8702c13955,13959 < Sibyl --- > Sibilla/M @@ -14868,7 +14869,7 @@ > Sibyl/M > Sibylla/M > Sibylle/M -8707,8709c13963,13969 +8707,8709c13964,13970 < Sidney < Siegfried < Siemens @@ -14880,7 +14881,7 @@ > Sidonnie/M > Siegfried/M > Siemens/M -8712,8714c13972,13983 +8712,8714c13973,13984 < Sigismund < Sigmund < Sigurd @@ -14897,7 +14898,7 @@ > Sigrid/M > Sigurd/M > Sigvard/M -8719,8721c13988,13990 +8719,8721c13989,13991 < Sikkim < Sikkimese < Sikorsky @@ -14905,40 +14906,40 @@ > Sikkim/M > Sikkimese/M > Sikorsky/M -8722a13992,13993 +8722a13993,13994 > Sile/M > Sileas/M -8725a13997,14002 +8725a13998,14003 > Silvain/M > Silvan/M > Silvana/M > Silvano/M > Silvanus/M > Silvester/M -8726a14004,14006 +8726a14005,14007 > Silvie/M > Silvio/M > Sim/SM -8728c14008,14010 +8728c14009,14011 < Simmental --- > Simeon/M > Simmental/M > Simmonds/M -8730c14012,14013 +8730c14013,14014 < Simon --- > Simon/M > Simona/M -8731a14015,14016 +8731a14016,14017 > Simonette/M > Simonne/M -8733c14018,14019 +8733c14019,14020 < Sims --- > Simpsons/M > Sims/M -8735,8736c14021,14024 +8735,8736c14022,14025 < Sinatra < Sinclair --- @@ -14946,40 +14947,40 @@ > Sinbad/M > Sinclair/M > Sinclare/M -8737a14026 +8737a14027 > Sindee/M -8741c14030 +8741c14031 < Singer --- > Singer/M -8745a14035 +8745a14036 > Siobhan/M -8746a14037 +8746a14038 > Siouxie/M -8748a14040,14043 +8748a14041,14044 > Sisely/M > Sisile/M > Sissie/M > Sissy/M -8750,8751c14045,14046 +8750,8751c14046,14047 < Sistine < Sisyphean --- > Sistine/M > Sisyphean/M -8752a14048 +8752a14049 > Siusan/M -8754a14051 +8754a14052 > Siward/M -8755a14053,14054 +8755a14054,14055 > Skell/M > Skelly/M -8756a14056,14059 +8756a14057,14060 > Skip/M > Skipp/MR > Skipper/M > Skippie/M -8758,8759c14061,14064 +8758,8759c14062,14065 < Skopje < Skye --- @@ -14987,34 +14988,34 @@ > Skopje/M > Sky/M > Skye/M -8760a14066,14067 +8760a14067,14068 > Skylar/M > Skyler/M -8762a14070 +8762a14071 > Slade/M -8769c14077 +8769c14078 < Sloan --- > Sloan/M -8773c14081 +8773c14082 < Slovakia --- > Slovakia/M -8778a14087 +8778a14088 > Sly/M -8781c14090 +8781c14091 < Smetana --- > Smetana/M -8783,8784c14092,14093 +8783,8784c14093,14094 < Smith < Smithson --- > Smith/M > Smithson/M -8785a14095 +8785a14096 > Smitty/M -8787,8789c14097,14099 +8787,8789c14098,14100 < Smolensk < Smollett < Smuts @@ -15022,26 +15023,26 @@ > Smolensk/M > Smollett/M > Smuts/M -8799,8800c14109,14110 +8799,8800c14110,14111 < Snow < Snowbelt --- > Snow/M > Snowbelt/M -8806,8807c14116,14117 +8806,8807c14117,14118 < Socratic < Soddy --- > Socratic/M > Soddy/M -8810,8811c14120,14122 +8810,8811c14121,14123 < Soho < Sol/M --- > Sofie/M > Soho/M > Sol/MY -8813,8815c14124,14128 +8813,8815c14125,14129 < Solomon < Solon < Solzhenitsyn @@ -15051,113 +15052,113 @@ > Solomon/M > Solon/M > Solzhenitsyn/M -8818a14132 +8818a14133 > Somerset -8822c14136 +8822c14137 < Sondheim --- > Sondheim/M -8827a14142,14144 +8827a14143,14145 > Sonni/M > Sonnie/M > Sonnnie/M -8833c14150,14152 +8833c14151,14153 < Sophia --- > Sophey/M > Sophi/M > Sophia/M -8835,8836c14154,14156 +8835,8836c14155,14157 < Sophoclean < Sophocles --- > Sophoclean/M > Sophocles/M > Sophronia/M -8838a14159 +8838a14160 > Sorcha/M -8839a14161 +8839a14162 > Sosanna/M -8844c14166 +8844c14167 < Southampton --- > Southampton/M -8847,8848c14169,14170 +8847,8848c14170,14171 < Southerner/M < Southey --- > Southerner/SM > Southey/M -8851c14173 +8851c14174 < Soviet --- > Soviet/M -8854c14176 +8854c14177 < Soyuz --- > Soyuz/M -8857c14179 +8857c14180 < Spackle --- > Spackle/M -8865c14187 +8865c14188 < Sparks --- > Sparks/M -8867c14189 +8867c14190 < Spartacus --- > Spartacus/M -8870c14192 +8870c14193 < Spears --- > Spears/M -8872,8873c14194,14196 +8872,8873c14195,14197 < Spence/R < Spencerian --- > Spence/RM > Spencer/M > Spencerian/M -8875c14198,14199 +8875c14199,14200 < Spenglerian --- > Spenglerian/M > Spense/RM -8877c14201 +8877c14202 < Spenserian --- > Spenserian/M -8881a14206 +8881a14207 > Spike/M -8883c14208 +8883c14209 < Spinoza --- > Spinoza/M -8889,8890c14214,14215 +8889,8890c14215,14216 < Spock < Spokane --- > Spock/M > Spokane/M -8895c14220 +8895c14221 < Sputnik --- > Sputnik/M -8897c14222 +8897c14223 < Squanto --- > Squanto/M -8900c14225 +8900c14226 < Srinagar --- > Srinagar/M -8903a14229,14230 +8903a14230,14231 > Stace/M > Stacee/M -8905a14233 +8905a14234 > Stacia/M -8909,8910c14237,14241 +8909,8910c14238,14242 < Stafford < StairMaster --- @@ -15166,11 +15167,11 @@ > Stafford/M > Staford/M > StairMaster/M -8913c14244 +8913c14245 < Stalinist --- > Stalinist/M -8915,8917c14246,14250 +8915,8917c14247,14251 < Stamford < Stan/M < Standish @@ -15180,7 +15181,7 @@ > Standford/M > Standish/M > Stanfield/M -8919,8921c14252,14260 +8919,8921c14253,14261 < Stanislavsky < Stanley < Stanton @@ -15194,30 +15195,30 @@ > Stanly/M > Stanton/M > Stanwood/M -8923,8924c14262,14264 +8923,8924c14263,14265 < Starbucks < Stark --- > Star/M > Starbucks/M > Stark/M -8925a14266,14268 +8925a14267,14269 > Starla/M > Starlene/M > Starlin/M -8929a14273 +8929a14274 > Stavro/MS -8933c14277,14279 +8933c14278,14280 < Steadicam --- > Steadicam/M > Stearn/M > Stearne/M -8934a14281 +8934a14282 > Stefa/M -8935a14283 +8935a14284 > Stefania/M -8937,8938c14285,14291 +8937,8938c14286,14292 < Stein/R < Steinbeck --- @@ -15228,20 +15229,20 @@ > Steffie/M > Stein/MR > Steinbeck/M -8939a14293 +8939a14294 > Steiner/M -8942,8943c14296,14297 +8942,8943c14297,14298 < Stella < Stendhal --- > Stella/M > Stendhal/M -8944a14299 +8944a14300 > Stepha/M -8945a14301,14302 +8945a14302,14303 > Stephana/M > Stephani/M -8947,8948c14304,14312 +8947,8948c14305,14313 < Stephen/S < Stephenson --- @@ -15254,46 +15255,46 @@ > Stephi/M > Stephie/M > Stephine/M -8950c14314 +8950c14315 < Stern --- > Stern/M -8952c14316,14317 +8952c14317,14318 < Sterno --- > Sterno/M > Stesha/M -8954a14320 +8954a14321 > Stevana/M -8957c14323,14325 +8957c14324,14326 < Stevenson --- > Stevena/M > Stevens/M > Stevenson/M -8958a14327,14328 +8958a14328,14329 > Stevy/M > Steward/M -8960a14331,14332 +8960a14332,14333 > Stillman/M > Stillmann/M -8964c14336,14337 +8964c14337,14338 < Stirling --- > Stinky/M > Stirling/M -8967c14340,14341 +8967c14341,14342 < Stockton --- > Stockton/M > Stoddard/M -8973,8974c14347,14348 +8973,8974c14348,14349 < Stone < Stonehenge --- > Stone/M > Stonehenge/M -8976,8977c14350,14355 +8976,8977c14351,14356 < Stout < Stowe --- @@ -15303,7 +15304,7 @@ > Stormy/M > Stout/M > Stowe/M -8980,8982c14358,14360 +8980,8982c14359,14361 < Stradivarius < Strasbourg < Strauss @@ -15311,23 +15312,23 @@ > Stradivarius/M > Strasbourg/M > Strauss/M -8986,8987c14364,14365 +8986,8987c14365,14366 < Strindberg < Stromboli --- > Strindberg/M > Stromboli/M -8993,8994c14371,14372 +8993,8994c14372,14373 < Stuyvesant < Stygian --- > Stuyvesant/M > Stygian/M -9000c14378 +9000c14379 < Sucre --- > Sucre/M -9007,9012c14385,14391 +9007,9012c14386,14392 < Sue < Suetonius < Suez @@ -15342,83 +15343,83 @@ > Suffolk/M > Sufi/M > Sufism/M -9015c14394,14396 +9015c14395,14397 < Sukarno --- > Sukarno/M > Sukey/M > Suki/M -9018a14400 +9018a14401 > Sula/M -9022a14405 +9022a14406 > Sully -9027a14411 +9027a14412 > Summers/M -9029c14413 +9029c14414 < Sumter --- > Sumter/M -9034c14418 +9034c14419 < Sundas --- > Sundas/M -9036c14420 +9036c14421 < Sung --- > Sung/M -9040c14424,14426 +9040c14425,14427 < Sunnyvale --- > Sunny/M > Sunnyvale/M > Sunshine/M -9044c14430 +9044c14431 < Superior --- > Superior/M -9048,9049c14434,14435 +9048,9049c14435,14436 < Surabaya < Surat --- > Surabaya/M > Surat/M -9056c14442,14445 +9056c14443,14446 < Susanna --- > Susanetta/M > Susann/M > Susanna/M > Susannah/M -9057a14447,14448 +9057a14448,14449 > Susette/M > Susi/M -9060c14451,14453 +9060c14452,14454 < Sussex --- > Sussex/M > Susy/M > Sutherlan/M -9064a14458,14459 +9064a14459,14460 > Suzann/M > Suzanna/M -9067a14463,14464 +9067a14464,14465 > Suzi/M > Suzie/M -9072c14469,14470 +9072c14470,14471 < Svengali --- > Svend/M > Svengali/M -9076c14474 +9076c14475 < Swanee --- > Swanee/M -9087c14485,14486 +9087c14486,14487 < Sweet --- > Sweet/M > Swen/M -9094a14494,14500 +9094a14495,14501 > Sybila/M > Sybilla/M > Sybille/M @@ -15426,32 +15427,32 @@ > Syd/M > Sydel/M > Sydelle/M -9096a14503,14504 +9096a14504,14505 > Sylas/M > Sylvan/M -9100c14508,14510 +9100c14509,14511 < Synge --- > Syman/M > Symon/M > Synge/M -9103c14513 +9103c14514 < Syriac --- > Syriac/M -9108c14518 +9108c14519 < T'ang --- > T'ang/M -9110a14521 +9110a14522 > TARP -9120a14532 +9120a14533 > TEirtza/M -9121a14534 +9121a14535 > THz/M -9135a14549 +9135a14550 > Tab/MR -9137a14552,14558 +9137a14553,14559 > Tabb/M > Tabbatha/M > Tabbi/M @@ -15459,15 +15460,15 @@ > Tabbitha/M > Tabby/M > Taber/M -9138a14560 +9138a14561 > Tabina/M -9139a14562 +9139a14563 > Tabor -9141c14564 +9141c14565 < Tacitus --- > Tacitus/M -9143a14567,14573 +9143a14568,14574 > Tadd/M > Taddeo/M > Taddeusz/M @@ -15475,66 +15476,66 @@ > Tadeo/M > Tades > Tadio/M -9147c14577,14578 +9147c14578,14579 < Taejon --- > Taejon/M > Taffy/M -9150c14581 +9150c14582 < Tagore --- > Tagore/M -9154c14585 +9154c14586 < Tahoe --- > Tahoe/M -9155a14587 +9155a14588 > Tailor/M -9159c14591,14593 +9159c14592,14594 < Taiping --- > Taiping/M > Tait/M > Taite/M -9162c14596 +9162c14597 < Taiyuan --- > Taiyuan/M -9165c14599,14601 +9165c14600,14602 < Talbot --- > Talbert/M > Talbot/M > Talia/M -9167c14603 +9167c14604 < Taliesin --- > Taliesin/M -9171a14608,14609 +9171a14609,14610 > Tallia/M > Tallie/M -9172a14611,14613 +9172a14612,14614 > Tallou/M > Tallulah/M > Tally/M -9175a14617,14620 +9175a14618,14621 > Talya/M > Talyah/M > Tam/M > Tamar/M -9176a14622,14624 +9176a14623,14625 > Tamarah/M > Tamarra/M > Tamas -9181a14630 +9181a14631 > Tamiko/M -9182a14632 +9182a14633 > Tamma/M -9183a14634 +9183a14635 > Tammara/M -9189a14641 +9189a14642 > Tamqrah/M -9191,9193c14643,14650 +9191,9193c14644,14651 < Tamworth < Tancred < Taney @@ -15547,53 +15548,53 @@ > Tandie/M > Tandy/M > Taney/M -9196c14653,14655 +9196c14654,14656 < Tangshan --- > Tangshan/M > Tanhya/M > Tani/M -9198a14658,14659 +9198a14659,14660 > Tanitansy/M > Tann/MR -9199a14661 +9199a14662 > Tanney/M -9200a14663,14665 +9200a14664,14666 > Tannie/M > Tanny/M > Tansy/M -9208a14674 +9208a14675 > Tarah/M -9214c14680 +9214c14681 < Tarim --- > Tarim/M -9216c14682,14685 +9216c14683,14686 < Tarkington --- > Tarkington/M > Tarra/M > Tarrah/M > Tarrance/M -9218,9219c14687,14689 +9218,9219c14688,14690 < Tartary < Tartuffe --- > Tartary/M > Tartuffe/M > Taryn/M -9223c14693,14694 +9223c14694,14695 < Tasman --- > Tasia/M > Tasman/M -9225,9226c14696,14697 +9225,9226c14697,14698 < Tasmanian < Tass --- > Tasmanian/M > Tass/M -9228,9229c14699,14702 +9228,9229c14700,14703 < Tate < Tatum --- @@ -15601,35 +15602,35 @@ > Tatiana/M > Tatiania/M > Tatum/M -9231c14704,14706 +9231c14705,14707 < Tawney --- > Tawney/M > Tawnya/M > Tawsha/M -9236c14711 +9236c14712 < Tchaikovsky --- > Tchaikovsky/M -9239a14715 +9239a14716 > Teador/M -9241c14717 +9241c14718 < Technicolor --- > Technicolor/M -9243a14720,14723 +9243a14721,14724 > Tedd/M > Tedda/M > Teddi/M > Teddie/M -9244a14725,14730 +9244a14726,14731 > Tedi/M > Tedie/M > Tedman/M > Tedmund/M > Tedra/M > Teena/M -9250,9252c14736,14738 +9250,9252c14737,14739 < TelePrompter < Telemachus < Telemann @@ -15637,33 +15638,33 @@ > TelePrompter/M > Telemachus/M > Telemann/M -9254a14741 +9254a14742 > Teller/M -9255a14743 +9255a14744 > Temp/M -9258c14746,14748 +9258c14747,14749 < Tenn --- > Temple/M > Templeton/M > Tenn/M -9261c14751 +9261c14752 < Tennyson --- > Tennyson/M -9262a14753,14757 +9262a14754,14758 > Teodoor/M > Teodor/M > Teodora/M > Teodorico/M > Teodoro/M -9264c14759,14761 +9264c14760,14762 < Terence --- > Tera/M > Terence/M > Terencio/M -9266c14763,14767 +9266c14764,14768 < Tereshkova --- > Terese/M @@ -15671,68 +15672,68 @@ > Teresina > Teresita/M > Teressa/M -9267a14769 +9267a14770 > Teriann/M -9273a14776 +9273a14777 > Terrel/M -9277a14781,14782 +9277a14782,14783 > Terrijo/M > Terrill/M -9280c14785,14787 +9280c14786,14788 < Terry --- > Terry/M > Terrye/M > Tersina/M -9282,9283c14789,14791 +9282,9283c14790,14792 < Tesla < Tess --- > Terza/M > Tesla/M > Tess/M -9284a14793 +9284a14794 > Tessi/M -9285a14795 +9285a14796 > Tessy/M -9288c14798 +9288c14799 < Tetons --- > Tetons/M -9290c14800 +9290c14801 < Teutonic --- > Teutonic/M -9292c14802 +9292c14803 < Tex --- > Tex/M -9297c14807,14808 +9297c14808,14809 < Thackeray --- > Thacher/M > Thackeray/M -9299c14810,14812 +9299c14811,14813 < Thaddeus --- > Thaddeus/M > Thaddus/M > Thadeus/M -9302c14815,14817 +9302c14816,14818 < Thales --- > Thain/M > Thaine/M > Thales/M -9304a14820 +9304a14821 > Thane/M -9306,9307c14822,14823 +9306,9307c14823,14824 < Thanksgiving/SM < Thant --- > Thanksgiving/MS > Thant/M -9310c14826,14830 +9310c14827,14831 < Thatcher --- > Thatch/MR @@ -15740,16 +15741,16 @@ > Thatcherism > Thaxter/M > Thayne/M -9311a14832,14833 +9311a14833,14834 > Theadora/M > Thebault/M -9312a14835,14837 +9312a14836,14838 > Theda/M > Thedric/M > Thedrick/M -9313a14839 +9313a14840 > Thekla/M -9315,9317c14841,14847 +9315,9317c14842,14848 < Themistocles < Theocritus < Theodora @@ -15761,9 +15762,9 @@ > Theocritus/M > Theodor/M > Theodora/M -9319a14850 +9319a14851 > Theodosia/M -9321,9323c14852,14854 +9321,9323c14853,14855 < Theosophy < Theravada < Theresa @@ -15771,36 +15772,36 @@ > Theosophy/M > Theravada/M > Theresa/M -9324a14856,14859 +9324a14857,14860 > Theresina/M > Theresita/M > Theressa/M > Therine/M -9329c14864 +9329c14865 < Thespian --- > Thespian/M -9331c14866 +9331c14867 < Thessalonian/S --- > Thessalonian/SM -9333a14869,14871 +9333a14870,14872 > Thia/M > Thibaud/M > Thibaut/M -9335c14873 +9335c14874 < Thimbu --- > Thimbu/M -9336a14875,14876 +9336a14876,14877 > Thom/M > Thoma/SM -9337a14878,14881 +9337a14879,14882 > Thomasa/M > Thomasin/M > Thomasina/M > Thomasine/M -9339,9341c14883,14885 +9339,9341c14884,14886 < Thomistic < Thompson < Thomson @@ -15808,12 +15809,12 @@ > Thomistic/M > Thompson/M > Thomson/M -9344a14889,14892 +9344a14890,14893 > Thorin/M > Thorn > Thorndike > Thornie/M -9346,9347c14894,14899 +9346,9347c14895,14900 < Thoroughbred < Thorpe --- @@ -15823,30 +15824,30 @@ > Thorstein/M > Thorsten/M > Thorvald/M -9354d14905 +9354d14906 < Thunderbird/M -9356c14907 +9356c14908 < Thurber --- > Thurber/M -9359a14911,14912 +9359a14912,14913 > Thurstan/M > Thurston/M -9365c14918 +9365c14919 < Tiberius --- > Tiberius/M -9367a14921 +9367a14922 > Tibold/M -9369c14923 +9369c14924 < Ticonderoga --- > Ticonderoga/M -9370a14925,14927 +9370a14926,14928 > Tiebold/M > Tiebout/M > Tiena/M -9373c14930,14938 +9373c14931,14939 < Tiffany --- > Tierney/M @@ -15858,7 +15859,7 @@ > Tiffi/M > Tiffie/M > Tiffy/M -9376c14941,14947 +9376c14942,14948 < Tillich --- > Tilda/M @@ -15868,18 +15869,18 @@ > Tiler/M > Tillich/M > Tillie/M -9378c14949,14950 +9378c14950,14951 < Tilsit --- > Tilly/M > Tilsit/M -9381a14954,14956 +9381a14955,14957 > Timi/M > Timmi/M > Timmie/M -9382a14958 +9382a14959 > Timofei/M -9384,9385c14960,14965 +9384,9385c14961,14966 < Timor < Timothy --- @@ -15889,39 +15890,39 @@ > Timothee/M > Timotheus/M > Timothy/M -9388a14969 +9388a14970 > Tine/M -9391c14972 +9391c14973 < Tinkertoy --- > Tinkertoy/M -9393c14974,14977 +9393c14975,14978 < Tintoretto --- > Tintoretto/M > Tiphani/M > Tiphanie/M > Tiphany/M -9395c14979 +9395c14980 < Tipperary --- > Tipperary/M -9400a14985,14986 +9400a14986,14987 > Tirrell/M > Tish/M -9404,9405c14990,14991 +9404,9405c14991,14992 < Titania < Titanic --- > Titania/M > Titanic/M -9408,9409c14994,14995 +9408,9409c14995,14996 < Tito/M < Titus --- > Tito/SM > Titus/M -9415,9418c15001,15012 +9415,9418c15002,15013 < Tobit < Toby < Tocantins @@ -15939,31 +15940,31 @@ > Tobye/M > Tocantins/M > Tocqueville/M -9420c15014,15016 +9420c15015,15017 < Todd --- > Todd/M > Toddie/M > Toddy/M -9423c15019,15021 +9423c15020,15022 < Tojo --- > Toiboid/M > Toinette/M > Tojo/M -9425c15023 +9425c15024 < Tokugawa --- > Tokugawa/M -9429c15027 +9429c15028 < Tolkien --- > Tolkien/M -9431c15029 +9431c15030 < Toltec --- > Toltec/M -9434c15032,15036 +9434c15033,15037 < Tomas --- > Toma/SM @@ -15971,37 +15972,37 @@ > Tomasina/M > Tomasine/M > Tomaso/M -9435a15038,15040 +9435a15039,15041 > Tome/M > Tomi/M > Tomkin/M -9436a15042 +9436a15043 > Tommi/M -9438c15044 +9438c15045 < Tommy --- > Tommy/M -9440c15046 +9440c15047 < Tomsk --- > Tomsk/M -9444a15051,15052 +9444a15052,15053 > Tonie/M > Tonnie/M -9446c15054 +9446c15055 < Tony --- > Tony/M -9447a15056,15057 +9447a15057,15058 > Tonye/M > Tootsie/M -9451a15062,15066 +9451a15063,15067 > Tore/M > Torey/M > Tori/M > Torie/M > Torin/M -9453,9456c15068,15075 +9453,9456c15069,15076 < Torquemada < Torrance < Torrens @@ -16015,7 +16016,7 @@ > Torrens/M > Torres/M > Torrey/M -9458,9459c15077,15081 +9458,9459c15078,15082 < Tortola < Tortuga --- @@ -16024,11 +16025,11 @@ > Torry/M > Tortola/M > Tortuga/M -9463c15085 +9463c15086 < Toscanini --- > Toscanini/M -9466,9467c15088,15094 +9466,9467c15089,15095 < Toulouse < Townes --- @@ -16039,39 +16040,39 @@ > Townes/M > Towney/M > Townie/M -9468a15096 +9468a15097 > Towny/M -9471a15100,15101 +9471a15101,15102 > Trace/M > Tracee/M -9478c15108 +9478c15109 < Trajan --- > Trajan/M -9480c15110 +9480c15111 < Transcaucasia --- > Transcaucasia/M -9482c15112,15113 +9482c15113,15114 < Transylvania --- > Transylvania/M > Transylvanian/M -9483a15115 +9483a15116 > Traver/MS -9485a15118 +9485a15119 > Travus/M -9487c15120,15121 +9487c15121,15122 < Treblinka --- > Treblinka/M > Trefor/M -9488a15123,15126 +9488a15124,15127 > Tremain/M > Tremaine/M > Tremayne/M > Trenna/M -9491c15129,15135 +9491c15130,15136 < Trevelyan --- > Tresa/M @@ -16081,41 +16082,41 @@ > Trevar/M > Trevelyan/M > Trever/M -9499c15143 +9499c15144 < Trieste --- > Trieste/M -9505c15149,15150 +9505c15150,15151 < Tripitaka --- > Trip/M > Tripitaka/M -9506a15152 +9506a15153 > Tripp/M -9507a15154,15155 +9507a15155,15156 > Tris > Trish/M -9508a15157,15158 +9508a15158,15159 > Trista/M > Tristam/M -9510a15161,15164 +9510a15162,15165 > Trix/M > Trixi/M > Trixie/M > Trixy/M -9511a15166 +9511a15167 > Troilus/M -9513c15168 +9513c15169 < Trollope --- > Trollope/M -9516c15171 +9516c15172 < Trotsky --- > Trotsky/M -9518a15174 +9518a15175 > Trstram/M -9520c15176,15181 +9520c15177,15182 < Trudeau --- > Truda/M @@ -16124,69 +16125,69 @@ > Trudey/M > Trudi/M > Trudie/M -9521a15183 +9521a15184 > Trueman/M -9523c15185,15187 +9523c15186,15188 < Trujillo --- > Trujillo/M > Trula/M > Trumaine/M -9524a15189 +9524a15190 > Trumann/M -9527c15192 +9527c15193 < Truth --- > Truth/M -9534c15199 +9534c15200 < Tu --- > Tu/M -9537c15202,15203 +9537c15203,15204 < Tubman --- > Tubman/M > Tuck/R -9538a15205,15206 +9538a15206,15207 > Tuckie/M > Tucky/M -9546a15215,15216 +9546a15216,15217 > Tulley/M > Tully/M -9557c15227 +9557c15228 < Tupperware --- > Tupperware/M -9559c15229 +9559c15230 < Turgenev --- > Turgenev/M -9568,9569c15238,15239 +9568,9569c15239,15240 < Turner < Turpin --- > Turner/M > Turpin/M -9578,9579c15248,15249 +9578,9579c15249,15250 < Tutankhamen < Tutsi --- > Tutankhamen/M > Tutsi/M -9583,9584c15253,15254 +9583,9584c15254,15255 < Twain < Tweed --- > Twain/M > Tweed/M -9588c15258,15259 +9588c15259,15260 < Twinkies --- > Twinkies/M > Twitter/M -9590a15262 +9590a15263 > Twyla/M -9592c15264,15268 +9592c15265,15269 < Tycho --- > Tybalt/M @@ -16194,7 +16195,7 @@ > Tybie/M > Tycho/M > Tye/M -9595,9597c15271,15277 +9595,9597c15272,15278 < Tyndale < Tyndall < Tyre @@ -16206,44 +16207,44 @@ > Tyndall/M > Tyne/M > Tyre/M -9601c15281,15282 +9601c15282,15283 < Tyrone --- > Tyrone/M > Tyrus/M -9609a15291 +9609a15292 > UI/MS -9617,9618c15299,15300 +9617,9618c15300,15301 < UPI < UPS --- > UPI/M > UPS/M -9622a15305 +9622a15306 > USB -9624c15307 +9624c15308 < USDA --- > USDA/M -9635c15318 +9635c15319 < Ubangi --- > Ubangi/M -9637c15320 +9637c15321 < Ucayali --- > Ucayali/M -9639c15322,15324 +9639c15323,15325 < Udall --- > Udale/M > Udall/M > Udell/M -9642a15328 +9642a15329 > Ugo/M -9646a15333 +9646a15334 > Ula/M -9647a15335,15345 +9647a15336,15346 > Ulberto/M > Ulick/M > Ulises/M @@ -16255,38 +16256,38 @@ > Ulrika/M > Ulrikaumeko/M > Ulrike/M -9650c15348 +9650c15349 < Ulyanovsk --- > Ulyanovsk/M -9651a15350 +9651a15351 > Umberto/M -9652a15352,15353 +9652a15353,15354 > Umeko/M > Una/M -9654c15355 +9654c15356 < Ungava --- > Ungava/M -9665,9666c15366,15367 +9665,9666c15367,15368 < Upanishads < Updike --- > Upanishads/M > Updike/M -9669,9670c15370,15372 +9669,9670c15371,15373 < Ur < Ural/S --- > Ur/M > Ural/SM > Urals/M -9672a15375 +9672a15376 > Urbain/M -9673a15377,15378 +9673a15378,15379 > Urbano/M > Urbanus/M -9675,9679c15380,15385 +9675,9679c15381,15386 < Urey < Uriah < Uriel @@ -16299,7 +16300,7 @@ > Uriel/M > Uris/M > Urquhart/M -9681,9682c15387,15392 +9681,9682c15388,15393 < Ursula < Ursuline --- @@ -16309,58 +16310,58 @@ > Ursula/M > Ursulina/M > Ursuline/M -9685c15395 +9685c15396 < Urumqi --- > Urumqi/M -9687c15397,15398 +9687c15398,15399 < Ustinov --- > Ustinov/M > Uta/M -9723c15434,15436 +9723c15435,15437 < Va --- > Va/M > Vachel/M > Vaclav/M -9726c15439,15442 +9726c15440,15443 < Val/M --- > Vail/M > Val/MY > Valaree/M > Valaria/M -9727a15444 +9727a15445 > Valdemar/M -9728a15446,15447 +9728a15447,15448 > Vale/M > Valeda/M -9729a15449,15450 +9729a15450,15451 > Valene/M > Valenka/M -9730a15452,15453 +9730a15453,15454 > Valentia/M > Valentijn/M -9731a15455 +9731a15456 > Valentina/M -9733c15457 +9733c15458 < Valentino --- > Valentino/M -9734a15459 +9734a15460 > Valera -9738c15463,15464 +9738c15464,15465 < Valery --- > Valery/M > Valerye/M -9739a15466,15467 +9739a15467,15468 > Valida/M > Valina/M -9741a15470 +9741a15471 > Valle/M -9744c15473,15477 +9744c15474,15478 < Valois --- > Valli/M @@ -16368,31 +16369,31 @@ > Vally/M > Valma/M > Valois/M -9745a15479 +9745a15480 > Valry/M -9747,9748c15481,15482 +9747,9748c15482,15483 < Van < Vance --- > Van/M > Vance/M -9749a15484 +9749a15485 > Vanda/M -9751,9752c15486,15487 +9751,9752c15487,15488 < Vanderbilt < Vandyke --- > Vanderbilt/M > Vandyke/M -9754a15490,15494 +9754a15491,15495 > Vania/M > Vanna/M > Vanni/M > Vannie/M > Vanny/M -9755a15496 +9755a15497 > Vanya/M -9757,9759c15498,15500 +9757,9759c15499,15501 < Varanasi < Varese < Vargas @@ -16400,77 +16401,77 @@ > Varanasi/M > Varese/M > Vargas/M -9760a15502,15503 +9760a15503,15504 > Vasili/MS > Vasily/M -9762a15506,15507 +9762a15507,15508 > Vassili/M > Vassily/M -9764,9765c15509,15510 +9764,9765c15510,15511 < Vauban < Vaughan --- > Vauban/M > Vaughan/M -9770c15515 +9770c15516 < Vedanta --- > Vedanta/M -9772a15518 +9772a15519 > Vegas/M -9774c15520 +9774c15521 < Vela --- > Vela/M -9776c15522 +9776c15523 < Velazquez --- > Velazquez/M -9780a15527 +9780a15528 > Velvet/M -9784a15532 +9784a15533 > Venita/M -9788c15536 +9788c15537 < Venusian --- > Venusian/M -9791,9792c15539,15541 +9791,9792c15540,15542 < Verde < Verdi --- > Veradis > Verde/M > Verdi/M -9793a15543,15546 +9793a15544,15547 > Vere/M > Verena/M > Verene/M > Verge/M -9794a15548,15551 +9794a15549,15552 > Veriee/M > Verile/M > Verina/M > Verine/M -9795a15553 +9795a15554 > Verla/M -9797c15555 +9797c15556 < Vermeer --- > Vermeer/M -9800c15558 +9800c15559 < Vern/M --- > Vern/MN -9802c15560,15563 +9802c15561,15564 < Verne --- > Verne/M > Vernen/M > Verney/M > Vernice/M -9803a15565 +9803a15566 > Vernor/M -9805,9806c15567,15571 +9805,9806c15568,15572 < Veronese < Veronica --- @@ -16479,103 +16480,103 @@ > Veronika/M > Veronike/M > Veronique -9809c15574 +9809c15575 < Vespasian --- > Vespasian/M -9813a15579,15580 +9813a15580,15581 > Vevay/M > Vi/M -9815,9816c15582,15583 +9815,9816c15583,15584 < Viagra < Vic --- > Viagra/M > Vic/M -9818c15585,15586 +9818c15586,15587 < Vichy --- > Vichy/M > Vick/M -9822c15590,15591 +9822c15591,15592 < Vicky --- > Vicky/M > Victoir/M -9827a15597 +9827a15598 > Vida/M -9828a15599,15600 +9828a15600,15601 > Vidovic/M > Vidovik/M -9830c15602 +9830c15603 < Viennese --- > Viennese/M -9832,9833c15604,15605 +9832,9833c15605,15606 < Vietcong < Vietminh --- > Vietcong/M > Vietminh/M -9837a15610 +9837a15611 > Viki/M -9838a15612,15613 +9838a15613,15614 > Vikki/M > Vikky/M -9840c15615,15616 +9840c15616,15617 < Villa --- > Vilhelmina/M > Villa/M -9842c15618 +9842c15619 < Villon --- > Villon/M -9845a15622,15623 +9845a15623,15624 > Vin/M > Vina/M -9847c15625,15627 +9847c15626,15628 < Vincent/M --- > Vincent/MS > Vincenty/M > Vincenz/M -9848a15629,15632 +9848a15630,15633 > Vinita/M > Vinni/M > Vinnie/M > Vinny/M -9850a15635,15636 +9850a15636,15637 > Violante/M > Viole/M -9851a15638,15640 +9851a15639,15641 > Violetta/M > Violette/M > Virge/M -9853a15643,15644 +9853a15644,15645 > Virgilio/M > Virgina/M -9855a15647 +9855a15648 > Virginie/M -9859c15651 +9859c15652 < Visayans --- > Visayans/M -9863a15656,15658 +9863a15657,15659 > Vita/M > Vite/M > Vitia/M -9865a15661,15663 +9865a15662,15664 > Vitoria > Vittoria/M > Vittorio/M -9867c15665,15667 +9867c15666,15668 < Vivaldi --- > Viv/M > Viva/M > Vivaldi/M -9869c15669,15677 +9869c15670,15678 < Vivian --- > Vivi/MN @@ -16587,50 +16588,50 @@ > Vivie/M > Vivien/M > Viviene/M -9870a15679,15681 +9870a15680,15682 > Viviyan/M > Vivyan/M > Vivyanne/M -9872c15683,15684 +9872c15684,15685 < Vladimir --- > Vladamir/M > Vladimir/M -9874c15686 +9874c15687 < Vlaminck --- > Vlaminck/M -9883c15695 +9883c15696 < Volta --- > Volta/M -9885a15698 +9885a15699 > Von/M -9888c15701,15704 +9888c15702,15705 < Voronezh --- > Vonni/M > Vonnie/M > Vonny/M > Voronezh/M -9895a15712 +9895a15713 > Vyky/M -9899c15716 +9899c15717 < WASP/M --- > WASP/SM -9903a15721 +9903a15722 > WMD -9906a15725 +9906a15726 > WTO -9916,9917c15735,15737 +9916,9917c15736,15738 < Waco < Wade --- > Waco/M > Wade/M > Wadsworth/M -9919,9921c15739,15744 +9919,9921c15740,15745 < Wagnerian < Wahhabi < Waikiki @@ -16641,30 +16642,30 @@ > Wain/M > Wainwright/M > Wait/MR -9922a15746 +9922a15747 > Waiter/M -9924c15748,15749 +9924c15749,15750 < Waksman --- > Wakefield > Waksman/M -9928,9929c15753,15754 +9928,9929c15754,15755 < Waldensian < Waldheim --- > Waldensian/M > Waldheim/M -9930a15756 +9930a15757 > Waldon/M -9933c15759 +9933c15760 < Walesa --- > Walesa/M -9936c15762 +9936c15763 < Walkman --- > Walkman/M -9938,9941c15764,15774 +9938,9941c15765,15775 < Wallace < Wallenstein < Wallis @@ -16681,44 +16682,44 @@ > Walls/M > Wally/M > Walmart/M -9943c15776 +9943c15777 < Walpurgisnacht --- > Walpurgisnacht/M -9945a15779,15781 +9945a15780,15782 > Walter/M > Walters/M > Walther/M -9946a15783 +9946a15784 > Waly/M -9948a15786,15788 +9948a15787,15789 > Wandie/M > Wandis/M > Waneta/M -9949a15790 +9949a15791 > Wanids/M -9951c15792,15793 +9951c15793,15794 < Ward --- > Ward/NM > Warde/M -9953c15795 +9953c15796 < Warhol --- > Warhol/M -9956c15798 +9956c15799 < Warren --- > Warren/M -9958c15800 +9958c15801 < Warwick --- > Warwick/M -9960c15802 +9960c15803 < Wash --- > Wash/M -9962,9967c15804,15809 +9962,9967c15805,15810 < Washingtonian/SM < Wasp < Wassermann @@ -16732,7 +16733,7 @@ > Waterbury/M > Waterford/M > Watergate/M -9970,9975c15812,15817 +9970,9975c15813,15818 < Watkins < Watson < Watt/S @@ -16746,7 +16747,7 @@ > Watteau/M > Watusi/M > Waugh/M -9977c15819,15827 +9977c15820,15828 < Wayne --- > Waverley/M @@ -16758,64 +16759,64 @@ > Waylin/M > Waylon/M > Wayne/M -9979,9980c15829,15831 +9979,9980c15830,15832 < Web/R < Webb --- > Web/MR > Webb/M > Weber/M -9985c15836 +9985c15837 < Wedgwood --- > Wedgwood/M -9988c15839 +9988c15840 < Wehrmacht --- > Wehrmacht/M -9989a15841,15842 +9989a15842,15843 > Weidar/M > Weider/M -9995c15848,15850 +9995c15849,15851 < Weizmann --- > Weizmann/M > Welbie/M > Welby/M -10000c15855 +10000c15856 < Welles --- > Welles/M -10002c15857 +10002c15858 < Wells --- > Wells/M -10005c15860 +10005c15861 < Welshmen --- > Welshmen/M -10006a15862,15865 +10006a15863,15866 > Wenda/M > Wendall/M > Wendel/M > Wendeline/M -10008a15868 +10008a15869 > Wendie/M -10009a15870,15875 +10009a15871,15876 > Wendye/M > Wenona/M > Wenonah/M > Werner/M > Wernher/M > Wes -10013c15879 +10013c15880 < Wessex --- > Wessex/M -10015a15882,15883 +10015a15883,15884 > Westbrook/M > Westbrooke/M -10017,10018c15885,15888 +10017,10018c15886,15889 < Westinghouse < Westminster --- @@ -16823,17 +16824,17 @@ > Westleigh/M > Westley/M > Westminster/M -10020c15890 +10020c15891 < Westphalia --- > Westphalia/M -10021a15892 +10021a15893 > Weylin/M -10023c15894 +10023c15895 < Wharton --- > Wharton/M -10031,10032c15902,15905 +10031,10032c15903,15906 < Whistler < Whitaker --- @@ -16841,17 +16842,17 @@ > Whit > Whitaker/M > Whitby/M -10035,10036c15908,15909 +10035,10036c15909,15910 < Whitehall < Whitehead --- > Whitehall/M > Whitehead/M -10041c15914 +10041c15915 < Whitman --- > Whitman/M -10043,10045c15916,15920 +10043,10045c15917,15921 < Whitsunday/SM < Whittier < Wicca @@ -16861,19 +16862,19 @@ > Whittier/M > Wiatt/M > Wicca/M -10050c15925 +10050c15926 < Wiggins --- > Wiggins/M -10052a15928 +10052a15929 > Wikileaks -10054c15930 +10054c15931 < Wilberforce --- > Wilberforce/M -10057a15934 +10057a15935 > Wilburt/M -10060,10061c15937,15943 +10060,10061c15938,15944 < Wilde/R < Wiles --- @@ -16884,20 +16885,20 @@ > Wileen/M > Wilek/M > Wiles/M -10065a15948 +10065a15949 > Wilfrid/M -10067a15951,15952 +10067a15952,15953 > Wilhelmine > Wilie/M -10069,10070c15954,15955 +10069,10070c15955,15956 < Wilkes < Wilkins --- > Wilkes/M > Wilkins/M -10073a15959 +10073a15960 > Willabella/M -10075,10078c15961,15972 +10075,10078c15962,15973 < Willard < Willemstad < William/S @@ -16915,81 +16916,81 @@ > William/SM > Williams/M > Williamson/M -10080c15974,15975 +10080c15975,15976 < Willis --- > Willis/M > Willow/M -10081a15977 +10081a15978 > Willyt/M -10082a15979 +10082a15980 > Wilmar/M -10083a15981 +10083a15982 > Wilmette/M -10084a15983,15985 +10084a15984,15986 > Wilona/M > Wilone/M > Wilow/M -10086c15987,15988 +10086c15988,15989 < Wilsonian --- > Wilsonian/M > Wilt/M -10089a15992 +10089a15993 > Win/M -10091,10092c15994,15995 +10091,10092c15995,15996 < Winchester/S < Windbreaker --- > Winchester/MS > Windbreaker/M -10094,10095c15997,15999 +10094,10095c15998,16000 < Windhoek < Windows --- > Windham/M > Windhoek/M > Windows/M -10097a16002 +10097a16003 > Windy/M -10098a16004 +10098a16005 > Winfield/M -10100a16007,16008 +10100a16008,16009 > Wini/M > Winifield/M -10102a16011,16014 +10102a16012,16015 > Winn/M > Winna/M > Winnah/M > Winne/M -10104c16016,16018 +10104c16017,16019 < Winnie --- > Winni/M > Winnie/M > Winnifred/M -10105a16020,16023 +10105a16021,16024 > Winny/M > Winona/M > Winonah/M > Winslow/M -10107c16025 +10107c16026 < Winters --- > Winters/M -10112c16030 +10112c16031 < Wisconsinite/SM --- > Wisconsinite/MS -10113a16032 +10113a16033 > Wit/M -10116c16035,16037 +10116c16036,16038 < Witwatersrand --- > Wittie/M > Witty/M > Witwatersrand/M -10120,10122c16041,16043 +10120,10122c16042,16044 < Wolf < Wolfe < Wolff @@ -16997,84 +16998,84 @@ > Wolf/M > Wolfe/M > Wolff/M -10124c16045,16047 +10124c16046,16048 < Wollongong --- > Wolfie/M > Wolfy/M > Wollongong/M -10126c16049 +10126c16050 < Wolsey --- > Wolsey/M -10128c16051 +10128c16052 < Wonder --- > Wonder/M -10131c16054 +10131c16055 < Wood/S --- > Wood/SM -10133a16057,16058 +10133a16058,16059 > Woodie/M > Woodman -10134a16060 +10134a16061 > Woods/M -10137c16063,16064 +10137c16064,16065 < Woolf --- > Woody/M > Woolf/M -10140c16067 +10140c16068 < Woolworth --- > Woolworth/M -10144c16071,16072 +10144c16072,16073 < Worcestershire --- > Worcestershire/M > Worden/M -10147c16075,16078 +10147c16076,16079 < Worms --- > Worms/M > Worth > Worthington/M > Worthy/M -10153,10154c16084,16086 +10153,10154c16085,16087 < Wren < Wright --- > Wren/M > Wrennie/M > Wright/M -10158c16090 +10158c16091 < Wuhan --- > Wuhan/M -10160c16092,16093 +10160c16093,16094 < Wyatt --- > Wyatan/M > Wyatt/M -10163c16096,16097 +10163c16097,16098 < Wyeth --- > Wye/H > Wyeth/M -10164a16099,16101 +10164a16100,16102 > Wylma/M > Wyn/M > Wyndham/M -10165a16103,16105 +10165a16104,16106 > Wynne/M > Wynnie/M > Wynny/M -10168c16108 +10168c16109 < Wyomingite/MS --- > Wyomingite/SM -10175,10177c16115,16118 +10175,10177c16116,16119 < Xanadu < Xanthippe < Xavier @@ -17083,50 +17084,50 @@ > Xanthippe/M > Xavier/M > Xaviera/M -10178a16120 +10178a16121 > Xena/M -10181c16123,16124 +10181c16124,16125 < Xenophon --- > Xenophon/M > Xenos -10183c16126,16127 +10183c16127,16128 < Xerxes --- > Xerxes/M > Xever/M -10185c16129 +10185c16130 < Xi'an --- > Xi'an/M -10188c16132,16133 +10188c16133,16134 < Ximenes --- > Ximenes/M > Ximenez/M -10193a16139,16141 +10193a16140,16142 > Xylia/M > Xylina/M > Xymenes/M -10195c16143 +10195c16144 < YMCA --- > YMCA/M -10199c16147 +10199c16148 < YWCA --- > YWCA/M -10206c16154 +10206c16155 < Yakima --- > Yakima/M -10208c16156 +10208c16157 < Yakutsk --- > Yakutsk/M -10209a16158 +10209a16159 > Yalonda/M -10215,10216c16164,16169 +10215,10216c16165,16170 < Yamoussoukro < Yang --- @@ -17136,23 +17137,23 @@ > Yancey/M > Yancy/M > Yang/M -10223c16176,16178 +10223c16177,16179 < Yaqui --- > Yaqui/M > Yard/M > Yardley/M -10225c16180,16182 +10225c16181,16183 < Yaroslavl --- > Yaroslavl/M > Yasmeen/M > Yasmin/M -10227c16184 +10227c16185 < Yates --- > Yates/M -10231,10232c16188,16192 +10231,10232c16189,16193 < Yekaterinburg < Yellowknife --- @@ -17161,35 +17162,35 @@ > Yekaterinburg/M > Yelena/M > Yellowknife/M -10234c16194 +10234c16195 < Yeltsin --- > Yeltsin/M -10239c16199 +10239c16200 < Yerevan --- > Yerevan/M -10241a16202,16205 +10241a16203,16206 > Yetta/M > Yettie/M > Yetty/M > Yevette/M -10243c16207 +10243c16208 < Yggdrasil --- > Yggdrasil/M -10245a16210,16211 +10245a16211,16212 > Ynes/M > Ynez/M -10249c16215 +10249c16216 < Yokohama --- > Yokohama/M -10250a16217,16219 +10250a16218,16220 > Yolande/M > Yolane/M > Yolanthe/M -10252,10254c16221,16227 +10252,10254c16222,16228 < Yonkers < York/M < Yorkie @@ -17201,34 +17202,34 @@ > Yorke/M > Yorker/M > Yorkie/M -10258a16232,16233 +10258a16233,16234 > Yoshi/M > Yoshiko/M -10261,10262c16236,16238 +10261,10262c16237,16239 < Young < Youngstown --- > Young/M > Youngstown/M > Yovonnda/M -10264c16240,16241 +10264c16241,16242 < Ypsilanti --- > Ypsilanti/M > Ysabel/M -10267c16244 +10267c16245 < Yugo --- > Yugo/M -10271a16249 +10271a16250 > Yul/M -10273a16252 +10273a16253 > Yulma/M -10276a16256 +10276a16257 > Yurik/M -10278a16259 +10278a16260 > Yvon/M -10280c16261,16266 +10280c16262,16267 < Z/SMNXT --- > Yvor/M @@ -17237,29 +17238,29 @@ > Zaccaria/M > Zach > Zacharia/SM -10281a16268 +10281a16269 > Zacharie/M -10282a16270 +10282a16271 > Zacherie/M -10283a16272,16273 +10283a16273,16274 > Zack/M > Zackariah/M -10284a16275 +10284a16276 > Zahara/M -10286a16278 +10286a16279 > Zak/M -10290c16282 +10290c16283 < Zamboni --- > Zamboni/M -10292c16284,16285 +10292c16285,16286 < Zamora --- > Zamora/M > Zandra/M -10293a16287 +10293a16288 > Zaneta/M -10296,10298c16290,16292 +10296,10298c16291,16293 < Zapata < Zaporozhye < Zapotec @@ -17267,9 +17268,9 @@ > Zapata/M > Zaporozhye/M > Zapotec/M -10300a16295 +10300a16296 > Zarah/M -10302,10303c16297,16308 +10302,10303c16298,16309 < Zebedee < Zechariah --- @@ -17285,45 +17286,45 @@ > Zebulon/M > Zechariah/M > Zed/M -10308c16313,16314 +10308c16314,16315 < Zelig --- > Zelda/M > Zelig/M -10310a16317 +10310a16318 > Zena/M -10311a16319 +10311a16320 > Zenia/M -10313,10314c16321,16322 +10313,10314c16322,16323 < Zephaniah < Zephyrus --- > Zephaniah/M > Zephyrus/M -10315a16324 +10315a16325 > Zerk/M -10319c16328 +10319c16329 < Zhengzhou --- > Zhengzhou/M -10321c16330,16331 +10321c16331,16332 < Zhukov --- > Zhukov/M > Zia/M -10323c16333 +10323c16334 < Ziegfeld --- > Ziegfeld/M -10325a16336 +10325a16337 > Zilvia/M -10333c16344,16346 +10333c16345,16347 < Ziploc --- > Ziploc/M > Zita/M > Zitella/M -10337,10338c16350,16353 +10337,10338c16351,16354 < Zollverein < Zoloft --- @@ -17331,7 +17332,7 @@ > Zollverein/M > Zolly/M > Zoloft/M -10340c16355,16363 +10340c16356,16364 < Zorn --- > Zonda/M @@ -17343,737 +17344,902 @@ > Zorina/M > Zorine/M > Zorn/M -10347c16370,16371 +10347c16371,16372 < Zsigmondy --- > Zsazsa/M > Zsigmondy/M -10350a16375 +10350a16376 > Zulema/M -10353c16378 +10353c16379 < Zuni --- > Zuni/M -10354a16380 +10354a16381 > Zuzana/M -10356c16382 +10356c16383 < Zworykin --- > Zworykin/M -10460a16487 +10391a16419 +> abductee/MS +10460a16489 > abridgement/MS -10488a16516,16517 +10488a16518,16519 > absorbance/S > absorbancy/M -10516,10517c16545 +10516,10517c16547 < abuse's < abuse/EGVDS --- > abuse/EGVDSM -10665a16694 +10665a16696 > acknowledgement/MS -10709,10710c16738 +10709,10710c16740 < act's < act/ASDGV --- > act/ASDGVM -10721,10722c16749 +10721,10722c16751 < active's < active/IKY --- > active/IKYSM -10724d16750 +10724d16752 < actives -10727,10728c16753 +10727,10728c16755 < activity's/I < activity/AS --- > activity/ASIM -10774,10775c16799 +10774,10775c16801 < address's < address/AGDS --- > address/AGDSM -10824c16848 +10824c16850 < admin/S --- > admin/MS -10936a16961 +10936a16963 > advocator/SM -10937a16963 +10937a16965 > adware/MS -10979,10980c17005 +10939c16967 +< adze/M +--- +> adze/SM +10948c16976 +< aerie/M +--- +> aerie/MS +10967c16995 +< aesthete/S +--- +> aesthete/MS +10979,10980c17007 < affect's < affect/EGVDS --- > affect/EGVDSM -10990,10991c17015 +10990,10991c17017 < affiliate's < affiliate/EGNDS --- > affiliate/EGNDSM -11045c17069 +11045c17071 < afterward --- > afterward/S -11073a17098 +11073a17100 > aggregator/SM -11393d17417 +11393d17419 < altho -11579a17604 -> analyses -11631c17656 +11579a17606 +> analyses/A +11631c17658 < anecdotal --- > anecdotal/Y -11750a17776,17777 +11750a17778,17779 > anonymization/SM > anonymize/DSG -11804c17831 +11804c17833 < anthropomorphizing --- > anthropomorphize/DSG -11983c18010 +11983c18012 < app/S --- > app/MS -12035,12036c18062 +12035,12036c18064 < appointment's/A < appointment/ESM --- > appointment/ESMA -12135a18162,18163 +12135a18164,18165 > archaeoastronomy/M > archaeologic -12137a18166,18168 +12137a18168,18170 > archaeology/M > archaeomagnetic > archaeomagnetism -12152c18183 +12152c18185 < archeological --- > archeological/Y -12214,12215c18245 +12214,12215c18247 < arm's < arm/EAGDS --- > arm/EAGDSM -12255,12256c18285 +12255,12256c18287 < arrangement's/E < arrangement/ASM --- > arrangement/ASME -12427,12428c18456 +12427,12428c18458 < assign's < assign/ALGDS --- > assign/ALGDSM -12432c18460 +12432c18462 < assignees --- > assignee/MS -12446,12447c18474 +12446,12447c18476 < associate's < associate/EDSGNV --- > associate/EDSGNVM -12491a18519,18521 +12491a18521,18523 > astroarchaeology/SM > astrobiology/M > astrobleme/S -12518a18549 +12518a18551 > asynchronicity -12584,12585c18615 +12584,12585c18617 < attempt's < attempt/ASDG --- > attempt/ASDGM -12685c18715 +12685c18717 < auteur --- > auteur/MS -12713a18744 +12713a18746 > autocomplete/S -12754a18786 +12754a18788 > avant-garde -12827d18858 +12803a18838 +> awardee/S +12827d18861 < awol -12829a18861 +12829a18864 > axe/M -12969c19001 +12969c19004 < badge/MZDRS --- > badge/MZDRSG -13018,13019c19050 +13018,13019c19053 < balance's < balance/UDSG --- > balance/UDSGM -13079,13080c19110 +13079,13080c19113 < band's < band/ESGD --- > band/ESGDM -13149,13150c19179 +13149,13150c19182 < bar's < bar/ECUTS --- > bar/ECUTSM -13195,13196c19224 +13195,13196c19227 < bark's < bark/CSGD --- > bark/CSGDM -13249,13250c19277 +13249,13250c19280 < base's < base/CDRSLTG --- > base/CDRSLTGM -13843,13844c19870 +13259a19290 +> baser +13505a19537 +> begat +13736a19769 +> biased/U +13815a19849 +> bilirubin +13843,13844c19877 < bind's < bind/AUGS --- > bind/AUGSM -13864a19891 +13864a19898 > biodiesel/M -14118,14119c20145 +13931c19965 +< birth/GMD +--- +> birth/ZGMDR +13932a19967 +> birther/M +13956a19992 +> bitcoin/SM +13980c20016 +< bl/D +--- +> bl/DG +14118,14119c20154 < block's < block/UGDS --- > block/UGDSM -14179a20206,20208 +14179a20215,20217 > bloviate/SGD > bloviation > bloviator/SM -14210d20238 +14210d20247 < blueing's -14356,14357c20384 +14356,14357c20393 < bolt's < bolt/USGD --- > bolt/USGDM -14434a20462 +14390a20427 +> boneyard +14400a20438 +> bonobo/MS +14434a20473 > bookselling -14455,14456c20483 +14455,14456c20494 < boot's < boot/ASGD --- > boot/ASGDM -14501,14502c20528 +14501,14502c20539 < bosom's < bosom/US --- > bosom/USM -14522a20549 +14522a20560 > botnet/MS -14785,14786c20812 +14608a20647 +> bpm +14785,14786c20824 < brief's < brief/CSDTGJ --- > brief/CSDTGJM -14841c20867 +14841c20879 < broadcast/AMGS --- > broadcast/AMGSD -14956,14957c20982 +14956,14957c20994 < buckle's < buckle/UDSG --- > buckle/UDSGM -14986,14987c21011 +14966a21004 +> buckyball/SM +14986,14987c21024 < bug's < bug/CS --- > bug/CSM -15039,15040c21063 +15001a21039 +> builtin +15039,15040c21077 < bullshitter's < bullshitter/S! --- > bullshitter/SM! -15078,15079c21101 +15078,15079c21115 < bunk's < bunk/CDGS --- > bunk/CDGSM -15093,15094c21115 +15093,15094c21129 < burden's < burden/USGD --- > burden/USGDM -15211,15212c21232 +15135a21171 +> burqa/S +15199a21236 +> buttercream +15211,15212c21248 < button's < button/USDG --- > button/USDGM -15230d21249 +15224a21261 +> buzzkill/SM +15230d21266 < byelaw/SM -15383d21401 +15286a21323 +> caddie/MDS +15310a21348,21349 +> cagier +> cagiest +15383d21421 < callisthenics/M -15430,15431c21448 +15430,15431c21468 < camp's < camp/CSTGD --- > camp/CSTGDM -15460a21478,21480 +15460a21498,21500 > cancelled/U > canceller/M > cancelling -15518,15519c21538 +15518,15519c21558 < cant's < cant/CZRDGS --- > cant/CZRDGSM -15559a21579 +15559a21599 > capita -15609c21629 +15609c21649 < caravanserai's --- > caravanserai/M -15629,15630d21648 +15625a21666 +> carbs +15629,15630d21669 < carburetter/SM < carburettor/SM -15701a21720 +15648a21688 +> cardio +15701a21742 > carnitas -15788d21806 +15702a21744 +> carnivora +15782a21825 +> cashback/M +15788d21830 < cashpoint/S -15797d21814 +15797d21838 < cassino/M -15832a21850 +15832a21874 > catalyses -15940d21957 +15940d21981 < caviare/M -16013,16014c22030 +15992a22034 +> cellulitis +16013,16014c22055 < cent's < cent/AR --- > cent/ARM -16098,16099c22114 +16058a22100 +> cerebrovascular +16098,16099c22140 < chain's < chain/UGDS --- > chain/UGDSM -16200a22216 +16200a22242 > charcuterie -16231,16232c22247 +16231,16232c22273 < charter's < charter/ASGD --- > charter/ASGDM -16277c22292 +16252a22294 +> chateaux +16277c22319 < check/AGMDS --- > check/AGMDSU -16327c22342 +16327c22369 < chemistry/M --- > chemistry/MS -16372c22387 +16372c22414 < chickenshit/S! --- > chickenshit/SM! -16404c22419 +16404c22446 < children --- > children/M -16488d22502 +16488d22529 < chlorophyl/M -16629,16630c22643 +16622a22664 +> ciabatta/SM +16629,16630c22671 < cider's < cider/S --- > cider/MS -16651,16652c22664,22665 +16651,16652c22692,22693 < cipher's < cipher/CGDS --- > cipher/CGDSM > ciphertext/S -16702,16703c22715 +16702,16703c22743 < cite's < cite/IAGSD --- > cite/IAGSDM -16733,16735c22745 +16733,16735c22773 < claim's < claim/CKEAGDS < claimable --- > claim/CKEAGDSMB -16783,16784c22793 +16783,16784c22821 < clasp's < clasp/UGDS --- > clasp/UGDSM -16794,16796c22803 +16794,16796c22831 < classified's < classified/U < classifieds --- > classified/MSU -16918,16919c22925 +16862c22897 +< click/ZGMDRS +--- +> click/BZGMDRS +16911a22947 +> clit/SM +16918,16919c22954 < cloak's < cloak/USDG --- > cloak/USDGM -16930,16931c22936 +16930,16931c22965 < clog's < clog/US --- > clog/USM -16944,16946c22949 +16944,16946c22978 < close's < close/EIGTSD < closeable --- -> close/EIGTSDMB -17072d23074 +> close/EIGTSDMBR +17072d23103 < cocain/M -17102,17103c23104 +17102,17103c23133 < cocksucker's < cocksucker/S! --- > cocksucker/SM! -17117,17118c23118 +17117,17118c23147 < code's < code/CAGDS --- > code/CAGDSM -17195,17196c23195 +17195,17196c23224 < coil's/A < coil/UADGS --- > coil/UADGSM -17245,17246c23244 +17245,17246c23273 < collect's < collect/ASGVD --- > collect/ASGVDM -17301a23300,23301 +17301a23329,23330 > colonoscope/SM > colonoscopy/SM -17304,17305c23304 +17304,17305c23333 < color's < color/AEGDS --- > color/AEGDSM -17311,17313c23310 +17311,17313c23339 < colored's < colored/U < coloreds --- > colored/MSU -17351,17352c23348 +17351,17352c23377 < combine's < combine/ADSG --- > combine/ADSGM -17371c23367 +17371c23396 < comer's --- > comer/M -17376,17377c23372 +17376,17377c23401 < comfit's < comfit/ES --- > comfit/ESM -17412c23407 +17412c23436 < comment/GSMDR --- > comment/GSMDRZ -17428,17429c23423 +17428,17429c23452 < commission's < commission/ACGSD --- > commission/ACGSDM -17442,17443c23436 +17442,17443c23465 < commode's < commode/EIS --- > commode/EISM -17447,17448c23440 +17447,17448c23469 < common's < common/UPRYT --- > common/UPRYTM -17537,17538c23529 +17537,17538c23558 < compilation's < compilation/AS --- > compilation/ASM -17597,17598c23588 +17597,17598c23617 < compress's < compress/CGVDS --- > compress/CGVDSM -17657,17658c23647 +17645a23665 +> concentric +17657,17658c23677 < concert's < concert/ESDG --- > concert/ESDGM -17719,17720c23708 +17719,17720c23738 < condition's < condition/AGSD --- > condition/AGSDM -17755c23743 +17755c23773 < confer/S --- > confer/SB -17800a23789 +17797a23816 +> conform/ZB +17800a23820 > conformant -17986,17987c23975 +17909a23930 +> consensual +17986,17987c24007 < construct's < construct/CADVGS --- > construct/CADVGSM -17991,17992c23979 +17991,17992c24011 < constructionist's < constructionist/CS --- > constructionist/CSM -18122,18123c24109 +18122,18123c24141 < control's < control/CS --- > control/CSM -18151d24136 +18151d24168 < convenor/S -18169,18170c24154 +18169,18170c24186 < convert's < convert/AGSD --- > convert/AGSDM -18199,18200c24183 +18199,18200c24215 < cook's < cook/ADGS --- > cook/ADGSM -18206c24189 +18206c24221 < cookie/M --- > cookie/SM -18294,18295c24277 +18294,18295c24309 < cork's < cork/UDGS --- > cork/UDGSM -18375a24358,24359 +18375a24390,24391 > corrigibility/IM > corrigible/I -18389a24374 +18389a24406 > corruptibly/I -18467a24453 +18467a24485 > could've -18487,18488c24473 +18487,18488c24505 < countenance's < countenance/EGDS --- > countenance/EGDSM -18542,18543c24527 +18501a24519 +> counterfactual +18542,18543c24560 < coup's < coup/AS --- > coup/ASM -18545,18546c24529 +18545,18546c24562 < couple's < couple/CUDSG --- > couple/CUDSGM -18559a24543 +18559a24576 > court-martial/SGD -18581,18582c24565 +18581,18582c24598 < cover's < cover/AEUGDS --- > cover/AEUGDSM -18585,18586c24568 +18585,18586c24601 < covering's < coverings --- > covering/MS -18739,18740c24721 +18739,18740c24754 < creation's/K < creation/ASM --- > creation/ASMK -18816a24798 +18816a24831 > crimeware/M -18880,18881c24862 +18880,18881c24895 < cross's < cross/AUGTSD --- > cross/AUGTSDM -18925a24907,24908 +18925a24940,24941 > crowdfunded > crowdfunding -18972,18973c24955 +18972,18973c24988 < crust's < crust/ISDG --- > crust/ISDGM -18988,18989c24970 +18988,18989c25003 < crypt's < crypt/CS --- > crypt/CSM -18999a24981 +18999a25014 > cryptologist/MS -19000a24983 +19000a25016 > cryptosystem/S -19035a25019 +19035a25052 > cul-de-sac -19104,19105c25088 +19104,19105c25121 < cure's < cure/KZGBDRS --- > cure/KZGBDRSM -19119,19120c25102 +19119,19120c25135 < curl's < curl/UDGS --- > curl/UDGSM -19131,19133c25113 +19131,19133c25146 < current's < current/FAY < currents --- > current/FAYSM -19142,19143c25122 +19142,19143c25155 < cursive's < cursive/EAY --- > cursive/EAYM -19167,19168c25146 +19167,19168c25179 < cuss's < cuss/FEGSD --- > cuss/FEGSDM -19246c25224 +19211a25223 +> cyberbully/S +19215a25228 +> cybersex +19246c25259 < cysteine --- > cysteine/M -19536a25515 +19261,19262c25274,25275 +< d'Arezzo +< d'Estaing +--- +> d'Arezzo/M +> d'Estaing/M +19391a25405 +> datatype +19536a25551 > decertify/DSGNX -19759c25738 +19669a25685 +> defibrillation +19759c25775 < deliverable/U --- > deliverable/US -19935a25915 +19846a25863 +> deniability +19935a25953 > dequeue/DSG -19999a25980 +19999a26018 > designated/U -20196,20197c26177,26178 +20099c26118 +< dethrone/GL +--- +> dethrone/DSGL +20159a26179 +> dharma +20196,20197c26216,26217 < dialog/SM < dialogue/SM --- > dialog/SMGD > dialogue/SMRGD -20220a26202 +20220a26241 > diatomaceous -20481a26464 +20226a26248 +> dices/I +20481a26504 > disclose/DSG -20633a26617 +20536a26560 +> disguised/U +20557a26582 +> disinterested/PY +20603a26629 +> disposed/I +20606a26633,26634 +> disproportional +> disprove/B +20633a26662 > dissentious -20695,20696c26679 +20659a26689 +> distemper/M +20677a26708 +> distract/DG +20695,20696c26726 < district's < district/AS --- > district/ASM -20768c26751 +20768,20769c26798,26799 < djinn's +< do/SJRHZG --- > djinn/M -20830c26813 +> do/SJMRHZG +20830c26860 < dogie/M --- > dogie/SM -20850,20851c26833 +20850,20851c26880 < dole's < dole/FGDS --- > dole/FGDSM -20895a26878 +20896c26925,26926 +< done/AU +--- > donator/MS -20918,20919c26901 +> done/FAU +20918,20919c26948 < door's < door/IS --- > door/ISM -20975,20976c26957 +20942a26972,26973 +> dopier +> dopiest +20968a27000 +> dotcom/SM +20975,20976c27007 < double's < double/ADSG --- > double/ADSGM -21067,21068c27048 +21016a27048 +> downfield +21059a27092 +> dpi +21067,21068c27100 < draft's < draft/ASDG --- > draft/ASDGM -21282,21283c27262 +21282,21283c27314 < duct's < duct/CIFDG --- > duct/CIFDGM -21291,21292c27270 +21291,21292c27322 < due's < due/IS --- > due/ISM -21355,21356c27333 +21355,21356c27385 < duplicate's < duplicate/AGNDS --- > duplicate/AGNDSM -21367a27345 +21367a27397 > durian/SM -21468,21469c27446 +21438a27469 +> eMusic/M +21446a27478 +> earbud/SM +21468,21469c27500 < earth's < earth/UDYG --- > earth/UDYGM -21523,21524c27500 +21523,21524c27554 < echo's < echo/ADG --- > echo/ADGM -21587,21588c27563 +21565a27596 +> edamame +21587,21588c27618 < edit's < edit/ADGS --- > edit/ADGSM -21735,21736c27710 +21612c27642 +< eerie +--- +> eerie/RT +21733a27764 +> eldercare/M +21735,21736c27766 < elect's < elect/ASDGV --- > elect/ASDGVM -21820a27795 +21783a27814 +> electronica/M +21820a27852 > elicitor/MS -21864,21865c27839 +21864,21865c27896 < em's < em/S --- > em/SM -21992,21993c27966 +21961a27993,27994 +> emo/SM +> emoji +21992,21993c28025 < employ's < employ/ADGLS --- > employ/ADGLSM -22071a28045 +22071a28104 > encyclopaedia -22196a28171 +22091a28125 +> endocarditis +22130c28164 +< enforce/AGDS +--- +> enforce/LZGDRS +22196a28231 > enqueue/DSG -22508a28484,28485 +22432c28467 +< er +--- +> er/C +22508a28544,28545 > eschatological > eschatologist/SM -22556a28534 +22556a28594 > estoppel -22638c28616 +22638c28676 < euthanize --- > euthanize/DSG -22719a28698 +22719a28758 > exabyte/MS -22722,22724c28701,28704 +22722,22724c28761,28764 < exact/SPDRYTG < exacting/Y < exaction/M @@ -18082,52 +18248,60 @@ > exacta/S > exacting/YP > exaction/MS -22726a28707 +22726a28767 > exactor/MS -22947a28929 +22881a28923 +> exoplanet/MS +22947a28990 > experimentalism -23165,23166c29147 +23165,23166c29208 < face's < face/ACSDG --- > face/ACSDGM -23207,23208d29187 +23207,23208d29248 < faecal < faeces/M -23215c29194 +23215c29255 < faggoting's --- > faggot/SMG -23238,23239c29217 +23238,23239c29278 < faithful's < faithful/UPY --- > faithful/UPYM -23278,23279c29256 +23278,23279c29317 < fame's < fame/D --- > fame/DM -23418a29396 +23293a29332 +> fanboy/SM +23302a29342 +> fandom +23360a29401 +> fashionista/MS +23418a29460 > faux -23589,23590c29567 +23589,23590c29631 < fetter's < fetter/USGD --- > fetter/USGDM -23690,23691c29667 +23690,23691c29731 < figure's < figure/FEGSD --- > figure/FEGSDM -23699,23700c29675 +23699,23700c29739 < file's/KC < file/CAKGDS --- > file/CAKGDSM -23701a29677 +23701a29741 > filesystem/MS -23708,23711c29684,29685 +23708,23711c29748,29749 < filing's < filings < fill's @@ -18135,670 +18309,771 @@ --- > filing/SM > fill/AIDGSM -23715,23716c29689 +23715,23716c29753 < filling's < filling/S --- > filling/SM -23733,23734c29706 +23733,23734c29770 < filtrate's < filtrate/IGNDS --- > filtrate/IGNDSM -23745,23746c29717 +23745,23746c29781 < finance's < finance/ADSG --- > finance/ADSGM -23755,23756c29726 +23755,23756c29790 < fine's/F < fine/CAFTGDS --- > fine/CAFTGDSM -23776,23777c29746 +23776,23777c29810 < finish's < finish/ADSG --- > finish/ADSGM -24131,24132c30100 +24033a30067 +> flexion +24057a30092,30094 +> flipflop/S +> flipflopped +> flipflopping +24131,24132c30168 < flower's < flower/CSDG --- > flower/CSDGM -24155c30123 +24155c30191 < fluidized --- > fluidize/DSG -24185,24186c30153 +24185,24186c30221 < flux's < flux/ADG --- > flux/ADGM -24217,24218c30184,30185 +24217,24218c30252,30253 < focus's < focus/ADSG --- > foci > focus/ADSGM -24223,24224c30190 +24223,24224c30258 < fog's < fog/CS --- > fog/CSM -24238,24239c30204 +24238,24239c30272 < fold's < fold/IAUSGD --- > fold/IAUSGDM -24414,24415c30379 +24414,24415c30447 < forest's < forest/ACGDS --- > forest/ACGDSM -24464,24465c30428 +24464,24465c30496 < form's < form/CAIFDGS --- > form/CAIFDGSM -24585a30549,30550 +24585a30617,30618 > frack/DRGS > fracker/S -24609,24610c30574 +24609,24610c30642 < franchise's < franchise/EDSG --- > franchise/EDSGM -24633,24634c30597 +24633,24634c30665 < fraud's < fraud/S --- > fraud/SM -24639,24640c30602 +24639,24640c30670 < fray's < fray/CDGS --- > fray/CDGSM -24657a30620 +24657a30688 > freegan/S -24681,24682c30644 +24681,24682c30712 < freeze's < freeze/UAGS --- > freeze/UAGSM -24684c30646 +24684c30714 < freezing's --- > freezing/M -24733,24734c30695 +24728c30758 +< friend/SM +--- +> friend/SMU +24733,24734c30763 < friendly's < friendly/UTPR --- > friendly/UTPRM -24736d30696 +24736d30764 < frier/M -24752,24753c30712 +24752,24753c30780 < fringe's < fringe/IDSG --- > fringe/IDSGM -24771,24772c30730 +24771,24772c30798 < frock's < frock/CUS --- > frock/CUSM -24786,24787c30744 +24786,24787c30812 < front's < front/FSDG --- > front/FSDGM -24800,24801c30757 +24800,24801c30825 < frost's < frost/CSDG --- > frost/CSDGM -24855,24856c30811,30812 +24855,24856c30879,30880 < fucker/M! < fuckhead/S! --- > fucker/SM! > fuckhead/SM! -24860,24861c30816 +24860,24861c30884 < fuel's < fuel/ADGS --- > fuel/ADGSM -24941,24942c30896 +24941,24942c30964 < furl's < furl/UDGS --- > furl/UDGSM -24953d30906 +24953d30974 < furore/MS -24969,24970c30922 +24969,24970c30990 < fuse's/A < fuse/CAIFGDS --- > fuse/CAIFGDSM -25038,25039c30990 +25038,25039c31058 < gain's < gain/ADGS --- > gain/ADGSM -25051,25052c31002 +25051,25052c31070 < gale's < gale/AS --- > gale/ASM -25095a31046 +25095a31114 > gamify/NGDS -25125c31076 +25125c31144 < gaolbird/S --- > gaolbirds -25169,25170c31120 +25169,25170c31188 < gas's < gas/CS --- > gas/CSM -25180d31129 +25180d31197 < gasolene/M -25190a31140 +25190a31208 > gastroenterologist/M -25262c31212 +25262c31280 < geezer/M --- > geezer/MS -25297,25298c31247 +25297,25298c31315 < generation's/C < generation/ASM --- > generation/ASMC -25327c31276 +25327c31344 < genomic --- > genomic/S -25462a31412 +25353a31371 +> geocache/DSG +25361a31380 +> geoengineering +25462a31482 > gigabit/MS -25464a31415,31417 +25464a31485,31487 > gigajoule/MS > gigapixel/MS > gigawatt/MS -25560d31512 +25560c31583 < glamourize/DSG -25674c31626 +--- +> glamour/GMDS +25674c31697 < glycerine's --- > glycerine/M -25816,25817c31768 +25816,25817c31839 < gorge's < gorge/EDSG --- > gorge/EDSGM -25884,25885c31835 +25884,25885c31906 < grade's < grade/CADSG --- > grade/CADSGM -25905c31855 +25905c31926 < gram/MS --- > gram/KMS -25909d31858 +25909d31929 < gramme/SM -26063c32012,32013 +26063c32083,32084 < greybeard --- > grey/MDRTGSP > greybeard/SM -26066c32016 +26066c32087 < greyness --- > greyness/M -26246,26247d32195 +26246,26247d32266 < guerilla's < guerillas -26403,26404c32351 +26403,26404c32422 < habit's < habit/ISB --- > habit/ISBM -26432,26436d32378 +26422a32441 +> hacktivist/S +26432,26436d32450 < haemoglobin's < haemophilia/M < haemorrhage/DSMG < haemorrhoid/S < haemorrhoids/M -26555,26556c32497 +26555,26556c32569 < hand's < hand/UDGS --- > hand/UDGSM -26702,26703c32643 +26702,26703c32715 < harness's < harness/UDSG --- > harness/UDSGM -26725a32666 -> hashtag/S -26888,26889c32829 +26725a32738 +> hashtag/SM +26804a32818 +> hazmat +26888,26889c32902 < hearse's < hearse/AS --- > hearse/ASM -26915,26916c32855 +26915,26916c32928 < heat's < heat/ADGS --- > heat/ADGSM -27167c33106 +27167c33179 < hexane --- > hexane/SM -27227a33167 +27227a33240 > hijab/S -27256,27257c33196 +27256,27257c33269 < hinge's < hinge/UDSG --- > hinge/UDSGM -27273a33213 +27273a33286 > hippopotami -27276,27277c33216 +27274a33288 +> hippy +27276,27277c33290 < hire's < hire/AGDS --- > hire/AGDSM -27302,27303c33241 +27302,27303c33315 < hitch's < hitch/UDSG --- > hitch/UDSGM -27512,27513c33450 +27438a33451 +> homewrecker/SM +27442a33456,33457 +> homier +> homiest +27506a33522 +> hoodie/MS +27512,27513c33528 < hook's < hook/UDSG --- > hook/UDSGM -27575,27576c33512 +27575,27576c33590 < horse's < horse/UDSG --- > horse/UDSGM -27666,27667c33602 +27647a33662 +> hotkey/S +27666,27667c33681 < house's < house/ADSG --- > house/ADSGM -27841c33776 +27801a33816 +> humoresque +27841c33856 < hurrah's --- -> hurrah/M -27875d33809 +> hurrah/MGDS +27875d33889 < hyaena/SM -27883,27884c33817 +27883,27884c33897 < hydrate's < hydrate/CGNDS --- > hydrate/CGNDSM -28017c33950 +27911a33925 +> hydrolyses +27956c33970 +< hyperlink/SM +--- +> hyperlink/SMGD +28017c34031,34032 < iPod/M --- +> iPad/MS > iPod/MS -28029,28030c33962 +28029,28030c34044 < ice's < ice/CDSG --- > ice/CDSGM -28105a34038 +28105a34120 > idolator/SM -28227c34160 +28227c34242 < immerse/XDSGN --- > immerse/XDSGNV -28513c34446 +28513c34528 < inbound --- > inbound/s -28531,28532c34464,34465 +28531,28532c34546,34547 < incentive's < incentive/ES --- > incentive/ESM > incentivize/SDG -28560,28561c34493 +28560,28561c34575 < incline's < incline/EGDS --- > incline/EGDSM -28590,28591c34522 +28590,28591c34604 < incorrigibility/M < incorrigible --- > incorrigibleness -28593d34523 +28593d34605 < incorruptibly -28650a34581 +28597a34610,34611 +> incrementalism +> incrementalist/SM +28650a34665 > indices -28812d34742 +28812d34826 < inflexion/SM -28981,28982c34911 +28981,28982c34995 < insert's < insert/AGSD --- > insert/AGSDM -29204a35134 +29204a35218 > intermediacy/S -29206c35136,35138 +29206c35220,35222 < intermediate/SMY --- > intermediate/SMYPGD > intermediation/SE > intermediator/SM -29216a35149 +29216a35233 > intern/GDL -29266a35200 +29266a35284 > interruptible/U -29272a35207,35210 +29272a35291,35294 > intersex > intersexual/MS > intersexualism > intersexuality -29446c35384 +29312a35335 +> intracranial +29446c35469 < ironic --- > ironic/U -29447a35386 +29447a35471 > ironically/U -29724c35663 +29478a35503 +> irreligion +29724c35749 < jewellery's --- > jewellery/M -29733,29734c35672 +29733,29734c35758 < jig's < jig/AS --- > jig/ASM -29736,29737c35674 +29736,29737c35760 < jigger's < jigger/ASDG --- > jigger/ASDGM -29799,29800c35736 +29742a35766 +> jihadist/SM +29799,29800c35823 < join's < join/AFDSG --- > join/AFDSGM -29803,29804c35739 +29803,29804c35826 < joint's < joint/EGSD --- > joint/EGSDM -29869,29870c35804,35805 +29869,29870c35891,35892 < judge's < judge/ADSG --- > judge/ADSGM > judgement/MS -30035a35971,35972 +29962a35985 +> kabbalah +30031a36055 +> keybinding/S +30035a36060,36061 > keylogger/MS > keylogging/MS -30066c36003 +30066c36092 < kiddie/M --- > kiddie/SM -30102,30103c36039 +30102,30103c36128 < kind's < kind/UPRYT --- > kind/UPRYTM -30262,30263c36198 +30174a36200 +> kleptocracy +30262,30263c36288 < kraut's < kraut/S! --- > kraut/MS! -30283,30284c36218 +30283,30284c36308 < label's < label/ASDG --- > label/ASDGM -30302,30303c36236 +30302,30303c36326 < lace's < lace/UGDS --- > lace/UGDSM -30497,30498c36430 +30497,30498c36520 < latch's < latch/UDSG --- > latch/UDSGM -30637c36569 +30637c36659 < learning's --- > learning/M -30643,30644c36575 +30643,30644c36665 < leash's < leash/UDSG --- > leash/UDSGM -30665a36597 +30665a36687 > lector/MS -30700c36632 +30700c36722 < legation's/AC --- > legation/ACM -30927,30928c36859 +30927,30928c36949 < light's/C < light/CASTGD --- > light/CASTGDM -30938c36869 +30938c36959 < lighting's --- > lighting/M -30981,30982c36912 +30981,30982c37002 < limit's < limit/CSZGDR --- > limit/CSZGDRM -30986c36916 +30986c37006 < limiter's --- > limiter/M -30990a36921,36923 +30990a37011,37013 > limnological > limnologist/MS > limnology/M -31031c36964 +31031c37054 < linguini's --- > linguini/M -31034c36967 +31034c37057 < linguistically --- > linguistical/Y -31047,31048c36980 +31047,31048c37070 < lint's < lint/CDSG --- > lint/CDSGM -31058a36991 +31058a37081 > lepidopterist/SM -31151,31152c37084 +31151,31152c37174 < liver's < liver/S --- > liver/MS -31170,31171c37102 +31170,31171c37192 < load's < load/AUGSD --- > load/AUGSDM -31211,31212c37142 +31211,31212c37232 < location's/A < location/ESM --- > location/ESMA -31291,31292c37221 +31216a37237 +> locavore/SM +31262a37284 +> login/S +31267a37290,37291 +> logoff/S +> logon/S +31268a37293 +> logout/S +31276a37302 +> lolcat +31291,31292c37317 < long's < long/KDSTG --- > long/KDSTGM -31379,31380c37308 +31320a37346 +> lookup +31323a37350 +> loonie/M +31379,31380c37406 < louse's < louse/CDSG --- > louse/CDSGM -31639a37568 +31629a37656,37658 +> madrasa/S +> madrassah +> madrassahs +31639a37669 > mage/SM -31741,31742c37670 +31686a37717 +> magus/M +31741,31742c37772 < make's/A < make/UAGS --- > make/UAGSM -31806a37735 +31806a37837 > malware/MS -31822,31823c37751 +31822,31823c37853 < man's/F < man/USY --- > man/USYMF -31924,31925c37852 +31924,31925c37954 < mantle's < mantle/EGDS --- > mantle/EGDSM -31940,31941c37867 +31940,31941c37969 < map's < map/AS --- > map/ASM -32061,32062c37987 +32061,32062c38089 < mask's < mask/UDSG --- > mask/UDSGM -32084,32085c38009 +32084,32085c38111 < master's < master/ADGS --- > master/ADGSM -32230c38154 +32230c38256 < meanie/M --- > meanie/MS -32246,32247c38170 +32246,32247c38272 < measure's < measure/ADSG --- > measure/ADSGM -32317,32318c38240 +32315a38341 +> megachurch/MS +32317,32318c38343 < megadeath/M < megadeaths --- > megadeath/SM -32320c38242 +32320c38345 < megajoules --- > megajoule/SM -32329c38251 +32329c38354 < megapixel/S --- > megapixel/MS -32361,32362c38283 +32332a38358 +> meh +32361,32362c38387 < melt's < melt/ADSG --- > melt/ADSGM -32365,32366c38286 +32365,32366c38390 < member's < member/EAS --- > member/EASM -32386c38306 +32386c38410 < men --- > men/M -32708a38629 +32647a38672 +> microloan/MS +32708a38734 > might've -32717a38639 +32717a38744 > migrator/SM -32760a38683 +32733a38761 +> milf/MS +32761c38789,38790 +< millennial +--- > millennia -32777d38699 +> millennial/MS +32777d38805 < millionnaire/M -32806,32807c38728 +32806,32807c38834 < mind's < mind/ADRSZG --- > mind/ADRSZGM -32934a38856 +32934a38962 > miscommunication/S -32991a38914 +32991a39020 > misjudgement/MS -33027,33028c38950 +33027,33028c39056 < miss's < miss/EDSGV --- > miss/EDSGVM -33051,33052c38973 +33051,33052c39079 < mist's < mist/CDRSZG --- > mist/CDRSZGM -33056c38977 +33056c39083 < mister's --- > mister/M -33083c39004 +33083c39110 < mitigation/M --- > mitigation/MS -33107,33108c39028 +33107,33108c39134 < mob's < mob/CS --- > mob/CSM -33448,33449c39368 +33448,33449c39474 < mortgage's < mortgage/AGDS --- > mortgage/AGDSM -33471,33472c39390 +33471,33472c39496 < mote's < mote/KCXSVN --- > mote/KCXSVNM -33539,33540c39457 +33539,33540c39563 < mounting's < mountings --- > mounting/MS -33784a39702 +33630a39654 +> muggle/MS +33654a39679 +> multi +33679a39705 +> multiplayer/M +33702a39729 +> multiverse/SM +33784a39812 > must've -33887,33888c39805 +33831a39860 +> myocardium +33887,33888c39916 < name's < name/AGDS --- > name/AGDSM -33963c39880 +33963c39991 < native/MS --- > native/MSY -33970,33971c39887 +33970,33971c39998 < natural's < natural/UPY --- > natural/UPYM -33979,33980c39895 +33979,33980c40006 < nature's < nature/CS --- > nature/CSM -34133,34134c40048 +34109a40136 +> neocon/S +34133,34134c40160 < nerve's < nerve/UDSG --- > nerve/UDSGM -34169,34171c40083,40085 +34145a40172 +> netbook/MS +34169,34171c40196,40198 < neurone/S < neurophysiology < neuroscience @@ -18806,898 +19081,1037 @@ > neurophysiology/M > neuroscience/MS > neuroscientist/MS -34175a40090 +34175a40203 > neurosurgical -34275c40190 +34258a40287 +> nigga/S +34260a40290 +> niggaz +34275c40305 < nightie/M --- > nightie/SM -34388,34389c40303 +34388,34389c40418 < nomination's/A < nomination/CSM --- > nomination/CSMA -34755,34756c40669 +34539a40569 +> nonissue +34755,34756c40785 < note's < note/FCSDG --- > note/FCSDGM -34840,34841c40753 +34840,34841c40869 < number's < number/ASDG --- > number/ASDGM -35104a41017 +35104a41133 > octopi -35137,35138c41050 +35137,35138c41166 < offensive's < offensive/IYP --- > offensive/IYPM -35219d41130 +35219d41246 < oleomargarin/M -35226a41138 +35226a41254 > oligo -35345c41257 +35345c41373 < oppose/DSG --- > oppose/DSGRB -35452,35453c41364 +35401a41430 +> orc/S +35452,35453c41481 < orient's < orient/AEDGS --- > orient/AEDGSM -35913c41824 +35913c41941 < oversize/D --- > oversize -36031,36032c41942 +35944a41973,41974 +> overthink/SG +> overthought +36031,36032c42061 < pack's < pack/UADSG --- > pack/UADSGM -36034,36035c41944 +36034,36035c42063 < package's < package/AGDS --- > package/AGDSM -36041c41950 +36041c42069 < packing's --- > packing/M -36056,36059d41964 +36056,36059d42083 < paederast/S < paediatrician's < paediatricians < paediatrics/M -36290a42196,42197 +36117a42142,42143 +> palazzi +> palazzo +36290a42317,42318 > parallelization/SM > parallelize/SGD -36291a42199 +36291a42320 > paralyses -36377a42286 +36324a42354 +> parasailing +36377a42408 > parkour -36403d42311 +36403d42433 < parrakeet/MS -36418,36419c42326 +36418,36419c42448 < part's < part/CDSG --- > part/CDSGM -36445,36447c42352 +36445,36447c42474 < partition's < partition/ADG < partitions --- > partition/ADGMS -36449d42353 +36449d42475 < partizan/SM -36621,36622c42525 +36621,36622c42647 < pay's < pay/ASGBL --- > pay/ASGBLM -37093a42997 +37093a43119 > petabyte/MS -37102c43006 +37102c43128 < petitioner/M --- > petitioner/MS -37221a43126,43127 +37221a43248,43249 > phlebotomist/SM > phlebotomize/SGD -37228a43135 +37228a43257 > pho -37264a43172 +37264a43294 > phosphorylate/DSGN -37310,37311c43218 +37265a43296 +> photobomb/DGS +37305a43337,43338 +> phototropic +> phototropism +37310,37311c43343 < phrase's < phrase/AGDS --- > phrase/AGDSM -37316d43222 +37316d43347 < phrenetic -37374c43280 +37358a43390 +> picante +37374c43406 < picky/TR --- > picky/TRP -37469,37470c43375 +37469,37470c43501 < pine's < pine/AGDS --- > pine/AGDSM -37596,37597c43501 +37596,37597c43627 < place's < place/EAGLDS --- > place/EAGLDSM -37630a43535 +37630a43661 > plaintext -37636,37637c43541 +37636,37637c43667 < plane's < plane/CGDS --- > plane/CGDSM -37786,37787c43690 +37671a43702 +> plastique +37689a43721 +> platys +37786,37787c43818 < ploy's < ploy/S --- > ploy/SM -37792,37793c43695 +37792,37793c43823 < plug's < plug/US --- > plug/USM -37796a43699 +37796a43827 > plugin/MS -37987c43890 +37804a43836,43837 +> plummer +> plummest +37849c43882 +< podcast +--- +> podcast/SM +37953a43987 +> polyamory/S +37987c44021 < polypeptide/S --- > polypeptide/MS -38106,38107c44009 +37991a44026 +> polys +38106,38107c44141 < port's < port/CAEGDS --- > port/CAEGDSM -38134,38135c44036 +38134,38135c44168 < pose's/A < pose/CAKEGDS --- > pose/CAKEGDSM -38140,38141c44041 +38140,38141c44173 < position's/KC < position/ACKES --- > position/ACKESM -38260,38261c44160 +38170a44203 +> postcolonial +38260,38261c44293 < pound's < pound/KDSG --- > pound/KDSGM -38266a44166 +38266a44299 > poutine/S -38291d44190 +38291d44323 < practise's -38451a44351 +38447a44480 +> prehistorian/S +38450a44484 +> prehuman +38451a44486 > prejudgement/MS -38568,38569c44468 +38484a44520 +> prenup/SM +38568,38569c44604 < press's < press/ACGSD --- > press/ACGSDM -38638,38639c44537 +38638,38639c44673 < price's < price/AGDS --- > price/AGDSM -38756,38757c44654 +38756,38757c44790 < process's < process/AGDS --- > process/AGDSM -38780,38781c44677 +38780,38781c44813 < produce's < produce/AZGDRS --- > produce/AZGDRSM -38805a44702 +38805a44838 > profiler/SM -38835a44733 +38835a44869 > programmatically -38891a44790,44791 +38891a44926,44927 > pronate/DSGN > pronator/MS -38951c44851 +38951c44987 < proprietorship/M --- > proprietorship/MS -39039a44940 +39039a45076 > provender/M -39095a44997 +39095a45133 > pseudorandom/Y -39564a45467 +39380a45419 +> pwn/SGD +39564a45604 > quinoa -39581,39582c45484 +39581,39582c45621 < quire's < quire/IAS --- > quire/IASM -39614,39615c45516 +39614,39615c45653 < quote's < quote/UDSG --- > quote/UDSGM -39653,39654c45554 +39653,39654c45691 < racoon's < racoons --- > racoon/MS -39738,39739c45638 +39738,39739c45775 < rail's < rail/CGDS --- > rail/CGDSM -39816,39817c45715 +39816,39817c45852 < range's < range/CGDS --- > range/CGDSM -39873a45772,45773 +39873a45909,45910 > rasterization/M > rasterize/SGDR -39925,39926c45825 +39925,39926c45962 < ravel's < ravel/UDSG --- > ravel/UDSGM -40036a45936 +40036a46073 > recency -40140a46041 +40140a46178 > recurse/DGSV -40141a46043 +40141a46180 > recuse/DGS -40204,40205c46106 +40204,40205c46243 < reel's < reel/UGDS --- > reel/UGDSM -40208a46110 +40208a46247 > refactor/SMDG -40244d46145 +40244d46282 < reflexion/SM -40659d46559 +40295a46334 +> regex/M +40420a46460 +> relist/SGD +40491a46532 +> reorg/DSG +40659d46699 < resizing -40829c46729 +40829c46869 < reverie/M --- > reverie/MS -40895a46796,46798 +40895a46936,46938 > rheumatological > rheumatology/M > rheumatologist/SM -40944,40945c46847 +40900a46944 +> rhinovirus/MS +40944,40945c46988 < ride's < ride/CZGS --- > ride/CZGSM -41104,41105c47006 +41104,41105c47147 < robe's < robe/EGDS --- > robe/EGDSM -41132,41133c47033 +41132,41133c47174 < rogue's < rogue/KS --- > rogue/KSM -41185a47086 +41185a47227 > rootkit/MS -41258,41259c47159 +41258,41259c47300 < route's < route/ADSG --- > route/ADSGM -41415a47316 +41330a47372 +> rugrat/SM +41415a47458 > sabre/MS -41447,41448c47348 +41447,41448c47490 < saddle's < saddle/UDSG --- > saddle/UDSGM -41463,41464c47363 +41463,41464c47505 < safe's < safe/UYTPR --- > safe/UYTPRM -41544,41545c47443 +41544,41545c47585 < salt's < salt/CTGDS --- > salt/CTGDSM -41765,41766c47663 +41765,41766c47805 < say's < say/USG --- > say/USGM -41787,41788c47684 +41787,41788c47826 < scale's < scale/ACSDG --- > scale/ACSDGM -41806,41807c47702 +41801a47840 +> scammer/S +41806,41807c47845 < scan's < scan/AS --- > scan/ASM -41880,41881c47775 +41861a47900 +> scattershot +41880,41881c47919 < schedule's < schedule/ADSG --- > schedule/ADSGM -41914c47808 +41914c47952 < schnaps's --- > schnaps/M -41949c47843 +41949c47987 < schrod's --- > schrod/SM -41998a47893 +41998a48037 > scot-free -42016,42017c47911 +42016,42017c48055 < scramble's < scramble/UGDS --- > scramble/UGDSM -42055,42056c47949 +42055,42056c48093 < screw's < screw/UDSG --- > screw/UDSGM -42065,42066c47958 +42065,42066c48102 < scribe's < scribe/IKCGSD --- > scribe/IKCGSDM -42170,42171c48062 +42170,42171c48206 < seal's < seal/AUSDG --- > seal/AUSDGM -42204,42205c48095 +42204,42205c48239 < seat's < seat/UGDS --- > seat/UGDSM -42288,42289c48178 +42288,42289c48322 < seed's < seed/AGDS --- > seed/AGDSM -42359c48248,48249 +42359c48392,48393 < self/M --- > self/MG > selfie/S -42361a48252,48253 +42361a48396,48397 > selfism > selfist/S -42365,42367c48257,48258 +42365,42367c48401,48402 < sell's < sell/AZGRS < seller's --- > sell/AZGRSM > seller/M -42524c48415 +42524c48559 < seraphim's --- > seraphim/M -42558,42559c48449 +42558,42559c48593 < serve's/AF < serve/FACGDS --- > serve/FACGDSM -42574,42575c48464 +42574,42575c48608 < serving's < servings --- > serving/MS -42594,42595c48483 +42594,42595c48627 < settle's < settle/AUGDS --- > settle/AUGDSM -42647,42648c48535 +42622c48654 +< sewn +--- +> sewn/A +42635a48668 +> sexting +42647,42648c48680 < shackle's < shackle/UGDS --- > shackle/UGDSM -42716,42717c48603 +42716,42717c48748 < shape's < shape/AGDS --- > shape/AGDSM -42851,42852c48737 +42791a48823,48824 +> sheikh/M +> sheikhs +42825a48859 +> shiitake/S +42851,42852c48885 < ship's < ship/ALS --- > ship/ALSM -42883,42885c48768 +42883,42885c48916 < shit's < shit/S! < shite/S! --- > shit/MS! -42887,42888c48770,48771 +42887,42888c48918,48919 < shithead/S! < shitload/! --- > shithead/MS! > shitload/MS! -42891c48774 +42891c48922 < shitty/RT! --- > shitty/TR! -42976a48860 +42976a49008 > should've -43008c48892 +43008c49040 < showtime --- > showtime/MS -43090,43091c48974 +43076a49109,49110 +> sicced +> siccing +43090,43091c49124 < side's < side/AGDS --- > side/AGDSM -43143,43144c49026 +43143,43144c49176 < sign's < sign/AFCGDS --- > sign/AFCGDSM -43163,43164c49045 +43163,43164c49195 < signing's/C < signings --- > signing/MCS -43328c49209 +43203a49235 +> sim/S +43328c49360 < size/MGBDRS --- > size/AMGBDRS -43368,43369c49249 +43368,43369c49400 < skill's < skill/CSD --- > skill/CSDM -43724,43726c49604 +43634a49666 +> slumdog/SM +43669a49702 +> smartwatch/MS +43724,43726c49757 < smoulder's < smouldered < smoulders --- > smoulder/GSMD -43752,43753c49630 +43752,43753c49783 < snap's < snap/US --- > snap/USM -43767,43768c49644,49646 +43767,43768c49797,49799 < snarl's < snarl/USDG --- > snarkily > snarky/TR > snarl/USDGM -44012,44013c49890 +44012,44013c50043 < solute's < solute/XN --- > solute/XNM -44015c49892 +44015c50045 < solution's/EA --- > solution/EAM -44021c49898 +44021c50051 < solver's --- > solver/M -44041a49919 +44041a50072 > sommelier/SM -44062c49940 +44062c50093 < sonofabitch --- > sonofabitch/! -44177,44178c50055 +44133a50165 +> soulmate/S +44142a50175 +> soundscape/S +44177,44178c50210 < sow's < sow/ASGD --- > sow/ASGDM -44346a50224 +44346a50379 > spelled -44348a50227 +44348a50382 > spelt -44371a50251 +44371a50406 > spick/S! -44383c50263 +44383c50418 < spik/S --- > spik/S! -44413,44414c50293 +44413,44414c50448 < spire's < spire/IFAS --- > spire/IFASM -44416,44417c50295 +44416,44417c50450 < spirit's < spirit/ISGD --- > spirit/ISGDM -44475,44476c50353 +44475,44476c50508 < spoil's < spoil/CSDRZG --- > spoil/CSDRZGM -44549,44550c50426 +44549,44550c50581 < spray's < spray/ASDG --- > spray/ASDGM -44688,44689c50564 +44668a50700 +> sriracha +44688,44689c50720 < staff's < staff/ASDG --- > staff/ASDGM -44729,44730c50604 +44729,44730c50760 < stall's < stall/SDG --- > stall/SDGM -44871a50746 +44772a50803 +> starburst/S +44799a50831 +> startup/MS +44871a50904 > steampunk -44985,44986c50860 +44985,44986c51018 < still's < still/ITGSD --- > still/ITGSDM -45024,45025c50898 +45024,45025c51056 < stitch's < stitch/ADSG --- > stitch/ADSGM -45030,45031c50903 +45030,45031c51061 < stock's < stock/AGSD --- > stock/AGSDM -45090,45091c50962 +45073c51103 +< stone/DSMG +--- +> stone/DRSMZG +45075a51106 +> stoner/M +45090,45091c51121 < stop's < stop/US --- > stop/USM -45105,45106c50976 +45105,45106c51135 < store's < store/ADSG --- > store/ADSGM -45148,45149c51018 +45148,45149c51177 < strain's < strain/FADSG --- > strain/FADSGM -45164,45165c51033 +45164,45165c51192 < strap's < strap/US --- > strap/USM -45290,45291c51158 +45290,45291c51317 < structure's < structure/AGDS --- > structure/AGDSM -45330,45331c51197 +45330,45331c51356 < study's < study/AGDS --- > study/AGDSM -45368,45369c51234 +45368,45369c51393 < style's < style/ADSG --- > style/ADSGM -45455,45456c51320 +45455,45456c51479 < submission's < submission/AS --- > submission/ASM -45872,45873c51736 +45474a51498 +> subprime +45872,45873c51896 < surface's < surface/AGDS --- > surface/AGDSM -45918,45919c51781 +45918,45919c51941 < survey's < survey/ADGS --- > survey/ADGSM -46106a51969 +46106a52129 > syllabi -46160c52023 +46153c52176 +< syn +--- +> syn/H +46160c52183 < synch/GMD --- > synch/GMDS -46167d52029 +46167d52189 < synchs -46178a52041,52043 +46178a52201,52203 > synesthesia > synesthete/S > synesthetic -46203,46204c52068,52069 +46188a52214 +> synovial +46197a52224 +> synths +46203,46204c52230,52231 < sysadmin/S < sysop/S --- > sysadmin/MS > sysop/MS -46363,46364c52228 +46363,46364c52390 < tangle's < tangle/UDSG --- > tangle/UDSGM -46632a52497,52498 +46436a52463 +> taser/GMDS +46519a52547 +> tealight/MS +46632a52661,52662 > teleport/SGD > teleportation -46675,46676c52541 +46675,46676c52705 < template's < template/S --- > template/SM -46752a52618 +46752a52782 > terabit/MS -46753a52620,52621 +46753a52784,52785 > terahertz/M > terapixel/MS -46756a52625 +46756a52789 > teriyaki -46806,46807c52675 +46806,46807c52839 < test's/AFK < test/AKFCDGS --- > test/AKFCDGSM -46817a52686 +46817a52850 > testcase/MS -46831a52701 +46831a52865 > testsuite/MS -46845a52716 +46844c52878 +< text/FMS +--- +> text/FMSDG +46845a52880 > textbox/SM -46925a52797 +46925a52961 > theremin/MS -46999c52871 +46999c53035 < thinking's --- > thinking/M -47095,47096c52967 +47095,47096c53131 < throne's < throne/CDS --- > throne/CDSM -47188,47189c53059 +47188,47189c53223 < tie's < tie/AUSD --- > tie/AUSDM -47213,47214c53083 +47213,47214c53247 < till's < till/EDRZGS --- > till/EDRZGSM -47303,47304c53172 +47303,47304c53336 < tire's < tire/AGDS --- > tire/AGDSM -47433,47434c53301 +47433,47434c53465 < tone's < tone/IZGDRS --- > tone/IZGDRSM -47453,47455c53320,53321 +47453,47455c53484,53485 < tool's < tool/ADGS < toolbar --- > tool/ADGSM > toolbar/MS -47540,47541c53406 +47540,47541c53570 < tort's < tort/FEAS --- > tort/FEASM -47644a53510 +47644a53674 > traceur/SM -47657,47658c53523 +47657,47658c53687 < tract's < tract/CEKFAS --- > tract/CEKFASM -47755a53621 +47755a53785 > transfect/DSMG -47774a53641,53642 +47774a53805,53806 > transgenderism > transgene/MS -47807,47808c53675 +47807,47808c53839 < transmission's < transmission/AS --- > transmission/ASM -47928,47929c53795 +47928,47929c53959 < trench's < trench/AIGSD --- > trench/AIGSDM -47951c53817 +47951c53981 < triage/M --- > triage/MGS -47976,47977c53842 +47976,47977c54006 < tribute's < tribute/FS --- > tribute/FSM -47997a53863 +47997a54027 > trifecta/S -48165,48166c54031 +48165,48166c54195 < trust's/E < trust/IESGD --- > trust/IESGDM -48180,48181c54045 +48178a54208 +> truthiness +48180,48181c54210 < try's < try/AGDS --- > try/AGDSM -48271a54136 +48271a54301 > turducken -48334a54200 +48334a54365 > tweep/S -48371,48372c54237 +48345a54377 +> twerk/SDG +48371,48372c54403 < twist's < twist/USDG --- > twist/USDGM -48396,48397c54261 +48393a54425 +> tympanic +48396,48397c54428 < type's < type/AGDS --- > type/AGDSM -48869a54734 +48784a54816 +> unfriend/GD +48869a54902 > unlikeable -49163,49164c55028 +49163,49164c55196 < usual's < usual/UY --- > usual/UYM -49211c55075 +49211c55243 < vagina/M --- > vagina/MS -49249,49250c55113 +49249,49250c55281 < value's < value/CAGSD --- > value/CAGSDM -49292,49293c55155 +49275a55307 +> vape/GDS +49292,49293c55324 < variant's < variant/IS --- > variant/ISM -49356,49357c55218 +49356,49357c55387 < veil's < veil/UDGS --- > veil/UDGSM -49368,49369c55229 +49368,49369c55398 < velour's < velours's --- > velour/MS -49398,49399c55258 +49398,49399c55427 < vent's < vent/DGS --- > vent/DGSM -49435,49436c55294 +49435,49436c55463 < verge's < verge/FDSG --- > verge/FDSGM -49478a55337 +49478a55506 > vertices -49488,49489c55347 +49488,49489c55516 < vest's < vest/ILDGS --- > vest/ILDGSM -49681,49682c55539 +49681,49682c55708 < visit's < visit/ASGD --- > visit/ASGDM -49772a55630,55632 +49760a55787 +> voicemail/M +49772a55800,55802 > volcanological > volcanologist/MS > volcanology/M -49807,49808c55667 +49807,49808c55837 < vote's < vote/CGVDS --- > vote/CGVDSM -50148a56008 +49840a55870 +> vuvuzela/MS +49844a55875 +> wack/RTS +50148a56180 > weaponize/DSG -50215,50216c56075 +50181a56214,56215 +> webinar/SM +> webisode/MS +50215,50216c56249 < weigh's < weigh/AGD --- > weigh/AGDM -50260,50261d56118 +50260,50261d56292 < werwolf/M < werwolves -50555,50556c56412 +50555,50556c56586 < wind's < wind/UASG --- > wind/UASGM -50626,50627c56482 +50602a56633 +> wingnut/SM +50626,50627c56657 < wire's < wire/AGDS --- > wire/AGDSM -50728c56583 +50728c56758 < women --- > women/M -50794,50796c56649,56650 +50794,50796c56824,56825 < wop/S! < word's < word/AJDSG --- > wop/MS! > word/AJDSGM -50801c56655 +50801c56830 < wording's --- > wording/M -50808,50809c56662 +50808,50809c56837 < work's < work/ADJSG --- > work/ADJSGM -50824c56677 +50824c56852 < working's --- > working/M -50884,50885c56737 +50884,50885c56912 < worthy's < worthy/UPRT --- > worthy/UPRTM -50903,50904c56755 +50903,50904c56930 < wrap's < wrap/US --- > wrap/USM -50945c56796 +50945c56971 < writing's --- > writing/M -51118,51119c56969 +51118,51119c57144 < yoke's < yoke/UGDS --- > yoke/UGDSM -51212,51213c57062 +51212,51213c57237 < zip's < zip/US --- > zip/USM -51228,51229c57077 +51222a57247 +> zlotys +51228,51229c57253 < zone's < zone/AGDS --- diff --git a/extensions/spellcheck/locales/en-US/hunspell/en-US.dic b/extensions/spellcheck/locales/en-US/hunspell/en-US.dic index 267b6149e6c8..0c5587190e08 100644 --- a/extensions/spellcheck/locales/en-US/hunspell/en-US.dic +++ b/extensions/spellcheck/locales/en-US/hunspell/en-US.dic @@ -1,4 +1,4 @@ -57464 +57640 0/nm 0th/pt 1/n1 @@ -16653,6 +16653,7 @@ abdication/M abdomen/SM abdominal abduct/DSG +abductee/MS abduction/SM abductor/MS abeam @@ -17203,7 +17204,7 @@ advocator/SM advt adware/MS adz/MS -adze/M +adze/SM aegis/M aeolian aeon/SM @@ -17212,7 +17213,7 @@ aeration/M aerator/SM aerial/SMY aerialist/MS -aerie/M +aerie/MS aerobatic/S aerobatics/M aerobic/S @@ -17231,7 +17232,7 @@ aeronautics/M aerosol/MS aerospace/M aery/TRSM -aesthete/S +aesthete/MS aesthetic/S aesthetically aestheticism/M @@ -17844,7 +17845,7 @@ analogousness/M analogue/SM analogy/SM analysand/MS -analyses +analyses/A analysis/AM analyst/SM analytic @@ -19084,6 +19085,7 @@ awaken/AGDS awakened/U awakening/SM award/GMDS +awardee/S aware/UPT awareness/UM awarer @@ -19535,6 +19537,7 @@ baseman/M basemen basement/CMS baseness/M +baser bash/GMDS bashful/PY bashfulness/M @@ -19781,6 +19784,7 @@ befuddle/GDSL befuddlement/M beg/S began +begat beget/S begetter/S begetting @@ -20013,6 +20017,7 @@ bhaji bi/SMRZ biannual/Y bias/GMDS +biased/U biathlon/SM bib/SM bible/MS @@ -20092,6 +20097,7 @@ bilingual/SMY bilingualism/M bilious/P biliousness/M +bilirubin bilk/SZGDR bilker/M bill/SBJGMD @@ -20211,8 +20217,9 @@ birdying birefringence birefringent biretta/SM -birth/GMD +birth/ZGMDR birthday/MS +birther/M birthmark/MS birthplace/MS birthrate/MS @@ -20237,6 +20244,7 @@ bitch/GMDS bitchily bitchiness/M bitchy/PRT +bitcoin/SM bite/RSMZ biter/M biting/Y @@ -20260,7 +20268,7 @@ biyearly biz/M bizarre/YP bk -bl/D +bl/DG blab/SM blabbed blabber/DGS @@ -20673,6 +20681,7 @@ bonemeal boner/M boneshaker/S boney +boneyard bonfire/MS bong/SGMD bongo/MS @@ -20683,6 +20692,7 @@ bonk/SZGD bonnet/MS bonnie bonny/TR +bonobo/MS bonsai/MS bonus/MS bony/PTR @@ -20891,6 +20901,7 @@ boyishness/M boyscout boysenberry/SM bozo/MS +bpm bps bra/SM brace/MZGDRS @@ -21247,6 +21258,7 @@ buckskin/MS buckteeth bucktooth/MD buckwheat/M +buckyball/SM bucolic/MS bucolically bud/SM @@ -21281,6 +21293,7 @@ builder/M building/M buildup/SM built/AI +builtin bulb/MS bulbous bulge/DSMG @@ -21412,6 +21425,7 @@ burnous/MS burnout/MS burnt/U burp/MDGS +burqa/S burr/MDGS burrito/MS burro/SM @@ -21476,6 +21490,7 @@ butte/SM butted/A butter/MDG butterball/MS +buttercream buttercup/SM butterfat/M butterfingered @@ -21500,6 +21515,7 @@ buyout/SM buzz/MDRSZG buzzard/MS buzzer/M +buzzkill/SM buzzword/SM bx bxs @@ -21562,6 +21578,7 @@ cactus/M cad/SM cadaver/SM cadaverous +caddie/MDS caddish/YP caddishness/M caddy/GDSM @@ -21586,6 +21603,8 @@ caffeine/M caftan/MS cage/DSMG cagey +cagier +cagiest cagily caginess/M cagoule/S @@ -21903,6 +21922,7 @@ carbonyl carborundum/M carboxylic carboy/MS +carbs carbuncle/SM carbuncular carburetor/MS @@ -21924,6 +21944,7 @@ cardie/S cardigan/SM cardinal/SMY cardinality +cardio cardiogram/MS cardiograph/M cardiographs @@ -21979,6 +22000,7 @@ carnelian/MS carney/MS carnitas carnival/MS +carnivora carnivore/SM carnivorous/YP carnivorousness/M @@ -22059,6 +22081,7 @@ casement/MS casework/ZMR caseworker/M cash/GMDS +cashback/M cashbook/MS cashew/MS cashier/GSMD @@ -22268,6 +22291,7 @@ cellophane/M cellphone/MS cellular/SM cellulite/M +cellulitis celluloid/M cellulose/M cement/MDRZGS @@ -22333,6 +22357,7 @@ cerebra cerebral cerebrate/GNDS cerebration/M +cerebrovascular cerebrum/MS cerement/MS ceremonial/SMY @@ -22527,6 +22552,7 @@ chastity/M chasuble/SM chat/SM chateau/SM +chateaux chatelaine/SM chatline/S chatted @@ -22896,6 +22922,7 @@ chutney/MS chutzpa/M chutzpah/M chyme/M +ciabatta/SM ciao/S cicada/MS cicatrice/SM @@ -23128,7 +23155,7 @@ cleverness/M clevis/MS clew/SGMD cliche/MDS -click/ZGMDRS +click/BZGMDRS clicker/M client/MS clientele/MS @@ -23178,6 +23205,7 @@ cliquier cliquiest cliquish/YP cliquishness/M +clit/SM clitoral clitorides clitoris/MS @@ -23208,7 +23236,7 @@ clonk/SMDG clop/MS clopped clopping -close/EIGTSDMB +close/EIGTSDMBR closed/U closefisted closely @@ -23898,6 +23926,7 @@ conceive/DSGB concentrate/MGNDSX concentration/M concentrator/S +concentric concentrically concept/SM conception/SM @@ -24049,6 +24078,7 @@ conflictual confluence/MS confluent confocal +conform/ZB conformable/U conformal conformance/M @@ -24162,6 +24192,7 @@ consecrated/U consecration/AM consecrations consecutive/Y +consensual consensus/MS consent/SMDG consequence/MS @@ -24750,6 +24781,7 @@ counterculture/SM countered counterespionage/M counterexample/S +counterfactual counterfeit/ZGMDRS counterfeiter/M counterfoil/MS @@ -25456,10 +25488,12 @@ cyan/M cyanide/M cyanogen cyber +cyberbully/S cybercafe/S cybernetic/S cybernetics/M cyberpunk/SM +cybersex cyberspace/MS cyborg/SM cyclamen/MS @@ -25506,8 +25540,8 @@ czar/MS czarina/SM czarism czarist/SM -d'Arezzo -d'Estaing +d'Arezzo/M +d'Estaing/M d/NXGJ dB dab/SM @@ -25638,6 +25672,7 @@ data databank/SM database/SM datasheet/MS +datatype date/DRSBMZGV datebook/S dated/U @@ -25917,6 +25952,7 @@ deferring deffer deffest defiant/Y +defibrillation defibrillator/S deficiency/SM deficient @@ -26095,6 +26131,7 @@ dendrite/SM dendrochronological dendrochronology dengue/M +deniability deniable/U denial/MS denier/M @@ -26350,7 +26387,7 @@ deterring detest/RZB detestably detestation/M -dethrone/GL +dethrone/DSGL dethronement/M detonate/GNDSX detonated/U @@ -26411,6 +26448,7 @@ dexterous/YP dexterousness/M dextrose/M dextrous/Y +dharma dhoti/SM dhow/MS diabetes/M @@ -26479,6 +26517,7 @@ diatribe/SM dibble/DSMG dibs/M dice/GDS +dices/I dicey dichloride dichotomous @@ -26791,6 +26830,7 @@ disgorgement/M disgruntle/LDSG disgruntlement/M disguise/GD +disguised/U disgusted/Y disgusting/Y dish/MDSG @@ -26812,6 +26852,7 @@ disillusion/DGL disillusionment/M disinfectant/SM disinfection/M +disinterested/PY disinterestedness/M disinvest disjoint/P @@ -26858,9 +26899,12 @@ displayed/AU displeasure/M disposable/SM disposal/SM +disposed/I disposition/ISM dispossession/M disproof/SM +disproportional +disprove/B disputable/I disputably/I disputant/MS @@ -26915,6 +26959,7 @@ distal/Y distance/DSMG distant/Y distaste/SM +distemper/M distention/MS distil/S distillate/SMNX @@ -26933,6 +26978,7 @@ distinguished/U distort/GDR distorted/U distortion/MS +distract/DG distracted/YP distracting/Y distraction/S @@ -27023,7 +27069,7 @@ djellaba/MS djellabah/M djellabahs djinn/M -do/SJRHZG +do/SJMRHZG doable dob/S dobbed @@ -27150,7 +27196,7 @@ dona/MS donate/DSXGN donation/M donator/MS -done/AU +done/FAU dong/MDGS dongle/SM donkey/SM @@ -27196,6 +27242,8 @@ dopamine dope/MZGDRS doper/M dopey +dopier +dopiest dopiness/M doping/M doppelganger/S @@ -27222,6 +27270,7 @@ dost dot/ZGSMDR dotage/M dotard/SM +dotcom/SM dote/S doter/M doting/Y @@ -27269,6 +27318,7 @@ downcast downdraft/MS downer/M downfall/SMN +downfield downgrade/DSMG downhearted/YP downheartedness/M @@ -27313,6 +27363,7 @@ doze/M dozen/MH dozily dozy/RTP +dpi dpt drab/MYSP drabber @@ -27691,6 +27742,7 @@ e/FDST eBay/M eBook/MS eCommerce/M +eMusic/M ea each eager/PTRY @@ -27699,6 +27751,7 @@ eagle/MS eaglet/MS ear/SMDY earache/SM +earbud/SM eardrum/SM earful/SM earl/MS @@ -27816,6 +27869,7 @@ ecumenicism/M ecumenism/M eczema/M ed/ACSM +edamame eddy/DSMG edelweiss/M edema/SM @@ -27861,7 +27915,7 @@ eduction edutainment/M eek eel/SM -eerie +eerie/RT eerily eeriness/M eery/RTP @@ -27982,6 +28036,7 @@ elbow/SMDG elbowroom/M elder/SMY elderberry/SM +eldercare/M elderflower eldest elect/ASDGVM @@ -28032,6 +28087,7 @@ electromotive electron/MS electronegative electronic/S +electronica/M electronically electronics/M electrophoresis @@ -28210,6 +28266,8 @@ emit/S emitted emitter/MS emitting +emo/SM +emoji emollient/MS emolument/MS emote/XDSGNV @@ -28340,6 +28398,7 @@ endive/SM endless/PY endlessness/M endmost +endocarditis endocrine/MS endocrinologist/MS endocrinology/M @@ -28378,7 +28437,7 @@ enfeeble/GDSL enfeeblement/M enfilade/DSMG enfold/SGD -enforce/AGDS +enforce/LZGDRS enforceability enforceable/U enforced/U @@ -28681,7 +28740,7 @@ equivocalness/M equivocate/XGNDS equivocation/M equivocator/MS -er +er/C era/SM eradicable/I eradicate/DSGN @@ -29138,6 +29197,7 @@ exogenous exon/MS exonerate/GNDS exoneration/M +exoplanet/MS exorbitance/M exorbitant/Y exorcise/DSG @@ -29546,6 +29606,7 @@ fan/SM fanatic/SM fanatical/Y fanaticism/M +fanboy/SM fanciable fancier/M fanciful/PY @@ -29555,6 +29616,7 @@ fanciness/M fancy/DRSMZTGP fancywork/M fandango/MS +fandom fanfare/SM fang/MDS fanlight/SM @@ -29613,6 +29675,7 @@ fashion/ZGBMDRS fashionable/U fashionably/U fashioner/M +fashionista/MS fast/MDRTGSP fastback/SM fastball/SM @@ -30279,6 +30342,7 @@ flexibility/IM flexible/I flexibly/I flexing +flexion flexitime/M flextime/M flibbertigibbet/MS @@ -30303,6 +30367,9 @@ flint/SM flintlock/SM flinty/TR flip/MS +flipflop/S +flipflopped +flipflopping flippable flippancy/M flippant/Y @@ -30969,7 +31036,7 @@ frictional frictionless fridge/SM friedcake/MS -friend/SM +friend/SMU friendless/P friendlies friendlily @@ -31584,6 +31651,7 @@ genuflection/MS genuine/PY genuineness/M genus/M +geocache/DSG geocentric geocentrically geochemical @@ -31592,6 +31660,7 @@ geode/SM geodesic/SM geodesy/M geodetic +geoengineering geog geographer/SM geographic @@ -31794,6 +31863,7 @@ glamor/SGMD glamorization/M glamorize/DSG glamorous/Y +glamour/GMDS glance/DSMG gland/SM glandes @@ -32653,6 +32723,7 @@ hackitude/S hackle/MS hackney/SMDG hacksaw/SM +hacktivist/S hackwork/M had haddock/SM @@ -32950,7 +33021,7 @@ harvester/M hash/AMDSG hasheesh/M hashish/M -hashtag/S +hashtag/SM hasn't hasp/MS hassle/DSMG @@ -33030,6 +33101,7 @@ hazer/M hazily haziness/M hazing/M +hazmat hazy/RTP hdqrs he'd @@ -33500,6 +33572,7 @@ hippo/SM hippodrome/SM hippopotami hippopotamus/MS +hippy hipster/MS hire/AGDSM hireling/MS @@ -33663,10 +33736,13 @@ homestretch/MS hometown/MS homeward/S homework/MRZG +homewrecker/SM homey/SMP homeyness/M homicidal homicide/MS +homier +homiest homiletic homily/SM hominess/M @@ -33731,6 +33807,7 @@ honorer/SM honorific/MS hooch/M hood/MDSG +hoodie/MS hoodlum/SM hoodoo/MDSG hoodwink/DGS @@ -33870,6 +33947,7 @@ hothead/DSM hotheaded/YP hotheadedness/M hothouse/SM +hotkey/S hotline/MS hotlink/S hotness/M @@ -34023,6 +34101,7 @@ hummocky hummus/M humongous humor/SMDG +humoresque humorist/MS humorless/PY humorlessness/M @@ -34062,7 +34141,7 @@ hurdling/M hurl/MDRSZG hurler/M hurling/M -hurrah/M +hurrah/MGDS hurray/GSMD hurricane/MS hurried/UY @@ -34131,6 +34210,7 @@ hydrogenous hydrological hydrologist/MS hydrology/M +hydrolyses hydrolysis/M hydrolyze/DSG hydromagnetic @@ -34175,7 +34255,7 @@ hypercube/S hyperfine hyperglycemia/M hyperinflation -hyperlink/SM +hyperlink/SMGD hypermarket/S hypermedia/M hyperplane/S @@ -34236,6 +34316,7 @@ hysteric/SM hysterical/Y hysterics/M i/US +iPad/MS iPhone/M iPod/MS iTunes/M @@ -34815,6 +34896,8 @@ incorrigibly increasing/Y increment/SMDG incremental/Y +incrementalism +incrementalist/SM incrementation incriminate/GNDS incrimination/M @@ -35540,6 +35623,7 @@ intoxicant/MS intoxicate/GNDS intoxication/M intracellular +intracranial intramural intramuscular intranet/S @@ -35707,6 +35791,7 @@ irregularity/SM irrelevance/SM irrelevancy/SM irrelevant/Y +irreligion irreligious irremediable irremediably @@ -35971,6 +36056,7 @@ jiggle/DSMG jiggly/RT jigsaw/SMDG jihad/SM +jihadist/SM jilt/MDSG jimmy/DSMG jimsonweed/M @@ -36189,6 +36275,7 @@ k/IFGS kHz kW kWh +kabbalah kabob/SM kaboom kabuki/M @@ -36259,6 +36346,7 @@ kettle/SM kettledrum/SM kettleful key/SGMD +keybinding/S keyboard/ZGSMDR keyboarder/M keyboardist/MS @@ -36404,6 +36492,7 @@ kiwi/MS kiwifruit/MS kl klaxon/S +kleptocracy kleptomania/M kleptomaniac/MS kludge/GDS @@ -37439,6 +37528,7 @@ locate/EAGNVDS location/ESMA locational locator/MS +locavore/SM loch/M lochs loci @@ -37487,12 +37577,16 @@ logic/M logical/Y logicality/M logician/MS +login/S logistic/S logistical/Y logistics/M logjam/SM logo/MS +logoff/S +logon/S logotype/SM +logout/S logrolling/M logy/RT loin/MS @@ -37501,6 +37595,7 @@ loincloths loiter/ZGSDR loiterer/M loitering/M +lolcat loll/DSG lollipop/SM lollop/GSD @@ -37544,9 +37639,11 @@ look/MDRSZG lookalike/MS looker/M lookout/MS +lookup loom/MDSG loon/MS looney/M +loonie/M loony/RSMT loop/MDSG loophole/MS @@ -37853,6 +37950,9 @@ madman/M madmen madness/M madras/MS +madrasa/S +madrassah +madrassahs madrigal/SM madwoman/M madwomen @@ -37911,6 +38011,7 @@ magnitude/SM magnolia/MS magnum/MS magpie/MS +magus/M maharaja/SM maharajah/M maharajahs @@ -38537,6 +38638,7 @@ mega megabit/SM megabucks/M megabyte/MS +megachurch/MS megacycle/SM megadeath/SM megahertz/M @@ -38553,6 +38655,7 @@ megapixel/MS megastar/S megaton/SM megawatt/MS +meh meiosis/M meiotic melamine/M @@ -38870,6 +38973,7 @@ microgravity microgroove/MS microhydrodynamics microlight/SM +microloan/MS micromanage/GLDS micromanagement/M micrometeorite/MS @@ -38958,6 +39062,7 @@ mileometer/S milepost/MS miler/M milestone/MS +milf/MS milieu/SM militancy/M militant/MYS @@ -38986,7 +39091,7 @@ mill/MDRSZGJ millage/M millenarian millennia -millennial +millennial/MS millennium/SM millepede/MS miller/M @@ -39853,6 +39958,7 @@ mugger/MS mugginess/M mugging/MS muggins +muggle/MS muggy/PTR mugshot/MS mugwump/MS @@ -39877,6 +39983,7 @@ mullet/MS mulligan/SM mulligatawny/M mullion/SMD +multi multicast multichannel multicolor/D @@ -39903,6 +40010,7 @@ multimillionaire/MS multinational/MS multiparty multiphase +multiplayer/M multiple/MS multiplex/ZGMDRS multiplexer/M @@ -39926,6 +40034,7 @@ multitude/SM multitudinous multivalued multivariate +multiverse/SM multivitamin/SM mum/SM mumble/JMZGDRS @@ -40059,6 +40168,7 @@ myna/MS mynah/M mynahs myocardial +myocardium myopia/M myopic myopically @@ -40336,6 +40446,7 @@ neoclassical neoclassicism/M neocolonialism/M neocolonialist/MS +neocon/S neoconservative/SM neodymium/M neolithic @@ -40371,6 +40482,7 @@ nestle/GJDS nestling/M net/SM netball +netbook/MS nether nethermost netherworld/M @@ -40486,8 +40598,10 @@ niff niffy niftily nifty/TR +nigga/S niggard/SMY niggardliness/M +niggaz nigger/SM! niggle/MZGDRS niggler/M @@ -40767,6 +40881,7 @@ nonintervention/M nonintoxicating noninvasive nonirritating +nonissue nonjudgmental nonjudicial nonlegal @@ -41630,6 +41745,7 @@ orbicular orbit/MDRZGS orbital/SM orbiter/M +orc/S orchard/SM orchestra/MS orchestral @@ -42172,6 +42288,8 @@ overt/YP overtake/ZGRS overtaken overtax/GDS +overthink/SG +overthought overthrew overthrow/GSM overthrown @@ -42340,6 +42458,8 @@ palatial/Y palatinate/MS palatine/MS palaver/GSMD +palazzi +palazzo pale/MYTGPDRSJ paleface/MS paleness/M @@ -42550,6 +42670,7 @@ paraprofessional/MS parapsychologist/SM parapsychology/M paraquat/M +parasailing parascending parasite/SM parasitic @@ -43493,6 +43614,7 @@ phosphorous phosphorus/M phosphorylate/DSGN photo/SGMD +photobomb/DGS photocell/MS photochemical/Y photochemistry @@ -43533,6 +43655,8 @@ photosynthesis/M photosynthesize/GDS photosynthetic photosynthetically +phototropic +phototropism phototypesetter phototypesetting photovoltaic @@ -43584,6 +43708,7 @@ pibrochs pic/SM pica/M picador/MS +picante picaresque picayune piccalilli/M @@ -43895,6 +44020,7 @@ plastic/SM plasticine plasticity/M plasticize/DSZG +plastique plat/XGMDNS plate/MS plateau/SMDG @@ -43913,6 +44039,7 @@ platter/SM platting platy/M platypus/MS +platys plaudit/SM plausibility/M plausible @@ -44028,6 +44155,8 @@ plumbed/U plumber/M plumbing/M plume/MS +plummer +plummest plummet/SGMD plummy plump/MDRYSTGP @@ -44072,7 +44201,7 @@ pocketknife/M pocketknives pockmark/MDGS pod/SM -podcast +podcast/SM podded podding podgy @@ -44177,6 +44306,7 @@ polonium/M poltergeist/MS poltroon/SM poly +polyamory/S polyandrous polyandry/M polyatomic @@ -44215,6 +44345,7 @@ polypeptide/MS polyphonic polyphony/M polypropylene/M +polys polysaccharides polysemous polystyrene/M @@ -44393,6 +44524,7 @@ postbag/S postbox/S postcard/SM postcode/S +postcolonial postconsonantal postdate/DSG postdoc @@ -44669,9 +44801,11 @@ pregnancy/SM pregnant preheat/GSD prehensile +prehistorian/S prehistoric prehistorical/Y prehistory/M +prehuman prejudge/GDS prejudgement/MS prejudgment/MS @@ -44707,6 +44841,7 @@ premolar/SM premonition/SM premonitory prenatal/Y +prenup/SM prenuptial preoccupation/MS preoccupy/DSG @@ -45606,6 +45741,7 @@ puzzlement/M puzzler/M puzzling/Y pvt +pwn/SGD pygmy/SM pylon/SM pylori @@ -46521,6 +46657,7 @@ regatta/SM regency/SM regeneracy/M regenerate/VX +regex/M regexp/S reggae/M regicide/MS @@ -46646,6 +46783,7 @@ relinquish/GLDS relinquishment/M reliquary/SM relish/GMDS +relist/SGD reluctance/M reluctant/Y rely/GDS @@ -46717,6 +46855,7 @@ rental/SM renter/M renunciation/SM reopen/SDG +reorg/DSG rep/SM repaint/GDS repairable/U @@ -47128,6 +47267,7 @@ rhinestone/SM rhinitis/M rhino/MS rhinoceros/MS +rhinovirus/MS rhizome/MS rho/SM rhodium/M @@ -47558,6 +47698,7 @@ rugby/M rugged/PTRY ruggedness/M rugger +rugrat/SM ruin/MDGS ruination/SM ruinous/Y @@ -48028,6 +48169,7 @@ scalper/M scaly/RTP scam/MS scammed +scammer/S scamming scamp/MRSZ scamper/GMD @@ -48087,6 +48229,7 @@ scatted scatter/ZGJSMDR scatterbrain/MDS scattering/M +scattershot scatting scatty scavenge/ZGDRS @@ -48742,6 +48885,7 @@ sequester/GSD sequestrate/XDSGN sequestration/M sequin/SMD +sequinned sequitur sequoia/MS seraglio/MS @@ -48845,7 +48989,7 @@ sewage/M sewer/MS sewerage/M sewing/M -sewn +sewn/A sex/GMDS sexagenarian/SM sexily @@ -48859,6 +49003,7 @@ sexpot/MS sextant/SM sextet/MS sextette/MS +sexting sexton/MS sextuplet/SM sexual/Y @@ -49012,7 +49157,9 @@ sheeting/M sheetlike sheik/MS sheikdom/MS +sheikh/M sheikhdom/MS +sheikhs sheila/S shekel/SM shelf/M @@ -49048,6 +49195,7 @@ shiftiness/M shiftless/PY shiftlessness/M shifty/RPT +shiitake/S shill/GMDSJ shillalah/M shillalahs @@ -49297,6 +49445,8 @@ sibling/SM sibyl/MS sibylline sic/S +sicced +siccing sick/PXTGDNRYS sickbay/S sickbed/SM @@ -49423,6 +49573,7 @@ silversmith/M silversmiths silverware/M silvery/RT +sim/S simian/MS similar/Y similarity/ESM @@ -49855,6 +50006,7 @@ slum/MS slumber/GSMD slumberous slumbrous +slumdog/SM slumlord/MS slummed slummer @@ -49891,6 +50043,7 @@ smarten/DG smartness/M smartphone/MS smarts/M +smartwatch/MS smarty/SM smartypants/M smash/MDRSZG @@ -50353,6 +50506,7 @@ soul/MDS soulful/YP soulfulness/M soulless/YP +soulmate/S sound/JPSMDRYZTG soundbite/S soundboard/SM @@ -50362,6 +50516,7 @@ soundless/Y soundness/UM soundproof/DGS soundproofing/M +soundscape/S soundtrack/SM soup/MDGS soupcon/MS @@ -50887,6 +51042,7 @@ squirrel/SGMD squirt/SGMD squish/GMDS squishy/RT +sriracha ssh st stab/MYS @@ -50989,6 +51145,7 @@ staple/DRSMZG stapler/M star/MDRZGS starboard/M +starburst/S starch/GMDS starchily starchiness/M @@ -51016,6 +51173,7 @@ start/ASMDG starter/MS startle/GDS startling/Y +startup/MS starvation/M starve/DSJG starveling/SM @@ -51288,9 +51446,10 @@ stomacher/M stomachs stomata stomp/GSMD -stone/DSMG +stone/DRSMZG stoneless stonemason/MS +stoner/M stonewall/GSD stoneware/M stonewashed @@ -51682,6 +51841,7 @@ subornation/M subpena/GMDS subplot/MS subpoena/GMDS +subprime subprofessional/SM subprogram/S subroutine/MS @@ -52360,7 +52520,7 @@ symptom/MS symptomatic symptomatically symptomless -syn +syn/H synagog/MS synagogal synagogue/SM @@ -52398,6 +52558,7 @@ synopses synopsis/M synopsizes synoptic +synovial syntactic syntactical/Y syntax/M @@ -52408,6 +52569,7 @@ synthesize/ZGDRS synthesizer/M synthetic/SM synthetically +synths syphilis/M syphilitic/SM syringe/DSMG @@ -52648,6 +52810,7 @@ tartar/MS tartaric tartness/M tarty/T +taser/GMDS task/GMDS taskmaster/MS taskmistress/MS @@ -52733,6 +52896,7 @@ teak/MS teakettle/SM teal/MS tealeaves +tealight/MS team/GMDS teammate/MS teamster/MS @@ -53064,7 +53228,7 @@ tetracycline/M tetrahedral tetrahedron/SM tetrameter/MS -text/FMS +text/FMSDG textbook/SM textbox/SM textile/MS @@ -54398,6 +54562,7 @@ trusty/TRSM truth/UM truthful/UPY truthfulness/UM +truthiness truths/U try/AGDSM trying/Y @@ -54566,6 +54731,7 @@ twelvemonths twentieth/M twentieths twenty/SMH +twerk/SDG twerp/SM twice twiddle/MGDRS @@ -54613,6 +54779,7 @@ tycoon/SM tying/AU tyke/MS tympani/M +tympanic tympanist/MS tympanum/SM type/AGDSM @@ -55003,6 +55170,7 @@ unfocussed unforgettably unforgivably unfortunate/MS +unfriend/GD unfriendly/T unfrock/DG unfruitful @@ -55494,6 +55662,7 @@ vanquish/ZGDRS vanquished/U vanquisher/M vantage/SM +vape/GDS vapid/YP vapidity/M vapidness/M @@ -55974,6 +56143,7 @@ voice/IDSMG voiced/U voiceless/PY voicelessness/M +voicemail/M void/MDSGB voila voile/M @@ -56056,9 +56226,11 @@ vulture/SM vulturous vulva/M vulvae +vuvuzela/MS vying w/DNXTGVJ wabbit/S +wack/RTS wackes wackiness/M wacko/SM @@ -56401,6 +56573,8 @@ webcast/MS webdesign/MS webfeet webfoot/M +webinar/SM +webisode/MS weblog/MS webmaster/SM webmistress/MS @@ -56823,6 +56997,7 @@ wing/MDRZG wingding/MS wingless winglike +wingnut/SM wingspan/MS wingspread/SM wingtip/SM @@ -57438,6 +57613,7 @@ zirconium/M zit/SM zither/MS zloty/SM +zlotys zodiac/MS zodiacal zombi/SM From 0e031b1979628f2e3fbfc758df7b2ef176d4b9eb Mon Sep 17 00:00:00 2001 From: Ekanan Ketunuti Date: Wed, 25 Feb 2015 20:24:58 +0700 Subject: [PATCH 022/112] Bug 1133363 - Part 3 - Fix tests. r=ehsan --- editor/libeditor/tests/test_bug484181.html | 18 +++++++++--------- editor/libeditor/tests/test_bug596333.html | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/editor/libeditor/tests/test_bug484181.html b/editor/libeditor/tests/test_bug484181.html index fbdb7cd36b7f..d2e6e871c6af 100644 --- a/editor/libeditor/tests/test_bug484181.html +++ b/editor/libeditor/tests/test_bug484181.html @@ -7,13 +7,13 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=484181 Test for Bug 484181 - + Mozilla Bug 484181

 
+  
+    
foobarbaz
+ + diff --git a/layout/base/tests/bug1132768-1.html b/layout/base/tests/bug1132768-1.html new file mode 100644 index 000000000000..a7be3512d2d2 --- /dev/null +++ b/layout/base/tests/bug1132768-1.html @@ -0,0 +1,16 @@ + + + + + +
foobarbaz
+ + diff --git a/layout/base/tests/mochitest.ini b/layout/base/tests/mochitest.ini index 61c21f3006ea..120fa2881d8d 100644 --- a/layout/base/tests/mochitest.ini +++ b/layout/base/tests/mochitest.ini @@ -70,6 +70,8 @@ support-files = bug1123067-2.html bug1123067-3.html bug1123067-ref.html + bug1132768-1.html + bug1132768-1-ref.html selection-utils.js multi-range-user-select.html multi-range-user-select-ref.html diff --git a/layout/base/tests/test_reftests_with_caret.html b/layout/base/tests/test_reftests_with_caret.html index a3e14966fea0..bf9d7f44b3ff 100644 --- a/layout/base/tests/test_reftests_with_caret.html +++ b/layout/base/tests/test_reftests_with_caret.html @@ -110,9 +110,10 @@ var tests = [ [ 'bug1082486-1.html', 'bug1082486-1-ref.html'] , [ 'bug1082486-2.html', 'bug1082486-2-ref.html'] , // The following test cases are all involving with one sending - // synthesizeKey(), the other without. They ought to be failed - // when touch caret preference on. Test them with preference off. + // synthesizeKey(), the other without. They fail when the touch + // or selection caret is enabled. Test them with these preferences off. function() {SpecialPowers.pushPrefEnv({'set': [['touchcaret.enabled', false]]}, nextTest);} , + function() {SpecialPowers.pushPrefEnv({'set': [['selectioncaret.enabled', false]]}, nextTest);} , [ 'bug240933-1.html' , 'bug240933-1-ref.html' ] , [ 'bug240933-2.html' , 'bug240933-1-ref.html' ] , [ 'bug389321-1.html' , 'bug389321-1-ref.html' ] , @@ -152,7 +153,9 @@ var tests = [ // [ 'bug1123067-1.html' , 'bug1123067-ref.html' ] , TODO: bug 1129205 [ 'bug1123067-2.html' , 'bug1123067-ref.html' ] , [ 'bug1123067-3.html' , 'bug1123067-ref.html' ] , + [ 'bug1132768-1.html' , 'bug1132768-1-ref.html'] , function() {SpecialPowers.pushPrefEnv({'clear': [['touchcaret.enabled']]}, nextTest);} , + function() {SpecialPowers.pushPrefEnv({'clear': [['selectioncaret.enabled']]}, nextTest);} , ]; if (navigator.appVersion.indexOf("Android") == -1 && diff --git a/layout/style/contenteditable.css b/layout/style/contenteditable.css index 76e02f0a9186..cdaf8ebeb826 100644 --- a/layout/style/contenteditable.css +++ b/layout/style/contenteditable.css @@ -9,7 +9,7 @@ cursor: text; } -*|*:focus:-moz-read-write :-moz-read-only { +*|*:-moz-read-write :-moz-read-only { -moz-user-select: all !important; } From 4f96dc64d4d4c80133d1910d10a335c851bc9662 Mon Sep 17 00:00:00 2001 From: Gabor Krizsanits Date: Thu, 26 Feb 2015 15:20:37 +0100 Subject: [PATCH 061/112] Bug 1134981 - Quick fix in registerElement. r=bz --- dom/base/nsDocument.cpp | 7 ++----- .../webcomponents/test_unresolved_pseudo_class.html | 2 +- ...ustom-element-type-local-name-and-is-attribute.html.ini | 2 -- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/dom/base/nsDocument.cpp b/dom/base/nsDocument.cpp index da5bda6fe34d..c91af94bbf78 100644 --- a/dom/base/nsDocument.cpp +++ b/dom/base/nsDocument.cpp @@ -6348,15 +6348,12 @@ nsDocument::RegisterElement(JSContext* aCx, const nsAString& aType, // Make sure that the element name matches the name in the definition. // (e.g. a definition for x-button extending button should match //