| blib/lib/Mock/Person/EN.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 41 | 46 | 89.1 |
| branch | 8 | 12 | 66.6 |
| condition | 4 | 9 | 44.4 |
| subroutine | 16 | 16 | 100.0 |
| pod | 9 | 9 | 100.0 |
| total | 78 | 92 | 84.7 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package Mock::Person::EN; | ||||||
| 2 | |||||||
| 3 | 9 | 9 | 310837 | use base qw(Exporter); | |||
| 9 | 22 | ||||||
| 9 | 1325 | ||||||
| 4 | 9 | 9 | 101 | use strict; | |||
| 9 | 22 | ||||||
| 9 | 309 | ||||||
| 5 | 9 | 9 | 5011 | use utf8; | |||
| 9 | 2837 | ||||||
| 9 | 58 | ||||||
| 6 | 9 | 9 | 331 | use warnings; | |||
| 9 | 34 | ||||||
| 9 | 671 | ||||||
| 7 | |||||||
| 8 | 9 | 9 | 59 | use List::Util 1.33 qw(none); | |||
| 9 | 275 | ||||||
| 9 | 1374 | ||||||
| 9 | 9 | 9 | 7063 | use Readonly; | |||
| 9 | 49432 | ||||||
| 9 | 24751 | ||||||
| 10 | |||||||
| 11 | # Constants. | ||||||
| 12 | Readonly::Scalar our $SPACE => q{ }; | ||||||
| 13 | Readonly::Array our @EXPORT_OK => qw(first_male first_female middle_female | ||||||
| 14 | last_male last_female middle_male middle_female name name_male | ||||||
| 15 | name_female); | ||||||
| 16 | |||||||
| 17 | # Variables. | ||||||
| 18 | our $TYPE = 'two'; | ||||||
| 19 | |||||||
| 20 | our $VERSION = 0.05; | ||||||
| 21 | |||||||
| 22 | # First and middle male names. | ||||||
| 23 | our @first_male = our @middle_male = qw( | ||||||
| 24 | Aaron | ||||||
| 25 | Adam | ||||||
| 26 | Aidan | ||||||
| 27 | Alex | ||||||
| 28 | Alfie | ||||||
| 29 | Andrew | ||||||
| 30 | Anthony | ||||||
| 31 | Ashley | ||||||
| 32 | Ben | ||||||
| 33 | Bradley | ||||||
| 34 | Brandon | ||||||
| 35 | Callum | ||||||
| 36 | Calum | ||||||
| 37 | Cameron | ||||||
| 38 | Charlie | ||||||
| 39 | Chris | ||||||
| 40 | Connor | ||||||
| 41 | Conor | ||||||
| 42 | Craig | ||||||
| 43 | Curtis | ||||||
| 44 | Dan | ||||||
| 45 | Daniel | ||||||
| 46 | Danny | ||||||
| 47 | Darren | ||||||
| 48 | David | ||||||
| 49 | Declan | ||||||
| 50 | Dylan | ||||||
| 51 | Edward | ||||||
| 52 | Elliot | ||||||
| 53 | Ethan | ||||||
| 54 | George | ||||||
| 55 | Harrison | ||||||
| 56 | Harry | ||||||
| 57 | Henry | ||||||
| 58 | Jack | ||||||
| 59 | Jacob | ||||||
| 60 | Jake | ||||||
| 61 | James | ||||||
| 62 | Jamie | ||||||
| 63 | Jason | ||||||
| 64 | Jay | ||||||
| 65 | Joe | ||||||
| 66 | John | ||||||
| 67 | Jonathan | ||||||
| 68 | Jordan | ||||||
| 69 | Joseph | ||||||
| 70 | Josh | ||||||
| 71 | Joshua | ||||||
| 72 | Kane | ||||||
| 73 | Kieran | ||||||
| 74 | Kyle | ||||||
| 75 | Lee | ||||||
| 76 | Leon | ||||||
| 77 | Lewis | ||||||
| 78 | Liam | ||||||
| 79 | Louis | ||||||
| 80 | Luke | ||||||
| 81 | Marcus | ||||||
| 82 | Mark | ||||||
| 83 | Martin | ||||||
| 84 | Matt | ||||||
| 85 | Matthew | ||||||
| 86 | Max | ||||||
| 87 | Michael | ||||||
| 88 | Mike | ||||||
| 89 | Morgan | ||||||
| 90 | Nathan | ||||||
| 91 | Oli | ||||||
| 92 | Oliver | ||||||
| 93 | Ollie | ||||||
| 94 | Owen | ||||||
| 95 | Patrick | ||||||
| 96 | Paul | ||||||
| 97 | Peter | ||||||
| 98 | Philip | ||||||
| 99 | Reece | ||||||
| 100 | Rhys | ||||||
| 101 | Richard | ||||||
| 102 | Robbie | ||||||
| 103 | Robert | ||||||
| 104 | Ross | ||||||
| 105 | Ryan | ||||||
| 106 | Sam | ||||||
| 107 | Samuel | ||||||
| 108 | Scott | ||||||
| 109 | Sean | ||||||
| 110 | Sebastian | ||||||
| 111 | Shaun | ||||||
| 112 | Simon | ||||||
| 113 | Stephen | ||||||
| 114 | Steve | ||||||
| 115 | Steven | ||||||
| 116 | Stuart | ||||||
| 117 | Taylor | ||||||
| 118 | Thomas | ||||||
| 119 | Tom | ||||||
| 120 | Tyler | ||||||
| 121 | Utku | ||||||
| 122 | Will | ||||||
| 123 | William | ||||||
| 124 | ); | ||||||
| 125 | |||||||
| 126 | # First and middle female names. | ||||||
| 127 | our @first_female = our @middle_female = qw( | ||||||
| 128 | Abbie | ||||||
| 129 | Abi | ||||||
| 130 | Aimee | ||||||
| 131 | Alex | ||||||
| 132 | Alice | ||||||
| 133 | Amber | ||||||
| 134 | Amelia | ||||||
| 135 | Amy | ||||||
| 136 | Anna | ||||||
| 137 | Annie | ||||||
| 138 | Ashleigh | ||||||
| 139 | Becca | ||||||
| 140 | Becky | ||||||
| 141 | Beth | ||||||
| 142 | Bethan | ||||||
| 143 | Bethany | ||||||
| 144 | Caitlin | ||||||
| 145 | Chantelle | ||||||
| 146 | Charley | ||||||
| 147 | Charlie | ||||||
| 148 | Charlotte | ||||||
| 149 | Chelsea | ||||||
| 150 | Chloe | ||||||
| 151 | Claire | ||||||
| 152 | Courtney | ||||||
| 153 | Daisy | ||||||
| 154 | Danielle | ||||||
| 155 | Eleanor | ||||||
| 156 | Elizabeth | ||||||
| 157 | Ella | ||||||
| 158 | Ellie | ||||||
| 159 | Emily | ||||||
| 160 | Emma | ||||||
| 161 | Erin | ||||||
| 162 | Francesca | ||||||
| 163 | Freya | ||||||
| 164 | Gemma | ||||||
| 165 | Georgia | ||||||
| 166 | Georgina | ||||||
| 167 | Grace | ||||||
| 168 | Hannah | ||||||
| 169 | Hayley | ||||||
| 170 | Heather | ||||||
| 171 | Helen | ||||||
| 172 | Holly | ||||||
| 173 | Jade | ||||||
| 174 | Jasmine | ||||||
| 175 | Jennifer | ||||||
| 176 | Jenny | ||||||
| 177 | Jess | ||||||
| 178 | Jessica | ||||||
| 179 | Jodie | ||||||
| 180 | Kate | ||||||
| 181 | Katherine | ||||||
| 182 | Katie | ||||||
| 183 | Katy | ||||||
| 184 | Kayleigh | ||||||
| 185 | Kelly | ||||||
| 186 | Kirsty | ||||||
| 187 | Laura | ||||||
| 188 | Leah | ||||||
| 189 | Leanne | ||||||
| 190 | Lily | ||||||
| 191 | Lisa | ||||||
| 192 | Louise | ||||||
| 193 | Lucy | ||||||
| 194 | Luren | ||||||
| 195 | Lydia | ||||||
| 196 | Megan | ||||||
| 197 | Melissa | ||||||
| 198 | Mia | ||||||
| 199 | Millie | ||||||
| 200 | Mollie | ||||||
| 201 | Molly | ||||||
| 202 | Naomi | ||||||
| 203 | Natalie | ||||||
| 204 | Natasha | ||||||
| 205 | Niamh | ||||||
| 206 | Nicola | ||||||
| 207 | Nicole | ||||||
| 208 | Olivia | ||||||
| 209 | Paige | ||||||
| 210 | Phoebe | ||||||
| 211 | Rachael | ||||||
| 212 | Rachel | ||||||
| 213 | Rebecca | ||||||
| 214 | Rhiannon | ||||||
| 215 | Robyn | ||||||
| 216 | Rose | ||||||
| 217 | Rosie | ||||||
| 218 | Samantha | ||||||
| 219 | Sara | ||||||
| 220 | Sarah | ||||||
| 221 | Sasha | ||||||
| 222 | Shannon | ||||||
| 223 | Sophie | ||||||
| 224 | Stacey | ||||||
| 225 | Stephanie | ||||||
| 226 | Victoria | ||||||
| 227 | Zoe | ||||||
| 228 | ); | ||||||
| 229 | |||||||
| 230 | # Last names. | ||||||
| 231 | our @last_male = our @last_female = qw( | ||||||
| 232 | Abbey | ||||||
| 233 | Abel | ||||||
| 234 | Abney | ||||||
| 235 | Abraham | ||||||
| 236 | Abrahams | ||||||
| 237 | Abrahamson | ||||||
| 238 | Abram | ||||||
| 239 | Abrams | ||||||
| 240 | Abramson | ||||||
| 241 | Achilles | ||||||
| 242 | Acker | ||||||
| 243 | Ackerman | ||||||
| 244 | Adair | ||||||
| 245 | Adam | ||||||
| 246 | Adams | ||||||
| 247 | Adamson | ||||||
| 248 | Adcock | ||||||
| 249 | Addison | ||||||
| 250 | Adkins | ||||||
| 251 | Aiken | ||||||
| 252 | Ainsworth | ||||||
| 253 | Aitken | ||||||
| 254 | Akerman | ||||||
| 255 | Akers | ||||||
| 256 | Albert | ||||||
| 257 | Alberts | ||||||
| 258 | Albertson | ||||||
| 259 | Albinson | ||||||
| 260 | Alden | ||||||
| 261 | Alexander | ||||||
| 262 | Alfredson | ||||||
| 263 | Alfson | ||||||
| 264 | Alger | ||||||
| 265 | Allard | ||||||
| 266 | Allen | ||||||
| 267 | Allsopp | ||||||
| 268 | Alvey | ||||||
| 269 | Alvin | ||||||
| 270 | Anderson | ||||||
| 271 | Andrews | ||||||
| 272 | Andrewson | ||||||
| 273 | Ansel | ||||||
| 274 | Anson | ||||||
| 275 | Anthonyson | ||||||
| 276 | Appleby | ||||||
| 277 | Appleton | ||||||
| 278 | Archer | ||||||
| 279 | Arkwright | ||||||
| 280 | Armistead | ||||||
| 281 | Arnold | ||||||
| 282 | Arrington | ||||||
| 283 | Arterberry | ||||||
| 284 | Arterbury | ||||||
| 285 | Arthur | ||||||
| 286 | Arthurson | ||||||
| 287 | Ash | ||||||
| 288 | Ashley | ||||||
| 289 | Ashworth | ||||||
| 290 | Atkins | ||||||
| 291 | Atkinson | ||||||
| 292 | Attaway | ||||||
| 293 | Atteberry | ||||||
| 294 | Atterberry | ||||||
| 295 | Attwater | ||||||
| 296 | Audley | ||||||
| 297 | Augustine | ||||||
| 298 | Austin | ||||||
| 299 | Auteberry | ||||||
| 300 | Autenberry | ||||||
| 301 | Auttenberg | ||||||
| 302 | Averill | ||||||
| 303 | Avery | ||||||
| 304 | Ayers | ||||||
| 305 | Aylmer | ||||||
| 306 | Ayton | ||||||
| 307 | Babcock | ||||||
| 308 | Babcocke | ||||||
| 309 | Babcoke | ||||||
| 310 | Backus | ||||||
| 311 | Badcock | ||||||
| 312 | Badcocke | ||||||
| 313 | Badcoke | ||||||
| 314 | Bagley | ||||||
| 315 | Bailey | ||||||
| 316 | Baines | ||||||
| 317 | Baker | ||||||
| 318 | Baldwin | ||||||
| 319 | Bancroft | ||||||
| 320 | Banister | ||||||
| 321 | Banks | ||||||
| 322 | Banner | ||||||
| 323 | Bannerman | ||||||
| 324 | Barber | ||||||
| 325 | Bardsley | ||||||
| 326 | Barker | ||||||
| 327 | Barlow | ||||||
| 328 | Barnes | ||||||
| 329 | Barret | ||||||
| 330 | Barrett | ||||||
| 331 | Barton | ||||||
| 332 | Bartram | ||||||
| 333 | Bass | ||||||
| 334 | Bates | ||||||
| 335 | Bateson | ||||||
| 336 | Battle | ||||||
| 337 | Batts | ||||||
| 338 | Baxter | ||||||
| 339 | Beake | ||||||
| 340 | Beasley | ||||||
| 341 | Beattie | ||||||
| 342 | Beck | ||||||
| 343 | Becket | ||||||
| 344 | Beckett | ||||||
| 345 | Beckham | ||||||
| 346 | Belcher | ||||||
| 347 | Bell | ||||||
| 348 | Bellamy | ||||||
| 349 | Benbow | ||||||
| 350 | Benjaminson | ||||||
| 351 | Bennet | ||||||
| 352 | Bennett | ||||||
| 353 | Benson | ||||||
| 354 | Bentley | ||||||
| 355 | Benton | ||||||
| 356 | Bernard | ||||||
| 357 | Berry | ||||||
| 358 | Beverley | ||||||
| 359 | Beverly | ||||||
| 360 | Bird | ||||||
| 361 | Bishop | ||||||
| 362 | Black | ||||||
| 363 | Blackbourne | ||||||
| 364 | Blackburn | ||||||
| 365 | Blackman | ||||||
| 366 | Blackwood | ||||||
| 367 | Blake | ||||||
| 368 | Blakeslee | ||||||
| 369 | Bloodworth | ||||||
| 370 | Bloxam | ||||||
| 371 | Bloxham | ||||||
| 372 | Blue | ||||||
| 373 | Blythe | ||||||
| 374 | Boivin | ||||||
| 375 | Bolton | ||||||
| 376 | Bond | ||||||
| 377 | Bone | ||||||
| 378 | Bonham | ||||||
| 379 | Bonher | ||||||
| 380 | Bonner | ||||||
| 381 | Bonney | ||||||
| 382 | Boon | ||||||
| 383 | Boone | ||||||
| 384 | Booner | ||||||
| 385 | Boothman | ||||||
| 386 | Botwright | ||||||
| 387 | Bourke | ||||||
| 388 | Boyce | ||||||
| 389 | Braddock | ||||||
| 390 | Bradford | ||||||
| 391 | Bradley | ||||||
| 392 | Brams | ||||||
| 393 | Bramson | ||||||
| 394 | Brand | ||||||
| 395 | Brandon | ||||||
| 396 | Brant | ||||||
| 397 | Brasher | ||||||
| 398 | Brassington | ||||||
| 399 | Bray | ||||||
| 400 | Breckenridge | ||||||
| 401 | Breckinridge | ||||||
| 402 | Brent | ||||||
| 403 | Brewer | ||||||
| 404 | Brewster | ||||||
| 405 | Brigham | ||||||
| 406 | Bristol | ||||||
| 407 | Bristow | ||||||
| 408 | Britton | ||||||
| 409 | Broadbent | ||||||
| 410 | Brock | ||||||
| 411 | Brook | ||||||
| 412 | Brooke | ||||||
| 413 | Brooks | ||||||
| 414 | Brown | ||||||
| 415 | Brownlow | ||||||
| 416 | Bryan | ||||||
| 417 | Bryant | ||||||
| 418 | Bryson | ||||||
| 419 | Buckley | ||||||
| 420 | Bullard | ||||||
| 421 | Bulle | ||||||
| 422 | Bullock | ||||||
| 423 | Bunker | ||||||
| 424 | Burke | ||||||
| 425 | Burnham | ||||||
| 426 | Burns | ||||||
| 427 | Burrell | ||||||
| 428 | Burton | ||||||
| 429 | Bush | ||||||
| 430 | Butcher | ||||||
| 431 | Butler | ||||||
| 432 | Butts | ||||||
| 433 | Byrd | ||||||
| 434 | Cannon | ||||||
| 435 | Cantrell | ||||||
| 436 | Carl | ||||||
| 437 | Carlisle | ||||||
| 438 | Carlyle | ||||||
| 439 | Carman | ||||||
| 440 | Carpenter | ||||||
| 441 | Carter | ||||||
| 442 | Cartwright | ||||||
| 443 | Carver | ||||||
| 444 | Caulfield | ||||||
| 445 | Causer | ||||||
| 446 | Causey | ||||||
| 447 | Chadwick | ||||||
| 448 | Chamberlain | ||||||
| 449 | Chance | ||||||
| 450 | Chancellor | ||||||
| 451 | Chandler | ||||||
| 452 | Chapman | ||||||
| 453 | Chase | ||||||
| 454 | Cheshire | ||||||
| 455 | Christians | ||||||
| 456 | Christianson | ||||||
| 457 | Christinsen | ||||||
| 458 | Christison | ||||||
| 459 | Christopher | ||||||
| 460 | Christophers | ||||||
| 461 | Christopherson | ||||||
| 462 | Church | ||||||
| 463 | Clark | ||||||
| 464 | Clarke | ||||||
| 465 | Clarkson | ||||||
| 466 | Clay | ||||||
| 467 | Clayton | ||||||
| 468 | Clemens | ||||||
| 469 | Clifford | ||||||
| 470 | Clifton | ||||||
| 471 | Cline | ||||||
| 472 | Clinton | ||||||
| 473 | Close | ||||||
| 474 | Coburn | ||||||
| 475 | Cock | ||||||
| 476 | Cockburn | ||||||
| 477 | Cocks | ||||||
| 478 | Coel | ||||||
| 479 | Coke | ||||||
| 480 | Cokes | ||||||
| 481 | Colbert | ||||||
| 482 | Cole | ||||||
| 483 | Coleman | ||||||
| 484 | Collingwood | ||||||
| 485 | Collins | ||||||
| 486 | Colton | ||||||
| 487 | Combs | ||||||
| 488 | Comstock | ||||||
| 489 | Constable | ||||||
| 490 | Cook | ||||||
| 491 | Cooke | ||||||
| 492 | Cookson | ||||||
| 493 | Coombs | ||||||
| 494 | Cooper | ||||||
| 495 | Corey | ||||||
| 496 | Cornell | ||||||
| 497 | Corra | ||||||
| 498 | Cory | ||||||
| 499 | Cotterill | ||||||
| 500 | Courtenay | ||||||
| 501 | Courtney | ||||||
| 502 | Cowden | ||||||
| 503 | Cox | ||||||
| 504 | Crawford | ||||||
| 505 | Crewe | ||||||
| 506 | Croft | ||||||
| 507 | Cropper | ||||||
| 508 | Cross | ||||||
| 509 | Crouch | ||||||
| 510 | Cummins | ||||||
| 511 | Curtis | ||||||
| 512 | Dabney | ||||||
| 513 | Dalton | ||||||
| 514 | Dane | ||||||
| 515 | Danell | ||||||
| 516 | Daniel | ||||||
| 517 | Daniell | ||||||
| 518 | Daniels | ||||||
| 519 | Danielson | ||||||
| 520 | Dannel | ||||||
| 521 | Danniel | ||||||
| 522 | Danniell | ||||||
| 523 | Darby | ||||||
| 524 | Darrell | ||||||
| 525 | Darwin | ||||||
| 526 | Daubney | ||||||
| 527 | Daugherty | ||||||
| 528 | David | ||||||
| 529 | Davidson | ||||||
| 530 | Davies | ||||||
| 531 | Davis | ||||||
| 532 | Davison | ||||||
| 533 | Dawson | ||||||
| 534 | Day | ||||||
| 535 | Deadman | ||||||
| 536 | Dean | ||||||
| 537 | Dedrick | ||||||
| 538 | Deering | ||||||
| 539 | Delaney | ||||||
| 540 | Denman | ||||||
| 541 | Dennel | ||||||
| 542 | Dennell | ||||||
| 543 | Denzil | ||||||
| 544 | Derby | ||||||
| 545 | Derrick | ||||||
| 546 | Derricks | ||||||
| 547 | Derrickson | ||||||
| 548 | Devereux | ||||||
| 549 | Devin | ||||||
| 550 | Devine | ||||||
| 551 | Dexter | ||||||
| 552 | Dick | ||||||
| 553 | Dickens | ||||||
| 554 | Dickenson | ||||||
| 555 | Dickinson | ||||||
| 556 | Dickman | ||||||
| 557 | Dickson | ||||||
| 558 | Disney | ||||||
| 559 | Dixon | ||||||
| 560 | Donalds | ||||||
| 561 | Donaldson | ||||||
| 562 | Downer | ||||||
| 563 | Draper | ||||||
| 564 | Dudley | ||||||
| 565 | Duke | ||||||
| 566 | Dukes | ||||||
| 567 | Dunn | ||||||
| 568 | Durand | ||||||
| 569 | Durant | ||||||
| 570 | Dustin | ||||||
| 571 | Dwerryhouse | ||||||
| 572 | Dwight | ||||||
| 573 | Dyer | ||||||
| 574 | Dyson | ||||||
| 575 | Eads | ||||||
| 576 | Earl | ||||||
| 577 | Earls | ||||||
| 578 | Easom | ||||||
| 579 | Eason | ||||||
| 580 | Easton | ||||||
| 581 | Eaton | ||||||
| 582 | Eccleston | ||||||
| 583 | Ecclestone | ||||||
| 584 | Edgar | ||||||
| 585 | Edison | ||||||
| 586 | Edwards | ||||||
| 587 | Edwardson | ||||||
| 588 | Elder | ||||||
| 589 | Eldred | ||||||
| 590 | Eldridge | ||||||
| 591 | Eliot | ||||||
| 592 | Eliott | ||||||
| 593 | Ellery | ||||||
| 594 | Elliot | ||||||
| 595 | Elliott | ||||||
| 596 | Ellis | ||||||
| 597 | Ellison | ||||||
| 598 | Ellisson | ||||||
| 599 | Elliston | ||||||
| 600 | Ellsworth | ||||||
| 601 | Elmer | ||||||
| 602 | Elwin | ||||||
| 603 | Elwyn | ||||||
| 604 | Ely | ||||||
| 605 | Emerson | ||||||
| 606 | Emmet | ||||||
| 607 | Emmett | ||||||
| 608 | Endicott | ||||||
| 609 | English | ||||||
| 610 | Ericson | ||||||
| 611 | Espenson | ||||||
| 612 | Ethans | ||||||
| 613 | Eustis | ||||||
| 614 | Evanson | ||||||
| 615 | Evelyn | ||||||
| 616 | Evered | ||||||
| 617 | Everett | ||||||
| 618 | Everill | ||||||
| 619 | Ewart | ||||||
| 620 | Fabian | ||||||
| 621 | Fairbairn | ||||||
| 622 | Fairburn | ||||||
| 623 | Fairchild | ||||||
| 624 | Fairclough | ||||||
| 625 | Farnham | ||||||
| 626 | Faulkner | ||||||
| 627 | Fay | ||||||
| 628 | Fear | ||||||
| 629 | Fenn | ||||||
| 630 | Fields | ||||||
| 631 | Firmin | ||||||
| 632 | Fisher | ||||||
| 633 | Fishman | ||||||
| 634 | Fitzroy | ||||||
| 635 | Fleming | ||||||
| 636 | Fletcher | ||||||
| 637 | Ford | ||||||
| 638 | Forest | ||||||
| 639 | Forester | ||||||
| 640 | Forney | ||||||
| 641 | Forrest | ||||||
| 642 | Foss | ||||||
| 643 | Foster | ||||||
| 644 | Fox | ||||||
| 645 | Frank | ||||||
| 646 | Franklin | ||||||
| 647 | Franklyn | ||||||
| 648 | Freeman | ||||||
| 649 | Frost | ||||||
| 650 | Fry | ||||||
| 651 | Frye | ||||||
| 652 | Fuller | ||||||
| 653 | Gabriels | ||||||
| 654 | Gabrielson | ||||||
| 655 | Gardenar | ||||||
| 656 | Gardener | ||||||
| 657 | Gardiner | ||||||
| 658 | Gardner | ||||||
| 659 | Gardyner | ||||||
| 660 | Garey | ||||||
| 661 | Garfield | ||||||
| 662 | Garland | ||||||
| 663 | Garner | ||||||
| 664 | Garnet | ||||||
| 665 | Garnett | ||||||
| 666 | Garrard | ||||||
| 667 | Garret | ||||||
| 668 | Garrett | ||||||
| 669 | Garrod | ||||||
| 670 | Garry | ||||||
| 671 | Gary | ||||||
| 672 | Geary | ||||||
| 673 | Georgeson | ||||||
| 674 | Gibb | ||||||
| 675 | Gibbs | ||||||
| 676 | Gibson | ||||||
| 677 | Giffard | ||||||
| 678 | Gilbert | ||||||
| 679 | Giles | ||||||
| 680 | Gilliam | ||||||
| 681 | Gladwin | ||||||
| 682 | Gladwyn | ||||||
| 683 | Glover | ||||||
| 684 | Goddard | ||||||
| 685 | Godfrey | ||||||
| 686 | Goffe | ||||||
| 687 | Goode | ||||||
| 688 | Goodwin | ||||||
| 689 | Gorbold | ||||||
| 690 | Gore | ||||||
| 691 | Granger | ||||||
| 692 | Grant | ||||||
| 693 | Granville | ||||||
| 694 | Gray | ||||||
| 695 | Green | ||||||
| 696 | Greene | ||||||
| 697 | Gregory | ||||||
| 698 | Grenville | ||||||
| 699 | Grey | ||||||
| 700 | Griffin | ||||||
| 701 | Groves | ||||||
| 702 | Gully | ||||||
| 703 | Hackett | ||||||
| 704 | Hadaway | ||||||
| 705 | Haden | ||||||
| 706 | Haggard | ||||||
| 707 | Haight | ||||||
| 708 | Hailey | ||||||
| 709 | Hale | ||||||
| 710 | Haley | ||||||
| 711 | Hall | ||||||
| 712 | Hallman | ||||||
| 713 | Hambledon | ||||||
| 714 | Hambleton | ||||||
| 715 | Hameldon | ||||||
| 716 | Hamilton | ||||||
| 717 | Hamm | ||||||
| 718 | Hampson | ||||||
| 719 | Hampton | ||||||
| 720 | Hancock | ||||||
| 721 | Hanley | ||||||
| 722 | Hanson | ||||||
| 723 | Harden | ||||||
| 724 | Hardwick | ||||||
| 725 | Hardy | ||||||
| 726 | Harford | ||||||
| 727 | Hargrave | ||||||
| 728 | Harlan | ||||||
| 729 | Harland | ||||||
| 730 | Harley | ||||||
| 731 | Harlow | ||||||
| 732 | Harman | ||||||
| 733 | Harmon | ||||||
| 734 | Haroldson | ||||||
| 735 | Harper | ||||||
| 736 | Harrell | ||||||
| 737 | Harrelson | ||||||
| 738 | Harris | ||||||
| 739 | Harrison | ||||||
| 740 | Hart | ||||||
| 741 | Hartell | ||||||
| 742 | Harvey | ||||||
| 743 | Hathaway | ||||||
| 744 | Hatheway | ||||||
| 745 | Hathoway | ||||||
| 746 | Haward | ||||||
| 747 | Hawk | ||||||
| 748 | Hawking | ||||||
| 749 | Hawkins | ||||||
| 750 | Hayden | ||||||
| 751 | Hayes | ||||||
| 752 | Hayley | ||||||
| 753 | Hayward | ||||||
| 754 | Haywood | ||||||
| 755 | Head | ||||||
| 756 | Headley | ||||||
| 757 | Heath | ||||||
| 758 | Hedley | ||||||
| 759 | Henderson | ||||||
| 760 | Hendry | ||||||
| 761 | Henry | ||||||
| 762 | Henryson | ||||||
| 763 | Henson | ||||||
| 764 | Hepburn | ||||||
| 765 | Herbert | ||||||
| 766 | Herberts | ||||||
| 767 | Herbertson | ||||||
| 768 | Herman | ||||||
| 769 | Hermanson | ||||||
| 770 | Hewitt | ||||||
| 771 | Hext | ||||||
| 772 | Hibbert | ||||||
| 773 | Hicks | ||||||
| 774 | Hightower | ||||||
| 775 | Hill | ||||||
| 776 | Hillam | ||||||
| 777 | Hilton | ||||||
| 778 | Hobbes | ||||||
| 779 | Hobbs | ||||||
| 780 | Hobson | ||||||
| 781 | Hodges | ||||||
| 782 | Hodson | ||||||
| 783 | Hogarth | ||||||
| 784 | Hollands | ||||||
| 785 | Hollins | ||||||
| 786 | Holme | ||||||
| 787 | Holmes | ||||||
| 788 | Holmwood | ||||||
| 789 | Holt | ||||||
| 790 | Honeycutt | ||||||
| 791 | Honeysett | ||||||
| 792 | Hooker | ||||||
| 793 | Hooper | ||||||
| 794 | Hope | ||||||
| 795 | Hopkins | ||||||
| 796 | Hopper | ||||||
| 797 | Hopson | ||||||
| 798 | Horn | ||||||
| 799 | Horne | ||||||
| 800 | Horsfall | ||||||
| 801 | Horton | ||||||
| 802 | House | ||||||
| 803 | Howard | ||||||
| 804 | Howe | ||||||
| 805 | Howland | ||||||
| 806 | Howse | ||||||
| 807 | Huddleson | ||||||
| 808 | Huddleston | ||||||
| 809 | Hudnall | ||||||
| 810 | Hudson | ||||||
| 811 | Huff | ||||||
| 812 | Hughes | ||||||
| 813 | Hull | ||||||
| 814 | Hume | ||||||
| 815 | Hunnisett | ||||||
| 816 | Hunt | ||||||
| 817 | Hunter | ||||||
| 818 | Hurst | ||||||
| 819 | Hutson | ||||||
| 820 | Huxley | ||||||
| 821 | Huxtable | ||||||
| 822 | Hyland | ||||||
| 823 | Ianson | ||||||
| 824 | Ibbot | ||||||
| 825 | Ibbott | ||||||
| 826 | Ikin | ||||||
| 827 | Ilbert | ||||||
| 828 | Ingham | ||||||
| 829 | Ingram | ||||||
| 830 | Irvin | ||||||
| 831 | Irvine | ||||||
| 832 | Irving | ||||||
| 833 | Irwin | ||||||
| 834 | Isaacson | ||||||
| 835 | Ivers | ||||||
| 836 | Jack | ||||||
| 837 | Jackson | ||||||
| 838 | Jacobs | ||||||
| 839 | Jacobson | ||||||
| 840 | Jakeman | ||||||
| 841 | James | ||||||
| 842 | Jamison | ||||||
| 843 | Jans | ||||||
| 844 | Janson | ||||||
| 845 | Jardine | ||||||
| 846 | Jarrett | ||||||
| 847 | Jarvis | ||||||
| 848 | Jeanes | ||||||
| 849 | Jeffers | ||||||
| 850 | Jefferson | ||||||
| 851 | Jeffery | ||||||
| 852 | Jeffries | ||||||
| 853 | Jekyll | ||||||
| 854 | Jenkins | ||||||
| 855 | Jephson | ||||||
| 856 | Jepson | ||||||
| 857 | Jernigan | ||||||
| 858 | Jerome | ||||||
| 859 | Jervis | ||||||
| 860 | Jewel | ||||||
| 861 | Jewell | ||||||
| 862 | Jinks | ||||||
| 863 | Johns | ||||||
| 864 | Johnson | ||||||
| 865 | Joiner | ||||||
| 866 | Jones | ||||||
| 867 | Jordan | ||||||
| 868 | Josephs | ||||||
| 869 | Josephson | ||||||
| 870 | Joyner | ||||||
| 871 | Judd | ||||||
| 872 | Kay | ||||||
| 873 | Keen | ||||||
| 874 | Keighley | ||||||
| 875 | Kellogg | ||||||
| 876 | Kelsey | ||||||
| 877 | Kemp | ||||||
| 878 | Kendal | ||||||
| 879 | Kendall | ||||||
| 880 | Kendrick | ||||||
| 881 | Kennard | ||||||
| 882 | Kerry | ||||||
| 883 | Kersey | ||||||
| 884 | Kevins | ||||||
| 885 | Kevinson | ||||||
| 886 | Key | ||||||
| 887 | Keys | ||||||
| 888 | Kidd | ||||||
| 889 | Killam | ||||||
| 890 | Kimball | ||||||
| 891 | Kimberley | ||||||
| 892 | Kimberly | ||||||
| 893 | King | ||||||
| 894 | Kingsley | ||||||
| 895 | Kingston | ||||||
| 896 | Kipling | ||||||
| 897 | Kirby | ||||||
| 898 | Kitchen | ||||||
| 899 | Kitchens | ||||||
| 900 | Knaggs | ||||||
| 901 | Knight | ||||||
| 902 | Kynaston | ||||||
| 903 | Lacey | ||||||
| 904 | Lacy | ||||||
| 905 | Lamar | ||||||
| 906 | Landon | ||||||
| 907 | Lane | ||||||
| 908 | Langdon | ||||||
| 909 | Langley | ||||||
| 910 | Larson | ||||||
| 911 | Law | ||||||
| 912 | Lawrence | ||||||
| 913 | Lawson | ||||||
| 914 | Layton | ||||||
| 915 | Leach | ||||||
| 916 | Leavitt | ||||||
| 917 | Ledford | ||||||
| 918 | Lee | ||||||
| 919 | Leigh | ||||||
| 920 | Leighton | ||||||
| 921 | Leon | ||||||
| 922 | Leonardson | ||||||
| 923 | Levitt | ||||||
| 924 | Lewin | ||||||
| 925 | Lewis | ||||||
| 926 | Leyton | ||||||
| 927 | Lincoln | ||||||
| 928 | Lindon | ||||||
| 929 | Lindsay | ||||||
| 930 | Linton | ||||||
| 931 | Linwood | ||||||
| 932 | Little | ||||||
| 933 | Lockwood | ||||||
| 934 | Loman | ||||||
| 935 | London | ||||||
| 936 | Long | ||||||
| 937 | Longstaff | ||||||
| 938 | Lovel | ||||||
| 939 | Lovell | ||||||
| 940 | Low | ||||||
| 941 | Lowe | ||||||
| 942 | Lowell | ||||||
| 943 | Lowry | ||||||
| 944 | Lucas | ||||||
| 945 | Lukeson | ||||||
| 946 | Lum | ||||||
| 947 | Lund | ||||||
| 948 | Lyndon | ||||||
| 949 | Lynn | ||||||
| 950 | Lynton | ||||||
| 951 | Lynwood | ||||||
| 952 | Lyon | ||||||
| 953 | Macey | ||||||
| 954 | Macy | ||||||
| 955 | Maddison | ||||||
| 956 | Madison | ||||||
| 957 | Mallory | ||||||
| 958 | Mann | ||||||
| 959 | Marchand | ||||||
| 960 | Mark | ||||||
| 961 | Marley | ||||||
| 962 | Marlow | ||||||
| 963 | Marsden | ||||||
| 964 | Marshall | ||||||
| 965 | Marston | ||||||
| 966 | Martel | ||||||
| 967 | Martell | ||||||
| 968 | Martin | ||||||
| 969 | Martins | ||||||
| 970 | Martinson | ||||||
| 971 | Mason | ||||||
| 972 | Massey | ||||||
| 973 | Masters | ||||||
| 974 | Masterson | ||||||
| 975 | Mathers | ||||||
| 976 | Mathews | ||||||
| 977 | Mathewson | ||||||
| 978 | Matthews | ||||||
| 979 | Matthewson | ||||||
| 980 | May | ||||||
| 981 | Mayer | ||||||
| 982 | Mayes | ||||||
| 983 | Maynard | ||||||
| 984 | Meadows | ||||||
| 985 | Mercer | ||||||
| 986 | Merchant | ||||||
| 987 | Merrick | ||||||
| 988 | Merricks | ||||||
| 989 | Merrickson | ||||||
| 990 | Merrill | ||||||
| 991 | Merritt | ||||||
| 992 | Michael | ||||||
| 993 | Michaels | ||||||
| 994 | Michaelson | ||||||
| 995 | Midgley | ||||||
| 996 | Milburn | ||||||
| 997 | Miles | ||||||
| 998 | Milford | ||||||
| 999 | Miller | ||||||
| 1000 | Millhouse | ||||||
| 1001 | Mills | ||||||
| 1002 | Milton | ||||||
| 1003 | Mitchell | ||||||
| 1004 | Monday | ||||||
| 1005 | Mondy | ||||||
| 1006 | Montgomery | ||||||
| 1007 | Moore | ||||||
| 1008 | Moores | ||||||
| 1009 | Moors | ||||||
| 1010 | Morce | ||||||
| 1011 | Morison | ||||||
| 1012 | Morris | ||||||
| 1013 | Morrish | ||||||
| 1014 | Morrison | ||||||
| 1015 | Morriss | ||||||
| 1016 | Morse | ||||||
| 1017 | Moses | ||||||
| 1018 | Mottershead | ||||||
| 1019 | Mounce | ||||||
| 1020 | Murgatroyd | ||||||
| 1021 | Muttoone | ||||||
| 1022 | Myers | ||||||
| 1023 | Myles | ||||||
| 1024 | Nathans | ||||||
| 1025 | Nathanson | ||||||
| 1026 | Nelson | ||||||
| 1027 | Ness | ||||||
| 1028 | Neville | ||||||
| 1029 | Newell | ||||||
| 1030 | Newman | ||||||
| 1031 | Newport | ||||||
| 1032 | Newton | ||||||
| 1033 | Nichols | ||||||
| 1034 | Nicholson | ||||||
| 1035 | Nicolson | ||||||
| 1036 | Nielson | ||||||
| 1037 | Nigel | ||||||
| 1038 | Niles | ||||||
| 1039 | Nixon | ||||||
| 1040 | Noel | ||||||
| 1041 | Norman | ||||||
| 1042 | Normanson | ||||||
| 1043 | Norris | ||||||
| 1044 | North | ||||||
| 1045 | Northrop | ||||||
| 1046 | Norwood | ||||||
| 1047 | Nowell | ||||||
| 1048 | Nye | ||||||
| 1049 | Oakley | ||||||
| 1050 | Odell | ||||||
| 1051 | Ogden | ||||||
| 1052 | Olhouser | ||||||
| 1053 | Oliver | ||||||
| 1054 | Oliverson | ||||||
| 1055 | Olson | ||||||
| 1056 | Osborne | ||||||
| 1057 | Osbourne | ||||||
| 1058 | Otis | ||||||
| 1059 | Ott | ||||||
| 1060 | Outlaw | ||||||
| 1061 | Outterridge | ||||||
| 1062 | Overton | ||||||
| 1063 | Owston | ||||||
| 1064 | Paddon | ||||||
| 1065 | Padmore | ||||||
| 1066 | Page | ||||||
| 1067 | Paget | ||||||
| 1068 | Paige | ||||||
| 1069 | Palmer | ||||||
| 1070 | Parent | ||||||
| 1071 | Paris | ||||||
| 1072 | Parish | ||||||
| 1073 | Parker | ||||||
| 1074 | Parris | ||||||
| 1075 | Parsons | ||||||
| 1076 | Paternoster | ||||||
| 1077 | Paterson | ||||||
| 1078 | Patrick | ||||||
| 1079 | Patrickson | ||||||
| 1080 | Patterson | ||||||
| 1081 | Patton | ||||||
| 1082 | Paulson | ||||||
| 1083 | Payne | ||||||
| 1084 | Payton | ||||||
| 1085 | Peacock | ||||||
| 1086 | Peak | ||||||
| 1087 | Pearce | ||||||
| 1088 | Pearson | ||||||
| 1089 | Peck | ||||||
| 1090 | Pelley | ||||||
| 1091 | Pemberton | ||||||
| 1092 | Penny | ||||||
| 1093 | Perkins | ||||||
| 1094 | Perry | ||||||
| 1095 | Peter | ||||||
| 1096 | Peters | ||||||
| 1097 | Peterson | ||||||
| 1098 | Petit | ||||||
| 1099 | Pettigrew | ||||||
| 1100 | Peyton | ||||||
| 1101 | Philips | ||||||
| 1102 | Phillips | ||||||
| 1103 | Pickering | ||||||
| 1104 | Pickle | ||||||
| 1105 | Pierce | ||||||
| 1106 | Pierson | ||||||
| 1107 | Piper | ||||||
| 1108 | Pitts | ||||||
| 1109 | Plank | ||||||
| 1110 | Plaskett | ||||||
| 1111 | Platt | ||||||
| 1112 | Pocock | ||||||
| 1113 | Polley | ||||||
| 1114 | Pond | ||||||
| 1115 | Poole | ||||||
| 1116 | Pope | ||||||
| 1117 | Porcher | ||||||
| 1118 | Porter | ||||||
| 1119 | Potter | ||||||
| 1120 | Pound | ||||||
| 1121 | Power | ||||||
| 1122 | Powers | ||||||
| 1123 | Prescott | ||||||
| 1124 | Pressley | ||||||
| 1125 | Preston | ||||||
| 1126 | Proudfoot | ||||||
| 1127 | Pryor | ||||||
| 1128 | Purcell | ||||||
| 1129 | Putnam | ||||||
| 1130 | Queen | ||||||
| 1131 | Queshire | ||||||
| 1132 | Quick | ||||||
| 1133 | Quickley | ||||||
| 1134 | Quigg | ||||||
| 1135 | Quigley | ||||||
| 1136 | Quincey | ||||||
| 1137 | Quincy | ||||||
| 1138 | Radcliff | ||||||
| 1139 | Radclyffe | ||||||
| 1140 | Raines | ||||||
| 1141 | Rains | ||||||
| 1142 | Rake | ||||||
| 1143 | Rakes | ||||||
| 1144 | Ramsey | ||||||
| 1145 | Randal | ||||||
| 1146 | Randall | ||||||
| 1147 | Randell | ||||||
| 1148 | Ray | ||||||
| 1149 | Rayne | ||||||
| 1150 | Raynerson | ||||||
| 1151 | Read | ||||||
| 1152 | Readdie | ||||||
| 1153 | Ready | ||||||
| 1154 | Reed | ||||||
| 1155 | Reeve | ||||||
| 1156 | Reier | ||||||
| 1157 | Rennell | ||||||
| 1158 | Rennold | ||||||
| 1159 | Rennoll | ||||||
| 1160 | Revie | ||||||
| 1161 | Rey | ||||||
| 1162 | Reynell | ||||||
| 1163 | Reynolds | ||||||
| 1164 | Rhodes | ||||||
| 1165 | Rice | ||||||
| 1166 | Richard | ||||||
| 1167 | Richards | ||||||
| 1168 | Richardson | ||||||
| 1169 | Rickard | ||||||
| 1170 | Rider | ||||||
| 1171 | Ridley | ||||||
| 1172 | Rier | ||||||
| 1173 | Rigby | ||||||
| 1174 | Riley | ||||||
| 1175 | Rimmer | ||||||
| 1176 | Roach | ||||||
| 1177 | Robbins | ||||||
| 1178 | Robert | ||||||
| 1179 | Roberts | ||||||
| 1180 | Robertson | ||||||
| 1181 | Robinson | ||||||
| 1182 | Roderick | ||||||
| 1183 | Rogers | ||||||
| 1184 | Rogerson | ||||||
| 1185 | Rollins | ||||||
| 1186 | Rome | ||||||
| 1187 | Romilly | ||||||
| 1188 | Roscoe | ||||||
| 1189 | Rose | ||||||
| 1190 | Ross | ||||||
| 1191 | Rounds | ||||||
| 1192 | Rowbottom | ||||||
| 1193 | Rowe | ||||||
| 1194 | Rowland | ||||||
| 1195 | Rowntree | ||||||
| 1196 | Roy | ||||||
| 1197 | Royce | ||||||
| 1198 | Royceston | ||||||
| 1199 | Roydon | ||||||
| 1200 | Royle | ||||||
| 1201 | Royston | ||||||
| 1202 | Ruggles | ||||||
| 1203 | Rupertson | ||||||
| 1204 | Rush | ||||||
| 1205 | Ruskin | ||||||
| 1206 | Russel | ||||||
| 1207 | Russell | ||||||
| 1208 | Ryder | ||||||
| 1209 | Rye | ||||||
| 1210 | Ryer | ||||||
| 1211 | Ryers | ||||||
| 1212 | Ryley | ||||||
| 1213 | Sackville | ||||||
| 1214 | Sadler | ||||||
| 1215 | Salomon | ||||||
| 1216 | Salvage | ||||||
| 1217 | Sampson | ||||||
| 1218 | Samson | ||||||
| 1219 | Samuel | ||||||
| 1220 | Samuels | ||||||
| 1221 | Samuelson | ||||||
| 1222 | Sanders | ||||||
| 1223 | Sanderson | ||||||
| 1224 | Sandford | ||||||
| 1225 | Sands | ||||||
| 1226 | Sanford | ||||||
| 1227 | Sangster | ||||||
| 1228 | Sappington | ||||||
| 1229 | Sargent | ||||||
| 1230 | Saunders | ||||||
| 1231 | Sauvage | ||||||
| 1232 | Savage | ||||||
| 1233 | Savege | ||||||
| 1234 | Savidge | ||||||
| 1235 | Sawyer | ||||||
| 1236 | Saylor | ||||||
| 1237 | Scarlett | ||||||
| 1238 | School | ||||||
| 1239 | Scott | ||||||
| 1240 | Scriven | ||||||
| 1241 | Scrivener | ||||||
| 1242 | Scrivenor | ||||||
| 1243 | Scrivens | ||||||
| 1244 | Seabrooke | ||||||
| 1245 | Seaver | ||||||
| 1246 | Selby | ||||||
| 1247 | Sempers | ||||||
| 1248 | Senior | ||||||
| 1249 | Sergeant | ||||||
| 1250 | Sessions | ||||||
| 1251 | Seward | ||||||
| 1252 | Sexton | ||||||
| 1253 | Seymour | ||||||
| 1254 | Shakesheave | ||||||
| 1255 | Sharman | ||||||
| 1256 | Sharrow | ||||||
| 1257 | Shaw | ||||||
| 1258 | Shelby | ||||||
| 1259 | Shepard | ||||||
| 1260 | Sherburne | ||||||
| 1261 | Sherman | ||||||
| 1262 | Shine | ||||||
| 1263 | Sidney | ||||||
| 1264 | Simmons | ||||||
| 1265 | Simms | ||||||
| 1266 | Simon | ||||||
| 1267 | Simons | ||||||
| 1268 | Simonson | ||||||
| 1269 | Simpkin | ||||||
| 1270 | Simpson | ||||||
| 1271 | Sims | ||||||
| 1272 | Sinclair | ||||||
| 1273 | Skinner | ||||||
| 1274 | Slater | ||||||
| 1275 | Smalls | ||||||
| 1276 | Smedley | ||||||
| 1277 | Smith | ||||||
| 1278 | Smythe | ||||||
| 1279 | Snelling | ||||||
| 1280 | Snider | ||||||
| 1281 | Sniders | ||||||
| 1282 | Snyder | ||||||
| 1283 | Snyders | ||||||
| 1284 | Southers | ||||||
| 1285 | Southgate | ||||||
| 1286 | Sowards | ||||||
| 1287 | Spalding | ||||||
| 1288 | Sparks | ||||||
| 1289 | Spear | ||||||
| 1290 | Spearing | ||||||
| 1291 | Spears | ||||||
| 1292 | Speight | ||||||
| 1293 | Spence | ||||||
| 1294 | Spencer | ||||||
| 1295 | Spooner | ||||||
| 1296 | Spurling | ||||||
| 1297 | Stacey | ||||||
| 1298 | Stack | ||||||
| 1299 | Stacks | ||||||
| 1300 | Stacy | ||||||
| 1301 | Stafford | ||||||
| 1302 | Stainthorpe | ||||||
| 1303 | Stamp | ||||||
| 1304 | Stanton | ||||||
| 1305 | Stark | ||||||
| 1306 | Starr | ||||||
| 1307 | Statham | ||||||
| 1308 | Steed | ||||||
| 1309 | Steele | ||||||
| 1310 | Steffen | ||||||
| 1311 | Stenet | ||||||
| 1312 | Stephens | ||||||
| 1313 | Stephenson | ||||||
| 1314 | Stern | ||||||
| 1315 | Stevens | ||||||
| 1316 | Stevenson | ||||||
| 1317 | Stidolph | ||||||
| 1318 | Stoddard | ||||||
| 1319 | Stone | ||||||
| 1320 | Strange | ||||||
| 1321 | Street | ||||||
| 1322 | Strickland | ||||||
| 1323 | Stringer | ||||||
| 1324 | Stroud | ||||||
| 1325 | Strudwick | ||||||
| 1326 | Studwick | ||||||
| 1327 | Styles | ||||||
| 1328 | Sudworth | ||||||
| 1329 | Suggitt | ||||||
| 1330 | Summerfield | ||||||
| 1331 | Summers | ||||||
| 1332 | Sumner | ||||||
| 1333 | Sutton | ||||||
| 1334 | Sweet | ||||||
| 1335 | Swindlehurst | ||||||
| 1336 | Sydney | ||||||
| 1337 | Symons | ||||||
| 1338 | Tailor | ||||||
| 1339 | Tanner | ||||||
| 1340 | Tash | ||||||
| 1341 | Tasker | ||||||
| 1342 | Tate | ||||||
| 1343 | Tatham | ||||||
| 1344 | Taylor | ||||||
| 1345 | Teel | ||||||
| 1346 | Tennison | ||||||
| 1347 | Tennyson | ||||||
| 1348 | Terrell | ||||||
| 1349 | Terry | ||||||
| 1350 | Thacker | ||||||
| 1351 | Thatcher | ||||||
| 1352 | Thomas | ||||||
| 1353 | Thompsett | ||||||
| 1354 | Thompson | ||||||
| 1355 | Thomson | ||||||
| 1356 | Thorburn | ||||||
| 1357 | Thorn | ||||||
| 1358 | Thorne | ||||||
| 1359 | Thorpe | ||||||
| 1360 | Thrussell | ||||||
| 1361 | Thurstan | ||||||
| 1362 | Thwaite | ||||||
| 1363 | Tifft | ||||||
| 1364 | Timberlake | ||||||
| 1365 | Timothyson | ||||||
| 1366 | Tinker | ||||||
| 1367 | Tipton | ||||||
| 1368 | Tirrell | ||||||
| 1369 | Tittensor | ||||||
| 1370 | Tobias | ||||||
| 1371 | Tobin | ||||||
| 1372 | Tod | ||||||
| 1373 | Todd | ||||||
| 1374 | Toft | ||||||
| 1375 | Tolbert | ||||||
| 1376 | Tollemache | ||||||
| 1377 | Toller | ||||||
| 1378 | Towner | ||||||
| 1379 | Townsend | ||||||
| 1380 | Tracey | ||||||
| 1381 | Tracy | ||||||
| 1382 | Traiylor | ||||||
| 1383 | Trask | ||||||
| 1384 | Travers | ||||||
| 1385 | Traves | ||||||
| 1386 | Travis | ||||||
| 1387 | Traviss | ||||||
| 1388 | Traylor | ||||||
| 1389 | Treloar | ||||||
| 1390 | Trengove | ||||||
| 1391 | Trent | ||||||
| 1392 | Trevis | ||||||
| 1393 | Triggs | ||||||
| 1394 | Trueman | ||||||
| 1395 | Truman | ||||||
| 1396 | Tucker | ||||||
| 1397 | Tuff | ||||||
| 1398 | Tuft | ||||||
| 1399 | Tupper | ||||||
| 1400 | Turnbull | ||||||
| 1401 | Turner | ||||||
| 1402 | Tyler | ||||||
| 1403 | Tyrell | ||||||
| 1404 | Tyrrell | ||||||
| 1405 | Tyson | ||||||
| 1406 | Underhill | ||||||
| 1407 | Underwood | ||||||
| 1408 | Upton | ||||||
| 1409 | Vance | ||||||
| 1410 | Vann | ||||||
| 1411 | Varley | ||||||
| 1412 | Varnham | ||||||
| 1413 | Verity | ||||||
| 1414 | Vernon | ||||||
| 1415 | Victor | ||||||
| 1416 | Victors | ||||||
| 1417 | Victorson | ||||||
| 1418 | Vincent | ||||||
| 1419 | Vipond | ||||||
| 1420 | Virgo | ||||||
| 1421 | Wakefield | ||||||
| 1422 | Walker | ||||||
| 1423 | Wallace | ||||||
| 1424 | Waller | ||||||
| 1425 | Wallis | ||||||
| 1426 | Walmsley | ||||||
| 1427 | Walsh | ||||||
| 1428 | Walter | ||||||
| 1429 | Walterson | ||||||
| 1430 | Walton | ||||||
| 1431 | Ward | ||||||
| 1432 | Wardrobe | ||||||
| 1433 | Ware | ||||||
| 1434 | Warner | ||||||
| 1435 | Warren | ||||||
| 1436 | Warrick | ||||||
| 1437 | Warwick | ||||||
| 1438 | Wash | ||||||
| 1439 | Washington | ||||||
| 1440 | Waterman | ||||||
| 1441 | Waters | ||||||
| 1442 | Watkins | ||||||
| 1443 | Watson | ||||||
| 1444 | Way | ||||||
| 1445 | Wayne | ||||||
| 1446 | Weaver | ||||||
| 1447 | Webb | ||||||
| 1448 | Webster | ||||||
| 1449 | Weekes | ||||||
| 1450 | Wells | ||||||
| 1451 | Wembley | ||||||
| 1452 | Wescott | ||||||
| 1453 | Wesley | ||||||
| 1454 | West | ||||||
| 1455 | Westbrook | ||||||
| 1456 | Westley | ||||||
| 1457 | Wheeler | ||||||
| 1458 | Wheelock | ||||||
| 1459 | Whinery | ||||||
| 1460 | Whitaker | ||||||
| 1461 | White | ||||||
| 1462 | Whitney | ||||||
| 1463 | Whittemore | ||||||
| 1464 | Whittle | ||||||
| 1465 | Wickham | ||||||
| 1466 | Wilbur | ||||||
| 1467 | Wilcox | ||||||
| 1468 | Wilkerson | ||||||
| 1469 | Wilkie | ||||||
| 1470 | Wilkins | ||||||
| 1471 | Wilkinson | ||||||
| 1472 | Willard | ||||||
| 1473 | William | ||||||
| 1474 | Williams | ||||||
| 1475 | Williamson | ||||||
| 1476 | Willis | ||||||
| 1477 | Willoughby | ||||||
| 1478 | Wilmer | ||||||
| 1479 | Wilson | ||||||
| 1480 | Winchester | ||||||
| 1481 | Winfield | ||||||
| 1482 | Winship | ||||||
| 1483 | Winslow | ||||||
| 1484 | Winston | ||||||
| 1485 | Winter | ||||||
| 1486 | Winterbottom | ||||||
| 1487 | Winthrop | ||||||
| 1488 | Winton | ||||||
| 1489 | Witherspoon | ||||||
| 1490 | Wolf | ||||||
| 1491 | Wolfe | ||||||
| 1492 | Womack | ||||||
| 1493 | Wood | ||||||
| 1494 | Woodcock | ||||||
| 1495 | Woodham | ||||||
| 1496 | Woodhams | ||||||
| 1497 | Woods | ||||||
| 1498 | Woodward | ||||||
| 1499 | Wootton | ||||||
| 1500 | Wortham | ||||||
| 1501 | Wragge | ||||||
| 1502 | Wray | ||||||
| 1503 | Wright | ||||||
| 1504 | Wyatt | ||||||
| 1505 | Wyght | ||||||
| 1506 | Wyman | ||||||
| 1507 | Wyndham | ||||||
| 1508 | Wynne | ||||||
| 1509 | Yap | ||||||
| 1510 | Yates | ||||||
| 1511 | Yong | ||||||
| 1512 | York | ||||||
| 1513 | Young | ||||||
| 1514 | Younge | ||||||
| 1515 | Yoxall | ||||||
| 1516 | ); | ||||||
| 1517 | push @last_male, 'St John', 'Van Middlesworth'; | ||||||
| 1518 | push @last_female, 'St John', 'Van Middlesworth'; | ||||||
| 1519 | |||||||
| 1520 | # Get random first male name. | ||||||
| 1521 | sub first_male { | ||||||
| 1522 | 3 | 3 | 1 | 356402 | return $first_male[rand @first_male]; | ||
| 1523 | } | ||||||
| 1524 | |||||||
| 1525 | # Get random first female name. | ||||||
| 1526 | sub first_female { | ||||||
| 1527 | 2 | 2 | 1 | 350418 | return $first_female[rand @first_female]; | ||
| 1528 | } | ||||||
| 1529 | |||||||
| 1530 | # Get random last male name. | ||||||
| 1531 | sub last_male { | ||||||
| 1532 | 3 | 3 | 1 | 371928 | return $last_male[rand @last_male]; | ||
| 1533 | } | ||||||
| 1534 | |||||||
| 1535 | # Get random last female name. | ||||||
| 1536 | sub last_female { | ||||||
| 1537 | 2 | 2 | 1 | 339375 | return $last_female[rand @last_female]; | ||
| 1538 | } | ||||||
| 1539 | |||||||
| 1540 | # Get random middle male name. | ||||||
| 1541 | sub middle_male { | ||||||
| 1542 | 3 | 3 | 1 | 336634 | return $middle_male[rand @middle_male]; | ||
| 1543 | } | ||||||
| 1544 | |||||||
| 1545 | # Get random middle female name. | ||||||
| 1546 | sub middle_female { | ||||||
| 1547 | 2 | 2 | 1 | 370641 | return $middle_female[rand @middle_female]; | ||
| 1548 | } | ||||||
| 1549 | |||||||
| 1550 | # Get random name. | ||||||
| 1551 | sub name { | ||||||
| 1552 | 3 | 3 | 1 | 360218 | my $sex = shift; | ||
| 1553 | 3 | 100 | 66 | 3 | 26 | if (! defined $sex || none { $sex eq $_ } qw(female male)) { | |
| 3 | 100 | 19 | |||||
| 50 | |||||||
| 1554 | 1 | 50 | 45 | if ((int(rand(2)) + 1 ) % 2 == 0) { | |||
| 1555 | 1 | 3 | return name_male(); | ||||
| 1556 | } else { | ||||||
| 1557 | 0 | 0 | return name_female(); | ||||
| 1558 | } | ||||||
| 1559 | } elsif ($sex eq 'female') { | ||||||
| 1560 | 1 | 12 | return name_female(); | ||||
| 1561 | } elsif ($sex eq 'male') { | ||||||
| 1562 | 1 | 4 | return name_male(); | ||||
| 1563 | } | ||||||
| 1564 | } | ||||||
| 1565 | |||||||
| 1566 | # Get random male name. | ||||||
| 1567 | sub name_male { | ||||||
| 1568 | 2 | 50 | 33 | 2 | 1 | 51 | if (defined $TYPE && $TYPE eq 'three') { |
| 1569 | 2 | 6 | my $first_male = first_male(); | ||||
| 1570 | 2 | 6 | my $middle_male = middle_male(); | ||||
| 1571 | 2 | 6 | while ($first_male eq $middle_male) { | ||||
| 1572 | 0 | 0 | $middle_male = middle_male(); | ||||
| 1573 | } | ||||||
| 1574 | 2 | 7 | return $first_male.$SPACE.$middle_male.$SPACE.last_male(); | ||||
| 1575 | } else { | ||||||
| 1576 | 0 | 0 | return first_male().$SPACE.last_male(); | ||||
| 1577 | } | ||||||
| 1578 | } | ||||||
| 1579 | |||||||
| 1580 | # Get random female name. | ||||||
| 1581 | sub name_female { | ||||||
| 1582 | 1 | 50 | 33 | 1 | 1 | 8 | if (defined $TYPE && $TYPE eq 'three') { |
| 1583 | 1 | 4 | my $first_female = first_female(); | ||||
| 1584 | 1 | 4 | my $middle_female = middle_female(); | ||||
| 1585 | 1 | 5 | while ($first_female eq $middle_female) { | ||||
| 1586 | 0 | 0 | $middle_female = middle_female(); | ||||
| 1587 | } | ||||||
| 1588 | 1 | 4 | return $first_female.$SPACE.$middle_female.$SPACE.last_female(); | ||||
| 1589 | } else { | ||||||
| 1590 | 0 | return first_female().$SPACE.last_female(); | |||||
| 1591 | } | ||||||
| 1592 | } | ||||||
| 1593 | |||||||
| 1594 | 1; | ||||||
| 1595 | |||||||
| 1596 | __END__ |