nomener 0.1.4 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1946 @@
1
+ require 'spec_helper'
2
+ # lots of names from wikiquote http://simple.wikiquote.org/wiki/List_of_people_by_name
3
+ # minimal changes
4
+ # names are approximately in the form of last, first
5
+ # removed mononyms
6
+
7
+ # to add, in some manner.... we should be able to parse each name on this page
8
+ # names like 'Deng Xiaoping' will give problems as they are the normal Chinese order, but we can't tell if they are Chinese
9
+ #
10
+ # Acton, John (Lord Acton)
11
+ # Anne, Princess Royal of the United Kingdom
12
+ # Akinola, Peter Jasper (Archbishop)
13
+ # Baden-Powell, Sir Robert (B-P)
14
+ # Banks, Tony (Lord Stratford)
15
+ # Beaumont and Fletcher
16
+ # Benedict XVI (Pope)
17
+ # Bojaxhi, Agnes Gonxha (Mother Teresa)
18
+ # Butler, Samuel (1835-1902)
19
+ # Butler, Samuel (1612-1680)
20
+ # Campbell, Beatrice Stella; (Mrs. Patrick Campbell)
21
+ # Casanova, Giacomo (Jacques Casanova de Seingal)
22
+ # Cecil, Robert (1st Viscount Cecil of Chelwood)
23
+ # Chaplin, Charlie (Sir Charles Spencer Chaplin)
24
+ # Chuang Chou (Chuang Tzu; Chuang Tse; Zhuang Zi)
25
+ # Churchill, Sarah (Duchess of Marlborough)
26
+ # Cole, Nat "King"
27
+ # Cooper, Diana (Lady Diana Manners)
28
+ # Courtney, Leonard H. (Lord Courtney)
29
+ # Dalai Lama; see Tenzin Gyatso (His Holiness the 14th Dalai Lama)
30
+ # Deng Xiaoping
31
+ # Hossein Elahi Ghomshei
32
+ # Elizabeth I of England
33
+ # Elizabeth II of England
34
+ # Francis of Assisi
35
+ # Frederick II of Prussia
36
+ # Gallagher (Leo Anthony Gallagher)
37
+ # Gwanghae-gun of Joseon
38
+ # Han Shan
39
+ # Hall, Evelyn Beatrice (also known by pseudonym "Stephen G. Tallentyre")
40
+ # Halsey, William "Bull"
41
+ # Henry VIII
42
+ # Hillel the Elder
43
+ # Hubbard, Kin (Frank McKinney Hubbard)
44
+ # James I of England
45
+ # Joan of Arc
46
+ # John of the Cross
47
+ # John Paul II (Pope)
48
+ # Julian (Emperor)
49
+ # Julian of Norwich
50
+ # Kennedy Lisa
51
+ # Lao Tzu
52
+ # Leo X (Pope)
53
+ # Li Bai
54
+ # Lu Xun
55
+ # Maharaji (Prem Rawat)
56
+ # Malda, Rob "CmdrTaco"
57
+ # Mao Zedong
58
+ # Mary I of England
59
+ # Michelangelo Buonarroti
60
+ # Mother Teresa (Agnes Gonxha Bojaxhi)
61
+ # Munshi Premchand
62
+ # Miyamoto Musashi
63
+ # Nero (Emperor)
64
+ # Czar Nicholas II
65
+ # Osama bin Laden
66
+ # Osho (also known as Bhagwan Shree Rajneesh)
67
+ # Paul VI (Pope)
68
+ # Peter Kay
69
+ # Pompey the Great
70
+ # Pushkin, Aleksandr (Alexander Pushkin)
71
+ # Qin Shi Huang
72
+ # Sathya Sai Baba
73
+ # Savitri Devi
74
+ # Shankar, Ravi (Art of Living founder, not the sitar maestro)
75
+ # Simonides of Ceos
76
+ # Sixtus V (pope)
77
+ # Scanderbeg|Skenderbeu(The prince of Arberia)
78
+ # Snoop Dogg (Calvin Cordozar Broadus)
79
+ # Soong May-ling
80
+ # Sun Tzu
81
+ # Tenzin Gyatso (14th Dalai Lama)
82
+ # Teresa of Avila (Teresa de Jesús)
83
+ # Thomas Aquinas
84
+ # Tweed, William Marcy ("Boss")
85
+ # Tzu Hsi
86
+ # Jarmo Visakorpi
87
+ # William of Occam
88
+ # White, T. H. (Terence Hanbury)
89
+ # Wilson, (Thomas) Woodrow
90
+ # X, Malcolm (Malcolm Little)
91
+ # Yankovic, "Weird Al"
92
+ # Zé Tom
93
+ # Zhuangzi (Zhuang Zi; Zhuang Zhou; Chuang Tzu; Chuang Tse)
94
+
95
+ RSpec.describe "WikiQuote list parsing" do
96
+ context "with the name" do
97
+ [
98
+ { from: "Aaron, Hank", to: { full: "Hank Aaron", first: "Hank", last: "Aaron"} },
99
+ { from: "Abagnale, Frank", to: { full: "Frank Abagnale", first: "Frank", last: "Abagnale"} },
100
+ { from: "Abbey, Edward", to: { full: "Edward Abbey", first: "Edward", last: "Abbey"} },
101
+ { from: "Abel, Reuben", to: { full: "Reuben Abel", first: "Reuben", last: "Abel"} },
102
+ { from: "Abelson, Hal", to: { full: "Hal Abelson", first: "Hal", last: "Abelson"} },
103
+ { from: "Abourezk, James", to: { full: "James Abourezk", first: "James", last: "Abourezk"} },
104
+ { from: "Abrams, Creighton", to: { full: "Creighton Abrams", first: "Creighton", last: "Abrams"} },
105
+ { from: "Ace, Jane", to: { full: "Jane Ace", first: "Jane", last: "Ace"} },
106
+ { from: "Adams, Abigail", to: { full: "Abigail Adams", first: "Abigail", last: "Adams"} },
107
+ { from: "Adams, Douglas", to: { full: "Douglas Adams", first: "Douglas", last: "Adams"} },
108
+ { from: "Adams, Henry", to: { full: "Henry Adams", first: "Henry", last: "Adams"} },
109
+ { from: "Adams, John", to: { full: "John Adams", first: "John", last: "Adams"} },
110
+ { from: "Adams, John Quincy", to: { full: "John Quincy Adams", first: "John Quincy", last: "Adams"} },
111
+ { from: "Adams, Samuel", to: { full: "Samuel Adams", first: "Samuel", last: "Adams"} },
112
+ { from: "Adams, Scott", to: { full: "Scott Adams", first: "Scott", last: "Adams"} },
113
+ { from: "Addams, Jane", to: { full: "Jane Addams", first: "Jane", last: "Addams"} },
114
+ { from: "Addison, Joseph", to: { full: "Joseph Addison", first: "Joseph", last: "Addison"} },
115
+ { from: "Adorno, Theodor", to: { full: "Theodor Adorno", first: "Theodor", last: "Adorno"} },
116
+ { from: "Adler, Alfred", to: { full: "Alfred Adler", first: "Alfred", last: "Adler"} },
117
+ { from: "Affleck, Ben", to: { full: "Ben Affleck", first: "Ben", last: "Affleck"} },
118
+ { from: "Agena, Keiko", to: { full: "Keiko Agena", first: "Keiko", last: "Agena"} },
119
+ { from: "Agnew, Spiro", to: { full: "Spiro Agnew", first: "Spiro", last: "Agnew"} },
120
+ { from: "Ahbez, Eden", to: { full: "Eden Ahbez", first: "Eden", last: "Ahbez"} },
121
+ { from: "Ahern, Bertie", to: { full: "Bertie Ahern", first: "Bertie", last: "Ahern"} },
122
+ { from: "Ah Koy, James", to: { full: "James Ah Koy", first: "James", last: "Ah Koy"} },
123
+ { from: "Aiken, Clay", to: { full: "Clay Aiken", first: "Clay", last: "Aiken"} },
124
+ { from: "Aiken, Conrad", to: { full: "Conrad Aiken", first: "Conrad", last: "Aiken"} },
125
+ { from: "Alba, Jessica", to: { full: "Jessica Alba", first: "Jessica", last: "Alba"} },
126
+ { from: "Alberti, Leone Battista", to: { full: "Leone Battista Alberti", first: "Leone Battista", last: "Alberti"} },
127
+ { from: "Albom, Mitch", to: { full: "Mitch Albom", first: "Mitch", last: "Albom"} },
128
+ { from: "Alcott, Louisa May", to: { full: "Louisa May Alcott", first: "Louisa May", last: "Alcott"} },
129
+ { from: "Aldiss, Brian", to: { full: "Brian Aldiss", first: "Brian", last: "Aldiss"} },
130
+ { from: "Alexie, Sherman", to: { full: "Sherman Alexie", first: "Sherman", last: "Alexie"} },
131
+ { from: "al-Sadr, Muqtada", to: { full: "Muqtada al-Sadr", first: "Muqtada", last: "al-Sadr"} },
132
+ { from: "al-Sahaf, Muhammed Saeed", to: { full: "Muhammed Saeed al-Sahaf", first: "Muhammed Saeed", last: "al-Sahaf"} },
133
+ { from: "Alfven, Hannes", to: { full: "Hannes Alfven", first: "Hannes", last: "Alfven"} },
134
+ { from: "Aldrin, Buzz", to: { full: "Buzz Aldrin", first: "Buzz", last: "Aldrin"} },
135
+ { from: "Ali, Muhammad", to: { full: "Muhammad Ali", first: "Muhammad", last: "Ali"} },
136
+ { from: "Ali, Tariq", to: { full: "Tariq Ali", first: "Tariq", last: "Ali"} },
137
+ { from: "Allee, W. C.", to: { full: "W C Allee", first: "W C", last: "Allee"} },
138
+ { from: "Allen, Agnes", to: { full: "Agnes Allen", first: "Agnes", last: "Allen"} },
139
+ { from: "Allen, Fred", to: { full: "Fred Allen", first: "Fred", last: "Allen"} },
140
+ { from: "Allen, James", to: { full: "James Allen", first: "James", last: "Allen"} },
141
+ { from: "Allen, Steve", to: { full: "Steve Allen", first: "Steve", last: "Allen"} },
142
+ { from: "Allen, Woody", to: { full: "Woody Allen", first: "Woody", last: "Allen"} },
143
+ { from: "Allais, Alphonse", to: { full: "Alphonse Allais", first: "Alphonse", last: "Allais"} },
144
+ { from: "Allston, Aaron", to: { full: "Aaron Allston", first: "Aaron", last: "Allston"} },
145
+ { from: "Amaro, Rolim", to: { full: "Rolim Amaro", first: "Rolim", last: "Amaro"} },
146
+ { from: "Amiel, Barbara", to: { full: "Barbara Amiel", first: "Barbara", last: "Amiel"} },
147
+ { from: "Amis, Martin", to: { full: "Martin Amis", first: "Martin", last: "Amis"} },
148
+ { from: "Amos, Tori", to: { full: "Tori Amos", first: "Tori", last: "Amos"} },
149
+ { from: "Andersen, Hans Christian", to: { full: "Hans Christian Andersen", first: "Hans Christian", last: "Andersen"} },
150
+ { from: "Anderson, Beth", to: { full: "Beth Anderson", first: "Beth", last: "Anderson"} },
151
+ { from: "Anderson, Sparky", to: { full: "Sparky Anderson", first: "Sparky", last: "Anderson"} },
152
+ { from: "Andrians, Aiven", to: { full: "Aiven Andrians", first: "Aiven", last: "Andrians"} },
153
+ { from: "Andric, Ivo", to: { full: "Ivo Andric", first: "Ivo", last: "Andric"} },
154
+ { from: "Angell, Norman", to: { full: "Norman Angell", first: "Norman", last: "Angell"} },
155
+ { from: "Angelou, Maya", to: { full: "Maya Angelou", first: "Maya", last: "Angelou"} },
156
+ { from: "Anthony, Piers", to: { full: "Piers Anthony", first: "Piers", last: "Anthony"} },
157
+ { from: "Anthony, Susan B.", to: { full: "Susan B Anthony", first: "Susan B", last: "Anthony"} },
158
+ { from: "Antoniou, Laura", to: { full: "Laura Antoniou", first: "Laura", last: "Antoniou"} },
159
+ { from: "Antunes, António Lobo", to: { full: "António Lobo Antunes", first: "António Lobo", last: "Antunes"} },
160
+ { from: "Apple, Fiona", to: { full: "Fiona Apple", first: "Fiona", last: "Apple"} },
161
+ { from: "Aquinas, Thomas", to: { full: "Thomas Aquinas", first: "Thomas", last: "Aquinas"} },
162
+ { from: "Arafat, Yasser", to: { full: "Yasser Arafat", first: "Yasser", last: "Arafat"} },
163
+ { from: "Araya, Tom", to: { full: "Tom Araya", first: "Tom", last: "Araya"} },
164
+ { from: "Arbuthnot, John", to: { full: "John Arbuthnot", first: "John", last: "Arbuthnot"} },
165
+ { from: "Armstrong, Edwin", to: { full: "Edwin Armstrong", first: "Edwin", last: "Armstrong"} },
166
+ { from: "Armstrong, Louis", to: { full: "Louis Armstrong", first: "Louis", last: "Armstrong"} },
167
+ { from: "Armstrong, Neil", to: { full: "Neil Armstrong", first: "Neil", last: "Armstrong"} },
168
+ { from: "Arp, Hans", to: { full: "Hans Arp", first: "Hans", last: "Arp"} },
169
+ { from: "Arslan, Alp", to: { full: "Alp Arslan", first: "Alp", last: "Arslan"} },
170
+ { from: "Ascham, Roger", to: { full: "Roger Ascham", first: "Roger", last: "Ascham"} },
171
+ { from: "Ashe, Arthur", to: { full: "Arthur Ashe", first: "Arthur", last: "Ashe"} },
172
+ { from: "Ashlag, Baruch", to: { full: "Baruch Ashlag", first: "Baruch", last: "Ashlag"} },
173
+ { from: "Ashlag, Yehuda", to: { full: "Yehuda Ashlag", first: "Yehuda", last: "Ashlag"} },
174
+ { from: "Asimov, Isaac", to: { full: "Isaac Asimov", first: "Isaac", last: "Asimov"} },
175
+ { from: "Attali, Jacques", to: { full: "Jacques Attali", first: "Jacques", last: "Attali"} },
176
+ { from: "Atatürk, Mustafa Kemal", to: { full: "Mustafa Kemal Atatürk", first: "Mustafa Kemal", last: "Atatürk"} },
177
+ { from: "Atwood, Margaret", to: { full: "Margaret Atwood", first: "Margaret", last: "Atwood"} },
178
+ { from: "Auden, Wystan Hugh", to: { full: "Wystan Hugh Auden", first: "Wystan Hugh", last: "Auden"} },
179
+ { from: "Audette, Derek R.", to: { full: "Derek R Audette", first: "Derek R", last: "Audette"} },
180
+ { from: "Augustine, Norman Ralph", to: { full: "Norman Ralph Augustine", first: "Norman Ralph", last: "Augustine"} },
181
+ { from: "Austen, Jane", to: { full: "Jane Austen", first: "Jane", last: "Austen"} },
182
+ { from: "Austin, Alfred", to: { full: "Alfred Austin", first: "Alfred", last: "Austin"} },
183
+ { from: "Austin, J. L.", to: { full: "J L Austin", first: "J L", last: "Austin"} },
184
+ { from: "Austin, Stone Cold Steve", to: { full: "Stone Cold Steve Austin", first: "Stone Cold Steve", last: "Austin"} },
185
+
186
+ { from: "Baba, Meher", to: { full: "Meher Baba", first: "Meher", last: "Baba"} },
187
+ { from: "Baba, Tupeni", to: { full: "Tupeni Baba", first: "Tupeni", last: "Baba"} },
188
+ { from: "Babbage, Charles", to: { full: "Charles Babbage", first: "Charles", last: "Babbage"} },
189
+ { from: "Babbitt, Milton", to: { full: "Milton Babbitt", first: "Milton", last: "Babbitt"} },
190
+ { from: "Bacevich, Andrew", to: { full: "Andrew Bacevich", first: "Andrew", last: "Bacevich"} },
191
+ { from: "Bach, Richard", to: { full: "Richard Bach", first: "Richard", last: "Bach"} },
192
+ { from: "Bachelard, Gaston", to: { full: "Gaston Bachelard", first: "Gaston", last: "Bachelard"} },
193
+ { from: "Bachelot, Roselyne", to: { full: "Roselyne Bachelot", first: "Roselyne", last: "Bachelot"} },
194
+ { from: "Bacon, Francis", to: { full: "Francis Bacon", first: "Francis", last: "Bacon"} },
195
+ { from: "Baddiel, David", to: { full: "David Baddiel", first: "David", last: "Baddiel"} },
196
+ { from: "Badiou, Alain", to: { full: "Alain Badiou", first: "Alain", last: "Badiou"} },
197
+ { from: "Badnarik, Michael", to: { full: "Michael Badnarik", first: "Michael", last: "Badnarik"} },
198
+ { from: "Baez, Joan", to: { full: "Joan Baez", first: "Joan", last: "Baez"} },
199
+ { from: "Bagehot, Walter", to: { full: "Walter Bagehot", first: "Walter", last: "Bagehot"} },
200
+ { from: "Bailey, Philip James", to: { full: "Philip James Bailey", first: "Philip James", last: "Bailey"} },
201
+ { from: "Baillie, Bruce", to: { full: "Bruce Baillie", first: "Bruce", last: "Baillie"} },
202
+ { from: "Bainimarama, Frank", to: { full: "Frank Bainimarama", first: "Frank", last: "Bainimarama"} },
203
+ { from: "Baker, Jack", to: { full: "Jack Baker", first: "Jack", last: "Baker"} },
204
+ { from: "Baker, Russell", to: { full: "Russell Baker", first: "Russell", last: "Baker"} },
205
+ { from: "Bakhtiari, Marjaney", to: { full: "Marjaney Bakhtiari", first: "Marjaney", last: "Bakhtiari"} },
206
+ { from: "Bakunin, Mikhail", to: { full: "Mikhail Bakunin", first: "Mikhail", last: "Bakunin"} },
207
+ { from: "Ball, Hugo", to: { full: "Hugo Ball", first: "Hugo", last: "Ball"} },
208
+ { from: "Ballmer, Steve", to: { full: "Steve Ballmer", first: "Steve", last: "Ballmer"} },
209
+ { from: "Balzac, Honoré de", to: { full: "Honoré de Balzac", first: "Honoré", last: "de Balzac"} },
210
+ { from: "Bancroft, Anne", to: { full: "Anne Bancroft", first: "Anne", last: "Bancroft"} },
211
+ { from: "Bangs, Lester", to: { full: "Lester Bangs", first: "Lester", last: "Bangs"} },
212
+ { from: "Banhart, Devendra", to: { full: "Devendra Banhart", first: "Devendra", last: "Banhart"} },
213
+ { from: "Banks, Ernie", to: { full: "Ernie Banks", first: "Ernie", last: "Banks"} },
214
+ { from: "Banks, Robert", to: { full: "Robert Banks", first: "Robert", last: "Banks"} },
215
+ { from: "Barbauld, Anna Letitia", to: { full: "Anna Letitia Barbauld", first: "Anna Letitia", last: "Barbauld"} },
216
+ { from: "Barclay, William", to: { full: "William Barclay", first: "William", last: "Barclay"} },
217
+ { from: "Barker, Clive", to: { full: "Clive Barker", first: "Clive", last: "Barker"} },
218
+ { from: "Barkley, Charles", to: { full: "Charles Barkley", first: "Charles", last: "Barkley"} },
219
+ { from: "Barlow, John Perry", to: { full: "John Perry Barlow", first: "John Perry", last: "Barlow"} },
220
+ { from: "Barnes, Jack", to: { full: "Jack Barnes", first: "Jack", last: "Barnes"} },
221
+ { from: "Barnes, Julian", to: { full: "Julian Barnes", first: "Julian", last: "Barnes"} },
222
+ { from: "Barrie, J. M.", to: { full: "J M Barrie", first: "J M", last: "Barrie"} },
223
+ { from: "Barry, Dave", to: { full: "Dave Barry", first: "Dave", last: "Barry"} },
224
+ { from: "Barry, Marion", to: { full: "Marion Barry", first: "Marion", last: "Barry"} },
225
+ { from: "Bartholin, Thomas V.", to: { full: "Thomas V Bartholin", first: "Thomas V", last: "Bartholin"} },
226
+ { from: "Baruch, Bernard", to: { full: "Bernard Baruch", first: "Bernard", last: "Baruch"} },
227
+ { from: "Barwich, Heinz", to: { full: "Heinz Barwich", first: "Heinz", last: "Barwich"} },
228
+ { from: "Bastiat, Frédéric", to: { full: "Frédéric Bastiat", first: "Frédéric", last: "Bastiat"} },
229
+ { from: "Batch, Charlie", to: { full: "Charlie Batch", first: "Charlie", last: "Batch"} },
230
+ { from: "Bathgate, Andy", to: { full: "Andy Bathgate", first: "Andy", last: "Bathgate"} },
231
+ { from: "Baudelaire, Charles", to: { full: "Charles Baudelaire", first: "Charles", last: "Baudelaire"} },
232
+ { from: "Baum, L. Frank", to: { full: "L Frank Baum", first: "L Frank", last: "Baum"} },
233
+ { from: "Bavadra, Timoci", to: { full: "Timoci Bavadra", first: "Timoci", last: "Bavadra"} },
234
+ { from: "Bayly, Thomas Haynes", to: { full: "Thomas Haynes Bayly", first: "Thomas Haynes", last: "Bayly"} },
235
+ { from: "Bazin, André", to: { full: "André Bazin", first: "André", last: "Bazin"} },
236
+ { from: "Bean, Roy", to: { full: "Roy Bean", first: "Roy", last: "Bean"} },
237
+ { from: "Beard, Charles A.", to: { full: "Charles A Beard", first: "Charles A", last: "Beard"} },
238
+ { from: "Beck, Glenn", to: { full: "Glenn Beck", first: "Glenn", last: "Beck"} },
239
+ { from: "Becker, Carl", to: { full: "Carl Becker", first: "Carl", last: "Becker"} },
240
+ { from: "Beckett, Samuel", to: { full: "Samuel Beckett", first: "Samuel", last: "Beckett"} },
241
+ { from: "Beddoes, Mick", to: { full: "Mick Beddoes", first: "Mick", last: "Beddoes"} },
242
+ { from: "Beecher, Henry Ward", to: { full: "Henry Ward Beecher", first: "Henry Ward", last: "Beecher"} },
243
+ { from: "Beethoven, Ludwig van", to: { full: "Ludwig van Beethoven", first: "Ludwig", last: "van Beethoven"} },
244
+ { from: "Begin, Menachem", to: { full: "Menachem Begin", first: "Menachem", last: "Begin"} },
245
+ { from: "Bell, Alexander Graham", to: { full: "Alexander Graham Bell", first: "Alexander Graham", last: "Bell"} },
246
+ { from: "Belloc, Hilaire", to: { full: "Hilaire Belloc", first: "Hilaire", last: "Belloc"} },
247
+ { from: "Bellow, Saul", to: { full: "Saul Bellow", first: "Saul", last: "Bellow"} },
248
+ { from: "Benchley, Robert", to: { full: "Robert Benchley", first: "Robert", last: "Benchley"} },
249
+ { from: "Benenson, Peter", to: { full: "Peter Benenson", first: "Peter", last: "Benenson"} },
250
+ { from: "Ben-Gurion, David", to: { full: "David Ben-Gurion", first: "David", last: "Ben-Gurion"} },
251
+ { from: "Benjamin, Walter", to: { full: "Walter Benjamin", first: "Walter", last: "Benjamin"} },
252
+ { from: "Benn, Tony", to: { full: "Tony Benn", first: "Tony", last: "Benn"} },
253
+ { from: "Bennett, William Andrew Cicil", to: { full: "William Andrew Cicil Bennett", first: "William Andrew Cicil", last: "Bennett"} },
254
+ { from: "Bennington, Chester", to: { full: "Chester Bennington", first: "Chester", last: "Bennington"} },
255
+ { from: "Benson, Leana", to: { full: "Leana Benson", first: "Leana", last: "Benson"} },
256
+ { from: "Bent, Silas", to: { full: "Silas Bent", first: "Silas", last: "Bent"} },
257
+ { from: "Bentsen, Lloyd", to: { full: "Lloyd Bentsen", first: "Lloyd", last: "Bentsen"} },
258
+ { from: "Berard, Edward V.", to: { full: "Edward V Berard", first: "Edward V", last: "Berard"} },
259
+ { from: "Berger, Ric", to: { full: "Ric Berger", first: "Ric", last: "Berger"} },
260
+ { from: "Bergman, George E.", to: { full: "George E Bergman", first: "George E", last: "Bergman"} },
261
+ { from: "Bergman, Ingmar", to: { full: "Ingmar Bergman", first: "Ingmar", last: "Bergman"} },
262
+ { from: "Berio, Luciano", to: { full: "Luciano Berio", first: "Luciano", last: "Berio"} },
263
+ { from: "Bergerac, Cyrano de", to: { full: "Cyrano de Bergerac", first: "Cyrano", last: "de Bergerac"} },
264
+ { from: "Berle, Milton", to: { full: "Milton Berle", first: "Milton", last: "Berle"} },
265
+ { from: "Berlin, Irving", to: { full: "Irving Berlin", first: "Irving", last: "Berlin"} },
266
+ { from: "Berne, Eric", to: { full: "Eric Berne", first: "Eric", last: "Berne"} },
267
+ { from: "Bernhard, Sandra", to: { full: "Sandra Bernhard", first: "Sandra", last: "Bernhard"} },
268
+ { from: "Berra, Yogi", to: { full: "Yogi Berra", first: "Yogi", last: "Berra"} },
269
+ { from: "Berry, Halle", to: { full: "Halle Berry", first: "Halle", last: "Berry"} },
270
+ { from: "Berry, Wendell", to: { full: "Wendell Berry", first: "Wendell", last: "Berry"} },
271
+ { from: "Bethea, Erin", to: { full: "Erin Bethea", first: "Erin", last: "Bethea"} },
272
+ { from: "Bevan, Aneurin", to: { full: "Aneurin Bevan", first: "Aneurin", last: "Bevan"} },
273
+ { from: "Bevel, Ken", to: { full: "Ken Bevel", first: "Ken", last: "Bevel"} },
274
+ { from: "Bibesco, Princess Elizabeth", to: { full: "Princess Elizabeth Bibesco", first: "Princess Elizabeth", last: "Bibesco"} },
275
+ { from: "Biden, Joseph", to: { full: "Joseph Biden", first: "Joseph", last: "Biden"} },
276
+ { from: "Bierce, Ambrose", to: { full: "Ambrose Bierce", first: "Ambrose", last: "Bierce"} },
277
+ { from: "Biko, Steve", to: { full: "Steve Biko", first: "Steve", last: "Biko"} },
278
+ { from: "Billings, Josh", to: { full: "Josh Billings", first: "Josh", last: "Billings"} },
279
+ { from: "Biondo, Frank", to: { full: "Frank Biondo", first: "Frank", last: "Biondo"} },
280
+ { from: "Birrell, Augustine", to: { full: "Augustine Birrell", first: "Augustine", last: "Birrell"} },
281
+ { from: "Blair, Robert", to: { full: "Robert Blair", first: "Robert", last: "Blair"} },
282
+ { from: "Blair, Tony", to: { full: "Tony Blair", first: "Tony", last: "Blair"} },
283
+ { from: "Blake, William", to: { full: "William Blake", first: "William", last: "Blake"} },
284
+ { from: "Blakey, Art", to: { full: "Art Blakey", first: "Art", last: "Blakey"} },
285
+ { from: "Blalock, Jolene", to: { full: "Jolene Blalock", first: "Jolene", last: "Blalock"} },
286
+ { from: "Blanc, Mel", to: { full: "Mel Blanc", first: "Mel", last: "Blanc"} },
287
+ { from: "Blanc, Raymond", to: { full: "Raymond Blanc", first: "Raymond", last: "Blanc"} },
288
+ { from: "Blanchett, Cate", to: { full: "Cate Blanchett", first: "Cate", last: "Blanchett"} },
289
+ { from: "Blix, Hans", to: { full: "Hans Blix", first: "Hans", last: "Blix"} },
290
+ { from: "Blood, Rebecca", to: { full: "Rebecca Blood", first: "Rebecca", last: "Blood"} },
291
+ { from: "Boethius, Ancius", to: { full: "Ancius Boethius", first: "Ancius", last: "Boethius"} },
292
+ { from: "Bogart, Neil", to: { full: "Neil Bogart", first: "Neil", last: "Bogart"} },
293
+ { from: "Bohm, David", to: { full: "David Bohm", first: "David", last: "Bohm"} },
294
+ { from: "Bohr, Niels", to: { full: "Niels Bohr", first: "Niels", last: "Bohr"} },
295
+ { from: "Boileau-Despreaux, Nicholas", to: { full: "Nicholas Boileau-Despreaux", first: "Nicholas", last: "Boileau-Despreaux"} },
296
+ { from: "Bokini, Ratu Ovini", to: { full: "Ratu Ovini Bokini", first: "Ratu Ovini", last: "Bokini"} },
297
+ { from: "Bolano, Roberto", to: { full: "Roberto Bolano", first: "Roberto", last: "Bolano"} },
298
+ { from: "Bolívar, Simón", to: { full: "Simón Bolívar", first: "Simón", last: "Bolívar"} },
299
+ { from: "Bombeck, Erma", to: { full: "Erma Bombeck", first: "Erma", last: "Bombeck"} },
300
+ { from: "Bonaparte, Napoleon", to: { full: "Napoleon Bonaparte", first: "Napoleon", last: "Bonaparte"} },
301
+ { from: "Bonhoeffer, Dietrich", to: { full: "Dietrich Bonhoeffer", first: "Dietrich", last: "Bonhoeffer"} },
302
+ { from: "Bonner, Elena", to: { full: "Elena Bonner", first: "Elena", last: "Bonner"} },
303
+ { from: "Boone, Louis E.", to: { full: "Louis E Boone", first: "Louis E", last: "Boone"} },
304
+ { from: "Boorstin, Daniel J.", to: { full: "Daniel J Boorstin", first: "Daniel J", last: "Boorstin"} },
305
+ { from: "Booth, William", to: { full: "William Booth", first: "William", last: "Booth"} },
306
+ { from: "Boretz, Benjamin", to: { full: "Benjamin Boretz", first: "Benjamin", last: "Boretz"} },
307
+ { from: "Borges, Jorge Luis", to: { full: "Jorge Luis Borges", first: "Jorge Luis", last: "Borges"} },
308
+ { from: "Borlaug, Norman", to: { full: "Norman Borlaug", first: "Norman", last: "Borlaug"} },
309
+ { from: "Bose, Subhash Chandra", to: { full: "Subhash Chandra Bose", first: "Subhash Chandra", last: "Bose"} },
310
+ { from: "Bossidy, John Collins", to: { full: "John Collins Bossidy", first: "John Collins", last: "Bossidy"} },
311
+ { from: "Boswell, James", to: { full: "James Boswell", first: "James", last: "Boswell"} },
312
+ { from: "Botha, Pik", to: { full: "Pik Botha", first: "Pik", last: "Botha"} },
313
+ { from: "Boutroux, Pierre", to: { full: "Pierre Boutroux", first: "Pierre", last: "Boutroux"} },
314
+ { from: "Bowen, Elizabeth", to: { full: "Elizabeth Bowen", first: "Elizabeth", last: "Bowen"} },
315
+ { from: "Bowerman, Bill", to: { full: "Bill Bowerman", first: "Bill", last: "Bowerman"} },
316
+ { from: "Bowie, David", to: { full: "David Bowie", first: "David", last: "Bowie"} },
317
+ { from: "Bowles, Chester", to: { full: "Chester Bowles", first: "Chester", last: "Bowles"} },
318
+ { from: "Bowles, Paul", to: { full: "Paul Bowles", first: "Paul", last: "Bowles"} },
319
+ { from: "Bowles, Ralston", to: { full: "Ralston Bowles", first: "Ralston", last: "Bowles"} },
320
+ { from: "Box, George E. P.", to: { full: "George E P Box", first: "George E P", last: "Box"} },
321
+ { from: "Bracken, Peg", to: { full: "Peg Bracken", first: "Peg", last: "Bracken"} },
322
+ { from: "Bracken, Thomas", to: { full: "Thomas Bracken", first: "Thomas", last: "Bracken"} },
323
+ { from: "Brackett, Joseph", to: { full: "Joseph Brackett", first: "Joseph", last: "Brackett"} },
324
+ { from: "Bradbury, Ray", to: { full: "Ray Bradbury", first: "Ray", last: "Bradbury"} },
325
+ { from: "Bradley, Omar", to: { full: "Omar Bradley", first: "Omar", last: "Bradley"} },
326
+ { from: "Braine, John", to: { full: "John Braine", first: "John", last: "Braine"} },
327
+ { from: "Brand, Max", to: { full: "Max Brand", first: "Max", last: "Brand"} },
328
+ { from: "Branden, Nathaniel", to: { full: "Nathaniel Branden", first: "Nathaniel", last: "Branden"} },
329
+ { from: "Brando, Marlon", to: { full: "Marlon Brando", first: "Marlon", last: "Brando"} },
330
+ { from: "Braque, Georges", to: { full: "Georges Braque", first: "Georges", last: "Braque"} },
331
+ { from: "Braun, Carol Moseley", to: { full: "Carol Moseley Braun", first: "Carol Moseley", last: "Braun"} },
332
+ { from: "Braun, Wernher von", to: { full: "Wernher von Braun", first: "Wernher", last: "von Braun"} },
333
+ { from: "Bräutigam, Deborah", to: { full: "Deborah Bräutigam", first: "Deborah", last: "Bräutigam"} },
334
+ { from: "Brautigan, Richard", to: { full: "Richard Brautigan", first: "Richard", last: "Brautigan"} },
335
+ { from: "Brazauskas, Algirdas", to: { full: "Algirdas Brazauskas", first: "Algirdas", last: "Brazauskas"} },
336
+ { from: "Brecht, Bertolt", to: { full: "Bertolt Brecht", first: "Bertolt", last: "Brecht"} },
337
+ { from: "Briggs, Joe Bob", to: { full: "Joe Bob Briggs", first: "Joe Bob", last: "Briggs"} },
338
+ { from: "Brilliant, Ashleigh", to: { full: "Ashleigh Brilliant", first: "Ashleigh", last: "Brilliant"} },
339
+ { from: "Brodsky, Joseph", to: { full: "Joseph Brodsky", first: "Joseph", last: "Brodsky"} },
340
+ { from: "Brontë, Emily", to: { full: "Emily Brontë", first: "Emily", last: "Brontë"} },
341
+ { from: "Brooks, Gwendolyn", to: { full: "Gwendolyn Brooks", first: "Gwendolyn", last: "Brooks"} },
342
+ { from: "Brooks, Mel", to: { full: "Mel Brooks", first: "Mel", last: "Brooks"} },
343
+ { from: "Brothers, Dr. Joyce", to: { full: "Joyce Brothers", title: "Dr", first: "Joyce", last: "Brothers"} },
344
+ { from: "Broun, Heywood", to: { full: "Heywood Broun", first: "Heywood", last: "Broun"} },
345
+ { from: "Brown, Alton", to: { full: "Alton Brown", first: "Alton", last: "Brown"} },
346
+ { from: "Brown, Earle", to: { full: "Earle Brown", first: "Earle", last: "Brown"} },
347
+ { from: "Brown, Elizabeth", to: { full: "Elizabeth Brown", first: "Elizabeth", last: "Brown"} },
348
+ { from: "Brown, Julie", to: { full: "Julie Brown", first: "Julie", last: "Brown"} },
349
+ { from: "Brown, Sam", to: { full: "Sam Brown", first: "Sam", last: "Brown"} },
350
+ { from: "Browne, Harry", to: { full: "Harry Browne", first: "Harry", last: "Browne"} },
351
+ { from: "Browne, Sir Thomas", to: { full: "Sir Thomas Browne", prefix: "Sir", first: "Thomas", last: "Browne"} },
352
+ { from: "Browning, Elizabeth Barrett", to: { full: "Elizabeth Barrett Browning", first: "Elizabeth Barrett", last: "Browning"} },
353
+ { from: "Browning, Robert", to: { full: "Robert Browning", first: "Robert", last: "Browning"} },
354
+ { from: "Broyard, Anatole", to: { full: "Anatole Broyard", first: "Anatole", last: "Broyard"} },
355
+ { from: "Bruce, Lenny", to: { full: "Lenny Bruce", first: "Lenny", last: "Bruce"} },
356
+ { from: "Bruno, Giordano", to: { full: "Giordano Bruno", first: "Giordano", last: "Bruno"} },
357
+ { from: "Brutus, Marcus Junius", to: { full: "Marcus Junius Brutus", first: "Marcus Junius", last: "Brutus"} },
358
+ { from: "Bryan, William Jennings", to: { full: "William Jennings Bryan", first: "William Jennings", last: "Bryan"} },
359
+ { from: "Bryant, William Cullen", to: { full: "William Cullen Bryant", first: "William Cullen", last: "Bryant"} },
360
+ { from: "Bryson, Bill", to: { full: "Bill Bryson", first: "Bill", last: "Bryson"} },
361
+ { from: "Buber, Martin", to: { full: "Martin Buber", first: "Martin", last: "Buber"} },
362
+ { from: "Buchan, John", to: { full: "John Buchan", first: "John", last: "Buchan"} },
363
+ { from: "Buck, Pearl", to: { full: "Pearl Buck", first: "Pearl", last: "Buck"} },
364
+ { from: "Buckles, Frank", to: { full: "Frank Buckles", first: "Frank", last: "Buckles"} },
365
+ { from: "Buddha, Gautama", to: { full: "Gautama Buddha", first: "Gautama", last: "Buddha"} },
366
+ { from: "Buffett, Warren", to: { full: "Warren Buffett", first: "Warren", last: "Buffett"} },
367
+ { from: "Bujold, Lois McMaster", to: { full: "Lois McMaster Bujold", first: "Lois McMaster", last: "Bujold"} },
368
+ { from: "Bullock, Sandra", to: { full: "Sandra Bullock", first: "Sandra", last: "Bullock"} },
369
+ { from: "Bune, Poseci", to: { full: "Poseci Bune", first: "Poseci", last: "Bune"} },
370
+ { from: "Buñuel, Luis", to: { full: "Luis Buñuel", first: "Luis", last: "Buñuel"} },
371
+ { from: "Buonarroti, Michelangelo", to: { full: "Michelangelo Buonarroti", first: "Michelangelo", last: "Buonarroti"} },
372
+ { from: "Burke, Edmund", to: { full: "Edmund Burke", first: "Edmund", last: "Burke"} },
373
+ { from: "Burnett, Carol", to: { full: "Carol Burnett", first: "Carol", last: "Burnett"} },
374
+ { from: "Burnham, Daniel", to: { full: "Daniel Burnham", first: "Daniel", last: "Burnham"} },
375
+ { from: "Burnham, Frederick Russell", to: { full: "Frederick Russell Burnham", first: "Frederick Russell", last: "Burnham"} },
376
+ { from: "Burns, Edward", to: { full: "Edward Burns", first: "Edward", last: "Burns"} },
377
+ { from: "Burns, Robert", to: { full: "Robert Burns", first: "Robert", last: "Burns"} },
378
+ { from: "Burroughs, John", to: { full: "John Burroughs", first: "John", last: "Burroughs"} },
379
+ { from: "Burroughs, William S.", to: { full: "William S Burroughs", first: "William S", last: "Burroughs"} },
380
+ { from: "Burton, Sir Richard Francis", to: { full: "Richard Francis Burton", title: "Sir", first: "Richard Francis", last: "Burton"} },
381
+ { from: "Buscaglia, Leo", to: { full: "Leo Buscaglia", first: "Leo", last: "Buscaglia"} },
382
+ { from: "Bush, George H. W.", to: { full: "George H W Bush", first: "George H W", last: "Bush"} },
383
+ { from: "Bush, George W.", to: { full: "George W Bush", first: "George W", last: "Bush"} },
384
+ { from: "Bush, John Carder", to: { full: "John Carder Bush", first: "John Carder", last: "Bush"} },
385
+ { from: "Bush, Kate", to: { full: "Kate Bush", first: "Kate", last: "Bush"} },
386
+ { from: "Bush, Vannevar", to: { full: "Vannevar Bush", first: "Vannevar", last: "Bush"} },
387
+ { from: "Butler, Amir", to: { full: "Amir Butler", first: "Amir", last: "Butler"} },
388
+ { from: "Butler, Smedley", to: { full: "Smedley Butler", first: "Smedley", last: "Butler"} },
389
+ { from: "Butler Sloss, Dame Elizabeth", to: { full: "Dame Elizabeth Butler Sloss", first: "Dame Elizabeth", last: "Butler Sloss"} },
390
+ { from: "Buzan, Tony", to: { full: "Tony Buzan", first: "Tony", last: "Buzan"} },
391
+ { from: "Byrd, Richard E.", to: { full: "Richard E Byrd", first: "Richard E", last: "Byrd"} },
392
+ { from: "Byrd, Robert", to: { full: "Robert Byrd", first: "Robert", last: "Byrd"} },
393
+ { from: "Byrne, David", to: { full: "David Byrne", first: "David", last: "Byrne"} },
394
+ { from: "Byrne, Robert", to: { full: "Robert Byrne", first: "Robert", last: "Byrne"} },
395
+ { from: "Byron, Lord", to: { full: "Lord Byron", first: "Lord", last: "Byron"} },
396
+
397
+ { from: "Cabell, James Branch", to: { full: "James Branch Cabell", first: "James Branch", last: "Cabell"} },
398
+ { from: "Caesar, Irving", to: { full: "Irving Caesar", first: "Irving", last: "Caesar"} },
399
+ { from: "Caesar, Julius", to: { full: "Julius Caesar", first: "Julius", last: "Caesar"} },
400
+ { from: "Cage, John", to: { full: "John Cage", first: "John", last: "Cage"} },
401
+ { from: "Cain, Peter", to: { full: "Peter Cain", first: "Peter", last: "Cain"} },
402
+ { from: "Callaghan, James", to: { full: "James Callaghan", first: "James", last: "Callaghan"} },
403
+ { from: "Calvin, John", to: { full: "John Calvin", first: "John", last: "Calvin"} },
404
+ { from: "Cameron, Julia", to: { full: "Julia Cameron", first: "Julia", last: "Cameron"} },
405
+ { from: "Cameron, Kirk", to: { full: "Kirk Cameron", first: "Kirk", last: "Cameron"} },
406
+ { from: "Camus, Albert", to: { full: "Albert Camus", first: "Albert", last: "Camus"} },
407
+ { from: "Cannon, James P.", to: { full: "James P Cannon", first: "James P", last: "Cannon"} },
408
+ { from: "Canseco, José", to: { full: "José Canseco", first: "José", last: "Canseco"} },
409
+ { from: "Cantona, Eric", to: { full: "Eric Cantona", first: "Eric", last: "Cantona"} },
410
+ { from: "Cao, Cao", to: { full: "Cao Cao", first: "Cao", last: "Cao"} },
411
+ { from: "Čapek, Karel", to: { full: "Karel Čapek", first: "Karel", last: "Čapek"} },
412
+ { from: "Capote, Truman", to: { full: "Truman Capote", first: "Truman", last: "Capote"} },
413
+ { from: "Capone, Al", to: { full: "Al Capone", first: "Al", last: "Capone"} },
414
+ { from: "Card, Orson Scott", to: { full: "Orson Scott Card", first: "Orson Scott", last: "Card"} },
415
+ { from: "Carducci, Giosue", to: { full: "Giosue Carducci", first: "Giosue", last: "Carducci"} },
416
+ { from: "Carey, Mariah", to: { full: "Mariah Carey", first: "Mariah", last: "Carey"} },
417
+ { from: "Carey, Sandra", to: { full: "Sandra Carey", first: "Sandra", last: "Carey"} },
418
+ { from: "Carlin, George", to: { full: "George Carlin", first: "George", last: "Carlin"} },
419
+ { from: "Carlson, Tucker", to: { full: "Tucker Carlson", first: "Tucker", last: "Carlson"} },
420
+ { from: "Carlyle, Thomas", to: { full: "Thomas Carlyle", first: "Thomas", last: "Carlyle"} },
421
+ { from: "Carnegie, Andrew", to: { full: "Andrew Carnegie", first: "Andrew", last: "Carnegie"} },
422
+ { from: "Carolla, Adam", to: { full: "Adam Carolla", first: "Adam", last: "Carolla"} },
423
+ { from: "Carrel, Alexis", to: { full: "Alexis Carrel", first: "Alexis", last: "Carrel"} },
424
+ { from: "Carrey, Jim", to: { full: "Jim Carrey", first: "Jim", last: "Carrey"} },
425
+ { from: "Carroll, Lewis", to: { full: "Lewis Carroll", first: "Lewis", last: "Carroll"} },
426
+ { from: "Carroll, Tom", to: { full: "Tom Carroll", first: "Tom", last: "Carroll"} },
427
+ { from: "Carson, Rachel", to: { full: "Rachel Carson", first: "Rachel", last: "Carson"} },
428
+ { from: "Carter, Elliott", to: { full: "Elliott Carter", first: "Elliott", last: "Carter"} },
429
+ { from: "Carter, Howard", to: { full: "Howard Carter", first: "Howard", last: "Carter"} },
430
+ { from: "Carter, Jimmy", to: { full: "Jimmy Carter", first: "Jimmy", last: "Carter"} },
431
+ { from: "Carville, James", to: { full: "James Carville", first: "James", last: "Carville"} },
432
+ { from: "Casals, Pablo", to: { full: "Pablo Casals", first: "Pablo", last: "Casals"} },
433
+ { from: "Cash, Johnny", to: { full: "Johnny Cash", first: "Johnny", last: "Cash"} },
434
+ { from: "Castaneda, Carlos", to: { full: "Carlos Castaneda", first: "Carlos", last: "Castaneda"} },
435
+ { from: "Castro, Fidel", to: { full: "Fidel Castro", first: "Fidel", last: "Castro"} },
436
+ { from: "Cather, Willa", to: { full: "Willa Cather", first: "Willa", last: "Cather"} },
437
+ { from: "Catt, Michael", to: { full: "Michael Catt", first: "Michael", last: "Catt"} },
438
+ { from: "Catullus, Gaius Valerius", to: { full: "Gaius Valerius Catullus", first: "Gaius Valerius", last: "Catullus"} },
439
+ { from: "Caucau, Adi Asenaca", to: { full: "Adi Asenaca Caucau", first: "Adi Asenaca", last: "Caucau"} },
440
+ { from: "Cavell, Edith", to: { full: "Edith Cavell", first: "Edith", last: "Cavell"} },
441
+ { from: "Cavett, Dick", to: { full: "Dick Cavett", first: "Dick", last: "Cavett"} },
442
+ { from: "Cervantes, Miguel de", to: { full: "Miguel de Cervantes", first: "Miguel", last: "de Cervantes"} },
443
+ { from: "Chambers, Oswald", to: { full: "Oswald Chambers", first: "Oswald", last: "Chambers"} },
444
+ { from: "Chandler, Raymond", to: { full: "Raymond Chandler", first: "Raymond", last: "Chandler"} },
445
+ { from: "Lon Chaney, Sr.", to: { full: "Lon Chaney", first: "Lon", last: "Chaney", suffix: "Sr"} },
446
+ { from: "Channing, William Ellery", to: { full: "William Ellery Channing", first: "William Ellery", last: "Channing"} },
447
+ { from: "Chapin, Harry", to: { full: "Harry Chapin", first: "Harry", last: "Chapin"} },
448
+ { from: "Chapman, Colin", to: { full: "Colin Chapman", first: "Colin", last: "Chapman"} },
449
+ { from: "Chappelle, Dave", to: { full: "Dave Chappelle", first: "Dave", last: "Chappelle"} },
450
+ { skip: true, from: "Charles II, King of England", to: { full: "King of England Charles II", first: "King of England", last: "Charles II"} },
451
+ { skip: true, from: "Charles V, Holy Roman Emperor", to: { full: "Holy Roman Emperor Charles V", first: "Holy Roman Emperor", last: "Charles V"} },
452
+ { from: "Charles, Ray", to: { full: "Ray Charles", first: "Ray", last: "Charles"} },
453
+ { from: "Chateaubriand, François-René de", to: { full: "François-René de Chateaubriand", first: "François-René", last: "de Chateaubriand"} },
454
+ { from: "Chatwin, Bruce", to: { full: "Bruce Chatwin", first: "Bruce", last: "Chatwin"} },
455
+ { from: "Chaucer, Geoffrey", to: { full: "Geoffrey Chaucer", first: "Geoffrey", last: "Chaucer"} },
456
+ { from: "Chaudhry, Mahendra", to: { full: "Mahendra Chaudhry", first: "Mahendra", last: "Chaudhry"} },
457
+ { from: "Chavez, Cesar", to: { full: "Cesar Chavez", first: "Cesar", last: "Chavez"} },
458
+ { from: "Cheever, John", to: { full: "John Cheever", first: "John", last: "Cheever"} },
459
+ { from: "Cherryh, C. J.", to: { full: "C J Cherryh", first: "C J", last: "Cherryh"} },
460
+ { from: "Chesterton, Gilbert Keith", to: { full: "Gilbert Keith Chesterton", first: "Gilbert Keith", last: "Chesterton"} },
461
+ { from: "Chevalier, Maurice", to: { full: "Maurice Chevalier", first: "Maurice", last: "Chevalier"} },
462
+ { from: "Chiariglione, Leonardo", to: { full: "Leonardo Chiariglione", first: "Leonardo", last: "Chiariglione"} },
463
+ { from: "Chicago, Judy", to: { full: "Judy Chicago", first: "Judy", last: "Chicago"} },
464
+ { from: "Child, Julia", to: { full: "Julia Child", first: "Julia", last: "Child"} },
465
+ { from: "Cho, Margaret", to: { full: "Margaret Cho", first: "Margaret", last: "Cho"} },
466
+ { from: "Choate, Rufus", to: { full: "Rufus Choate", first: "Rufus", last: "Choate"} },
467
+ { from: "Christie, Agatha", to: { full: "Agatha Christie", first: "Agatha", last: "Christie"} },
468
+ { from: "Chrysostom, John", to: { full: "John Chrysostom", first: "John", last: "Chrysostom"} },
469
+ { from: "Churchill, Winston", to: { full: "Winston Churchill", first: "Winston", last: "Churchill"} },
470
+ { from: "Ciccone, Madonna", to: { full: "Madonna Ciccone", first: "Madonna", last: "Ciccone"} },
471
+ { from: "Cioran, Emile", to: { full: "Emile Cioran", first: "Emile", last: "Cioran"} },
472
+ { from: "Clancy, Tom", to: { full: "Tom Clancy", first: "Tom", last: "Clancy"} },
473
+ { from: "Clapton, Eric", to: { full: "Eric Clapton", first: "Eric", last: "Clapton"} },
474
+ { from: "Clark, Frank A.", to: { full: "Frank A Clark", first: "Frank A", last: "Clark"} },
475
+ { from: "Clark, Ramsey", to: { full: "Ramsey Clark", first: "Ramsey", last: "Clark"} },
476
+ { from: "Clark, Wesley", to: { full: "Wesley Clark", first: "Wesley", last: "Clark"} },
477
+ { from: "Clarke, Arthur C.", to: { full: "Arthur C Clarke", first: "Arthur C", last: "Clarke"} },
478
+ { from: "Clausewitz, Karl von", to: { full: "Karl von Clausewitz", first: "Karl", last: "von Clausewitz"} },
479
+ { from: "Clay, Andrew Dice", to: { full: "Andrew Dice Clay", first: "Andrew Dice", last: "Clay"} },
480
+ { from: "Clay, Henry", to: { full: "Henry Clay", first: "Henry", last: "Clay"} },
481
+ { from: "Clemenceau, Georges", to: { full: "Georges Clemenceau", first: "Georges", last: "Clemenceau"} },
482
+ { from: "Clinton, Bill", to: { full: "Bill Clinton", first: "Bill", last: "Clinton"} },
483
+ { from: "Clinton, Hillary", to: { full: "Hillary Clinton", first: "Hillary", last: "Clinton"} },
484
+ { from: "Clough, Brian", to: { full: "Brian Clough", first: "Brian", last: "Clough"} },
485
+ { from: "Cobain, Kurt Donald", to: { full: "Kurt Donald Cobain", first: "Kurt Donald", last: "Cobain"} },
486
+ { from: "Cochran, Johnnie", to: { full: "Johnnie Cochran", first: "Johnnie", last: "Cochran"} },
487
+ { from: "Cocteau, Jean", to: { full: "Jean Cocteau", first: "Jean", last: "Cocteau"} },
488
+ { from: "Codrescu, Andrei", to: { full: "Andrei Codrescu", first: "Andrei", last: "Codrescu"} },
489
+ { from: "Cohen, Catman", to: { full: "Catman Cohen", first: "Catman", last: "Cohen"} },
490
+ { from: "Cohen, Leonard", to: { full: "Leonard Cohen", first: "Leonard", last: "Cohen"} },
491
+ { from: "Cohen, Nick", to: { full: "Nick Cohen", first: "Nick", last: "Cohen"} },
492
+ { from: "Cohen, Richard", to: { full: "Richard Cohen", first: "Richard", last: "Cohen"} },
493
+ { from: "Coleridge, Samuel Taylor", to: { full: "Samuel Taylor Coleridge", first: "Samuel Taylor", last: "Coleridge"} },
494
+ { from: "Collett, Camilla", to: { full: "Camilla Collett", first: "Camilla", last: "Collett"} },
495
+ { from: "Collier, Jeremy", to: { full: "Jeremy Collier", first: "Jeremy", last: "Collier"} },
496
+ { from: "Collins, Tim", to: { full: "Tim Collins", first: "Tim", last: "Collins"} },
497
+ { from: "Collison, Chris", to: { full: "Chris Collison", first: "Chris", last: "Collison"} },
498
+ { from: "Colson, Charles", to: { full: "Charles Colson", first: "Charles", last: "Colson"} },
499
+ { from: "Colten, James", to: { full: "James Colten", first: "James", last: "Colten"} },
500
+ { from: "Colton, Charles Caleb", to: { full: "Charles Caleb Colton", first: "Charles Caleb", last: "Colton"} },
501
+ { from: "Coltrane, John", to: { full: "John Coltrane", first: "John", last: "Coltrane"} },
502
+ { from: "Columbus, Christopher", to: { full: "Christopher Columbus", first: "Christopher", last: "Columbus"} },
503
+ { from: "Commager, Henry Steele", to: { full: "Henry Steele Commager", first: "Henry Steele", last: "Commager"} },
504
+ { from: "Congreve, William", to: { full: "William Congreve", first: "William", last: "Congreve"} },
505
+ { from: "Conlon, Fred", to: { full: "Fred Conlon", first: "Fred", last: "Conlon"} },
506
+ { from: "Connolly, Cyril", to: { full: "Cyril Connolly", first: "Cyril", last: "Connolly"} },
507
+ { from: "Conrad, Joseph", to: { full: "Joseph Conrad", first: "Joseph", last: "Conrad"} },
508
+ { from: "Conway, Anne", to: { full: "Anne Conway", first: "Anne", last: "Conway"} },
509
+ { from: "Conway Morris, Simon", to: { full: "Simon Conway Morris", first: "Simon", last: "Conway Morris"} },
510
+ { from: "Cook, Peter", to: { full: "Peter Cook", first: "Peter", last: "Cook"} },
511
+ { from: "Cooley, Mason", to: { full: "Mason Cooley", first: "Mason", last: "Cooley"} },
512
+ { from: "Coolidge, Calvin", to: { full: "Calvin Coolidge", first: "Calvin", last: "Coolidge"} },
513
+ { from: "Cooper, Alice", to: { full: "Alice Cooper", first: "Alice", last: "Cooper"} },
514
+ { from: "Copeland, Stewart", to: { full: "Stewart Copeland", first: "Stewart", last: "Copeland"} },
515
+ { from: "Copernicus, Nicolaus", to: { full: "Nicolaus Copernicus", first: "Nicolaus", last: "Copernicus"} },
516
+ { from: "Copland, Aaron", to: { full: "Aaron Copland", first: "Aaron", last: "Copland"} },
517
+ { from: "Corea, Chick", to: { full: "Chick Corea", first: "Chick", last: "Corea"} },
518
+ { from: "Corea, Vernon", to: { full: "Vernon Corea", first: "Vernon", last: "Corea"} },
519
+ { from: "Corey, Peter", to: { full: "Peter Corey", first: "Peter", last: "Corey"} },
520
+ { from: "Corgan, Billy", to: { full: "Billy Corgan", first: "Billy", last: "Corgan"} },
521
+ { from: "Cortázar, Julio", to: { full: "Julio Cortázar", first: "Julio", last: "Cortázar"} },
522
+ { from: "Cosby, Bill", to: { full: "Bill Cosby", first: "Bill", last: "Cosby"} },
523
+ { from: "Coulter, Ann", to: { full: "Ann Coulter", first: "Ann", last: "Coulter"} },
524
+ { from: "Coupland, Douglas", to: { full: "Douglas Coupland", first: "Douglas", last: "Coupland"} },
525
+ { from: "Courtney, Margaret", to: { full: "Margaret Courtney", first: "Margaret", last: "Courtney"} },
526
+ { from: "Covington, Stephen", to: { full: "Stephen Covington", first: "Stephen", last: "Covington"} },
527
+ { from: "Coward, Noel", to: { full: "Noel Coward", first: "Noel", last: "Coward"} },
528
+ { from: "Cowley, Abraham", to: { full: "Abraham Cowley", first: "Abraham", last: "Cowley"} },
529
+ { from: "Cowper, William", to: { full: "William Cowper", first: "William", last: "Cowper"} },
530
+ { from: "Crace, Jim", to: { full: "Jim Crace", first: "Jim", last: "Crace"} },
531
+ { from: "Craik, Dinah", to: { full: "Dinah Craik", first: "Dinah", last: "Craik"} },
532
+ { from: "Crane, Dr. Frank", to: { full: "Frank Crane", suffix: "Dr", first: "Frank", last: "Crane"} },
533
+ { from: "Crane, Stephen", to: { full: "Stephen Crane", first: "Stephen", last: "Crane"} },
534
+ { from: "Cray, Seymour", to: { full: "Seymour Cray", first: "Seymour", last: "Cray"} },
535
+ { from: "Crick, Francis", to: { full: "Francis Crick", first: "Francis", last: "Crick"} },
536
+ { from: "Crimmins, Barry", to: { full: "Barry Crimmins", first: "Barry", last: "Crimmins"} },
537
+ { from: "Cringely, Robert X.", to: { full: "Robert X Cringely", first: "Robert X", last: "Cringely"} },
538
+ { from: "Crisp, Quentin", to: { full: "Quentin Crisp", first: "Quentin", last: "Crisp"} },
539
+ { from: "Crockett, Davy", to: { full: "Davy Crockett", first: "Davy", last: "Crockett"} },
540
+ { from: "Cromwell, Oliver", to: { full: "Oliver Cromwell", first: "Oliver", last: "Cromwell"} },
541
+ { from: "Cross, David", to: { full: "David Cross", first: "David", last: "Cross"} },
542
+ { from: "Crowley, Aleister", to: { full: "Aleister Crowley", first: "Aleister", last: "Crowley"} },
543
+ { from: "Crumb, Robert", to: { full: "Robert Crumb", first: "Robert", last: "Crumb"} },
544
+ { from: "Cummings, E. E.", to: { full: "E E Cummings", first: "E E", last: "Cummings"} },
545
+ { from: "Cunningham, Allan", to: { full: "Allan Cunningham", first: "Allan", last: "Cunningham"} },
546
+ { from: "Cunningham, Ward", to: { full: "Ward Cunningham", first: "Ward", last: "Cunningham"} },
547
+ { from: "Curie, Marie", to: { full: "Marie Curie", first: "Marie", last: "Curie"} },
548
+
549
+ { from: "Daley, Richard J.", to: { full: "Richard J Daley", first: "Richard J", last: "Daley"} },
550
+ { from: "Dali, Salvador", to: { full: "Salvador Dali", first: "Salvador", last: "Dali"} },
551
+ { from: "Daly, Carson", to: { full: "Carson Daly", first: "Carson", last: "Daly"} },
552
+ { from: "Daly, Daniel", to: { full: "Daniel Daly", first: "Daniel", last: "Daly"} },
553
+ { from: "Damon, Johnny", to: { full: "Johnny Damon", first: "Johnny", last: "Damon"} },
554
+ { from: "Dangerfield, Rodney", to: { full: "Rodney Dangerfield", first: "Rodney", last: "Dangerfield"} },
555
+ { from: "Daniel, Samuel", to: { full: "Samuel Daniel", first: "Samuel", last: "Daniel"} },
556
+ { from: "Daniels, Anthony", to: { full: "Anthony Daniels", first: "Anthony", last: "Daniels"} },
557
+ { from: "Darrow, Clarence", to: { full: "Clarence Darrow", first: "Clarence", last: "Darrow"} },
558
+ { from: "Darwin, Charles", to: { full: "Charles Darwin", first: "Charles", last: "Darwin"} },
559
+ { from: "Dauten, Dale", to: { full: "Dale Dauten", first: "Dale", last: "Dauten"} },
560
+ { from: "Davis, Bette", to: { full: "Bette Davis", first: "Bette", last: "Davis"} },
561
+ { from: "Davis, Miles", to: { full: "Miles Davis", first: "Miles", last: "Davis"} },
562
+ { from: "Davisson, Richard", to: { full: "Richard Davisson", first: "Richard", last: "Davisson"} },
563
+ { from: "Dawkins, Richard", to: { full: "Richard Dawkins", first: "Richard", last: "Dawkins"} },
564
+ { from: "Day, Carl", to: { full: "Carl Day", first: "Carl", last: "Day"} },
565
+ { from: "Dayan, Moshe", to: { full: "Moshe Dayan", first: "Moshe", last: "Dayan"} },
566
+ { from: "Dean, Howard", to: { full: "Howard Dean", first: "Howard", last: "Dean"} },
567
+ { from: "Dean, James", to: { full: "James Dean", first: "James", last: "Dean"} },
568
+ { from: "Dean, John", to: { full: "John Dean", first: "John", last: "Dean"} },
569
+ { from: "de Bono, Edward", to: { full: "Edward de Bono", first: "Edward", last: "de Bono"} },
570
+ { from: "Debs, Eugene V.", to: { full: "Eugene V Debs", first: "Eugene V", last: "Debs"} },
571
+ { from: "Dee, Jack", to: { full: "Jack Dee", first: "Jack", last: "Dee"} },
572
+ { from: "Degas, Edgar", to: { full: "Edgar Degas", first: "Edgar", last: "Degas"} },
573
+ { from: "DeGeneres, Ellen", to: { full: "Ellen DeGeneres", first: "Ellen", last: "DeGeneres"} },
574
+ { from: "Delacroix, Eugène", to: { full: "Eugène Delacroix", first: "Eugène", last: "Delacroix"} },
575
+ { from: "de la Rocha, Zack", to: { full: "Zack de la Rocha", first: "Zack", last: "de la Rocha"} },
576
+ { from: "Delay, Tom", to: { full: "Tom Delay", first: "Tom", last: "Delay"} },
577
+ { from: "Delson, Brad", to: { full: "Brad Delson", first: "Brad", last: "Delson"} },
578
+ { from: "de Mello, Anthony", to: { full: "Anthony de Mello", first: "Anthony", last: "de Mello"} },
579
+ { from: "de Molay, Jacques", to: { full: "Jacques de Molay", first: "Jacques", last: "de Molay"} },
580
+ { from: "Denham, John", to: { full: "John Denham", first: "John", last: "Denham"} },
581
+ { from: "Depew, Chauncey", to: { full: "Chauncey Depew", first: "Chauncey", last: "Depew"} },
582
+ { from: "de Raadt, Theo", to: { full: "Theo de Raadt", first: "Theo", last: "de Raadt"} },
583
+ { from: "Derrida, Jacques", to: { full: "Jacques Derrida", first: "Jacques", last: "Derrida"} },
584
+ { from: "Descartes, René", to: { full: "René Descartes", first: "René", last: "Descartes"} },
585
+ { from: "DeShannon, Jackie", to: { full: "Jackie DeShannon", first: "Jackie", last: "DeShannon"} },
586
+ { from: "Desmond, Paul", to: { full: "Paul Desmond", first: "Paul", last: "Desmond"} },
587
+ { from: "Deutsch, David", to: { full: "David Deutsch", first: "David", last: "Deutsch"} },
588
+ { from: "Devine, Carl", to: { full: "Carl Devine", first: "Carl", last: "Devine"} },
589
+ { from: "Devo, musical group", to: { full: "musical group Devo", first: "musical group", last: "Devo"} },
590
+ { skip: true, from: "DeWolfe, Ron (born L. Ron Hubbard, Jr.)", to: { full: "Jr.) DeWolfe, Ron (born L Ron Hubbard", first: "Jr.)", last: "DeWolfe, Ron (born L Ron Hubbard"} },
591
+ { from: "Dhavernas, Caroline", to: { full: "Caroline Dhavernas", first: "Caroline", last: "Dhavernas"} },
592
+ { from: "Diana, Princess of Wales", to: { full: "Princess of Wales Diana", first: "Princess of Wales", last: "Diana"} },
593
+ { from: "DiCaprio, Leonardo", to: { full: "Leonardo DiCaprio", first: "Leonardo", last: "DiCaprio"} },
594
+ { skip: true, from: "Dick, Philip Kindred - a.k.a. PKD", to: { full: "Philip Kindred - a.k.a. PKD Dick", first: "Philip Kindred - a.k.a. PKD", last: "Dick"} },
595
+ { from: "Dickens, Charles", to: { full: "Charles Dickens", first: "Charles", last: "Dickens"} },
596
+ { from: "Dickinson, Emily", to: { full: "Emily Dickinson", first: "Emily", last: "Dickinson"} },
597
+ { from: "Dickson, Leonard Eugene", to: { full: "Leonard Eugene Dickson", first: "Leonard Eugene", last: "Dickson"} },
598
+ { from: "Diderot, Denis", to: { full: "Denis Diderot", first: "Denis", last: "Diderot"} },
599
+ { from: "Didion, Joan", to: { full: "Joan Didion", first: "Joan", last: "Didion"} },
600
+ { from: "Dillard, Annie", to: { full: "Annie Dillard", first: "Annie", last: "Dillard"} },
601
+ { from: "Dirac, Paul", to: { full: "Paul Dirac", first: "Paul", last: "Dirac"} },
602
+ { from: "Dirksen, Everett", to: { full: "Everett Dirksen", first: "Everett", last: "Dirksen"} },
603
+ { from: "Disney, Roy O.", to: { full: "Roy O Disney", first: "Roy O", last: "Disney"} },
604
+ { from: "Disney, Walt", to: { full: "Walt Disney", first: "Walt", last: "Disney"} },
605
+ { from: "Disraeli, Benjamin", to: { full: "Benjamin Disraeli", first: "Benjamin", last: "Disraeli"} },
606
+ { from: "Dijkstra, Edsger", to: { full: "Edsger Dijkstra", first: "Edsger", last: "Dijkstra"} },
607
+ { from: "Djilas, Milovan", to: { full: "Milovan Djilas", first: "Milovan", last: "Djilas"} },
608
+ { from: "Dobson, James", to: { full: "James Dobson", first: "James", last: "Dobson"} },
609
+ { from: "Dogg, Snoop", to: { full: "Snoop Dogg", first: "Snoop", last: "Dogg"} },
610
+ { from: "Doherty, Peter", to: { full: "Peter Doherty", first: "Peter", last: "Doherty"} },
611
+ { from: "Dolphy, Eric", to: { full: "Eric Dolphy", first: "Eric", last: "Dolphy"} },
612
+ { from: "Domeyko, Ignacy", to: { full: "Ignacy Domeyko", first: "Ignacy", last: "Domeyko"} },
613
+ { from: "Dominus, Mark-Jason", to: { full: "Mark-Jason Dominus", first: "Mark-Jason", last: "Dominus"} },
614
+ { from: "Donaldson, Stephen R.", to: { full: "Stephen R Donaldson", first: "Stephen R", last: "Donaldson"} },
615
+ { from: "Donne, John", to: { full: "John Donne", first: "John", last: "Donne"} },
616
+ { from: "Dornfest, Rael", to: { full: "Rael Dornfest", first: "Rael", last: "Dornfest"} },
617
+ { from: "Dostoevsky, Fyodor", to: { full: "Fyodor Dostoevsky", first: "Fyodor", last: "Dostoevsky"} },
618
+ { from: "Douglas, Donald", to: { full: "Donald Douglas", first: "Donald", last: "Douglas"} },
619
+ { from: "Douglas, Kirk", to: { full: "Kirk Douglas", first: "Kirk", last: "Douglas"} },
620
+ { from: "Douglas, Tommy", to: { full: "Tommy Douglas", first: "Tommy", last: "Douglas"} },
621
+ { from: "Douglass, David", to: { full: "David Douglass", first: "David", last: "Douglass"} },
622
+ { from: "Douglass, Frederick", to: { full: "Frederick Douglass", first: "Frederick", last: "Douglass"} },
623
+ { from: "Doyle, Arthur Conan", to: { full: "Arthur Conan Doyle", first: "Arthur Conan", last: "Doyle"} },
624
+ { from: "Drake, Nick", to: { full: "Nick Drake", first: "Nick", last: "Drake"} },
625
+ { from: "Dreiser, Theodore", to: { full: "Theodore Dreiser", first: "Theodore", last: "Dreiser"} },
626
+ { from: "Drucker, Peter F.", to: { full: "Peter F Drucker", first: "Peter F", last: "Drucker"} },
627
+ { from: "Duff, Hilary", to: { full: "Hilary Duff", first: "Hilary", last: "Duff"} },
628
+ { from: "Dumas, Alexandre", to: { full: "Alexandre Dumas", first: "Alexandre", last: "Dumas"} },
629
+ { from: "Dunst, Kirsten", to: { full: "Kirsten Dunst", first: "Kirsten", last: "Dunst"} },
630
+ { from: "Durante, Jimmy", to: { full: "Jimmy Durante", first: "Jimmy", last: "Durante"} },
631
+ { from: "Durbin, Richard", to: { full: "Richard Durbin", first: "Richard", last: "Durbin"} },
632
+ { from: "Durrell, Gerald", to: { full: "Gerald Durrell", first: "Gerald", last: "Durrell"} },
633
+ { from: "Dutton, Denis", to: { full: "Denis Dutton", first: "Denis", last: "Dutton"} },
634
+ { from: "Dyer, Wayne", to: { full: "Wayne Dyer", first: "Wayne", last: "Dyer"} },
635
+ { from: "Dyke, Henry van", to: { full: "Henry van Dyke", first: "Henry", last: "van Dyke"} },
636
+ { from: "Dylan, Bob", to: { full: "Bob Dylan", first: "Bob", last: "Dylan"} },
637
+ { from: "Dyson, Freeman", to: { full: "Freeman Dyson", first: "Freeman", last: "Dyson"} },
638
+
639
+ { from: "Early, Jubal Anderson", to: { full: "Jubal Anderson Early", first: "Jubal Anderson", last: "Early"} },
640
+ { from: "Eastwood, Clint", to: { full: "Clint Eastwood", first: "Clint", last: "Eastwood"} },
641
+ { from: "Ebadi, Shirin", to: { full: "Shirin Ebadi", first: "Shirin", last: "Ebadi"} },
642
+ { from: "Eban, Abba", to: { full: "Abba Eban", first: "Abba", last: "Eban"} },
643
+ { from: "Ebert, Roger", to: { full: "Roger Ebert", first: "Roger", last: "Ebert"} },
644
+ { from: "Ecclestone, Bernie", to: { full: "Bernie Ecclestone", first: "Bernie", last: "Ecclestone"} },
645
+ { from: "Echols, Damien", to: { full: "Damien Echols", first: "Damien", last: "Echols"} },
646
+ { from: "Eckhart, Meister", to: { full: "Meister Eckhart", first: "Meister", last: "Eckhart"} },
647
+ { from: "Eddington, Arthur Stanley", to: { full: "Arthur Stanley Eddington", first: "Arthur Stanley", last: "Eddington"} },
648
+ { from: "Edison, Thomas Alva", to: { full: "Thomas Alva Edison", first: "Thomas Alva", last: "Edison"} },
649
+ { skip: true, from: "Edward VII, King of England", to: { full: "King of England Edward VII", first: "King of England", last: "Edward VII"} },
650
+ { from: "Edwards, Edwin W.", to: { full: "Edwin W Edwards", first: "Edwin W", last: "Edwards"} },
651
+ { from: "Edwards, John", to: { full: "John Edwards", first: "John", last: "Edwards"} },
652
+ { from: "Eggers, Dave", to: { full: "Dave Eggers", first: "Dave", last: "Eggers"} },
653
+ { from: "Ehrlich, Paul R.", to: { full: "Paul R Ehrlich", first: "Paul R", last: "Ehrlich"} },
654
+ { from: "Einstein, Albert", to: { full: "Albert Einstein", first: "Albert", last: "Einstein"} },
655
+ { from: "Eisenhower, Dwight D.", to: { full: "Dwight D Eisenhower", first: "Dwight D", last: "Eisenhower"} },
656
+ { from: "Eisenstein, Ferdinand", to: { full: "Ferdinand Eisenstein", first: "Ferdinand", last: "Eisenstein"} },
657
+ { from: "ElBaradei, Mohamed", to: { full: "Mohamed ElBaradei", first: "Mohamed", last: "ElBaradei"} },
658
+ { from: "Eldredge, Niles", to: { full: "Niles Eldredge", first: "Niles", last: "Eldredge"} },
659
+ { from: "Eliot, George", to: { full: "George Eliot", first: "George", last: "Eliot"} },
660
+ { from: "Eliot, Thomas Stearns", to: { full: "Thomas Stearns Eliot", first: "Thomas Stearns", last: "Eliot"} },
661
+ { skip: true, from: "Elizabeth, the Queen Mother", to: { full: "the Queen Mother Elizabeth", first: "the Queen Mother", last: "Elizabeth"} },
662
+ { from: "Ellington, Duke", to: { full: "Duke Ellington", first: "Duke", last: "Ellington"} },
663
+ { from: "Elliot, Cass", to: { full: "Cass Elliot", first: "Cass", last: "Elliot"} },
664
+ { from: "Elliot, Jim", to: { full: "Jim Elliot", first: "Jim", last: "Elliot"} },
665
+ { from: "Ellison, Harlan", to: { full: "Harlan Ellison", first: "Harlan", last: "Ellison"} },
666
+ { from: "Eluard, Paul", to: { full: "Paul Eluard", first: "Paul", last: "Eluard"} },
667
+ { from: "Emerson, Ralph Waldo", to: { full: "Ralph Waldo Emerson", first: "Ralph Waldo", last: "Emerson"} },
668
+ { from: "Engelke, Anke", to: { full: "Anke Engelke", first: "Anke", last: "Engelke"} },
669
+ { from: "Erdös, Paul", to: { full: "Paul Erdös", first: "Paul", last: "Erdös"} },
670
+ { from: "Erikson, Steven", to: { full: "Steven Erikson", first: "Steven", last: "Erikson"} },
671
+ { from: "Escher, M. C.", to: { full: "M C Escher", first: "M C", last: "Escher"} },
672
+ { from: "Esposito, Phil", to: { full: "Phil Esposito", first: "Phil", last: "Esposito"} },
673
+ { from: "Estefan, Gloria", to: { full: "Gloria Estefan", first: "Gloria", last: "Estefan"} },
674
+ { from: "Everett, Carl", to: { full: "Carl Everett", first: "Carl", last: "Everett"} },
675
+ { from: "Ezrin, Bob", to: { full: "Bob Ezrin", first: "Bob", last: "Ezrin"} },
676
+
677
+ { from: "Fakes, Dennis", to: { full: "Dennis Fakes", first: "Dennis", last: "Fakes"} },
678
+ { from: "Farage, Nigel", to: { full: "Nigel Farage", first: "Nigel", last: "Farage"} },
679
+ { from: "Farjeon, Eleanor", to: { full: "Eleanor Farjeon", first: "Eleanor", last: "Farjeon"} },
680
+ { from: "Farmer, Frances", to: { full: "Frances Farmer", first: "Frances", last: "Farmer"} },
681
+ { from: "Noli, Fan", to: { full: "Fan Noli", first: "Fan", last: "Noli"} },
682
+ { from: "Fatiaki, Daniel", to: { full: "Daniel Fatiaki", first: "Daniel", last: "Fatiaki"} },
683
+ { from: "Faulkner, William", to: { full: "William Faulkner", first: "William", last: "Faulkner"} },
684
+ { from: "Favre, Brett", to: { full: "Brett Favre", first: "Brett", last: "Favre"} },
685
+ { from: "Fawkes, Guy", to: { full: "Guy Fawkes", first: "Guy", last: "Fawkes"} },
686
+ { from: "Federer, Roger", to: { full: "Roger Federer", first: "Roger", last: "Federer"} },
687
+ { from: "Feibig, Jim", to: { full: "Jim Feibig", first: "Jim", last: "Feibig"} },
688
+ { from: "Feingold, Russ", to: { full: "Russ Feingold", first: "Russ", last: "Feingold"} },
689
+ { from: "Feldman, Morton", to: { full: "Morton Feldman", first: "Morton", last: "Feldman"} },
690
+ { from: "Fellini, Federico", to: { full: "Federico Fellini", first: "Federico", last: "Fellini"} },
691
+ { from: "Ferguson, Adam", to: { full: "Adam Ferguson", first: "Adam", last: "Ferguson"} },
692
+ { from: "Ferguson, Miriam", to: { full: "Miriam Ferguson", first: "Miriam", last: "Ferguson"} },
693
+ { from: "Fermi, Enrico", to: { full: "Enrico Fermi", first: "Enrico", last: "Fermi"} },
694
+ { from: "Ferrell, Will", to: { full: "Will Ferrell", first: "Will", last: "Ferrell"} },
695
+ { from: "Ferron, Marcelle", to: { full: "Marcelle Ferron", first: "Marcelle", last: "Ferron"} },
696
+ { from: "Fétis, Joseph", to: { full: "Joseph Fétis", first: "Joseph", last: "Fétis"} },
697
+ { from: "Fey, Tina", to: { full: "Tina Fey", first: "Tina", last: "Fey"} },
698
+ { from: "Feynman, Richard", to: { full: "Richard Feynman", first: "Richard", last: "Feynman"} },
699
+ { from: "Fielding, Henry", to: { full: "Henry Fielding", first: "Henry", last: "Fielding"} },
700
+ { from: "Fields, W. C.", to: { full: "W C Fields", first: "W C", last: "Fields"} },
701
+ { from: "Finney, Albert", to: { full: "Albert Finney", first: "Albert", last: "Finney"} },
702
+ { from: "Firestone, Shulamith", to: { full: "Shulamith Firestone", first: "Shulamith", last: "Firestone"} },
703
+ { from: "Fischer, Bobby", to: { full: "Bobby Fischer", first: "Bobby", last: "Fischer"} },
704
+ { from: "Fischer, Joschka", to: { full: "Joschka Fischer", first: "Joschka", last: "Fischer"} },
705
+ { from: "Fish, Michael", to: { full: "Michael Fish", first: "Michael", last: "Fish"} },
706
+ { from: "Fishback, Margaret", to: { full: "Margaret Fishback", first: "Margaret", last: "Fishback"} },
707
+ { from: "Fisher, Carrie", to: { full: "Carrie Fisher", first: "Carrie", last: "Fisher"} },
708
+ { from: "Fiske, Irving", to: { full: "Irving Fiske", first: "Irving", last: "Fiske"} },
709
+ { from: "Fiszer, Franciszek", to: { full: "Franciszek Fiszer", first: "Franciszek", last: "Fiszer"} },
710
+ { from: "Fitzgerald, F. Scott", to: { full: "F Scott Fitzgerald", first: "F Scott", last: "Fitzgerald"} },
711
+ { from: "Fitzgerald, Patrick", to: { full: "Patrick Fitzgerald", first: "Patrick", last: "Fitzgerald"} },
712
+ { from: "Flaubert, Gustave", to: { full: "Gustave Flaubert", first: "Gustave", last: "Flaubert"} },
713
+ { from: "Flynt, Larry", to: { full: "Larry Flynt", first: "Larry", last: "Flynt"} },
714
+ { from: "Foch, Ferdinand", to: { full: "Ferdinand Foch", first: "Ferdinand", last: "Foch"} },
715
+ { from: "Foley, Mick", to: { full: "Mick Foley", first: "Mick", last: "Foley"} },
716
+ { from: "Fonteyn, Margot", to: { full: "Margot Fonteyn", first: "Margot", last: "Fonteyn"} },
717
+ { from: "Forbes, Malcolm", to: { full: "Malcolm Forbes", first: "Malcolm", last: "Forbes"} },
718
+ { from: "Ford, Gerald", to: { full: "Gerald Ford", first: "Gerald", last: "Ford"} },
719
+ { from: "Ford, Harrison", to: { full: "Harrison Ford", first: "Harrison", last: "Ford"} },
720
+ { from: "Ford, Henry", to: { full: "Henry Ford", first: "Henry", last: "Ford"} },
721
+ { from: "Forster, E. M.", to: { full: "E M Forster", first: "E M", last: "Forster"} },
722
+ { from: "Forsyth, Bruce", to: { full: "Bruce Forsyth", first: "Bruce", last: "Forsyth"} },
723
+ { from: "Fort, Charles", to: { full: "Charles Fort", first: "Charles", last: "Fort"} },
724
+ { from: "Fosdick, Harry Emerson", to: { full: "Harry Emerson Fosdick", first: "Harry Emerson", last: "Fosdick"} },
725
+ { from: "Foster, Sir Robert Sidney", to: { full: "Robert Sidney Foster", title: "Sir", first: "Robert Sidney", last: "Foster"} },
726
+ { from: "Fowler, Gene", to: { full: "Gene Fowler", first: "Gene", last: "Fowler"} },
727
+ { from: "Fox, George", to: { full: "George Fox", first: "George", last: "Fox"} },
728
+ { from: "Fox, Virgil", to: { full: "Virgil Fox", first: "Virgil", last: "Fox"} },
729
+ { from: "Foxworthy, Jeff", to: { full: "Jeff Foxworthy", first: "Jeff", last: "Foxworthy"} },
730
+ { from: "France, Anatole", to: { full: "Anatole France", first: "Anatole", last: "France"} },
731
+ { from: "Francona, Terry", to: { full: "Terry Francona", first: "Terry", last: "Francona"} },
732
+ { from: "Franck, Richard", to: { full: "Richard Franck", first: "Richard", last: "Franck"} },
733
+ { from: "Frank, Anne", to: { full: "Anne Frank", first: "Anne", last: "Frank"} },
734
+ { from: "Franklin, Benjamin", to: { full: "Benjamin Franklin", first: "Benjamin", last: "Franklin"} },
735
+ { from: "Franks, Tommy", to: { full: "Tommy Franks", first: "Tommy", last: "Franks"} },
736
+ { from: "Franti, Michael", to: { full: "Michael Franti", first: "Michael", last: "Franti"} },
737
+ { from: "Franzen, Jonathan", to: { full: "Jonathan Franzen", first: "Jonathan", last: "Franzen"} },
738
+ { from: "Freud, Sigmund", to: { full: "Sigmund Freud", first: "Sigmund", last: "Freud"} },
739
+ { from: "Freund, Peter", to: { full: "Peter Freund", first: "Peter", last: "Freund"} },
740
+ { from: "Friedman, Kinky", to: { full: "Kinky Friedman", first: "Kinky", last: "Friedman"} },
741
+ { from: "Friedman, Milton", to: { full: "Milton Friedman", first: "Milton", last: "Friedman"} },
742
+ { from: "Friedman, Nat", to: { full: "Nat Friedman", first: "Nat", last: "Friedman"} },
743
+ { from: "Friel, Todd", to: { full: "Todd Friel", first: "Todd", last: "Friel"} },
744
+ { from: "Frist, Bill", to: { full: "Bill Frist", first: "Bill", last: "Frist"} },
745
+ { from: "Fromm, Erich", to: { full: "Erich Fromm", first: "Erich", last: "Fromm"} },
746
+ { from: "Frost, Robert", to: { full: "Robert Frost", first: "Robert", last: "Frost"} },
747
+ { from: "Frostrup, Mariella", to: { full: "Mariella Frostrup", first: "Mariella", last: "Frostrup"} },
748
+ { from: "Fulbright, J. William", to: { full: "J William Fulbright", first: "J William", last: "Fulbright"} },
749
+ { from: "Fulghum, Robert", to: { full: "Robert Fulghum", first: "Robert", last: "Fulghum"} },
750
+ { from: "Fuller, Buckminster", to: { full: "Buckminster Fuller", first: "Buckminster", last: "Fuller"} },
751
+ { from: "Fuller, Margaret", to: { full: "Margaret Fuller", first: "Margaret", last: "Fuller"} },
752
+
753
+ { from: "Gabor, Zsa Zsa", to: { full: "Zsa Zsa Gabor", first: "Zsa Zsa", last: "Gabor"} },
754
+ { from: "Gabriel, Peter", to: { full: "Peter Gabriel", first: "Peter", last: "Gabriel"} },
755
+ { from: "Gagarin, Yuri", to: { full: "Yuri Gagarin", first: "Yuri", last: "Gagarin"} },
756
+ { from: "Gaiman, Neil", to: { full: "Neil Gaiman", first: "Neil", last: "Gaiman"} },
757
+ { from: "Galbraith, John Kenneth", to: { full: "John Kenneth Galbraith", first: "John Kenneth", last: "Galbraith"} },
758
+ { from: "Galilei, Galileo", to: { full: "Galileo Galilei", first: "Galileo", last: "Galilei"} },
759
+ { from: "Gallagher, Fred", to: { full: "Fred Gallagher", first: "Fred", last: "Gallagher"} },
760
+ { from: "Gallo, Vincent Actor", to: { full: "Vincent Actor Gallo", first: "Vincent Actor", last: "Gallo"} },
761
+ { from: "Galloway, George", to: { full: "George Galloway", first: "George", last: "Galloway"} },
762
+ { from: "Gallup, George", to: { full: "George Gallup", first: "George", last: "Gallup"} },
763
+ { from: "Galtieri, Leopoldo", to: { full: "Leopoldo Galtieri", first: "Leopoldo", last: "Galtieri"} },
764
+ { from: "Gandhi, Indira", to: { full: "Indira Gandhi", first: "Indira", last: "Gandhi"} },
765
+ { from: "Gandhi, Mahatma", to: { full: "Mahatma Gandhi", first: "Mahatma", last: "Gandhi"} },
766
+ { from: "Gangchuan, Cao", to: { full: "Cao Gangchuan", first: "Cao", last: "Gangchuan"} },
767
+ { from: "Ganilau, Adi Ateca", to: { full: "Adi Ateca Ganilau", first: "Adi Ateca", last: "Ganilau"} },
768
+ { from: "Ganilau, Ratu Epeli", to: { full: "Ratu Epeli Ganilau", first: "Ratu Epeli", last: "Ganilau"} },
769
+ { from: "Ganilau, Ratu Sir Penaia", to: { full: "Ratu Sir Penaia Ganilau", first: "Ratu Sir Penaia", last: "Ganilau"} },
770
+ { from: "Gardel, Carlos", to: { full: "Carlos Gardel", first: "Carlos", last: "Gardel"} },
771
+ { from: "Garfield, James A.", to: { full: "James A Garfield", first: "James A", last: "Garfield"} },
772
+ { from: "Garland, Judy", to: { full: "Judy Garland", first: "Judy", last: "Garland"} },
773
+ { from: "Garner, Helen", to: { full: "Helen Garner", first: "Helen", last: "Garner"} },
774
+ { from: "Garrison, William Lloyd", to: { full: "William Lloyd Garrison", first: "William Lloyd", last: "Garrison"} },
775
+ { from: "Gary, Romain", to: { full: "Romain Gary", first: "Romain", last: "Gary"} },
776
+ { from: "Gassée, Jean-Louis", to: { full: "Jean-Louis Gassée", first: "Jean-Louis", last: "Gassée"} },
777
+ { from: "Gates, Bill", to: { full: "Bill Gates", first: "Bill", last: "Gates"} },
778
+ { from: "Gaudi, Antonio", to: { full: "Antonio Gaudi", first: "Antonio", last: "Gaudi"} },
779
+ { from: "Gauguin, Paul", to: { full: "Paul Gauguin", first: "Paul", last: "Gauguin"} },
780
+ { from: "Gaulle, Charles de", to: { full: "Charles de Gaulle", first: "Charles", last: "de Gaulle"} },
781
+ { from: "Gaultier, Jules de", to: { full: "Jules de Gaultier", first: "Jules", last: "de Gaultier"} },
782
+ { from: "Gauss, Carl Friedrich", to: { full: "Carl Friedrich Gauss", first: "Carl Friedrich", last: "Gauss"} },
783
+ { from: "Gay, John", to: { full: "John Gay", first: "John", last: "Gay"} },
784
+ { from: "Gaye, Marvin", to: { full: "Marvin Gaye", first: "Marvin", last: "Gaye"} },
785
+ { from: "Geagea, Samir", to: { full: "Samir Geagea", first: "Samir", last: "Geagea"} },
786
+ { from: "Gemayel, Solange", to: { full: "Solange Gemayel", first: "Solange", last: "Gemayel"} },
787
+ { from: "Genet, Jean", to: { full: "Jean Genet", first: "Jean", last: "Genet"} },
788
+ { skip: true, from: "George III, King of England", to: { full: "King of England George III", first: "King of England", last: "George III"} },
789
+ { skip: true, from: "George V, King of England", to: { full: "King of England George V", first: "King of England", last: "George V"} },
790
+ { from: "Gephardt, Dick", to: { full: "Dick Gephardt", first: "Dick", last: "Gephardt"} },
791
+ { from: "Gerety, Frances", to: { full: "Frances Gerety", first: "Frances", last: "Gerety"} },
792
+ { from: "Gergen, David", to: { full: "David Gergen", first: "David", last: "Gergen"} },
793
+ { from: "Giacometti, Alberto", to: { full: "Alberto Giacometti", first: "Alberto", last: "Giacometti"} },
794
+ { from: "Gibbon, Edward", to: { full: "Edward Gibbon", first: "Edward", last: "Gibbon"} },
795
+ { from: "Gibran, Khalil", to: { full: "Khalil Gibran", first: "Khalil", last: "Gibran"} },
796
+ { from: "Gibson, William Ford", to: { full: "William Ford Gibson", first: "William Ford", last: "Gibson"} },
797
+ { from: "Gide, André", to: { full: "André Gide", first: "André", last: "Gide"} },
798
+ { from: "Gilbert, W. S.", to: { full: "W S Gilbert", first: "W S", last: "Gilbert"} },
799
+ { from: "Gilder, George", to: { full: "George Gilder", first: "George", last: "Gilder"} },
800
+ { from: "Gill, Eric", to: { full: "Eric Gill", first: "Eric", last: "Gill"} },
801
+ { from: "Gilmore, John", to: { full: "John Gilmore", first: "John", last: "Gilmore"} },
802
+ { from: "Ginott, Haim", to: { full: "Haim Ginott", first: "Haim", last: "Ginott"} },
803
+ { from: "Giraudoux, Jean", to: { full: "Jean Giraudoux", first: "Jean", last: "Giraudoux"} },
804
+ { from: "Giuliani, Rudy", to: { full: "Rudy Giuliani", first: "Rudy", last: "Giuliani"} },
805
+ { from: "Gladstone, William Ewart", to: { full: "William Ewart Gladstone", first: "William Ewart", last: "Gladstone"} },
806
+ { from: "Godard, Jean-Luc", to: { full: "Jean-Luc Godard", first: "Jean-Luc", last: "Godard"} },
807
+ { from: "Godwin, Earl of Wessex", to: { full: "Earl of Wessex Godwin", first: "Earl of Wessex", last: "Godwin"} },
808
+ { from: "Godwin, Mike", to: { full: "Mike Godwin", first: "Mike", last: "Godwin"} },
809
+ { from: "Goering, Hermann", to: { full: "Hermann Goering", first: "Hermann", last: "Goering"} },
810
+ { from: "Goethe, Johann Wolfgang von", to: { full: "Johann Wolfgang von Goethe", first: "Johann Wolfgang", last: "von Goethe"} },
811
+ { from: "Gogh, Vincent Willem Van", to: { full: "Vincent Willem Van Gogh", first: "Vincent Willem", last: "Van Gogh"} },
812
+ { from: "Gogol, Nikolai Vasilievich", to: { full: "Nikolai Vasilievich Gogol", first: "Nikolai Vasilievich", last: "Gogol"} },
813
+ { from: "Goldberg, Jonah", to: { full: "Jonah Goldberg", first: "Jonah", last: "Goldberg"} },
814
+ { from: "Golding, William", to: { full: "William Golding", first: "William", last: "Golding"} },
815
+ { from: "Goldman, Emma", to: { full: "Emma Goldman", first: "Emma", last: "Goldman"} },
816
+ { from: "Goldsmith, Oliver", to: { full: "Oliver Goldsmith", first: "Oliver", last: "Goldsmith"} },
817
+ { from: "Goldsworthy, Andy", to: { full: "Andy Goldsworthy", first: "Andy", last: "Goldsworthy"} },
818
+ { from: "Goldwater, Barry", to: { full: "Barry Goldwater", first: "Barry", last: "Goldwater"} },
819
+ { from: "Goldwyn, Samuel", to: { full: "Samuel Goldwyn", first: "Samuel", last: "Goldwyn"} },
820
+ { from: "Goodman, Ellen", to: { full: "Ellen Goodman", first: "Ellen", last: "Goodman"} },
821
+ { from: "Gorky, Maxim", to: { full: "Maxim Gorky", first: "Maxim", last: "Gorky"} },
822
+ { from: "Göring, Hermann", to: { full: "Hermann Göring", first: "Hermann", last: "Göring"} },
823
+ { from: "Gothard, Bill", to: { full: "Bill Gothard", first: "Bill", last: "Gothard"} },
824
+ { from: "Gould, Stephen Jay", to: { full: "Stephen Jay Gould", first: "Stephen Jay", last: "Gould"} },
825
+ { from: "Goya, Francisco", to: { full: "Francisco Goya", first: "Francisco", last: "Goya"} },
826
+ { from: "Gracián, Baltasar", to: { full: "Baltasar Gracián", first: "Baltasar", last: "Gracián"} },
827
+ { from: "Graham, Lindsey", to: { full: "Lindsey Graham", first: "Lindsey", last: "Graham"} },
828
+ { from: "Graham, Paul", to: { full: "Paul Graham", first: "Paul", last: "Graham"} },
829
+ { from: "Gramsci, Antonio", to: { full: "Antonio Gramsci", first: "Antonio", last: "Gramsci"} },
830
+ { from: "Grant, Ulysses S.", to: { full: "Ulysses S Grant", first: "Ulysses S", last: "Grant"} },
831
+ { from: "Grass, Günter", to: { full: "Günter Grass", first: "Günter", last: "Grass"} },
832
+ { from: "Gray, Thomas", to: { full: "Thomas Gray", first: "Thomas", last: "Gray"} },
833
+ { from: "Greeley, Horace", to: { full: "Horace Greeley", first: "Horace", last: "Greeley"} },
834
+ { from: "Green, Matthew", to: { full: "Matthew Green", first: "Matthew", last: "Green"} },
835
+ { from: "Greene, Graham", to: { full: "Graham Greene", first: "Graham", last: "Greene"} },
836
+ { from: "Greer, Germaine", to: { full: "Germaine Greer", first: "Germaine", last: "Greer"} },
837
+ { from: "Grellet, Stephen", to: { full: "Stephen Grellet", first: "Stephen", last: "Grellet"} },
838
+ { from: "Grey, Zane", to: { full: "Zane Grey", first: "Zane", last: "Grey"} },
839
+ { from: "Griswold, Alfred Whitney", to: { full: "Alfred Whitney Griswold", first: "Alfred Whitney", last: "Griswold"} },
840
+ { from: "Griswold, Erwin", to: { full: "Erwin Griswold", first: "Erwin", last: "Griswold"} },
841
+ { from: "Groban, Josh", to: { full: "Josh Groban", first: "Josh", last: "Groban"} },
842
+ { from: "Groening, Matt", to: { full: "Matt Groening", first: "Matt", last: "Groening"} },
843
+ { from: "Grove, Andy", to: { full: "Andy Grove", first: "Andy", last: "Grove"} },
844
+ { from: "Grudin, Robert", to: { full: "Robert Grudin", first: "Robert", last: "Grudin"} },
845
+ { from: "Guber, Peter", to: { full: "Peter Guber", first: "Peter", last: "Guber"} },
846
+ { from: "Guderian, Heinz", to: { full: "Heinz Guderian", first: "Heinz", last: "Guderian"} },
847
+ { from: "Guevara, Ernesto 'Che'", to: { full: "Ernesto 'Che' Guevara", first: "Ernesto 'Che'", last: "Guevara"} },
848
+ { from: "Guitry, Sacha", to: { full: "Sacha Guitry", first: "Sacha", last: "Guitry"} },
849
+ { from: "Gundmundsdottir, Bjork", to: { full: "Bjork Gundmundsdottir", first: "Bjork", last: "Gundmundsdottir"} },
850
+ { from: "Gurdjieff, G. I.", to: { full: "G I Gurdjieff", first: "G I", last: "Gurdjieff"} },
851
+ { from: "Gygax, Gary", to: { full: "Gary Gygax", first: "Gary", last: "Gygax"} },
852
+ { from: "Gyllenhaal, Jake", to: { full: "Jake Gyllenhaal", first: "Jake", last: "Gyllenhaal"} },
853
+
854
+ { from: "Hába, Alois", to: { full: "Alois Hába", first: "Alois", last: "Hába"} },
855
+ { from: "Hague, Frank", to: { full: "Frank Hague", first: "Frank", last: "Hague"} },
856
+ { from: "Haig, Alexander", to: { full: "Alexander Haig", first: "Alexander", last: "Haig"} },
857
+ { from: "Hain, Peter", to: { full: "Peter Hain", first: "Peter", last: "Hain"} },
858
+ { from: "Halas, George", to: { full: "George Halas", first: "George", last: "Halas"} },
859
+ { from: "Haldeman, Joe", to: { full: "Joe Haldeman", first: "Joe", last: "Haldeman"} },
860
+ { from: "Haley, Alex", to: { full: "Alex Haley", first: "Alex", last: "Haley"} },
861
+ { from: "Halliburton, Richard", to: { full: "Richard Halliburton", first: "Richard", last: "Halliburton"} },
862
+ { from: "Halme, Tony", to: { full: "Tony Halme", first: "Tony", last: "Halme"} },
863
+ { from: "Hamilton, Alexander", to: { full: "Alexander Hamilton", first: "Alexander", last: "Hamilton"} },
864
+ { from: "Hamilton, Gail", to: { full: "Gail Hamilton", first: "Gail", last: "Hamilton"} },
865
+ { from: "Hamilton, Laurell K.", to: { full: "Laurell K Hamilton", first: "Laurell K", last: "Hamilton"} },
866
+ { from: "Hammarskjöld, Dag", to: { full: "Dag Hammarskjöld", first: "Dag", last: "Hammarskjöld"} },
867
+ { from: "Handy, Charles", to: { full: "Charles Handy", first: "Charles", last: "Handy"} },
868
+ { from: "Handy, W. C.", to: { full: "W C Handy", first: "W C", last: "Handy"} },
869
+ { from: "Hannity, Sean", to: { full: "Sean Hannity", first: "Sean", last: "Hannity"} },
870
+ { skip: true, from: "Harold II Godwinson, King of England", to: { full: "King of England Harold II Godwinson", first: "King of England", last: "Harold II Godwinson"} },
871
+ { from: "Harper, Stephen", to: { full: "Stephen Harper", first: "Stephen", last: "Harper"} },
872
+ { from: "Harris, Sam", to: { full: "Sam Harris", first: "Sam", last: "Harris"} },
873
+ { from: "Harris, William Torrey", to: { full: "William Torrey Harris", first: "William Torrey", last: "Harris"} },
874
+ { from: "Harrison, George", to: { full: "George Harrison", first: "George", last: "Harrison"} },
875
+ { from: "Hart, Lorenz", to: { full: "Lorenz Hart", first: "Lorenz", last: "Hart"} },
876
+ { from: "Hart, Owen", to: { full: "Owen Hart", first: "Owen", last: "Hart"} },
877
+ { from: "Harvey, Paul", to: { full: "Paul Harvey", first: "Paul", last: "Harvey"} },
878
+ { from: "Hašek, Jaroslav", to: { full: "Jaroslav Hašek", first: "Jaroslav", last: "Hašek"} },
879
+ { from: "Hathaway, Anne", to: { full: "Anne Hathaway", first: "Anne", last: "Hathaway"} },
880
+ { from: "Hathaway, Sybil", to: { full: "Sybil Hathaway", first: "Sybil", last: "Hathaway"} },
881
+ { from: "Hattersley, Roy", to: { full: "Roy Hattersley", first: "Roy", last: "Hattersley"} },
882
+ { from: "Havel, Václav", to: { full: "Václav Havel", first: "Václav", last: "Havel"} },
883
+ { from: "Havok, Davey", to: { full: "Davey Havok", first: "Davey", last: "Havok"} },
884
+ { from: "Hawking, Stephen", to: { full: "Stephen Hawking", first: "Stephen", last: "Hawking"} },
885
+ { from: "Hawthorne, Nathaniel", to: { full: "Nathaniel Hawthorne", first: "Nathaniel", last: "Hawthorne"} },
886
+ { from: "Hayden, Teresa Nielson", to: { full: "Teresa Nielson Hayden", first: "Teresa Nielson", last: "Hayden"} },
887
+ { from: "Hayek, Friedrich", to: { full: "Friedrich Hayek", first: "Friedrich", last: "Hayek"} },
888
+ { from: "Hayes, Helen", to: { full: "Helen Hayes", first: "Helen", last: "Hayes"} },
889
+ { from: "Hazlitt, William", to: { full: "William Hazlitt", first: "William", last: "Hazlitt"} },
890
+ { from: "Hedberg, Mitch", to: { full: "Mitch Hedberg", first: "Mitch", last: "Hedberg"} },
891
+ { from: "Hedges, Chris", to: { full: "Chris Hedges", first: "Chris", last: "Hedges"} },
892
+ { from: "Hegel, Georg Friedrich Wilhelm", to: { full: "Georg Friedrich Wilhelm Hegel", first: "Georg Friedrich Wilhelm", last: "Hegel"} },
893
+ { from: "Heifetz, Jascha", to: { full: "Jascha Heifetz", first: "Jascha", last: "Heifetz"} },
894
+ { from: "Heilbrun, Carolyn", to: { full: "Carolyn Heilbrun", first: "Carolyn", last: "Heilbrun"} },
895
+ { from: "Hein, Piet", to: { full: "Piet Hein", first: "Piet", last: "Hein"} },
896
+ { from: "Heindel, Max", to: { full: "Max Heindel", first: "Max", last: "Heindel"} },
897
+ { from: "Heinlein, Robert A.", to: { full: "Robert A Heinlein", first: "Robert A", last: "Heinlein"} },
898
+ { from: "Heine, Heinrich", to: { full: "Heinrich Heine", first: "Heinrich", last: "Heine"} },
899
+ { from: "Heisenberg, Werner", to: { full: "Werner Heisenberg", first: "Werner", last: "Heisenberg"} },
900
+ { from: "Held, John", to: { full: "John Held", first: "John", last: "Held"} },
901
+ { from: "Heller, Joseph", to: { full: "Joseph Heller", first: "Joseph", last: "Heller"} },
902
+ { from: "Hellman, Lillian", to: { full: "Lillian Hellman", first: "Lillian", last: "Hellman"} },
903
+ { from: "Hemingway, Ernest", to: { full: "Ernest Hemingway", first: "Ernest", last: "Hemingway"} },
904
+ { from: "Henderson, Rickey", to: { full: "Rickey Henderson", first: "Rickey", last: "Henderson"} },
905
+ { from: "Hendrie, Phil", to: { full: "Phil Hendrie", first: "Phil", last: "Hendrie"} },
906
+ { from: "Hendrix, Jimi", to: { full: "Jimi Hendrix", first: "Jimi", last: "Hendrix"} },
907
+ { from: "Hennessey, Ammon", to: { full: "Ammon Hennessey", first: "Ammon", last: "Hennessey"} },
908
+ { from: "Henry, Matthew", to: { full: "Matthew Henry", first: "Matthew", last: "Henry"} },
909
+ { from: "Henry, O.", to: { full: "O Henry", first: "O", last: "Henry"} },
910
+ { from: "Henry, Patrick", to: { full: "Patrick Henry", first: "Patrick", last: "Henry"} },
911
+ { from: "Hepburn, Audrey", to: { full: "Audrey Hepburn", first: "Audrey", last: "Hepburn"} },
912
+ { from: "Hepburn, Katherine", to: { full: "Katherine Hepburn", first: "Katherine", last: "Hepburn"} },
913
+ { from: "Herbert, George", to: { full: "George Herbert", first: "George", last: "Herbert"} },
914
+ { from: "Herbert, Zbigniew", to: { full: "Zbigniew Herbert", first: "Zbigniew", last: "Herbert"} },
915
+ { from: "Hernández, Julián", to: { full: "Julián Hernández", first: "Julián", last: "Hernández"} },
916
+ { from: "Herschel, John", to: { full: "John Herschel", first: "John", last: "Herschel"} },
917
+ { from: "Herzler, Roger D", to: { full: "Roger D Herzler", first: "Roger D", last: "Herzler"} },
918
+ { from: "Herzog, Werner", to: { full: "Werner Herzog", first: "Werner", last: "Herzog"} },
919
+ { from: "Heschel, Abraham Joshua", to: { full: "Abraham Joshua Heschel", first: "Abraham Joshua", last: "Heschel"} },
920
+ { from: "Hess, Karl", to: { full: "Karl Hess", first: "Karl", last: "Hess"} },
921
+ { from: "Hesse, Hermann", to: { full: "Hermann Hesse", first: "Hermann", last: "Hesse"} },
922
+ { from: "Hewitt, Hugh", to: { full: "Hugh Hewitt", first: "Hugh", last: "Hewitt"} },
923
+ { from: "Heywood, John", to: { full: "John Heywood", first: "John", last: "Heywood"} },
924
+ { from: "Hibiki, Dan", to: { full: "Dan Hibiki", first: "Dan", last: "Hibiki"} },
925
+ { from: "Hickenbottom, Michael", to: { full: "Michael Hickenbottom", first: "Michael", last: "Hickenbottom"} },
926
+ { from: "Hicks, Bill", to: { full: "Bill Hicks", first: "Bill", last: "Hicks"} },
927
+ { from: "Hicks, Dan", to: { full: "Dan Hicks", first: "Dan", last: "Hicks"} },
928
+ { from: "Hightower, Jim", to: { full: "Jim Hightower", first: "Jim", last: "Hightower"} },
929
+ { from: "Hikmet, Nazim", to: { full: "Nazim Hikmet", first: "Nazim", last: "Hikmet"} },
930
+ { from: "Hill, Joe", to: { full: "Joe Hill", first: "Joe", last: "Hill"} },
931
+ { from: "Hill, Napoleon", to: { full: "Napoleon Hill", first: "Napoleon", last: "Hill"} },
932
+ { from: "Hillary, Edmund", to: { full: "Edmund Hillary", first: "Edmund", last: "Hillary"} },
933
+ { from: "Hirsch, Mary", to: { full: "Mary Hirsch", first: "Mary", last: "Hirsch"} },
934
+ { from: "Hitchens, Christopher", to: { full: "Christopher Hitchens", first: "Christopher", last: "Hitchens"} },
935
+ { from: "Hitchcock, Alfred", to: { full: "Alfred Hitchcock", first: "Alfred", last: "Hitchcock"} },
936
+ { from: "Hitler, Adolf", to: { full: "Adolf Hitler", first: "Adolf", last: "Hitler"} },
937
+ { from: "Hobbes, Thomas", to: { full: "Thomas Hobbes", first: "Thomas", last: "Hobbes"} },
938
+ { from: "Hoff, Benjamin", to: { full: "Benjamin Hoff", first: "Benjamin", last: "Hoff"} },
939
+ { from: "Hoffer, Eric", to: { full: "Eric Hoffer", first: "Eric", last: "Hoffer"} },
940
+ { from: "Hoffman, Abbie", to: { full: "Abbie Hoffman", first: "Abbie", last: "Hoffman"} },
941
+ { from: "Hoffman, Jessica", to: { full: "Jessica Hoffman", first: "Jessica", last: "Hoffman"} },
942
+ { from: "Hofstadter, Douglas", to: { full: "Douglas Hofstadter", first: "Douglas", last: "Hofstadter"} },
943
+ { from: "Hofstadter, Richard", to: { full: "Richard Hofstadter", first: "Richard", last: "Hofstadter"} },
944
+ { from: "Holderlin, Friedrich", to: { full: "Friedrich Holderlin", first: "Friedrich", last: "Holderlin"} },
945
+ { from: "Holmes, Oliver Wendell, Jr.", to: { full: "Oliver Wendell Holmes Jr", first: "Oliver Wendell", last: "Holmes", suffix: "Jr"} },
946
+ { from: "Holmes, Oliver Wendell, Sr.", to: { full: "Oliver Wendell Holmes Sr, ", first: "Oliver Wendell", last: "Holmes", suffix: "Sr"} },
947
+ { from: "Holt, Anatol", to: { full: "Anatol Holt", first: "Anatol", last: "Holt"} },
948
+ { from: "Holt, John", to: { full: "John Holt", first: "John", last: "Holt"} },
949
+ { from: "Honda, Soichiro", to: { full: "Soichiro Honda", first: "Soichiro", last: "Honda"} },
950
+ { from: "Hoover, Herbert", to: { full: "Herbert Hoover", first: "Herbert", last: "Hoover"} },
951
+ { from: "Hope, Bob", to: { full: "Bob Hope", first: "Bob", last: "Hope"} },
952
+ { from: "Hopkins, Gerard Manley", to: { full: "Gerard Manley Hopkins", first: "Gerard Manley", last: "Hopkins"} },
953
+ { from: "Hopper, Edward", to: { full: "Edward Hopper", first: "Edward", last: "Hopper"} },
954
+ { from: "Hopper, Grace", to: { full: "Grace Hopper", first: "Grace", last: "Hopper"} },
955
+ { from: "Horning, Jim", to: { full: "Jim Horning", first: "Jim", last: "Horning"} },
956
+ { from: "Houdini, Harry", to: { full: "Harry Houdini", first: "Harry", last: "Houdini"} },
957
+ { from: "House, Jinnah", to: { full: "Jinnah House", first: "Jinnah", last: "House"} },
958
+ { from: "Housman, A. E.", to: { full: "A E Housman", first: "A E", last: "Housman"} },
959
+ { from: "Howe, Julia Ward", to: { full: "Julia Ward Howe", first: "Julia Ward", last: "Howe"} },
960
+ { from: "Howell, James", to: { full: "James Howell", first: "James", last: "Howell"} },
961
+ { from: "Hoyle, Fred", to: { full: "Fred Hoyle", first: "Fred", last: "Hoyle"} },
962
+ { from: "Hubbard, Elbert", to: { full: "Elbert Hubbard", first: "Elbert", last: "Hubbard"} },
963
+ { from: "Hubbard, L. Ron", to: { full: "L Ron Hubbard", first: "L Ron", last: "Hubbard"} },
964
+ { from: "Huckabee, Mike", to: { full: "Mike Huckabee", first: "Mike", last: "Huckabee"} },
965
+ { from: "Huelskamp, Tim", to: { full: "Tim Huelskamp", first: "Tim", last: "Huelskamp"} },
966
+ { from: "Huffington, Arianna", to: { full: "Arianna Huffington", first: "Arianna", last: "Huffington"} },
967
+ { from: "Hughes, Charles Evans", to: { full: "Charles Evans Hughes", first: "Charles Evans", last: "Hughes"} },
968
+ { from: "Hugo, Victor", to: { full: "Victor Hugo", first: "Victor", last: "Hugo"} },
969
+ { from: "Hull, Bobby", to: { full: "Bobby Hull", first: "Bobby", last: "Hull"} },
970
+ { from: "Hull, Cordell", to: { full: "Cordell Hull", first: "Cordell", last: "Hull"} },
971
+ { from: "Humboldt, Alexander von", to: { full: "Alexander von Humboldt", first: "Alexander", last: "von Humboldt"} },
972
+ { from: "Humboldt, Wilhelm von", to: { full: "Wilhelm von Humboldt", first: "Wilhelm", last: "von Humboldt"} },
973
+ { from: "Hume, David", to: { full: "David Hume", first: "David", last: "Hume"} },
974
+ { from: "Hundertwasser, Friedensreich", to: { full: "Friedensreich Hundertwasser", first: "Friedensreich", last: "Hundertwasser"} },
975
+ { from: "Hung, William", to: { full: "William Hung", first: "William", last: "Hung"} },
976
+ { from: "Hunt, J. McV.", to: { full: "J McV Hunt", first: "J McV", last: "Hunt"} },
977
+ { from: "Hurston, Zora Neale", to: { full: "Zora Neale Hurston", first: "Zora Neale", last: "Hurston"} },
978
+ { from: "Hussein, Saddam", to: { full: "Saddam Hussein", first: "Saddam", last: "Hussein"} },
979
+ { from: "Hutcheson, Francis", to: { full: "Francis Hutcheson", first: "Francis", last: "Hutcheson"} },
980
+ { from: "Hutchinson, Thomas", to: { full: "Thomas Hutchinson", first: "Thomas", last: "Hutchinson"} },
981
+ { from: "Hutton, James", to: { full: "James Hutton", first: "James", last: "Hutton"} },
982
+ { from: "Huxley, Aldous", to: { full: "Aldous Huxley", first: "Aldous", last: "Huxley"} },
983
+ { from: "Huxley, Julian", to: { full: "Julian Huxley", first: "Julian", last: "Huxley"} },
984
+ { from: "Huxley, Thomas Henry", to: { full: "Thomas Henry Huxley", first: "Thomas Henry", last: "Huxley"} },
985
+ { from: "Huygens, Christian", to: { full: "Christian Huygens", first: "Christian", last: "Huygens"} },
986
+ { from: "Hyles, Jack", to: { full: "Jack Hyles", first: "Jack", last: "Hyles"} },
987
+ { from: "Hyson, Matt", to: { full: "Matt Hyson", first: "Matt", last: "Hyson"} },
988
+
989
+ { from: "Iacocca, Lee", to: { full: "Lee Iacocca", first: "Lee", last: "Iacocca"} },
990
+ { from: "Ibsen, Henrik", to: { full: "Henrik Ibsen", first: "Henrik", last: "Ibsen"} },
991
+ { from: "ibn Abi Talib, Ali", to: { full: "Ali ibn Abi Talib", first: "Ali", last: "ibn Abi Talib"} },
992
+ { from: "ibn Abī Ṭālib, Alī", to: { full: "Alī ibn Abī Ṭālib", first: "Alī", last: "ibn Abī Ṭālib"} },
993
+ { from: "Icke, David", to: { full: "David Icke", first: "David", last: "Icke"} },
994
+ { from: "Idle, Eric", to: { full: "Eric Idle", first: "Eric", last: "Idle"} },
995
+ { from: "Iloilo, Ratu Josefa", to: { full: "Ratu Josefa Iloilo", first: "Ratu Josefa", last: "Iloilo"} },
996
+ { from: "Inge, William Ralph", to: { full: "William Ralph Inge", first: "William Ralph", last: "Inge"} },
997
+ { from: "Ingelow, Jean", to: { full: "Jean Ingelow", first: "Jean", last: "Ingelow"} },
998
+ { from: "Ingersoll, Robert G.", to: { full: "Robert G Ingersoll", first: "Robert G", last: "Ingersoll"} },
999
+ { from: "Ionesco, Eugene", to: { full: "Eugene Ionesco", first: "Eugene", last: "Ionesco"} },
1000
+ { from: "Ip, Regina", to: { full: "Regina Ip", first: "Regina", last: "Ip"} },
1001
+ { from: "Irvine, Eddie", to: { full: "Eddie Irvine", first: "Eddie", last: "Irvine"} },
1002
+ { from: "Ishihara, Shintaro", to: { full: "Shintaro Ishihara", first: "Shintaro", last: "Ishihara"} },
1003
+ { from: "Itoi, Shigesato", to: { full: "Shigesato Itoi", first: "Shigesato", last: "Itoi"} },
1004
+ { from: "Izzard, Eddie", to: { full: "Eddie Izzard", first: "Eddie", last: "Izzard"} },
1005
+
1006
+ { from: "Jäätteenmäki, Anneli", to: { full: "Anneli Jäätteenmäki", first: "Anneli", last: "Jäätteenmäki"} },
1007
+ { from: "Jackson, Andrew", to: { full: "Andrew Jackson", first: "Andrew", last: "Jackson"} },
1008
+ { from: "Jackson, Janet", to: { full: "Janet Jackson", first: "Janet", last: "Jackson"} },
1009
+ { from: "Jackson, Jesse", to: { full: "Jesse Jackson", first: "Jesse", last: "Jackson"} },
1010
+ { from: "Jackson, Michael", to: { full: "Michael Jackson", first: "Michael", last: "Jackson"} },
1011
+ { from: "Jackson, Robert H.", to: { full: "Robert H Jackson", first: "Robert H", last: "Jackson"} },
1012
+ { from: "Jaffe, Bob", to: { full: "Bob Jaffe", first: "Bob", last: "Jaffe"} },
1013
+ { from: "James, Alice", to: { full: "Alice James", first: "Alice", last: "James"} },
1014
+ { from: "James, C. L. R.", to: { full: "C L R James", first: "C L R", last: "James"} },
1015
+ { from: "James, Donald", to: { full: "Donald James", first: "Donald", last: "James"} },
1016
+ { from: "James, Henry", to: { full: "Henry James", first: "Henry", last: "James"} },
1017
+ { from: "James, Kevin", to: { full: "Kevin James", first: "Kevin", last: "James"} },
1018
+ { from: "James, William", to: { full: "William James", first: "William", last: "James"} },
1019
+ { from: "Janáček, Leoš", to: { full: "Leoš Janáček", first: "Leoš", last: "Janáček"} },
1020
+ { from: "Jarrell, Randall", to: { full: "Randall Jarrell", first: "Randall", last: "Jarrell"} },
1021
+ { from: "Jarrett, Jeff", to: { full: "Jeff Jarrett", first: "Jeff", last: "Jarrett"} },
1022
+ { skip: true, from: "Jay, Glenn, Miner", to: { full: "Miner Jay, Glenn", first: "Miner", last: "Jay, Glenn"} },
1023
+ { from: "Jarry, Alfred", to: { full: "Alfred Jarry", first: "Alfred", last: "Jarry"} },
1024
+ { from: "Jeffers, Robinson", to: { full: "Robinson Jeffers", first: "Robinson", last: "Jeffers"} },
1025
+ { from: "Jefferson, Thomas", to: { full: "Thomas Jefferson", first: "Thomas", last: "Jefferson"} },
1026
+ { from: "Jelinek, Fred", to: { full: "Fred Jelinek", first: "Fred", last: "Jelinek"} },
1027
+ { from: "Jenner, Henry", to: { full: "Henry Jenner", first: "Henry", last: "Jenner"} },
1028
+ { from: "Jennings, Peter", to: { full: "Peter Jennings", first: "Peter", last: "Jennings"} },
1029
+ { from: "Jensen, Derrick", to: { full: "Derrick Jensen", first: "Derrick", last: "Jensen"} },
1030
+ { from: "Jensen, Hayley", to: { full: "Hayley Jensen", first: "Hayley", last: "Jensen"} },
1031
+ { from: "Jeter, Derek", to: { full: "Derek Jeter", first: "Derek", last: "Jeter"} },
1032
+ { from: "Jillette, Penn", to: { full: "Penn Jillette", first: "Penn", last: "Jillette"} },
1033
+ { from: "Jobs, Steve", to: { full: "Steve Jobs", first: "Steve", last: "Jobs"} },
1034
+ { from: "Johns, Michael", to: { full: "Michael Johns", first: "Michael", last: "Johns"} },
1035
+ { from: "Johnson, Boris", to: { full: "Boris Johnson", first: "Boris", last: "Johnson"} },
1036
+ { from: "Johnson, Lyndon", to: { full: "Lyndon Johnson", first: "Lyndon", last: "Johnson"} },
1037
+ { from: "Johnson, Philip", to: { full: "Philip Johnson", first: "Philip", last: "Johnson"} },
1038
+ { from: "Johnson, Samuel", to: { full: "Samuel Johnson", first: "Samuel", last: "Johnson"} },
1039
+ { from: "Johnson, Susan (Australian)", to: { full: "Susan (Australian) Johnson", first: "Susan (Australian)", last: "Johnson"} },
1040
+ { from: "Johnson, Zach", to: { full: "Zach Johnson", first: "Zach", last: "Johnson"} },
1041
+ { from: "Jolie, Angelina", to: { full: "Angelina Jolie", first: "Angelina", last: "Jolie"} },
1042
+ { from: "Jones, John Paul", to: { full: "John Paul Jones", first: "John Paul", last: "Jones"} },
1043
+ { from: "Jones, Norah", to: { full: "Norah Jones", first: "Norah", last: "Jones"} },
1044
+ { from: "Jones, Orlando", to: { full: "Orlando Jones", first: "Orlando", last: "Jones"} },
1045
+ { from: "Jong, Erica", to: { full: "Erica Jong", first: "Erica", last: "Jong"} },
1046
+ { from: "Jonson, Ben", to: { full: "Ben Jonson", first: "Ben", last: "Jonson"} },
1047
+ { from: "Joplin, Janis", to: { full: "Janis Joplin", first: "Janis", last: "Joplin"} },
1048
+ { from: "Jordan, Sandra", to: { full: "Sandra Jordan", first: "Sandra", last: "Jordan"} },
1049
+ { from: "Joseph, Chief", to: { full: "Chief Joseph", first: "Chief", last: "Joseph"} },
1050
+ { from: "Joshi, Kedar", to: { full: "Kedar Joshi", first: "Kedar", last: "Joshi"} },
1051
+ { from: "Joubert, Joseph", to: { full: "Joseph Joubert", first: "Joseph", last: "Joubert"} },
1052
+ { from: "Joyce, James", to: { full: "James Joyce", first: "James", last: "Joyce"} },
1053
+ { from: "Juárez, Benito", to: { full: "Benito Juárez", first: "Benito", last: "Juárez"} },
1054
+ { from: "Judd, Ashley", to: { full: "Ashley Judd", first: "Ashley", last: "Judd"} },
1055
+ { from: "Jueneman, Frederic", to: { full: "Frederic Jueneman", first: "Frederic", last: "Jueneman"} },
1056
+ { from: "Jackson, Michael", to: { full: "Michael Jackson", first: "Michael", last: "Jackson"} },
1057
+ { from: "Jung, Carl", to: { full: "Carl Jung", first: "Carl", last: "Jung"} },
1058
+ { from: "Junge, Traudl", to: { full: "Traudl Junge", first: "Traudl", last: "Junge"} },
1059
+ { from: "Juyi, Bai", to: { full: "Bai Juyi", first: "Bai", last: "Juyi"} },
1060
+
1061
+ { from: "Kaczynski, Lech", to: { full: "Lech Kaczynski", first: "Lech", last: "Kaczynski"} },
1062
+ { from: "Kael, Pauline", to: { full: "Pauline Kael", first: "Pauline", last: "Kael"} },
1063
+ { from: "Kafka, Franz", to: { full: "Franz Kafka", first: "Franz", last: "Kafka"} },
1064
+ { from: "Kahlo, Frida", to: { full: "Frida Kahlo", first: "Frida", last: "Kahlo"} },
1065
+ { from: "Kak, Subhash", to: { full: "Subhash Kak", first: "Subhash", last: "Kak"} },
1066
+ { from: "Kalam, APJ Abdul", to: { full: "APJ Abdul Kalam", first: "APJ Abdul", last: "Kalam"} },
1067
+ { from: "Kant, Immanuel", to: { full: "Immanuel Kant", first: "Immanuel", last: "Kant"} },
1068
+ { from: "Kapell, William", to: { full: "William Kapell", first: "William", last: "Kapell"} },
1069
+ { from: "Kapuściński, Ryszard", to: { full: "Ryszard Kapuściński", first: "Ryszard", last: "Kapuściński"} },
1070
+ { from: "Karenga, Ron", to: { full: "Ron Karenga", first: "Ron", last: "Karenga"} },
1071
+ { from: "Karzai, Hamid", to: { full: "Hamid Karzai", first: "Hamid", last: "Karzai"} },
1072
+ { from: "Kasparov, Garry", to: { full: "Garry Kasparov", first: "Garry", last: "Kasparov"} },
1073
+ { from: "Katz, Jonathan", to: { full: "Jonathan Katz", first: "Jonathan", last: "Katz"} },
1074
+ { from: "Kawabata, Yasunari", to: { full: "Yasunari Kawabata", first: "Yasunari", last: "Kawabata"} },
1075
+ { from: "Kawohl, Kurt", to: { full: "Kurt Kawohl", first: "Kurt", last: "Kawohl"} },
1076
+ { from: "Kay, Alan", to: { full: "Alan Kay", first: "Alan", last: "Kay"} },
1077
+ { from: "Kay, Ken", to: { full: "Ken Kay", first: "Ken", last: "Kay"} },
1078
+ { from: "Kazantzakis, Nikos", to: { full: "Nikos Kazantzakis", first: "Nikos", last: "Kazantzakis"} },
1079
+ { from: "Keats, John", to: { full: "John Keats", first: "John", last: "Keats"} },
1080
+ { from: "Keating, Paul", to: { full: "Paul Keating", first: "Paul", last: "Keating"} },
1081
+ { from: "Keaton, Buster", to: { full: "Buster Keaton", first: "Buster", last: "Keaton"} },
1082
+ { from: "Keel, John", to: { full: "John Keel", first: "John", last: "Keel"} },
1083
+ { from: "Keeping, Charles", to: { full: "Charles Keeping", first: "Charles", last: "Keeping"} },
1084
+ { from: "Keillor, Garrison", to: { full: "Garrison Keillor", first: "Garrison", last: "Keillor"} },
1085
+ { from: "Keller, Helen", to: { full: "Helen Keller", first: "Helen", last: "Keller"} },
1086
+ { from: "Kellner, Friedrich", to: { full: "Friedrich Kellner", first: "Friedrich", last: "Kellner"} },
1087
+ { from: "Kelly, Walt", to: { full: "Walt Kelly", first: "Walt", last: "Kelly"} },
1088
+ { from: "Kempton, Murray", to: { full: "Murray Kempton", first: "Murray", last: "Kempton"} },
1089
+ { from: "Kelvin, Lord", to: { full: "Lord Kelvin", first: "Lord", last: "Kelvin"} },
1090
+ { from: "Kendrick, Alex", to: { full: "Alex Kendrick", first: "Alex", last: "Kendrick"} },
1091
+ { from: "Kennan, George F.", to: { full: "George F Kennan", first: "George F", last: "Kennan"} },
1092
+ { from: "Kennedy, Anthony", to: { full: "Anthony Kennedy", first: "Anthony", last: "Kennedy"} },
1093
+ { from: "Kennedy, Edward", to: { full: "Edward Kennedy", first: "Edward", last: "Kennedy"} },
1094
+ { from: "Kennedy, John F.", to: { full: "John F Kennedy", first: "John F", last: "Kennedy"} },
1095
+ { from: "Kennedy, Robert", to: { full: "Robert Kennedy", first: "Robert", last: "Kennedy"} },
1096
+ { from: "Kennedy, Robert F.", to: { full: "Robert F Kennedy", first: "Robert F", last: "Kennedy"} },
1097
+ { from: "Kennedy, Robert Francis Jr.", to: { full: "Robert Francis Kennedy Jr", first: "Robert Francis", last: "Kennedy", suffix: "Jr"} },
1098
+ { from: "Kepa, Ro Teimumu", to: { full: "Ro Teimumu Kepa", first: "Ro Teimumu", last: "Kepa"} },
1099
+ { from: "Kerouac, Jack", to: { full: "Jack Kerouac", first: "Jack", last: "Kerouac"} },
1100
+ { from: "Kerry, John", to: { full: "John Kerry", first: "John", last: "Kerry"} },
1101
+ { from: "Kerry, Teresa Heinz", to: { full: "Teresa Heinz Kerry", first: "Teresa Heinz", last: "Kerry"} },
1102
+ { from: "Kesey, Ken", to: { full: "Ken Kesey", first: "Ken", last: "Kesey"} },
1103
+ { from: "Keyes, Alan", to: { full: "Alan Keyes", first: "Alan", last: "Keyes"} },
1104
+ { from: "Keynes, John Maynard", to: { full: "John Maynard Keynes", first: "John Maynard", last: "Keynes"} },
1105
+ { from: "Khan, Genghis", to: { full: "Genghis Khan", first: "Genghis", last: "Khan"} },
1106
+ { from: "Khan, Hafiz", to: { full: "Hafiz Khan", first: "Hafiz", last: "Khan"} },
1107
+ { from: "Khan, Nusrat Fateh Ali", to: { full: "Nusrat Fateh Ali Khan", first: "Nusrat Fateh Ali", last: "Khan"} },
1108
+ { from: "Khan, Shahrukh", to: { full: "Shahrukh Khan", first: "Shahrukh", last: "Khan"} },
1109
+ { from: "Khayyam, Omar", to: { full: "Omar Khayyam", first: "Omar", last: "Khayyam"} },
1110
+ { from: "Khomeini, Ruhollah", to: { full: "Ruhollah Khomeini", first: "Ruhollah", last: "Khomeini"} },
1111
+ { from: "Khrushchev, Nikita", to: { full: "Nikita Khrushchev", first: "Nikita", last: "Khrushchev"} },
1112
+ { from: "Kierkegaard, Søren Aabye", to: { full: "Søren Aabye Kierkegaard", first: "Søren Aabye", last: "Kierkegaard"} },
1113
+ { from: "Kilmer, Joyce", to: { full: "Joyce Kilmer", first: "Joyce", last: "Kilmer"} },
1114
+ { from: "Kilmister, Lemmy", to: { full: "Lemmy Kilmister", first: "Lemmy", last: "Kilmister"} },
1115
+ { from: "Kilroy-Silk, Robert", to: { full: "Robert Kilroy-Silk", first: "Robert", last: "Kilroy-Silk"} },
1116
+ { from: "King, Carole", to: { full: "Carole King", first: "Carole", last: "King"} },
1117
+ { from: "King, Coretta Scott", to: { full: "Coretta Scott King", first: "Coretta Scott", last: "King"} },
1118
+ { from: "King, Martin Luther", to: { full: "Martin Luther King", first: "Martin Luther", last: "King"} },
1119
+ { from: "King, Stephen", to: { full: "Stephen King", first: "Stephen", last: "King"} },
1120
+ { from: "King, William", to: { full: "William King", first: "William", last: "King"} },
1121
+ { from: "Kingsley, Charles", to: { full: "Charles Kingsley", first: "Charles", last: "Kingsley"} },
1122
+ { from: "Kingsolver, Barbara", to: { full: "Barbara Kingsolver", first: "Barbara", last: "Kingsolver"} },
1123
+ { from: "Kinsey, Alfred", to: { full: "Alfred Kinsey", first: "Alfred", last: "Kinsey"} },
1124
+ { from: "Kinski, Klaus", to: { full: "Klaus Kinski", first: "Klaus", last: "Kinski"} },
1125
+ { from: "Kipling, Rudyard", to: { full: "Rudyard Kipling", first: "Rudyard", last: "Kipling"} },
1126
+ { from: "Kissinger, Henry", to: { full: "Henry Kissinger", first: "Henry", last: "Kissinger"} },
1127
+ { from: "Khalilzad, Zalmay", to: { full: "Zalmay Khalilzad", first: "Zalmay", last: "Khalilzad"} },
1128
+ { from: "Kline, Kevin", to: { full: "Kevin Kline", first: "Kevin", last: "Kline"} },
1129
+ { from: "Klopstock, Friedrich Gottlieb", to: { full: "Friedrich Gottlieb Klopstock", first: "Friedrich Gottlieb", last: "Klopstock"} },
1130
+ { from: "Knapman, Roger", to: { full: "Roger Knapman", first: "Roger", last: "Knapman"} },
1131
+ { from: "Knebel, Fletcher", to: { full: "Fletcher Knebel", first: "Fletcher", last: "Knebel"} },
1132
+ { from: "Knightley, Keira", to: { full: "Keira Knightley", first: "Keira", last: "Knightley"} },
1133
+ { from: "Knuth, Donald", to: { full: "Donald Knuth", first: "Donald", last: "Knuth"} },
1134
+ { from: "Koestler, Arthur", to: { full: "Arthur Koestler", first: "Arthur", last: "Koestler"} },
1135
+ { from: "Koons, Jeff", to: { full: "Jeff Koons", first: "Jeff", last: "Koons"} },
1136
+ { from: "Koontz, Dean R.", to: { full: "Dean R Koontz", first: "Dean R", last: "Koontz"} },
1137
+ { from: "Koop, C. Everett", to: { full: "C Everett Koop", first: "C Everett", last: "Koop"} },
1138
+ { from: "Kornheiser, Tony", to: { full: "Tony Kornheiser", first: "Tony", last: "Kornheiser"} },
1139
+ { from: "Kotok, Alan", to: { full: "Alan Kotok", first: "Alan", last: "Kotok"} },
1140
+ { from: "Kovacs, Ernie", to: { full: "Ernie Kovacs", first: "Ernie", last: "Kovacs"} },
1141
+ { from: "Koya, Sidiq", to: { full: "Sidiq Koya", first: "Sidiq", last: "Koya"} },
1142
+ { from: "Kraus, Karl", to: { full: "Karl Kraus", first: "Karl", last: "Kraus"} },
1143
+ { from: "Krieger, Lou", to: { full: "Lou Krieger", first: "Lou", last: "Krieger"} },
1144
+ { from: "Krieger, Robbie", to: { full: "Robbie Krieger", first: "Robbie", last: "Krieger"} },
1145
+ { from: "Kripke, Saul", to: { full: "Saul Kripke", first: "Saul", last: "Kripke"} },
1146
+ { from: "Krishnamurti, Jiddu", to: { full: "Jiddu Krishnamurti", first: "Jiddu", last: "Krishnamurti"} },
1147
+ { from: "Krishnamurthy, Kalki (R. Krishnamurthy)", to: { full: "Kalki (R. Krishnamurthy) Krishnamurthy", first: "Kalki (R. Krishnamurthy)", last: "Krishnamurthy"} },
1148
+ { from: "Kronrod, Alexander", to: { full: "Alexander Kronrod", first: "Alexander", last: "Kronrod"} },
1149
+ { from: "Kruk, John", to: { full: "John Kruk", first: "John", last: "Kruk"} },
1150
+ { from: "Kruger, Barbara", to: { full: "Barbara Kruger", first: "Barbara", last: "Kruger"} },
1151
+ { from: "Kruth, Ernst", to: { full: "Ernst Kruth", first: "Ernst", last: "Kruth"} },
1152
+ { from: "Kübler-Ross, Elisabeth", to: { full: "Elisabeth Kübler-Ross", first: "Elisabeth", last: "Kübler-Ross"} },
1153
+ { from: "Kudlow, Lawrence", to: { full: "Lawrence Kudlow", first: "Lawrence", last: "Kudlow"} },
1154
+ { from: "Kundera, Milan", to: { full: "Milan Kundera", first: "Milan", last: "Kundera"} },
1155
+ { from: "Kulongoski, Ted", to: { full: "Ted Kulongoski", first: "Ted", last: "Kulongoski"} },
1156
+ { from: "Kuriyama, Chiaki", to: { full: "Chiaki Kuriyama", first: "Chiaki", last: "Kuriyama"} },
1157
+ { from: "Kurosawa, Akira", to: { full: "Akira Kurosawa", first: "Akira", last: "Kurosawa"} },
1158
+ { from: "Kurti, Nicholas", to: { full: "Nicholas Kurti", first: "Nicholas", last: "Kurti"} },
1159
+ { from: "Kurtz, Katherine", to: { full: "Katherine Kurtz", first: "Katherine", last: "Kurtz"} },
1160
+ { from: "Kurtz, Scott R.", to: { full: "Scott R Kurtz", first: "Scott R", last: "Kurtz"} },
1161
+ { from: "Kusturica, Emir", to: { full: "Emir Kusturica", first: "Emir", last: "Kusturica"} },
1162
+
1163
+ { from: "La Bruyère, Jean de", to: { full: "Jean de La Bruyère", first: "Jean", last: "de La Bruyère"} },
1164
+ { from: "LaHaye, Tim", to: { full: "Tim LaHaye", first: "Tim", last: "LaHaye"} },
1165
+ { from: "Laitman, Michael", to: { full: "Michael Laitman", first: "Michael", last: "Laitman"} },
1166
+ { from: "Lalabalavu, Ratu Naiqama", to: { full: "Ratu Naiqama Lalabalavu", first: "Ratu Naiqama", last: "Lalabalavu"} },
1167
+ { from: "Lamb, Charles", to: { full: "Charles Lamb", first: "Charles", last: "Lamb"} },
1168
+ { from: "Landers, Ann", to: { full: "Ann Landers", first: "Ann", last: "Landers"} },
1169
+ { from: "Landor, Walter Savage", to: { full: "Walter Savage Landor", first: "Walter Savage", last: "Landor"} },
1170
+ { from: "Lane, Nathan", to: { full: "Nathan Lane", first: "Nathan", last: "Lane"} },
1171
+ { from: "Lang, Will Jr.", to: { full: "Will Lang Jr", first: "Will", last: "Lang", suffix: "Jr"} },
1172
+ { from: "Lanne, Jack La", to: { full: "Jack La Lanne", first: "Jack", last: "La Lanne"} },
1173
+ { from: "Laplace, Pierre-Simon", to: { full: "Pierre-Simon Laplace", first: "Pierre-Simon", last: "Laplace"} },
1174
+ { from: "Lardner, Ring", to: { full: "Ring Lardner", first: "Ring", last: "Lardner"} },
1175
+ { from: "La Rochefoucauld, François de", to: { full: "François de La Rochefoucauld", first: "François", last: "de La Rochefoucauld"} },
1176
+ { from: "Lasorda, Tommy", to: { full: "Tommy Lasorda", first: "Tommy", last: "Lasorda"} },
1177
+ { from: "Lastman, Mel", to: { full: "Mel Lastman", first: "Mel", last: "Lastman"} },
1178
+ { from: "Lau, Charley", to: { full: "Charley Lau", first: "Charley", last: "Lau"} },
1179
+ { from: "Laurel, Stan", to: { full: "Stan Laurel", first: "Stan", last: "Laurel"} },
1180
+ { from: "Laurer, Joanie", to: { full: "Joanie Laurer", first: "Joanie", last: "Laurer"} },
1181
+ { from: "Laurinkus, Mečys", to: { full: "Mečys Laurinkus", first: "Mečys", last: "Laurinkus"} },
1182
+ { from: "Lavigne, Avril", to: { full: "Avril Lavigne", first: "Avril", last: "Lavigne"} },
1183
+ { from: "Lawler, Jerry", to: { full: "Jerry Lawler", first: "Jerry", last: "Lawler"} },
1184
+ { from: "Lawrence, Thomas Edward", to: { full: "Thomas Edward Lawrence", first: "Thomas Edward", last: "Lawrence"} },
1185
+ { from: "Leacock, Stephen", to: { full: "Stephen Leacock", first: "Stephen", last: "Leacock"} },
1186
+ { from: "Lear, Edward", to: { full: "Edward Lear", first: "Edward", last: "Lear"} },
1187
+ { from: "Leary, Timothy", to: { full: "Timothy Leary", first: "Timothy", last: "Leary"} },
1188
+ { from: "LeBlanc, Romeo", to: { full: "Romeo LeBlanc", first: "Romeo", last: "LeBlanc"} },
1189
+ { from: "Lebowitz, Fran", to: { full: "Fran Lebowitz", first: "Fran", last: "Lebowitz"} },
1190
+ { from: "Lec, Stanislaw Jerzy", to: { full: "Stanislaw Jerzy Lec", first: "Stanislaw Jerzy", last: "Lec"} },
1191
+ { from: "Lee, Ang", to: { full: "Ang Lee", first: "Ang", last: "Lee"} },
1192
+ { from: "Lee, Bruce", to: { full: "Bruce Lee", first: "Bruce", last: "Lee"} },
1193
+ { from: "Lee, Stan", to: { full: "Stan Lee", first: "Stan", last: "Lee"} },
1194
+ { from: "Lehman, John", to: { full: "John Lehman", first: "John", last: "Lehman"} },
1195
+ { from: "Leiber, Fritz", to: { full: "Fritz Leiber", first: "Fritz", last: "Leiber"} },
1196
+ { from: "Lem, Stanislaw", to: { full: "Stanislaw Lem", first: "Stanislaw", last: "Lem"} },
1197
+ { from: "LeMay, Curtis", to: { full: "Curtis LeMay", first: "Curtis", last: "LeMay"} },
1198
+ { from: "Lenin, Vladimir", to: { full: "Vladimir Lenin", first: "Vladimir", last: "Lenin"} },
1199
+ { from: "Lennon, John", to: { full: "John Lennon", first: "John", last: "Lennon"} },
1200
+ { from: "Leno, Jay", to: { full: "Jay Leno", first: "Jay", last: "Leno"} },
1201
+ { from: "Leonard, Elmore", to: { full: "Elmore Leonard", first: "Elmore", last: "Leonard"} },
1202
+ { from: "Lernoux, Penny", to: { full: "Penny Lernoux", first: "Penny", last: "Lernoux"} },
1203
+ { from: "Lessig, Lawrence", to: { full: "Lawrence Lessig", first: "Lawrence", last: "Lessig"} },
1204
+ { from: "Lessing, Doris", to: { full: "Doris Lessing", first: "Doris", last: "Lessing"} },
1205
+ { from: "Letterman, David", to: { full: "David Letterman", first: "David", last: "Letterman"} },
1206
+ { from: "Leung, Graeme", to: { full: "Graeme Leung", first: "Graeme", last: "Leung"} },
1207
+ { from: "Levertov, Denise", to: { full: "Denise Levertov", first: "Denise", last: "Levertov"} },
1208
+ { from: "Leverson, Ada", to: { full: "Ada Leverson", first: "Ada", last: "Leverson"} },
1209
+ { from: "Lévi-Strauss, Claude", to: { full: "Claude Lévi-Strauss", first: "Claude", last: "Lévi-Strauss"} },
1210
+ { from: "Lewis, C. S.", to: { full: "C S Lewis", first: "C S", last: "Lewis"} },
1211
+ { from: "Lewis, Jenny", to: { full: "Jenny Lewis", first: "Jenny", last: "Lewis"} },
1212
+ { from: "Lewis, Sinclair", to: { full: "Sinclair Lewis", first: "Sinclair", last: "Lewis"} },
1213
+ { from: "Lichtenberg, Georg Christoph", to: { full: "Georg Christoph Lichtenberg", first: "Georg Christoph", last: "Lichtenberg"} },
1214
+ { from: "Liddy, G. Gordon", to: { full: "G Gordon Liddy", first: "G Gordon", last: "Liddy"} },
1215
+ { from: "Liebling, A. J.", to: { full: "A J Liebling", first: "A J", last: "Liebling"} },
1216
+ { from: "Limbaugh, Rush", to: { full: "Rush Limbaugh", first: "Rush", last: "Limbaugh"} },
1217
+ { from: "Lincoln, Abraham", to: { full: "Abraham Lincoln", first: "Abraham", last: "Lincoln"} },
1218
+ { from: "Livermore, Jesse Lauriston", to: { full: "Jesse Lauriston Livermore", first: "Jesse Lauriston", last: "Livermore"} },
1219
+ { from: "Lloyd, Seth", to: { full: "Seth Lloyd", first: "Seth", last: "Lloyd"} },
1220
+ { from: "Locke, John", to: { full: "John Locke", first: "John", last: "Locke"} },
1221
+ { from: "Lohan, Lindsay", to: { full: "Lindsay Lohan", first: "Lindsay", last: "Lohan"} },
1222
+ { from: "London, Jack", to: { full: "Jack London", first: "Jack", last: "London"} },
1223
+ { from: "Long, Earl", to: { full: "Earl Long", first: "Earl", last: "Long"} },
1224
+ { from: "Long, Huey P.", to: { full: "Huey P Long", first: "Huey P", last: "Long"} },
1225
+ { from: "Longfellow, Henry Wadsworth", to: { full: "Henry Wadsworth Longfellow", first: "Henry Wadsworth", last: "Longfellow"} },
1226
+ { from: "Loo, Tristan J.", to: { full: "Tristan J Loo", first: "Tristan J", last: "Loo"} },
1227
+ { from: "Looney, General William", to: { full: "William Looney", title: "General", first: "William", last: "Looney"} },
1228
+ { from: "Lott, Trent", to: { full: "Trent Lott", first: "Trent", last: "Lott"} },
1229
+ { skip: true, from: "Louis VII, King of France", to: { full: "King of France Louis VII", first: "King of France", last: "Louis VII"} },
1230
+ { from: "Louis, Joe", to: { full: "Joe Louis", first: "Joe", last: "Louis"} },
1231
+ { from: "Love, Courtney", to: { full: "Courtney Love", first: "Courtney", last: "Love"} },
1232
+ { from: "Lovecraft, H. P.", to: { full: "H P Lovecraft", first: "H P", last: "Lovecraft"} },
1233
+ { from: "Lovelace, Richard", to: { full: "Richard Lovelace", first: "Richard", last: "Lovelace"} },
1234
+ { from: "Lovins, Amory", to: { full: "Amory Lovins", first: "Amory", last: "Lovins"} },
1235
+ { from: "Lowell, Christopher", to: { full: "Christopher Lowell", first: "Christopher", last: "Lowell"} },
1236
+ { from: "Lubbock, John", to: { full: "John Lubbock", first: "John", last: "Lubbock"} },
1237
+ { from: "Lucas, George", to: { full: "George Lucas", first: "George", last: "Lucas"} },
1238
+ { from: "Ludwig, Arnold M.", to: { full: "Arnold M Ludwig", first: "Arnold M", last: "Ludwig"} },
1239
+ { from: "Luther, Martin", to: { full: "Martin Luther", first: "Martin", last: "Luther"} },
1240
+ { from: "Luxemburg, Rosa", to: { full: "Rosa Luxemburg", first: "Rosa", last: "Luxemburg"} },
1241
+ { from: "Lynch, Peter", to: { full: "Peter Lynch", first: "Peter", last: "Lynch"} },
1242
+ { from: "Lyons, Steve", to: { full: "Steve Lyons", first: "Steve", last: "Lyons"} },
1243
+
1244
+ { from: "Maathai, Wangari", to: { full: "Wangari Maathai", first: "Wangari", last: "Maathai"} },
1245
+ { from: "MacArthur, Douglas", to: { full: "Douglas MacArthur", first: "Douglas", last: "MacArthur"} },
1246
+ { from: "Macaulay, Thomas Babington", to: { full: "Thomas Babington Macaulay", first: "Thomas Babington", last: "Macaulay"} },
1247
+ { from: "Macdonald, George", to: { full: "George Macdonald", first: "George", last: "Macdonald"} },
1248
+ { from: "MacGregor, Robert Roy", to: { full: "Robert Roy MacGregor", first: "Robert Roy", last: "MacGregor"} },
1249
+ { from: "Machado, Antonio", to: { full: "Antonio Machado", first: "Antonio", last: "Machado"} },
1250
+ { from: "Machiavelli, Niccolo", to: { full: "Niccolo Machiavelli", first: "Niccolo", last: "Machiavelli"} },
1251
+ { from: "Madonna see Ciccone, Madonna", to: { full: "Madonna Madonna see Ciccone", first: "Madonna", last: "Madonna see Ciccone"} },
1252
+ { from: "Madraiwiwi, Ratu Joni", to: { full: "Ratu Joni Madraiwiwi", first: "Ratu Joni", last: "Madraiwiwi"} },
1253
+ { from: "Magee, Bryan", to: { full: "Bryan Magee", first: "Bryan", last: "Magee"} },
1254
+ { from: "Maher, Bill", to: { full: "Bill Maher", first: "Bill", last: "Maher"} },
1255
+ { skip: true, from: "Mallet, David (or David Malloch)", to: { full: "David (or David Malloch) Mallet", first: "David (or David Malloch)", last: "Mallet"} },
1256
+ { from: "Malley, Matt", to: { full: "Matt Malley", first: "Matt", last: "Malley"} },
1257
+ { from: "Malory, Thomas", to: { full: "Thomas Malory", first: "Thomas", last: "Malory"} },
1258
+ { from: "Malraux, André", to: { full: "André Malraux", first: "André", last: "Malraux"} },
1259
+ { from: "Malthus, Thomas", to: { full: "Thomas Malthus", first: "Thomas", last: "Malthus"} },
1260
+ { from: "Manchester, William", to: { full: "William Manchester", first: "William", last: "Manchester"} },
1261
+ { from: "Mandela, Nelson", to: { full: "Nelson Mandela", first: "Nelson", last: "Mandela"} },
1262
+ { from: "Mann, Horace", to: { full: "Horace Mann", first: "Horace", last: "Mann"} },
1263
+ { from: "Mann, Thomas", to: { full: "Thomas Mann", first: "Thomas", last: "Mann"} },
1264
+ { from: "Mannheim, Karl", to: { full: "Karl Mannheim", first: "Karl", last: "Mannheim"} },
1265
+ { from: "Mansfield, Katherine", to: { full: "Katherine Mansfield", first: "Katherine", last: "Mansfield"} },
1266
+ { from: "Manson, Charles", to: { full: "Charles Manson", first: "Charles", last: "Manson"} },
1267
+ { from: "Manson, Marilyn", to: { full: "Marilyn Manson", first: "Marilyn", last: "Manson"} },
1268
+ { from: "Mara, Ratu Sir Kamisese", to: { full: "Ratu Sir Kamisese Mara", first: "Ratu Sir Kamisese", last: "Mara"} },
1269
+ { from: "Marconi, Guglielmo", to: { full: "Guglielmo Marconi", first: "Guglielmo", last: "Marconi"} },
1270
+ { from: "Marcos, Ferdinand Edralin", to: { full: "Ferdinand Edralin Marcos", first: "Ferdinand Edralin", last: "Marcos"} },
1271
+ { from: "Margera, Brandon \"Bam\"", to: { full: "Brandon (Bam) Margera", first: "Brandon", nick: "Bam", last: "Margera"} },
1272
+ { from: "Marley, Bob", to: { full: "Bob Marley", first: "Bob", last: "Marley"} },
1273
+ { from: "Marlowe, Christopher", to: { full: "Christopher Marlowe", first: "Christopher", last: "Marlowe"} },
1274
+ { from: "Maroulis, Constantine", to: { full: "Constantine Maroulis", first: "Constantine", last: "Maroulis"} },
1275
+ { from: "Marquis, Don", to: { full: "Don Marquis", first: "Don", last: "Marquis"} },
1276
+ { from: "Marshall, George", to: { full: "George Marshall", first: "George", last: "Marshall"} },
1277
+ { from: "Marshall, Joshua Micah", to: { full: "Joshua Micah Marshall", first: "Joshua Micah", last: "Marshall"} },
1278
+ { from: "Marshall, Thomas R.", to: { full: "Thomas R Marshall", first: "Thomas R", last: "Marshall"} },
1279
+ { from: "Martell, Yann", to: { full: "Yann Martell", first: "Yann", last: "Martell"} },
1280
+ { from: "Martí, José", to: { full: "José Martí", first: "José", last: "Martí"} },
1281
+ { from: "Martin, Demetri", to: { full: "Demetri Martin", first: "Demetri", last: "Martin"} },
1282
+ { from: "Martin, John", to: { full: "John Martin", first: "John", last: "Martin"} },
1283
+ { from: "Martin, Judith \"Miss Manners\"", to: { full: "Judith (Miss Manners) Martin", first: "Judith", nick: "Miss Manners", last: "Martin"} },
1284
+ { from: "Martin, Paul", to: { full: "Paul Martin", first: "Paul", last: "Martin"} },
1285
+ { from: "Martin, Steve", to: { full: "Steve Martin", first: "Steve", last: "Martin"} },
1286
+ { from: "Marvell, Andrew", to: { full: "Andrew Marvell", first: "Andrew", last: "Marvell"} },
1287
+ { from: "Marx, Groucho", to: { full: "Groucho Marx", first: "Groucho", last: "Marx"} },
1288
+ { from: "Marx, Karl", to: { full: "Karl Marx", first: "Karl", last: "Marx"} },
1289
+ { from: "Maslow, Abraham", to: { full: "Abraham Maslow", first: "Abraham", last: "Maslow"} },
1290
+ { from: "Mataca, Petero", to: { full: "Petero Mataca", first: "Petero", last: "Mataca"} },
1291
+ { from: "Matarazzo, Francesco", to: { full: "Francesco Matarazzo", first: "Francesco", last: "Matarazzo"} },
1292
+ { from: "Matisse, Henri", to: { full: "Henri Matisse", first: "Henri", last: "Matisse"} },
1293
+ { from: "Matthews, Dave", to: { full: "Dave Matthews", first: "Dave", last: "Matthews"} },
1294
+ { from: "Maugham, William Somerset", to: { full: "William Somerset Maugham", first: "William Somerset", last: "Maugham"} },
1295
+ { from: "Maupassant, Guy de", to: { full: "Guy de Maupassant", first: "Guy", last: "de Maupassant"} },
1296
+ { from: "May, Rollo", to: { full: "Rollo May", first: "Rollo", last: "May"} },
1297
+ { from: "Mayfield, Curtis", to: { full: "Curtis Mayfield", first: "Curtis", last: "Mayfield"} },
1298
+ { from: "Mayweather, Floyd, Jr.", to: { full: "Floyd Mayweather Jr", first: "Floyd", last: "Mayweather", suffix: "Jr"} },
1299
+ { from: "McAuliffe, Anthony", to: { full: "Anthony McAuliffe", first: "Anthony", last: "McAuliffe"} },
1300
+ { from: "McCain, John", to: { full: "John McCain", first: "John", last: "McCain"} },
1301
+ { from: "McCarthy, Eugene", to: { full: "Eugene McCarthy", first: "Eugene", last: "McCarthy"} },
1302
+ { from: "McCarthy, Joseph", to: { full: "Joseph McCarthy", first: "Joseph", last: "McCarthy"} },
1303
+ { from: "McCarthy, Mary", to: { full: "Mary McCarthy", first: "Mary", last: "McCarthy"} },
1304
+ { from: "McCartney, Paul", to: { full: "Paul McCartney", first: "Paul", last: "McCartney"} },
1305
+ { from: "McClary, Susan", to: { full: "Susan McClary", first: "Susan", last: "McClary"} },
1306
+ { from: "McClung, Nellie", to: { full: "Nellie McClung", first: "Nellie", last: "McClung"} },
1307
+ { from: "McFee, William", to: { full: "William McFee", first: "William", last: "McFee"} },
1308
+ { from: "McGill, Bryant", to: { full: "Bryant McGill", first: "Bryant", last: "McGill"} },
1309
+ { from: "McGoohan, Patrick", to: { full: "Patrick McGoohan", first: "Patrick", last: "McGoohan"} },
1310
+ { from: "McGuire, Al", to: { full: "Al McGuire", first: "Al", last: "McGuire"} },
1311
+ { from: "McKay, Charles", to: { full: "Charles McKay", first: "Charles", last: "McKay"} },
1312
+ { from: "McKennitt, Loreena", to: { full: "Loreena McKennitt", first: "Loreena", last: "McKennitt"} },
1313
+ { from: "McLuhan, Marshall", to: { full: "Marshall McLuhan", first: "Marshall", last: "McLuhan"} },
1314
+ { from: "McMahon, Vince", to: { full: "Vince McMahon", first: "Vince", last: "McMahon"} },
1315
+ { from: "McNair, Steve", to: { full: "Steve McNair", first: "Steve", last: "McNair"} },
1316
+ { from: "McNamara, Robert", to: { full: "Robert McNamara", first: "Robert", last: "McNamara"} },
1317
+ { from: "McQuaig, Linda", to: { full: "Linda McQuaig", first: "Linda", last: "McQuaig"} },
1318
+ { from: "Mead, Margaret", to: { full: "Margaret Mead", first: "Margaret", last: "Mead"} },
1319
+ { from: "Mecham, Evan", to: { full: "Evan Mecham", first: "Evan", last: "Mecham"} },
1320
+ { from: "Medved, Michael", to: { full: "Michael Medved", first: "Michael", last: "Medved"} },
1321
+ { from: "Meir, Golda", to: { full: "Golda Meir", first: "Golda", last: "Meir"} },
1322
+ { from: "Melua, Katie", to: { full: "Katie Melua", first: "Katie", last: "Melua"} },
1323
+ { from: "Melville, Herman", to: { full: "Herman Melville", first: "Herman", last: "Melville"} },
1324
+ { from: "Men, Alexander", to: { full: "Alexander Men", first: "Alexander", last: "Men"} },
1325
+ { from: "Mencken, H. L.", to: { full: "H L Mencken", first: "H L", last: "Mencken"} },
1326
+ { from: "Merchant, Natalie", to: { full: "Natalie Merchant", first: "Natalie", last: "Merchant"} },
1327
+ { from: "Mercury, Freddie", to: { full: "Freddie Mercury", first: "Freddie", last: "Mercury"} },
1328
+ { from: "Mero, Rena", to: { full: "Rena Mero", first: "Rena", last: "Mero"} },
1329
+ { from: "Merrick, Joseph", to: { full: "Joseph Merrick", first: "Joseph", last: "Merrick"} },
1330
+ { from: "Michener, James", to: { full: "James Michener", first: "James", last: "Michener"} },
1331
+ { from: "Midler, Bette", to: { full: "Bette Midler", first: "Bette", last: "Midler"} },
1332
+ { from: "Mies van der Rohe, Ludwig", to: { full: "Ludwig Mies van der Rohe", first: "Ludwig", last: "Mies van der Rohe"} },
1333
+ { from: "Milano, Alyssa", to: { full: "Alyssa Milano", first: "Alyssa", last: "Milano"} },
1334
+ { from: "Mill, John Stuart", to: { full: "John Stuart Mill", first: "John Stuart", last: "Mill"} },
1335
+ { from: "Miller, Alex", to: { full: "Alex Miller", first: "Alex", last: "Miller"} },
1336
+ { from: "Miller, Arthur", to: { full: "Arthur Miller", first: "Arthur", last: "Miller"} },
1337
+ { from: "Miller, Bode", to: { full: "Bode Miller", first: "Bode", last: "Miller"} },
1338
+ { from: "Miller, Henry", to: { full: "Henry Miller", first: "Henry", last: "Miller"} },
1339
+ { from: "Miller, Ron", to: { full: "Ron Miller", first: "Ron", last: "Miller"} },
1340
+ { from: "Miller, Walter M. (Jr.)", to: { full: "Walter M Miller", first: "Walter M", last: "Miller", suffix: "Jr"} },
1341
+ { from: "Milligan, Spike", to: { full: "Spike Milligan", first: "Spike", last: "Milligan"} },
1342
+ { from: "Mills, C. Wright", to: { full: "C Wright Mills", first: "C Wright", last: "Mills"} },
1343
+ { from: "Milne, A.A.", to: { full: "A A Milne", first: "A A", last: "Milne"} },
1344
+ { from: "Milosz, Ceslaw", to: { full: "Ceslaw Milosz", first: "Ceslaw", last: "Milosz"} },
1345
+ { from: "Milton, John", to: { full: "John Milton", first: "John", last: "Milton"} },
1346
+ { from: "Minow, Newton N.", to: { full: "Newton N Minow", first: "Newton N", last: "Minow"} },
1347
+ { from: "Mises, Ludwig von", to: { full: "Ludwig von Mises", first: "Ludwig", last: "von Mises"} },
1348
+ { from: "Mitchell, John", to: { full: "John Mitchell", first: "John", last: "Mitchell"} },
1349
+ { from: "Mitchell, Joni", to: { full: "Joni Mitchell", first: "Joni", last: "Mitchell"} },
1350
+ { from: "Miyamoto, Shigeru", to: { full: "Shigeru Miyamoto", first: "Shigeru", last: "Miyamoto"} },
1351
+ { from: "Moawad, Nayla", to: { full: "Nayla Moawad", first: "Nayla", last: "Moawad"} },
1352
+ { from: "Moawad, René", to: { full: "René Moawad", first: "René", last: "Moawad"} },
1353
+ { from: "Momoedonu, Tevita", to: { full: "Tevita Momoedonu", first: "Tevita", last: "Momoedonu"} },
1354
+ { from: "Monheit, Jane", to: { full: "Jane Monheit", first: "Jane", last: "Monheit"} },
1355
+ { from: "Monroe, Marilyn", to: { full: "Marilyn Monroe", first: "Marilyn", last: "Monroe"} },
1356
+ { from: "Montaigne, Michel de", to: { full: "Michel de Montaigne", first: "Michel", last: "de Montaigne"} },
1357
+ { from: "Montesquieu, Charles de", to: { full: "Charles de Montesquieu", first: "Charles", last: "de Montesquieu"} },
1358
+ { from: "Moore, Alan", to: { full: "Alan Moore", first: "Alan", last: "Moore"} },
1359
+ { from: "Moore, Dudley", to: { full: "Dudley Moore", first: "Dudley", last: "Moore"} },
1360
+ { from: "Moore, Michael", to: { full: "Michael Moore", first: "Michael", last: "Moore"} },
1361
+ { from: "Moore, Tim", to: { full: "Tim Moore", first: "Tim", last: "Moore"} },
1362
+ { from: "Morales, Evo", to: { full: "Evo Morales", first: "Evo", last: "Morales"} },
1363
+ { from: "Moran, Dylan", to: { full: "Dylan Moran", first: "Dylan", last: "Moran"} },
1364
+ { from: "More, Hannah", to: { full: "Hannah More", first: "Hannah", last: "More"} },
1365
+ { from: "More, St. Thomas", to: { full: "St Thomas More", first: "St Thomas", last: "More"} },
1366
+ { from: "Morgenstern, Christian", to: { full: "Christian Morgenstern", first: "Christian", last: "Morgenstern"} },
1367
+ { from: "Morley, Christopher", to: { full: "Christopher Morley", first: "Christopher", last: "Morley"} },
1368
+ { from: "Morris, Errol", to: { full: "Errol Morris", first: "Errol", last: "Morris"} },
1369
+ { from: "Morris, Mixmaster", to: { full: "Mixmaster Morris", first: "Mixmaster", last: "Morris"} },
1370
+ { from: "Morrison, Jim", to: { full: "Jim Morrison", first: "Jim", last: "Morrison"} },
1371
+ { from: "Morrison, Robert", to: { full: "Robert Morrison", first: "Robert", last: "Morrison"} },
1372
+ { from: "Mortimer, John", to: { full: "John Mortimer", first: "John", last: "Mortimer"} },
1373
+ { from: "Mountbatten, Louis", to: { full: "Louis Mountbatten", first: "Louis", last: "Mountbatten"} },
1374
+ { from: "Mozart, Wolfgang Amadeus", to: { full: "Wolfgang Amadeus Mozart", first: "Wolfgang Amadeus", last: "Mozart"} },
1375
+ { from: "Mugabe, Robert", to: { full: "Robert Mugabe", first: "Robert", last: "Mugabe"} },
1376
+ { from: "Muhammad, Holy Prophet", to: { full: "Holy Prophet Muhammad", first: "Holy Prophet", last: "Muhammad"} },
1377
+ { from: "Muir, John", to: { full: "John Muir", first: "John", last: "Muir"} },
1378
+ { from: "Mullally, Megan", to: { full: "Megan Mullally", first: "Megan", last: "Mullally"} },
1379
+ { skip: true, from: "Mulock, Dinah Maria; also Dinah Maria Craik", to: { full: "Dinah Maria; also Dinah Maria Craik Mulock", first: "Dinah Maria; also Dinah Maria Craik", last: "Mulock"} },
1380
+ { from: "Mumford, Lewis", to: { full: "Lewis Mumford", first: "Lewis", last: "Mumford"} },
1381
+ { from: "Mumpfield, Susie", to: { full: "Susie Mumpfield", first: "Susie", last: "Mumpfield"} },
1382
+ { from: "Munch, Edvard", to: { full: "Edvard Munch", first: "Edvard", last: "Munch"} },
1383
+ { from: "Munro, Alice", to: { full: "Alice Munro", first: "Alice", last: "Munro"} },
1384
+ { from: "Murrow, Edward R.", to: { full: "Edward R Murrow", first: "Edward R", last: "Murrow"} },
1385
+ { from: "Mussolini, Benito", to: { full: "Benito Mussolini", first: "Benito", last: "Mussolini"} },
1386
+ { from: "Mustaine, Dave", to: { full: "Dave Mustaine", first: "Dave", last: "Mustaine"} },
1387
+ { from: "Myatt, David", to: { full: "David Myatt", first: "David", last: "Myatt"} },
1388
+ { from: "Nabokov, Vladimir", to: { full: "Vladimir Nabokov", first: "Vladimir", last: "Nabokov"} },
1389
+ { from: "Nachman, Rabbi, of Bratzlav", to: { full: "of Bratzlav Nachman, Rabbi", first: "of Bratzlav", last: "Nachman, Rabbi"} },
1390
+ { from: "Nader, Ralph", to: { full: "Ralph Nader", first: "Ralph", last: "Nader"} },
1391
+ { from: "Nagel, Thomas", to: { full: "Thomas Nagel", first: "Thomas", last: "Nagel"} },
1392
+ { from: "Naidu, Richard", to: { full: "Richard Naidu", first: "Richard", last: "Naidu"} },
1393
+ { from: "Nailatikau, Adi Koila", to: { full: "Adi Koila Nailatikau", first: "Adi Koila", last: "Nailatikau"} },
1394
+ { from: "Nailatikau, Ratu Epeli Qaraninamu", to: { full: "Ratu Epeli Qaraninamu Nailatikau", first: "Ratu Epeli Qaraninamu", last: "Nailatikau"} },
1395
+ { from: "Najimy, Kathy", to: { full: "Kathy Najimy", first: "Kathy", last: "Najimy"} },
1396
+ { from: "Nash, John Forbes", to: { full: "John Forbes Nash", first: "John Forbes", last: "Nash"} },
1397
+ { from: "Nash, Thomas", to: { full: "Thomas Nash", first: "Thomas", last: "Nash"} },
1398
+ { from: "Navakasuasua, Maciu", to: { full: "Maciu Navakasuasua", first: "Maciu", last: "Navakasuasua"} },
1399
+ { from: "Negroponte, Nicholas", to: { full: "Nicholas Negroponte", first: "Nicholas", last: "Negroponte"} },
1400
+ { from: "Nelson, Hailey Anne", to: { full: "Hailey Anne Nelson", first: "Hailey Anne", last: "Nelson"} },
1401
+ { from: "Nelson, Horatio", to: { full: "Horatio Nelson", first: "Horatio", last: "Nelson"} },
1402
+ { from: "Neruda, Pablo", to: { full: "Pablo Neruda", first: "Pablo", last: "Neruda"} },
1403
+ { from: "Newhart, Bob", to: { full: "Bob Newhart", first: "Bob", last: "Newhart"} },
1404
+ { from: "Newton, Isaac", to: { full: "Isaac Newton", first: "Isaac", last: "Newton"} },
1405
+ { from: "Newton, John", to: { full: "John Newton", first: "John", last: "Newton"} },
1406
+ { from: "Nicks, Stevie", to: { full: "Stevie Nicks", first: "Stevie", last: "Nicks"} },
1407
+ { from: "Nicoll, James", to: { full: "James Nicoll", first: "James", last: "Nicoll"} },
1408
+ { from: "Niebuhr, Reinhold", to: { full: "Reinhold Niebuhr", first: "Reinhold", last: "Niebuhr"} },
1409
+ { from: "Niemöller, Martin", to: { full: "Martin Niemöller", first: "Martin", last: "Niemöller"} },
1410
+ { from: "Nietzsche, Friedrich", to: { full: "Friedrich Nietzsche", first: "Friedrich", last: "Nietzsche"} },
1411
+ { from: "Nightingale, Florence", to: { full: "Florence Nightingale", first: "Florence", last: "Nightingale"} },
1412
+ { from: "Nijinsky, Vaslav", to: { full: "Vaslav Nijinsky", first: "Vaslav", last: "Nijinsky"} },
1413
+ { from: "Nin, Anaïs Nin", to: { full: "Anaïs Nin Nin", first: "Anaïs Nin", last: "Nin"} },
1414
+ { from: "Ninio, Jacques", to: { full: "Jacques Ninio", first: "Jacques", last: "Ninio"} },
1415
+ { from: "Niranjan, Sangeeta", to: { full: "Sangeeta Niranjan", first: "Sangeeta", last: "Niranjan"} },
1416
+ { from: "Niven, Larry", to: { full: "Larry Niven", first: "Larry", last: "Niven"} },
1417
+ { from: "Nixon, Richard", to: { full: "Richard Nixon", first: "Richard", last: "Nixon"} },
1418
+ { from: "Noam, Eli", to: { full: "Eli Noam", first: "Eli", last: "Noam"} },
1419
+ { from: "Norton, Joshua Abraham", to: { full: "Joshua Abraham Norton", first: "Joshua Abraham", last: "Norton"} },
1420
+ { skip: true, from: "Nostradamus (Michel de Notredame, or Michel de Nostredame)", to: { full: "or Michel de Nostredame) Nostradamus (Michel de Notredame", first: "or Michel de Nostredame)", last: "Nostradamus (Michel de Notredame"} },
1421
+ { from: "Nugent, Ted", to: { full: "Ted Nugent", first: "Ted", last: "Nugent"} },
1422
+ { from: "Nukem, Duke", to: { full: "Duke Nukem", first: "Duke", last: "Nukem"} },
1423
+ { from: "Null, Gary", to: { full: "Gary Null", first: "Gary", last: "Null"} },
1424
+ { from: "Nunally, Patrick", to: { full: "Patrick Nunally", first: "Patrick", last: "Nunally"} },
1425
+ { from: "Nuwas, Abu", to: { full: "Abu Nuwas", first: "Abu", last: "Nuwas"} },
1426
+
1427
+ { from: "Obama, Barack", to: { full: "Barack Obama", first: "Barack", last: "Obama"} },
1428
+ { from: "Oberst, Conor", to: { full: "Conor Oberst", first: "Conor", last: "Oberst"} },
1429
+ { from: "O'Brien, Conan", to: { full: "Conan O'Brien", first: "Conan", last: "O'Brien"} },
1430
+ { from: "Ochs, Phil", to: { full: "Phil Ochs", first: "Phil", last: "Ochs"} },
1431
+ { from: "O'Donnell, Rosie", to: { full: "Rosie O'Donnell", first: "Rosie", last: "O'Donnell"} },
1432
+ { from: "Ogi, Adolf", to: { full: "Adolf Ogi", first: "Adolf", last: "Ogi"} },
1433
+ { from: "Ogilvy, David", to: { full: "David Ogilvy", first: "David", last: "Ogilvy"} },
1434
+ { from: "O'Keeffe, Georgia", to: { full: "Georgia O'Keeffe", first: "Georgia", last: "O'Keeffe"} },
1435
+ { from: "Oliver, Jamie", to: { full: "Jamie Oliver", first: "Jamie", last: "Oliver"} },
1436
+ { from: "Oliver, Robert T.", to: { full: "Robert T Oliver", first: "Robert T", last: "Oliver"} },
1437
+ { from: "Olson, Ken", to: { full: "Ken Olson", first: "Ken", last: "Olson"} },
1438
+ { skip: true, from: "Olsen, Mary-Kate and Ashley", to: { full: "Mary-Kate and Ashley Olsen", first: "Mary-Kate and Ashley", last: "Olsen"} },
1439
+ { from: "Onassis, Jacqueline Kennedy", to: { full: "Jacqueline Kennedy Onassis", first: "Jacqueline Kennedy", last: "Onassis"} },
1440
+ { from: "Ondrick, William F.", to: { full: "William F Ondrick", first: "William F", last: "Ondrick"} },
1441
+ { from: "Oppenheimer, J. Robert", to: { full: "J Robert Oppenheimer", first: "J Robert", last: "Oppenheimer"} },
1442
+ { from: "O'Reilly, Bill", to: { full: "Bill O'Reilly", first: "Bill", last: "O'Reilly"} },
1443
+ { from: "O'Rourke, P. J.", to: { full: "P J O'Rourke", first: "P J", last: "O'Rourke"} },
1444
+ { from: "Ortiz, David", to: { full: "David Ortiz", first: "David", last: "Ortiz"} },
1445
+ { from: "Orwell, George", to: { full: "George Orwell", first: "George", last: "Orwell"} },
1446
+ { from: "Osbourne, Ozzy", to: { full: "Ozzy Osbourne", first: "Ozzy", last: "Osbourne"} },
1447
+ { from: "O’Shaughnessy, Arthur", to: { full: "Arthur O'Shaughnessy", first: "Arthur", last: "O'Shaughnessy"} },
1448
+ { from: "Ouspensky, P. D.", to: { full: "P D Ouspensky", first: "P D", last: "Ouspensky"} },
1449
+ { from: "Overbury, Thomas", to: { full: "Thomas Overbury", first: "Thomas", last: "Overbury"} },
1450
+ { from: "Owens, Jesse", to: { full: "Jesse Owens", first: "Jesse", last: "Owens"} },
1451
+ { from: "Owsen, Dan", to: { full: "Dan Owsen", first: "Dan", last: "Owsen"} },
1452
+
1453
+ { from: "Page, Larry", to: { full: "Larry Page", first: "Larry", last: "Page"} },
1454
+ { from: "Paige, Satchel", to: { full: "Satchel Paige", first: "Satchel", last: "Paige"} },
1455
+ { from: "Paine, Thomas", to: { full: "Thomas Paine", first: "Thomas", last: "Paine"} },
1456
+ { from: "Palahniuk, Chuck", to: { full: "Chuck Palahniuk", first: "Chuck", last: "Palahniuk"} },
1457
+ { from: "Palgrave, Francis Turner", to: { full: "Francis Turner Palgrave", first: "Francis Turner", last: "Palgrave"} },
1458
+ { from: "Palin, Michael", to: { full: "Michael Palin", first: "Michael", last: "Palin"} },
1459
+ { from: "Palme, Olof", to: { full: "Olof Palme", first: "Olof", last: "Palme"} },
1460
+ { from: "Parker, Dorothy", to: { full: "Dorothy Parker", first: "Dorothy", last: "Parker"} },
1461
+ { from: "Parton, Dolly", to: { full: "Dolly Parton", first: "Dolly", last: "Parton"} },
1462
+ { from: "Pascal, Blaise", to: { full: "Blaise Pascal", first: "Blaise", last: "Pascal"} },
1463
+ { from: "Pasteur, Louis", to: { full: "Louis Pasteur", first: "Louis", last: "Pasteur"} },
1464
+ { from: "Pater, Walter", to: { full: "Walter Pater", first: "Walter", last: "Pater"} },
1465
+ { from: "Paterson, Isabel", to: { full: "Isabel Paterson", first: "Isabel", last: "Paterson"} },
1466
+ { from: "Patrick, Saint", to: { full: "Saint Patrick", first: "Saint", last: "Patrick"} },
1467
+ { from: "Patton, George S.", to: { full: "George S Patton", first: "George S", last: "Patton"} },
1468
+ { from: "Paul, Ron", to: { full: "Ron Paul", first: "Ron", last: "Paul"} },
1469
+ { from: "Pauli, Wolfgang", to: { full: "Wolfgang Pauli", first: "Wolfgang", last: "Pauli"} },
1470
+ { from: "Pauling, Linus", to: { full: "Linus Pauling", first: "Linus", last: "Pauling"} },
1471
+ { from: "Payack, Paul JJ", to: { full: "Paul JJ Payack", first: "Paul JJ", last: "Payack"} },
1472
+ { from: "Payne, Max", to: { full: "Max Payne", first: "Max", last: "Payne"} },
1473
+ { from: "Peel, John", to: { full: "John Peel", first: "John", last: "Peel"} },
1474
+ { from: "Peguy, Charles", to: { full: "Charles Peguy", first: "Charles", last: "Peguy"} },
1475
+ { from: "Peirce, Charles Sanders", to: { full: "Charles Sanders Peirce", first: "Charles Sanders", last: "Peirce"} },
1476
+ { from: "Penn, William", to: { full: "William Penn", first: "William", last: "Penn"} },
1477
+ { from: "Percy, Walker", to: { full: "Walker Percy", first: "Walker", last: "Percy"} },
1478
+ { from: "Peres, Shimon", to: { full: "Shimon Peres", first: "Shimon", last: "Peres"} },
1479
+ { from: "Perger, Andreas Paolo", to: { full: "Andreas Paolo Perger", first: "Andreas Paolo", last: "Perger"} },
1480
+ { from: "Perle, Richard", to: { full: "Richard Perle", first: "Richard", last: "Perle"} },
1481
+ { from: "Perlis, Alan", to: { full: "Alan Perlis", first: "Alan", last: "Perlis"} },
1482
+ { from: "Perry, Michael D.", to: { full: "Michael D Perry", first: "Michael D", last: "Perry"} },
1483
+ { from: "Perry, Oliver Hazard", to: { full: "Oliver Hazard Perry", first: "Oliver Hazard", last: "Perry"} },
1484
+ { from: "Pessoa, Fernando", to: { full: "Fernando Pessoa", first: "Fernando", last: "Pessoa"} },
1485
+ { from: "Peter, Dr. Laurence J.", to: { full: "Laurence J Peter", title: "Dr", first: "Laurence J", last: "Peter"} },
1486
+ { from: "Petronius, Gaius", to: { full: "Gaius Petronius", first: "Gaius", last: "Petronius"} },
1487
+ { from: "Petty, Tom", to: { full: "Tom Petty", first: "Tom", last: "Petty"} },
1488
+ { from: "Phelps, Michael", to: { full: "Michael Phelps", first: "Michael", last: "Phelps"} },
1489
+ { skip: true, from: "Philip, Duke of Edinburgh", to: { full: "Duke of Edinburgh Philip", first: "Duke of Edinburgh", last: "Philip"} },
1490
+ { from: "Philips, Emo", to: { full: "Emo Philips", first: "Emo", last: "Philips"} },
1491
+ { from: "Piaget, Jean", to: { full: "Jean Piaget", first: "Jean", last: "Piaget"} },
1492
+ { from: "Picasso, Pablo", to: { full: "Pablo Picasso", first: "Pablo", last: "Picasso"} },
1493
+ { from: "Pieper, Josef", to: { full: "Josef Pieper", first: "Josef", last: "Pieper"} },
1494
+ { from: "Pinker, Steven", to: { full: "Steven Pinker", first: "Steven", last: "Pinker"} },
1495
+ { from: "Piper, Roddy", to: { full: "Roddy Piper", first: "Roddy", last: "Piper"} },
1496
+ { from: "Piraten, Fritiof Nilsson", to: { full: "Fritiof Nilsson Piraten", first: "Fritiof Nilsson", last: "Piraten"} },
1497
+ { from: "Pirsig, Robert M.", to: { full: "Robert M Pirsig", first: "Robert M", last: "Pirsig"} },
1498
+ { from: "Plath, Sylvia", to: { full: "Sylvia Plath", first: "Sylvia", last: "Plath"} },
1499
+ { from: "Plimpton, Martha", to: { full: "Martha Plimpton", first: "Martha", last: "Plimpton"} },
1500
+ { from: "Poe, Edgar Allan", to: { full: "Edgar Allan Poe", first: "Edgar Allan", last: "Poe"} },
1501
+ { from: "Poincaré, Henri", to: { full: "Henri Poincaré", first: "Henri", last: "Poincaré"} },
1502
+ { from: "Polański, Roman", to: { full: "Roman Polański", first: "Roman", last: "Polański"} },
1503
+ { from: "Ponsonby, Arthur", to: { full: "Arthur Ponsonby", first: "Arthur", last: "Ponsonby"} },
1504
+ { from: "Pope, Alexander", to: { full: "Alexander Pope", first: "Alexander", last: "Pope"} },
1505
+ { from: "Popper, Karl", to: { full: "Karl Popper", first: "Karl", last: "Popper"} },
1506
+ { from: "Porson, Richard", to: { full: "Richard Porson", first: "Richard", last: "Porson"} },
1507
+ { from: "Postel, Jon", to: { full: "Jon Postel", first: "Jon", last: "Postel"} },
1508
+ { from: "Powell, Colin", to: { full: "Colin Powell", first: "Colin", last: "Powell"} },
1509
+ { from: "Pratchett, Terry", to: { full: "Terry Pratchett", first: "Terry", last: "Pratchett"} },
1510
+ { from: "Premchand, Munshi", to: { full: "Munshi Premchand", first: "Munshi", last: "Premchand"} },
1511
+ { from: "Presley, Elvis", to: { full: "Elvis Presley", first: "Elvis", last: "Presley"} },
1512
+ { from: "Priestley, Joseph", to: { full: "Joseph Priestley", first: "Joseph", last: "Priestley"} },
1513
+ { from: "Proudhon, P. J.", to: { full: "P J Proudhon", first: "P J", last: "Proudhon"} },
1514
+ { from: "Puget, Jade", to: { full: "Jade Puget", first: "Jade", last: "Puget"} },
1515
+ { from: "Punja, Hari", to: { full: "Hari Punja", first: "Hari", last: "Punja"} },
1516
+ { from: "Purcell, Steve", to: { full: "Steve Purcell", first: "Steve", last: "Purcell"} },
1517
+ { from: "Putin, Vladimir", to: { full: "Vladimir Putin", first: "Vladimir", last: "Putin"} },
1518
+ { from: "Pynchon, Thomas", to: { full: "Thomas Pynchon", first: "Thomas", last: "Pynchon"} },
1519
+
1520
+ { from: "Qarase, Laisenia", to: { full: "Laisenia Qarase", first: "Laisenia", last: "Qarase"} },
1521
+ { from: "Quale, Anthony", to: { full: "Anthony Quale", first: "Anthony", last: "Quale"} },
1522
+ { from: "Quarles, Francis", to: { full: "Francis Quarles", first: "Francis", last: "Quarles"} },
1523
+ { from: "Quayle, Dan", to: { full: "Dan Quayle", first: "Dan", last: "Quayle"} },
1524
+ { skip: true, from: "Marie, Queen of Romania", to: { full: "Queen of Romania Marie", first: "Queen of Romania", last: "Marie"} },
1525
+ { from: "Quine, Willard van Orman", to: { full: "Willard van Orman Quine", first: "Willard van Orman", last: "Quine"} },
1526
+ { from: "Quintilian, Marcus Fabius", to: { full: "Marcus Fabius Quintilian", first: "Marcus Fabius", last: "Quintilian"} },
1527
+ { from: "Quisenberry, Dan", to: { full: "Dan Quisenberry", first: "Dan", last: "Quisenberry"} },
1528
+
1529
+ { from: "Raajan, Amitrajit", to: { full: "Amitrajit Raajan", first: "Amitrajit", last: "Raajan"} },
1530
+ { from: "Rabelais, François", to: { full: "François Rabelais", first: "François", last: "Rabelais"} },
1531
+ { from: "Rabin, Yitzhak", to: { full: "Yitzhak Rabin", first: "Yitzhak", last: "Rabin"} },
1532
+ { from: "Rabuka, Sitiveni", to: { full: "Sitiveni Rabuka", first: "Sitiveni", last: "Rabuka"} },
1533
+ { from: "Radner, Gilda", to: { full: "Gilda Radner", first: "Gilda", last: "Radner"} },
1534
+ { from: "Rae, Pramod", to: { full: "Pramod Rae", first: "Pramod", last: "Rae"} },
1535
+ { from: "Raleigh, Sir Walter", to: { full: "Walter Raleigh", title: "Sir", first: "Walter", last: "Raleigh"} },
1536
+ { from: "Ramirez, Manny", to: { full: "Manny Ramirez", first: "Manny", last: "Ramirez"} },
1537
+ { from: "Rand, Ayn", to: { full: "Ayn Rand", first: "Ayn", last: "Rand"} },
1538
+ { from: "Ranke, Leopold von", to: { full: "Leopold von Ranke", first: "Leopold", last: "von Ranke"} },
1539
+ { from: "Ransome, Arthur", to: { full: "Arthur Ransome", first: "Arthur", last: "Ransome"} },
1540
+ { from: "Rascoe, Burton", to: { full: "Burton Rascoe", first: "Burton", last: "Rascoe"} },
1541
+ { from: "Raskin, Jef", to: { full: "Jef Raskin", first: "Jef", last: "Raskin"} },
1542
+ { from: "Ravuvu, Asesela", to: { full: "Asesela Ravuvu", first: "Asesela", last: "Ravuvu"} },
1543
+ { from: "Ray, Gene", to: { full: "Gene Ray", first: "Gene", last: "Ray"} },
1544
+ { from: "Ray, James Arthur", to: { full: "James Arthur Ray", first: "James Arthur", last: "Ray"} },
1545
+ { from: "Reagan, Nancy", to: { full: "Nancy Reagan", first: "Nancy", last: "Reagan"} },
1546
+ { from: "Reagan, Ronald", to: { full: "Ronald Reagan", first: "Ronald", last: "Reagan"} },
1547
+ { from: "Reagan, Ron", to: { full: "Ron Reagan", first: "Ron", last: "Reagan"} },
1548
+ { from: "Rees, Nigel", to: { full: "Nigel Rees", first: "Nigel", last: "Rees"} },
1549
+ { from: "Reeve, Christopher", to: { full: "Christopher Reeve", first: "Christopher", last: "Reeve"} },
1550
+ { from: "Rehnquist, William", to: { full: "William Rehnquist", first: "William", last: "Rehnquist"} },
1551
+ { from: "Reich, Wilhelm", to: { full: "Wilhelm Reich", first: "Wilhelm", last: "Reich"} },
1552
+ { from: "Reid, Harry", to: { full: "Harry Reid", first: "Harry", last: "Reid"} },
1553
+ { from: "Reisman, George", to: { full: "George Reisman", first: "George", last: "Reisman"} },
1554
+ { from: "Rexroth, Kenneth", to: { full: "Kenneth Rexroth", first: "Kenneth", last: "Rexroth"} },
1555
+ { from: "Rice, Condoleezza", to: { full: "Condoleezza Rice", first: "Condoleezza", last: "Rice"} },
1556
+ { from: "Richards, Keith", to: { full: "Keith Richards", first: "Keith", last: "Richards"} },
1557
+ { from: "Richelieu, Cardinal", to: { full: "Cardinal Richelieu", first: "Cardinal", last: "Richelieu"} },
1558
+ { from: "Rickover, Hyman G.", to: { full: "Hyman G Rickover", first: "Hyman G", last: "Rickover"} },
1559
+ { from: "Riley, Tim", to: { full: "Tim Riley", first: "Tim", last: "Riley"} },
1560
+ { from: "Rilke, Rainer Maria", to: { full: "Rainer Maria Rilke", first: "Rainer Maria", last: "Rilke"} },
1561
+ { from: "Rimbaud, Arthur", to: { full: "Arthur Rimbaud", first: "Arthur", last: "Rimbaud"} },
1562
+ { from: "Ripa, Kelly", to: { full: "Kelly Ripa", first: "Kelly", last: "Ripa"} },
1563
+ { from: "Ritter, Scott", to: { full: "Scott Ritter", first: "Scott", last: "Ritter"} },
1564
+ { from: "Rivers, Joan", to: { full: "Joan Rivers", first: "Joan", last: "Rivers"} },
1565
+ { from: "Robbins, Anthony", to: { full: "Anthony Robbins", first: "Anthony", last: "Robbins"} },
1566
+ { from: "Robespierre, Maximilien", to: { full: "Maximilien Robespierre", first: "Maximilien", last: "Robespierre"} },
1567
+ { from: "Robinson, Jackie", to: { full: "Jackie Robinson", first: "Jackie", last: "Robinson"} },
1568
+ { from: "Robinson, Kim Stanley", to: { full: "Kim Stanley Robinson", first: "Kim Stanley", last: "Robinson"} },
1569
+ { from: "Robinson, Spider", to: { full: "Spider Robinson", first: "Spider", last: "Robinson"} },
1570
+ { from: "Rockefeller, John D.", to: { full: "John D Rockefeller", first: "John D", last: "Rockefeller"} },
1571
+ { from: "Rockne, Knute", to: { full: "Knute Rockne", first: "Knute", last: "Rockne"} },
1572
+ { from: "Rodriguez, Alex", to: { full: "Alex Rodriguez", first: "Alex", last: "Rodriguez"} },
1573
+ { from: "Rogers, Fred", to: { full: "Fred Rogers", first: "Fred", last: "Rogers"} },
1574
+ { from: "Rogers, Will", to: { full: "Will Rogers", first: "Will", last: "Rogers"} },
1575
+ { from: "Romano, Ray", to: { full: "Ray Romano", first: "Ray", last: "Romano"} },
1576
+ { from: "Rommel, Erwin", to: { full: "Erwin Rommel", first: "Erwin", last: "Rommel"} },
1577
+ { from: "Roosevelt, Eleanor", to: { full: "Eleanor Roosevelt", first: "Eleanor", last: "Roosevelt"} },
1578
+ { from: "Roosevelt, Franklin Delano", to: { full: "Franklin Delano Roosevelt", first: "Franklin Delano", last: "Roosevelt"} },
1579
+ { from: "Roosevelt, Theodore", to: { full: "Theodore Roosevelt", first: "Theodore", last: "Roosevelt"} },
1580
+ { from: "Rosing, Wayne", to: { full: "Wayne Rosing", first: "Wayne", last: "Rosing"} },
1581
+ { from: "Roth, Geneen", to: { full: "Geneen Roth", first: "Geneen", last: "Roth"} },
1582
+ { from: "Roth, Philip", to: { full: "Philip Roth", first: "Philip", last: "Roth"} },
1583
+ { from: "Rothbard, Murray", to: { full: "Murray Rothbard", first: "Murray", last: "Rothbard"} },
1584
+ { from: "Rothschild, Baron", to: { full: "Baron Rothschild", first: "Baron", last: "Rothschild"} },
1585
+ { from: "Roux, Joseph", to: { full: "Joseph Roux", first: "Joseph", last: "Roux"} },
1586
+ { from: "Rousseau, Jean-Jacques", to: { full: "Jean-Jacques Rousseau", first: "Jean-Jacques", last: "Rousseau"} },
1587
+ { from: "Rovabokola, Ratu Viliame", to: { full: "Ratu Viliame Rovabokola", first: "Ratu Viliame", last: "Rovabokola"} },
1588
+ { from: "Roy, Arundhati", to: { full: "Arundhati Roy", first: "Arundhati", last: "Roy"} },
1589
+ { from: "Rudner, Rita", to: { full: "Rita Rudner", first: "Rita", last: "Rudner"} },
1590
+ { from: "Ruiz, Don Miguel", to: { full: "Don Miguel Ruiz", first: "Don Miguel", last: "Ruiz"} },
1591
+ { from: "Rukeyser, Louis", to: { full: "Louis Rukeyser", first: "Louis", last: "Rukeyser"} },
1592
+ { from: "Rumbold, Richard", to: { full: "Richard Rumbold", first: "Richard", last: "Rumbold"} },
1593
+ { from: "Rumi, Jalal al-Din Muhammad", to: { full: "Jalal al-Din Muhammad Rumi", first: "Jalal al-Din Muhammad", last: "Rumi"} },
1594
+ { from: "Rumsfeld, Donald", to: { full: "Donald Rumsfeld", first: "Donald", last: "Rumsfeld"} },
1595
+ { from: "Runnels, Dustin", to: { full: "Dustin Runnels", first: "Dustin", last: "Runnels"} },
1596
+ { from: "Rushton, Willie", to: { full: "Willie Rushton", first: "Willie", last: "Rushton"} },
1597
+ { from: "Ruskin, John", to: { full: "John Ruskin", first: "John", last: "Ruskin"} },
1598
+ { from: "Russell, Bertrand", to: { full: "Bertrand Russell", first: "Bertrand", last: "Russell"} },
1599
+ { from: "Russell, Nipsey", to: { full: "Nipsey Russell", first: "Nipsey", last: "Russell"} },
1600
+ { from: "Russell, Rosaland", to: { full: "Rosaland Russell", first: "Rosaland", last: "Russell"} },
1601
+ { from: "Ruth, Babe", to: { full: "Babe Ruth", first: "Babe", last: "Ruth"} },
1602
+ { from: "Rutherford, Ernest", to: { full: "Ernest Rutherford", first: "Ernest", last: "Rutherford"} },
1603
+
1604
+ { from: "Sábato, Ernesto", to: { full: "Ernesto Sábato", first: "Ernesto", last: "Sábato"} },
1605
+ { from: "Sade, Donatien de", to: { full: "Donatien de Sade", first: "Donatien", last: "de Sade"} },
1606
+ { from: "Sagan, Carl", to: { full: "Carl Sagan", first: "Carl", last: "Sagan"} },
1607
+ { from: "Saint-Exupéry, Antoine de", to: { full: "Antoine de Saint-Exupéry", first: "Antoine", last: "de Saint-Exupéry"} },
1608
+ { from: "Saint-Just, Louis de", to: { full: "Louis de Saint-Just", first: "Louis", last: "de Saint-Just"} },
1609
+ { from: "Salk, Jonas", to: { full: "Jonas Salk", first: "Jonas", last: "Salk"} },
1610
+ { from: "Salinger, J. D.", to: { full: "J D Salinger", first: "J D", last: "Salinger"} },
1611
+ { from: "Sanger, Margaret", to: { full: "Margaret Sanger", first: "Margaret", last: "Sanger"} },
1612
+ { from: "San Martín, José de", to: { full: "José de San Martín", first: "José", last: "de San Martín"} },
1613
+ { from: "Santayana, George", to: { full: "George Santayana", first: "George", last: "Santayana"} },
1614
+ { from: "Saroyan, William", to: { full: "William Saroyan", first: "William", last: "Saroyan"} },
1615
+ { from: "Sartre, Jean-Paul", to: { full: "Jean-Paul Sartre", first: "Jean-Paul", last: "Sartre"} },
1616
+ { from: "Sarven, Allen", to: { full: "Allen Sarven", first: "Allen", last: "Sarven"} },
1617
+ { from: "Satriani, Joe", to: { full: "Joe Satriani", first: "Joe", last: "Satriani"} },
1618
+ { from: "Sawyer, Diane", to: { full: "Diane Sawyer", first: "Diane", last: "Sawyer"} },
1619
+ { from: "Saul, John Ralston", to: { full: "John Ralston Saul", first: "John Ralston", last: "Saul"} },
1620
+ { from: "Schaar, John", to: { full: "John Schaar", first: "John", last: "Schaar"} },
1621
+ { from: "Schama, Simon", to: { full: "Simon Schama", first: "Simon", last: "Schama"} },
1622
+ { from: "Schiller, Friedrich von", to: { full: "Friedrich von Schiller", first: "Friedrich", last: "von Schiller"} },
1623
+ { from: "Schlüter, Poul", to: { full: "Poul Schlüter", first: "Poul", last: "Schlüter"} },
1624
+ { from: "Schneier, Bruce", to: { full: "Bruce Schneier", first: "Bruce", last: "Schneier"} },
1625
+ { from: "Schopenhauer, Arthur", to: { full: "Arthur Schopenhauer", first: "Arthur", last: "Schopenhauer"} },
1626
+ { from: "Schröder, Gerhard", to: { full: "Gerhard Schröder", first: "Gerhard", last: "Schröder"} },
1627
+ { from: "Schulberg, Budd", to: { full: "Budd Schulberg", first: "Budd", last: "Schulberg"} },
1628
+ { from: "Schultz, Charles M.", to: { full: "Charles M Schultz", first: "Charles M", last: "Schultz"} },
1629
+ { from: "Schweitzer, Albert", to: { full: "Albert Schweitzer", first: "Albert", last: "Schweitzer"} },
1630
+ { from: "Seabrook, Jeremy", to: { full: "Jeremy Seabrook", first: "Jeremy", last: "Seabrook"} },
1631
+ { from: "Seagal, Steven", to: { full: "Steven Seagal", first: "Steven", last: "Seagal"} },
1632
+ { from: "Sedaris, David", to: { full: "David Sedaris", first: "David", last: "Sedaris"} },
1633
+ { from: "Sedgwick, John", to: { full: "John Sedgwick", first: "John", last: "Sedgwick"} },
1634
+ { from: "Seigle, Lucy", to: { full: "Lucy Seigle", first: "Lucy", last: "Seigle"} },
1635
+ { from: "Seldes, George", to: { full: "George Seldes", first: "George", last: "Seldes"} },
1636
+ { from: "Sellers, Peter", to: { full: "Peter Sellers", first: "Peter", last: "Sellers"} },
1637
+ { from: "Serling, Rod", to: { full: "Rod Serling", first: "Rod", last: "Serling"} },
1638
+ { from: "Serrano, Miguel", to: { full: "Miguel Serrano", first: "Miguel", last: "Serrano"} },
1639
+ { from: "Seuss, Dr.", to: { full: "Dr. Seuss", first: "Dr.", last: "Seuss"} },
1640
+ { from: "Shahak, Israel", to: { full: "Israel Shahak", first: "Israel", last: "Shahak"} },
1641
+ { from: "Shakespeare, William", to: { full: "William Shakespeare", first: "William", last: "Shakespeare"} },
1642
+ { from: "Shakur, Tupac", to: { full: "Tupac Shakur", first: "Tupac", last: "Shakur"} },
1643
+ { from: "Sharpton, Al", to: { full: "Al Sharpton", first: "Al", last: "Sharpton"} },
1644
+ { from: "Shaw, George Bernard", to: { full: "George Bernard Shaw", first: "George Bernard", last: "Shaw"} },
1645
+ { from: "Shawcross, Hartley", to: { full: "Hartley Shawcross", first: "Hartley", last: "Shawcross"} },
1646
+ { from: "Sheck, Barry", to: { full: "Barry Sheck", first: "Barry", last: "Sheck"} },
1647
+ { from: "Shedd, John", to: { full: "John Shedd", first: "John", last: "Shedd"} },
1648
+ { from: "Shelley, Mary Wollstonecraft", to: { full: "Mary Wollstonecraft Shelley", first: "Mary Wollstonecraft", last: "Shelley"} },
1649
+ { from: "Shelley, Percy Bysshe", to: { full: "Percy Bysshe Shelley", first: "Percy Bysshe", last: "Shelley"} },
1650
+ { from: "Sheridan, Richard Brinsley", to: { full: "Richard Brinsley Sheridan", first: "Richard Brinsley", last: "Sheridan"} },
1651
+ { from: "Sherman, William Tecumseh", to: { full: "William Tecumseh Sherman", first: "William Tecumseh", last: "Sherman"} },
1652
+ { from: "Shevardnadze, Eduard", to: { full: "Eduard Shevardnadze", first: "Eduard", last: "Shevardnadze"} },
1653
+ { from: "Shinoda, Mike", to: { full: "Mike Shinoda", first: "Mike", last: "Shinoda"} },
1654
+ { from: "Shirley, James", to: { full: "James Shirley", first: "James", last: "Shirley"} },
1655
+ { from: "Schopenhauer, Arthur", to: { full: "Arthur Schopenhauer", first: "Arthur", last: "Schopenhauer"} },
1656
+ { from: "Shrivastava, Mataji Nirmala", to: { full: "Mataji Nirmala Shrivastava", first: "Mataji Nirmala", last: "Shrivastava"} },
1657
+ { from: "Siegel, Jerry", to: { full: "Jerry Siegel", first: "Jerry", last: "Siegel"} },
1658
+ { from: "Simak, Clifford D.", to: { full: "Clifford D Simak", first: "Clifford D", last: "Simak"} },
1659
+ { from: "Simon, Paul", to: { full: "Paul Simon", first: "Paul", last: "Simon"} },
1660
+ { from: "Simpson, Jack", to: { full: "Jack Simpson", first: "Jack", last: "Simpson"} },
1661
+ { from: "Simpson, Jessica", to: { full: "Jessica Simpson", first: "Jessica", last: "Simpson"} },
1662
+ { from: "Sinclair, Upton", to: { full: "Upton Sinclair", first: "Upton", last: "Sinclair"} },
1663
+ { from: "Singer, Isaac Bashevis", to: { full: "Isaac Bashevis Singer", first: "Isaac Bashevis", last: "Singer"} },
1664
+ { from: "Sidhu, Navjot Singh", to: { full: "Navjot Singh Sidhu", first: "Navjot Singh", last: "Sidhu"} },
1665
+ { from: "Singh, Raman Pratap", to: { full: "Raman Pratap Singh", first: "Raman Pratap", last: "Singh"} },
1666
+ { from: "Singh, Sir Vijay", to: { full: "Sir Vijay Singh", first: "Sir Vijay", last: "Singh"} },
1667
+ { from: "Sitwell, Edith", to: { full: "Edith Sitwell", first: "Edith", last: "Sitwell"} },
1668
+ { from: "Slick, Grace", to: { full: "Grace Slick", first: "Grace", last: "Slick"} },
1669
+ { from: "Smirnoff, Yakov", to: { full: "Yakov Smirnoff", first: "Yakov", last: "Smirnoff"} },
1670
+ { from: "Smith, Adam", to: { full: "Adam Smith", first: "Adam", last: "Smith"} },
1671
+ { from: "Smith, Anna Nicole", to: { full: "Anna Nicole Smith", first: "Anna Nicole", last: "Smith"} },
1672
+ { from: "Smith, Elliott", to: { full: "Elliott Smith", first: "Elliott", last: "Smith"} },
1673
+ { from: "Smith, Gordon", to: { full: "Gordon Smith", first: "Gordon", last: "Smith"} },
1674
+ { from: "Smith, Joseph", to: { full: "Joseph Smith", first: "Joseph", last: "Smith"} },
1675
+ { from: "Smith, Kevin", to: { full: "Kevin Smith", first: "Kevin", last: "Smith"} },
1676
+ { from: "Smith, Logan Pearsall", to: { full: "Logan Pearsall Smith", first: "Logan Pearsall", last: "Smith"} },
1677
+ { from: "Smith, Margaret Chase", to: { full: "Margaret Chase Smith", first: "Margaret Chase", last: "Smith"} },
1678
+ { from: "Smith, Sydney", to: { full: "Sydney Smith", first: "Sydney", last: "Smith"} },
1679
+ { from: "Smollett, Tobias", to: { full: "Tobias Smollett", first: "Tobias", last: "Smollett"} },
1680
+ { from: "Smuts, Jan Christiaan", to: { full: "Jan Christiaan Smuts", first: "Jan Christiaan", last: "Smuts"} },
1681
+ { from: "Snepscheut, Jan L. A. van de", to: { full: "Jan L A van de Snepscheut", first: "Jan L A", last: "van de Snepscheut"} },
1682
+ { from: "Snow, Carrie", to: { full: "Carrie Snow", first: "Carrie", last: "Snow"} },
1683
+ { from: "Sobran, Joseph", to: { full: "Joseph Sobran", first: "Joseph", last: "Sobran"} },
1684
+ { from: "Solzhenitsyn, Alexander", to: { full: "Alexander Solzhenitsyn", first: "Alexander", last: "Solzhenitsyn"} },
1685
+ { from: "Sontag, Susan", to: { full: "Susan Sontag", first: "Susan", last: "Sontag"} },
1686
+ { from: "Sorkin, Aaron", to: { full: "Aaron Sorkin", first: "Aaron", last: "Sorkin"} },
1687
+ { from: "Soros, George", to: { full: "George Soros", first: "George", last: "Soros"} },
1688
+ { from: "Southerne, Thomas", to: { full: "Thomas Southerne", first: "Thomas", last: "Southerne"} },
1689
+ { from: "Sowell, Thomas", to: { full: "Thomas Sowell", first: "Thomas", last: "Sowell"} },
1690
+ { from: "Sparber, Max", to: { full: "Max Sparber", first: "Max", last: "Sparber"} },
1691
+ { from: "Spears, Britney", to: { full: "Britney Spears", first: "Britney", last: "Spears"} },
1692
+ { from: "Speijk, Jan van", to: { full: "Jan van Speijk", first: "Jan", last: "van Speijk"} },
1693
+ { from: "Spence, Gerry", to: { full: "Gerry Spence", first: "Gerry", last: "Spence"} },
1694
+ { from: "Spencer, Herbert", to: { full: "Herbert Spencer", first: "Herbert", last: "Spencer"} },
1695
+ { from: "Spielberg, Steven", to: { full: "Steven Spielberg", first: "Steven", last: "Spielberg"} },
1696
+ { from: "Spinoza, Baruch", to: { full: "Baruch Spinoza", first: "Baruch", last: "Spinoza"} },
1697
+ { from: "Spock, Benjamin", to: { full: "Benjamin Spock", first: "Benjamin", last: "Spock"} },
1698
+ { from: "Spolsky, Joel", to: { full: "Joel Spolsky", first: "Joel", last: "Spolsky"} },
1699
+ { from: "Springsteen, Bruce", to: { full: "Bruce Springsteen", first: "Bruce", last: "Springsteen"} },
1700
+ { from: "Spurgeon, Charles Haddon", to: { full: "Charles Haddon Spurgeon", first: "Charles Haddon", last: "Spurgeon"} },
1701
+ { from: "Stalin, Joseph", to: { full: "Joseph Stalin", first: "Joseph", last: "Stalin"} },
1702
+ { from: "Stallman, Richard M", to: { full: "Richard M Stallman", first: "Richard M", last: "Stallman"} },
1703
+ { from: "Stanley, Henry Morton", to: { full: "Henry Morton Stanley", first: "Henry Morton", last: "Stanley"} },
1704
+ { from: "Stanton, Elizabeth Cady", to: { full: "Elizabeth Cady Stanton", first: "Elizabeth Cady", last: "Stanton"} },
1705
+ { from: "Starr, Ringo", to: { full: "Ringo Starr", first: "Ringo", last: "Starr"} },
1706
+ { from: "Starrett, Vincent", to: { full: "Vincent Starrett", first: "Vincent", last: "Starrett"} },
1707
+ { from: "Stein, Gertrude", to: { full: "Gertrude Stein", first: "Gertrude", last: "Stein"} },
1708
+ { from: "Stein, Herbert", to: { full: "Herbert Stein", first: "Herbert", last: "Stein"} },
1709
+ { from: "Steinbeck, John", to: { full: "John Steinbeck", first: "John", last: "Steinbeck"} },
1710
+ { from: "Steinem, Gloria", to: { full: "Gloria Steinem", first: "Gloria", last: "Steinem"} },
1711
+ { from: "Stephenson, Neal", to: { full: "Neal Stephenson", first: "Neal", last: "Stephenson"} },
1712
+ { from: "Sterling, Bruce", to: { full: "Bruce Sterling", first: "Bruce", last: "Sterling"} },
1713
+ { from: "Stevens, Wallace", to: { full: "Wallace Stevens", first: "Wallace", last: "Stevens"} },
1714
+ { from: "Stevenson, Adlai", to: { full: "Adlai Stevenson", first: "Adlai", last: "Stevenson"} },
1715
+ { from: "Stevenson, Robert Louis", to: { full: "Robert Louis Stevenson", first: "Robert Louis", last: "Stevenson"} },
1716
+ { from: "Stewart, James (Jimmy)", to: { full: "James (Jimmy) Stewart", first: "James (Jimmy)", last: "Stewart"} },
1717
+ { from: "Stewart, Jon", to: { full: "Jon Stewart", first: "Jon", last: "Stewart"} },
1718
+ { from: "Stein, Ben", to: { full: "Ben Stein", first: "Ben", last: "Stein"} },
1719
+ { from: "Stimson, Henry L.", to: { full: "Henry L Stimson", first: "Henry L", last: "Stimson"} },
1720
+ { from: "Stokowski, Leopold", to: { full: "Leopold Stokowski", first: "Leopold", last: "Stokowski"} },
1721
+ { from: "Stone, I. F.", to: { full: "I F Stone", first: "I F", last: "Stone"} },
1722
+ { from: "Stone, Lucy", to: { full: "Lucy Stone", first: "Lucy", last: "Stone"} },
1723
+ { from: "Stone, W. Clement", to: { full: "W Clement Stone", first: "W Clement", last: "Stone"} },
1724
+ { from: "Stoner Jr., James R.", to: { full: "James R Stoner Jr", first: "James R", last: "Stoner", suffix: "Jr"} },
1725
+ { from: "Stoppard, Tom", to: { full: "Tom Stoppard", first: "Tom", last: "Stoppard"} },
1726
+ { from: "Stout, Rex", to: { full: "Rex Stout", first: "Rex", last: "Stout"} },
1727
+ { from: "Stowe, Madeleine", to: { full: "Madeleine Stowe", first: "Madeleine", last: "Stowe"} },
1728
+ { from: "Stratford, Lord (Tony Banks)", to: { full: "Lord (Tony Banks) Stratford", first: "Lord (Tony Banks)", last: "Stratford"} },
1729
+ { from: "Strauss, Richard", to: { full: "Richard Strauss", first: "Richard", last: "Strauss"} },
1730
+ { from: "Stravinsky, Igor", to: { full: "Igor Stravinsky", first: "Igor", last: "Stravinsky"} },
1731
+ { from: "Stroustrup, Bjarne", to: { full: "Bjarne Stroustrup", first: "Bjarne", last: "Stroustrup"} },
1732
+ { from: "Sturgeon, Theodore", to: { full: "Theodore Sturgeon", first: "Theodore", last: "Sturgeon"} },
1733
+ { from: "Sukuna, Ratu Sir Lala", to: { full: "Ratu Sir Lala Sukuna", first: "Ratu Sir Lala", last: "Sukuna"} },
1734
+ { from: "Sulla, Lucius Cornelius", to: { full: "Lucius Cornelius Sulla", first: "Lucius Cornelius", last: "Sulla"} },
1735
+ { from: "Šustauskas, Vytautas", to: { full: "Vytautas Šustauskas", first: "Vytautas", last: "Šustauskas"} },
1736
+ { from: "Sutherland, Kiefer", to: { full: "Kiefer Sutherland", first: "Kiefer", last: "Sutherland"} },
1737
+ { from: "Suvorov, Alexander Vasilyevich", to: { full: "Alexander Vasilyevich Suvorov", first: "Alexander Vasilyevich", last: "Suvorov"} },
1738
+ { from: "Suzuka, Shunryu", to: { full: "Shunryu Suzuka", first: "Shunryu", last: "Suzuka"} },
1739
+ { from: "Swedenborg, Emanuel", to: { full: "Emanuel Swedenborg", first: "Emanuel", last: "Swedenborg"} },
1740
+ { from: "Sweetnam, Skye", to: { full: "Skye Sweetnam", first: "Skye", last: "Sweetnam"} },
1741
+ { from: "Swift, Jonathan", to: { full: "Jonathan Swift", first: "Jonathan", last: "Swift"} },
1742
+ { from: "Swinburne, Charles Algernon", to: { full: "Charles Algernon Swinburne", first: "Charles Algernon", last: "Swinburne"} },
1743
+ { from: "Swindoll, Charles", to: { full: "Charles Swindoll", first: "Charles", last: "Swindoll"} },
1744
+ { from: "Syrus, Publilius", to: { full: "Publilius Syrus", first: "Publilius", last: "Syrus"} },
1745
+ { from: "Szilard, Leo", to: { full: "Leo Szilard", first: "Leo", last: "Szilard"} },
1746
+
1747
+ { from: "Tagore, Rabindranath", to: { full: "Rabindranath Tagore", first: "Rabindranath", last: "Tagore"} },
1748
+ { from: "Taleb, Nassim Nicholas", to: { full: "Nassim Nicholas Taleb", first: "Nassim Nicholas", last: "Taleb"} },
1749
+ { from: "Tannen, Deborah", to: { full: "Deborah Tannen", first: "Deborah", last: "Tannen"} },
1750
+ { from: "Tate, Sharon", to: { full: "Sharon Tate", first: "Sharon", last: "Tate"} },
1751
+ { from: "Tavola, Kaliopate", to: { full: "Kaliopate Tavola", first: "Kaliopate", last: "Tavola"} },
1752
+ { from: "Tchaikovsky, Pyotr Ilyich", to: { full: "Pyotr Ilyich Tchaikovsky", first: "Pyotr Ilyich", last: "Tchaikovsky"} },
1753
+ { from: "Teilhard de Chardin, Pierre", to: { full: "Pierre Teilhard de Chardin", first: "Pierre", last: "Teilhard de Chardin"} },
1754
+ { from: "Tennyson, Alfred (Lord)", to: { full: "Alfred (Lord) Tennyson", first: "Alfred (Lord)", last: "Tennyson"} },
1755
+ { from: "Tesla, Nikola", to: { full: "Nikola Tesla", first: "Nikola", last: "Tesla"} },
1756
+ { from: "Thackeray, William Makepeace", to: { full: "William Makepeace Thackeray", first: "William Makepeace", last: "Thackeray"} },
1757
+ { from: "Thant, U", to: { full: "U Thant", first: "U", last: "Thant"} },
1758
+ { from: "Thatcher, Margaret", to: { full: "Margaret Thatcher", first: "Margaret", last: "Thatcher"} },
1759
+ { from: "Theron, Charlize", to: { full: "Charlize Theron", first: "Charlize", last: "Theron"} },
1760
+ { from: "Thompson, Dorothy", to: { full: "Dorothy Thompson", first: "Dorothy", last: "Thompson"} },
1761
+ { from: "Thompson, Hunter S.", to: { full: "Hunter S Thompson", first: "Hunter S", last: "Thompson"} },
1762
+ { from: "Thomson, William - a.k.a. Lord Kelvin", to: { full: "William - a.k.a. Lord Kelvin Thomson", first: "William - a.k.a. Lord Kelvin", last: "Thomson"} },
1763
+ { from: "Thoreau, Henry David", to: { full: "Henry David Thoreau", first: "Henry David", last: "Thoreau"} },
1764
+ { from: "Throttle, Ben", to: { full: "Ben Throttle", first: "Ben", last: "Throttle"} },
1765
+ { from: "Thurber, James", to: { full: "James Thurber", first: "James", last: "Thurber"} },
1766
+ { from: "Tito, Josip Broz", to: { full: "Josip Broz Tito", first: "Josip Broz", last: "Tito"} },
1767
+ { from: "Tocqueville, Alexis de", to: { full: "Alexis de Tocqueville", first: "Alexis", last: "de Tocqueville"} },
1768
+ { from: "Todorov, Tzvetan", to: { full: "Tzvetan Todorov", first: "Tzvetan", last: "Todorov"} },
1769
+ { from: "Tohei, Koichi", to: { full: "Koichi Tohei", first: "Koichi", last: "Tohei"} },
1770
+ { from: "Tolkien, J. R. R.", to: { full: "J R R Tolkien", first: "J R R", last: "Tolkien"} },
1771
+ { from: "Tolstoy, Leo", to: { full: "Leo Tolstoy", first: "Leo", last: "Tolstoy"} },
1772
+ { from: "Tomlin, Lily", to: { full: "Lily Tomlin", first: "Lily", last: "Tomlin"} },
1773
+ { from: "Tora, Apisai", to: { full: "Apisai Tora", first: "Apisai", last: "Tora"} },
1774
+ { from: "Torre, Joe", to: { full: "Joe Torre", first: "Joe", last: "Torre"} },
1775
+ { from: "Torvalds, Linus", to: { full: "Linus Torvalds", first: "Linus", last: "Torvalds"} },
1776
+ { from: "Toynbee, Arnold", to: { full: "Arnold Toynbee", first: "Arnold", last: "Toynbee"} },
1777
+ { from: "Toynbee, Arnold Joseph", to: { full: "Arnold Joseph Toynbee", first: "Arnold Joseph", last: "Toynbee"} },
1778
+ { from: "Traficant, James A., Jr.", to: { full: "James A Traficant Jr", first: "James A", last: "Traficant", suffix: "Jr"} },
1779
+ { from: "Travaglia, Simon", to: { full: "Simon Travaglia", first: "Simon", last: "Travaglia"} },
1780
+ { from: "Travers, P. L.", to: { full: "P L Travers", first: "P L", last: "Travers"} },
1781
+ { from: "Trollope, Anthony", to: { full: "Anthony Trollope", first: "Anthony", last: "Trollope"} },
1782
+ { from: "Trotsky, Leon", to: { full: "Leon Trotsky", first: "Leon", last: "Trotsky"} },
1783
+ { from: "Trudeau, Pierre", to: { full: "Pierre Trudeau", first: "Pierre", last: "Trudeau"} },
1784
+ { from: "Truman, Harry S.", to: { full: "Harry S Truman", first: "Harry S", last: "Truman"} },
1785
+ { from: "Trump, Donald", to: { full: "Donald Trump", first: "Donald", last: "Trump"} },
1786
+ { from: "Truth, Sojourner", to: { full: "Sojourner Truth", first: "Sojourner", last: "Truth"} },
1787
+ { from: "Tucker, Gideon", to: { full: "Gideon Tucker", first: "Gideon", last: "Tucker"} },
1788
+ { from: "Tudor, John", to: { full: "John Tudor", first: "John", last: "Tudor"} },
1789
+ { from: "Tugia, Manasa", to: { full: "Manasa Tugia", first: "Manasa", last: "Tugia"} },
1790
+ { from: "Tuibua, Esala", to: { full: "Esala Tuibua", first: "Esala", last: "Tuibua"} },
1791
+ { from: "Turner, Ted", to: { full: "Ted Turner", first: "Ted", last: "Turner"} },
1792
+ { from: "Turtledove, Harry", to: { full: "Harry Turtledove", first: "Harry", last: "Turtledove"} },
1793
+ { from: "Tutu, Desmond", to: { full: "Desmond Tutu", first: "Desmond", last: "Tutu"} },
1794
+ { from: "Twain, Mark", to: { full: "Mark Twain", first: "Mark", last: "Twain"} },
1795
+ { from: "Tyger, Frank", to: { full: "Frank Tyger", first: "Frank", last: "Tyger"} },
1796
+ { from: "Tynan, Kenneth", to: { full: "Kenneth Tynan", first: "Kenneth", last: "Tynan"} },
1797
+ { from: "Tzara, Tristan", to: { full: "Tristan Tzara", first: "Tristan", last: "Tzara"} },
1798
+
1799
+ { from: "Ueshiba, Morihei", to: { full: "Morihei Ueshiba", first: "Morihei", last: "Ueshiba"} },
1800
+ { from: "Unamuno, Miguel de", to: { full: "Miguel de Unamuno", first: "Miguel", last: "de Unamuno"} },
1801
+ { from: "Updike, John", to: { full: "John Updike", first: "John", last: "Updike"} },
1802
+ { from: "Ustinov, Peter", to: { full: "Peter Ustinov", first: "Peter", last: "Ustinov"} },
1803
+
1804
+ { from: "Valenti, Jack", to: { full: "Jack Valenti", first: "Jack", last: "Valenti"} },
1805
+ { from: "Valéry, Paul", to: { full: "Paul Valéry", first: "Paul", last: "Valéry"} },
1806
+ { from: "Vance, Jack", to: { full: "Jack Vance", first: "Jack", last: "Vance"} },
1807
+ { from: "Van Gogh, Vincent", to: { full: "Vincent Van Gogh", first: "Vincent", last: "Van Gogh"} },
1808
+ { from: "Varese, Edgard", to: { full: "Edgard Varese", first: "Edgard", last: "Varese"} },
1809
+ { from: "Ventura, Jesse", to: { full: "Jesse Ventura", first: "Jesse", last: "Ventura"} },
1810
+ { from: "Venturi, Ken", to: { full: "Ken Venturi", first: "Ken", last: "Venturi"} },
1811
+ { from: "Vidal, Gore", to: { full: "Gore Vidal", first: "Gore", last: "Vidal"} },
1812
+ { from: "Vivekananda, Swami", to: { full: "Swami Vivekananda", first: "Swami", last: "Vivekananda"} },
1813
+ { from: "Vixie, Paul", to: { full: "Paul Vixie", first: "Paul", last: "Vixie"} },
1814
+ { from: "Von Karman, Theodore", to: { full: "Theodore Von Karman", first: "Theodore", last: "Von Karman"} },
1815
+ { from: "Vonnegut, Kurt", to: { full: "Kurt Vonnegut", first: "Kurt", last: "Vonnegut"} },
1816
+ { from: "Vosanibola, Josefa", to: { full: "Josefa Vosanibola", first: "Josefa", last: "Vosanibola"} },
1817
+ { from: "Vaughan, Norman D.", to: { full: "Norman D Vaughan", first: "Norman D", last: "Vaughan"} },
1818
+
1819
+ { from: "Wagner, Jane", to: { full: "Jane Wagner", first: "Jane", last: "Wagner"} },
1820
+ { from: "Wainwright, Rufus", to: { full: "Rufus Wainwright", first: "Rufus", last: "Wainwright"} },
1821
+ { from: "Waitley, Denis", to: { full: "Denis Waitley", first: "Denis", last: "Waitley"} },
1822
+ { from: "Waits, Tom", to: { full: "Tom Waits", first: "Tom", last: "Waits"} },
1823
+ { from: "Walberg, Tim", to: { full: "Tim Walberg", first: "Tim", last: "Walberg"} },
1824
+ { from: "Wales, Jimbo", to: { full: "Jimbo Wales", first: "Jimbo", last: "Wales"} },
1825
+ { from: "Walesa, Lech", to: { full: "Lech Walesa", first: "Lech", last: "Walesa"} },
1826
+ { from: "Walken, Christopher", to: { full: "Christopher Walken", first: "Christopher", last: "Walken"} },
1827
+ { from: "Walker, Murray", to: { full: "Murray Walker", first: "Murray", last: "Walker"} },
1828
+ { from: "Wall, Larry", to: { full: "Larry Wall", first: "Larry", last: "Wall"} },
1829
+ { from: "Wallace, Alan", to: { full: "Alan Wallace", first: "Alan", last: "Wallace"} },
1830
+ { from: "Wallace, David Foster", to: { full: "David Foster Wallace", first: "David Foster", last: "Wallace"} },
1831
+ { from: "Waqabaca, Josaia", to: { full: "Josaia Waqabaca", first: "Josaia", last: "Waqabaca"} },
1832
+ { from: "Waradi, Taito", to: { full: "Taito Waradi", first: "Taito", last: "Waradi"} },
1833
+ { from: "Warhol, Andy", to: { full: "Andy Warhol", first: "Andy", last: "Warhol"} },
1834
+ { from: "Warner, Harold", to: { full: "Harold Warner", first: "Harold", last: "Warner"} },
1835
+ { from: "Warren, Earl", to: { full: "Earl Warren", first: "Earl", last: "Warren"} },
1836
+ { from: "Warren, Rick", to: { full: "Rick Warren", first: "Rick", last: "Warren"} },
1837
+ { from: "Warren, Robert Penn", to: { full: "Robert Penn Warren", first: "Robert Penn", last: "Warren"} },
1838
+ { from: "Washington, Booker T.", to: { full: "Booker T Washington", first: "Booker T", last: "Washington"} },
1839
+ { from: "Washington, George", to: { full: "George Washington", first: "George", last: "Washington"} },
1840
+ { from: "Washington, Martha", to: { full: "Martha Washington", first: "Martha", last: "Washington"} },
1841
+ { from: "Watson, Thomas J.", to: { full: "Thomas J Watson", first: "Thomas J", last: "Watson"} },
1842
+ { from: "Watterson, Bill", to: { full: "Bill Watterson", first: "Bill", last: "Watterson"} },
1843
+ { from: "Watts, Alan", to: { full: "Alan Watts", first: "Alan", last: "Watts"} },
1844
+ { from: "Waugh, Evelyn", to: { full: "Evelyn Waugh", first: "Evelyn", last: "Waugh"} },
1845
+ { from: "Weber, David", to: { full: "David Weber", first: "David", last: "Weber"} },
1846
+ { from: "Webster, Daniel", to: { full: "Daniel Webster", first: "Daniel", last: "Webster"} },
1847
+ { from: "Webster, Noah", to: { full: "Noah Webster", first: "Noah", last: "Webster"} },
1848
+ { from: "Weil, Simone", to: { full: "Simone Weil", first: "Simone", last: "Weil"} },
1849
+ { from: "Weinberger, David", to: { full: "David Weinberger", first: "David", last: "Weinberger"} },
1850
+ { from: "Welch, Jack", to: { full: "Jack Welch", first: "Jack", last: "Welch"} },
1851
+ { from: "Welles, Orson", to: { full: "Orson Welles", first: "Orson", last: "Welles"} },
1852
+ { from: "Wellesley, Arthur", to: { full: "Arthur Wellesley", first: "Arthur", last: "Wellesley"} },
1853
+ { from: "Wells, H. G. (Herbert George)", to: { full: "H G (Herbert George) Wells", first: "H G (Herbert George)", last: "Wells"} },
1854
+ { from: "Wellstone, Paul", to: { full: "Paul Wellstone", first: "Paul", last: "Wellstone"} },
1855
+ { from: "Wesley, John", to: { full: "John Wesley", first: "John", last: "Wesley"} },
1856
+ { from: "West, Mae", to: { full: "Mae West", first: "Mae", last: "West"} },
1857
+ { from: "West, Morris", to: { full: "Morris West", first: "Morris", last: "West"} },
1858
+ { from: "Whedon, Joss", to: { full: "Joss Whedon", first: "Joss", last: "Whedon"} },
1859
+ { from: "White, Andrew Dickson", to: { full: "Andrew Dickson White", first: "Andrew Dickson", last: "White"} },
1860
+ { from: "White, E. B. (Elwyn Brooks)", to: { full: "E B (Elwyn Brooks) White", first: "E B", nick: "Elwyn Brooks", last: "White"} },
1861
+ { from: "White, Reggie", to: { full: "Reggie White", first: "Reggie", last: "White"} },
1862
+ { from: "Whitehead, Alfred North", to: { full: "Alfred North Whitehead", first: "Alfred North", last: "Whitehead"} },
1863
+ { from: "Whitman, Walt", to: { full: "Walt Whitman", first: "Walt", last: "Whitman"} },
1864
+ { from: "Whittier, John Greenleaf", to: { full: "John Greenleaf Whittier", first: "John Greenleaf", last: "Whittier"} },
1865
+ { from: "Wiesel, Elie", to: { full: "Elie Wiesel", first: "Elie", last: "Wiesel"} },
1866
+ { from: "Wilber, Ken", to: { full: "Ken Wilber", first: "Ken", last: "Wilber"} },
1867
+ { from: "Wilberforce, William", to: { full: "William Wilberforce", first: "William", last: "Wilberforce"} },
1868
+ { from: "Wilcox, Ella Wheeler", to: { full: "Ella Wheeler Wilcox", first: "Ella Wheeler", last: "Wilcox"} },
1869
+ { from: "Wilde, Oscar", to: { full: "Oscar Wilde", first: "Oscar", last: "Wilde"} },
1870
+ { from: "Wilder, Thornton", to: { full: "Thornton Wilder", first: "Thornton", last: "Wilder"} },
1871
+ { from: "Wilkes, Maurice", to: { full: "Maurice Wilkes", first: "Maurice", last: "Wilkes"} },
1872
+ { skip: true, from: "William I, King of England", to: { full: "King of England William I", first: "King of England", last: "William I"} },
1873
+ { from: "Williams, Robin", to: { full: "Robin Williams", first: "Robin", last: "Williams"} },
1874
+ { from: "Williams, Roger", to: { full: "Roger Williams", first: "Roger", last: "Williams"} },
1875
+ { from: "Williams, Ted", to: { full: "Ted Williams", first: "Ted", last: "Williams"} },
1876
+ { from: "Williams, Tennessee", to: { full: "Tennessee Williams", first: "Tennessee", last: "Williams"} },
1877
+ { from: "Williamson, Henry", to: { full: "Henry Williamson", first: "Henry", last: "Williamson"} },
1878
+ { from: "Wilson, Robert Anton", to: { full: "Robert Anton Wilson", first: "Robert Anton", last: "Wilson"} },
1879
+ { from: "Wilson, Brian", to: { full: "Brian Wilson", first: "Brian", last: "Wilson"} },
1880
+ { from: "Wilson, Colin", to: { full: "Colin Wilson", first: "Colin", last: "Wilson"} },
1881
+ { from: "Wilson, Flip", to: { full: "Flip Wilson", first: "Flip", last: "Wilson"} },
1882
+ { from: "Wilson, Ron", to: { full: "Ron Wilson", first: "Ron", last: "Wilson"} },
1883
+ { from: "Winfrey, Oprah", to: { full: "Oprah Winfrey", first: "Oprah", last: "Winfrey"} },
1884
+ { from: "Winner, Michael", to: { full: "Michael Winner", first: "Michael", last: "Winner"} },
1885
+ { from: "Winter, William", to: { full: "William Winter", first: "William", last: "Winter"} },
1886
+ { from: "Winchell, April", to: { full: "April Winchell", first: "April", last: "Winchell"} },
1887
+ { from: "Winchell, Walter", to: { full: "Walter Winchell", first: "Walter", last: "Winchell"} },
1888
+ { from: "Wittgenstein, Ludwig", to: { full: "Ludwig Wittgenstein", first: "Ludwig", last: "Wittgenstein"} },
1889
+ { from: "Wodehouse, P. G.", to: { full: "P G Wodehouse", first: "P G", last: "Wodehouse"} },
1890
+ { from: "Wolff, Christian", to: { full: "Christian Wolff", first: "Christian", last: "Wolff"} },
1891
+ { from: "Wolfowitz, Paul", to: { full: "Paul Wolfowitz", first: "Paul", last: "Wolfowitz"} },
1892
+ { from: "Woodward, Bob", to: { full: "Bob Woodward", first: "Bob", last: "Woodward"} },
1893
+ { from: "Woolf, Virginia", to: { full: "Virginia Woolf", first: "Virginia", last: "Woolf"} },
1894
+ { from: "Wordsworth, William", to: { full: "William Wordsworth", first: "William", last: "Wordsworth"} },
1895
+ { from: "Wozniak, Steve", to: { full: "Steve Wozniak", first: "Steve", last: "Wozniak"} },
1896
+ { from: "Wright, Frank Lloyd", to: { full: "Frank Lloyd Wright", first: "Frank Lloyd", last: "Wright"} },
1897
+ { from: "Wright, Steven", to: { full: "Steven Wright", first: "Steven", last: "Wright"} },
1898
+ { from: "Wright, Wilbur", to: { full: "Wilbur Wright", first: "Wilbur", last: "Wright"} },
1899
+ { from: "Wyden, Ron", to: { full: "Ron Wyden", first: "Ron", last: "Wyden"} },
1900
+ { from: "Wylie, Philip", to: { full: "Philip Wylie", first: "Philip", last: "Wylie"} },
1901
+ { from: "Wilson, Eugene S.", to: { full: "Eugene S Wilson", first: "Eugene S", last: "Wilson"} },
1902
+
1903
+ { from: "Yamamoto, Isoroku", to: { full: "Isoroku Yamamoto", first: "Isoroku", last: "Yamamoto"} },
1904
+ { from: "Yashinsky, Edward", to: { full: "Edward Yashinsky", first: "Edward", last: "Yashinsky"} },
1905
+ { from: "Yeats, William Butler", to: { full: "William Butler Yeats", first: "William Butler", last: "Yeats"} },
1906
+ { from: "Yeltsin, Boris", to: { full: "Boris Yeltsin", first: "Boris", last: "Yeltsin"} },
1907
+ { from: "Yockey, Francis Parker", to: { full: "Francis Parker Yockey", first: "Francis Parker", last: "Yockey"} },
1908
+ { from: "Yorke, Thom", to: { full: "Thom Yorke", first: "Thom", last: "Yorke"} },
1909
+ { from: "Yoshida, Takeo", to: { full: "Takeo Yoshida", first: "Takeo", last: "Yoshida"} },
1910
+ { from: "Young, Cy", to: { full: "Cy Young", first: "Cy", last: "Young"} },
1911
+ { from: "Young, Edward", to: { full: "Edward Young", first: "Edward", last: "Young"} },
1912
+ { from: "Young, Neil", to: { full: "Neil Young", first: "Neil", last: "Young"} },
1913
+ { from: "Young, Tyler Shell", to: { full: "Tyler Shell Young", first: "Tyler Shell", last: "Young"} },
1914
+ { from: "Youngman, Henny", to: { full: "Henny Youngman", first: "Henny", last: "Youngman"} },
1915
+ { from: "Yourcenar, Marguerite", to: { full: "Marguerite Yourcenar", first: "Marguerite", last: "Yourcenar"} },
1916
+ { from: "Yutang, Lin", to: { full: "Lin Yutang", first: "Lin", last: "Yutang"} },
1917
+
1918
+ { from: "Zacharek, Stephanie", to: { full: "Stephanie Zacharek", first: "Stephanie", last: "Zacharek"} },
1919
+ { from: "Zappa, Frank", to: { full: "Frank Zappa", first: "Frank", last: "Zappa"} },
1920
+ { from: "Zawinski, Jamie", to: { full: "Jamie Zawinski", first: "Jamie", last: "Zawinski"} },
1921
+ { from: "Zeldin, Theodore", to: { full: "Theodore Zeldin", first: "Theodore", last: "Zeldin"} },
1922
+ { from: "Ziglar, Zig", to: { full: "Zig Ziglar", first: "Zig", last: "Ziglar"} },
1923
+ { from: "Zimmermann, Philip", to: { full: "Philip Zimmermann", first: "Philip", last: "Zimmermann"} },
1924
+ { from: "Zinck, Kenneth", to: { full: "Kenneth Zinck", first: "Kenneth", last: "Zinck"} },
1925
+ { from: "Zinn, Howard", to: { full: "Howard Zinn", first: "Howard", last: "Zinn"} },
1926
+ { from: "Zola, Emile", to: { full: "Emile Zola", first: "Emile", last: "Zola"} }
1927
+ ].each do |name|
1928
+ it "parses #{name[:from]}" do
1929
+ skip if name[:skip]
1930
+ parsed = Nomener.parse(name[:from])
1931
+ parse_hash = parsed.to_h
1932
+ parse_hash.each_pair do |k,v|
1933
+ unless (v.nil? || v.empty?)
1934
+ expect(v).to eq(name[:to][k]), "got from #{k} - #{v} wanted #{name[:to][k]} #{parsed.inspect}"
1935
+ end
1936
+ end
1937
+ name[:to].each_pair do |k,v|
1938
+ unless (k == :full)
1939
+ expect(v).to eq(parse_hash[k]), "got from #{k} - #{v} wanted #{parse_hash[k]} #{parse_hash}"
1940
+ end
1941
+ end
1942
+
1943
+ end
1944
+ end
1945
+ end
1946
+ end