├── Apendices ├── br_dic.txt └── keyboards_seq.txt ├── LICENSE ├── README.md ├── brmangler.rb └── wordlists ├── 01_common_pass.txt ├── 02_names.txt ├── 03_common_words.txt ├── 04_nicks.txt ├── 05_religion.txt ├── 06_soccer_teams.txt ├── 07_animals.txt └── 08_last_names.txt /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | Brazilian wordlist generator hu3hu3hu3 3 | 4 | Usage: ./brmangler.rb [options] 5 | 6 | -f, --file /path/to/file *Mandatory* File with names 7 | -m, --min 8 Minimun password size 8 | -M, --Max 12 Maximun password size 9 | -l, --leet DISABLE leetSpeak outputs (e.g. "p@55w0rd") 10 | -c, --capitalize DISABLE capitalized outputs (e.g. "Password") 11 | -u, --upcase DISABLE uppercase 12 | -d, --date DISABLE dates (e.g. "password@020212") 13 | -s, --special DISABLE passwords with special characters 14 | -t, --twoletters Enable two letters passwords (e.g. "af212303") 15 | -j, --months Enable months (e.g. "janeiro@020212") 16 | -i, --insane Use *ALL* wordlists to create passwords 17 | 18 | -------------------------------------------------------------------------------- /brmangler.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require 'date' 4 | require 'active_support/all' 5 | require 'colorize' 6 | require 'optparse' 7 | require 'fileutils' 8 | require 'timeout' 9 | require 'find' 10 | 11 | logo = ' 12 | 13 | ██████╗ ██████╗ ███╗ ███╗ █████╗ ███╗ ██╗ ██████╗ ██╗ ███████╗██████╗ 14 | ██╔══██╗██╔══██╗ ████╗ ████║██╔══██╗████╗ ██║██╔════╝ ██║ ██╔════╝██╔══██╗ 15 | ██████╔╝██████╔╝ ██╔████╔██║███████║██╔██╗ ██║██║ ███╗██║ █████╗ ██████╔╝ 16 | ██╔══██╗██╔══██╗ ██║╚██╔╝██║██╔══██║██║╚██╗██║██║ ██║██║ ██╔══╝ ██╔══██╗ 17 | ██████╔╝██║ ██║██╗██║ ╚═╝ ██║██║ ██║██║ ╚████║╚██████╔╝███████╗███████╗██║ ██║ 18 | ╚═════╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚══════╝╚══════╝╚═╝ ╚═╝ 19 | Brazilian wordlist generator hu3hu3hu3 20 | '.red 21 | 22 | options = {:file => nil, :min => 1, :max => 20, :leet => true, :insane => false, :cap => true, :upcase => true, :date => true, :special => true, :months => false, :two => false} 23 | 24 | parser = OptionParser.new do|opts| 25 | opts.banner = "\n Usage: ./brmangler.rb [options]\n\n" 26 | 27 | opts.on('-f', '--file /path/to/file', '*Mandatory* File with names'.red) do |file| 28 | options[:file] = file 29 | end 30 | 31 | opts.on('-m', '--min 8', 'Minimun password size') do |min| 32 | options[:min] = min.to_i 33 | end 34 | 35 | opts.on('-M', '--Max 12', 'Maximun password size') do |max| 36 | options[:max] = max.to_i 37 | end 38 | 39 | opts.on('-l', '--leet', 'DISABLE leetSpeak outputs (e.g. "p@55w0rd")') do |leet| 40 | options[:leet] = false 41 | end 42 | 43 | opts.on('-c', '--capitalize', 'DISABLE capitalized outputs (e.g. "Password")') do |cap| 44 | options[:cap] = false 45 | end 46 | 47 | opts.on('-u', '--upcase', 'DISABLE uppercase') do |upcase| 48 | options[:upcase] = false 49 | end 50 | 51 | opts.on('-d', '--date', 'DISABLE dates (e.g. "password@020212")') do |date| 52 | options[:date] = false 53 | end 54 | 55 | opts.on('-s', '--special', 'DISABLE passwords with special characters') do |special| 56 | options[:special] = false 57 | end 58 | 59 | opts.on('-t', '--twoletters', 'Enable two letters passwords (e.g. "af212303")'.red) do |two| 60 | options[:two] = true 61 | end 62 | 63 | opts.on('-j', '--months', 'Enable months (e.g. "janeiro@020212")'.red) do |date| 64 | options[:months] = true 65 | end 66 | 67 | opts.on('-i', '--insane', 'Use *ALL* wordlists to create passwords'.red) do |insane| 68 | options[:insane] = true 69 | end 70 | 71 | end 72 | 73 | parser.parse! 74 | 75 | if options[:file] == nil 76 | print logo 77 | puts "#{parser}\n" 78 | exit 79 | else 80 | begin 81 | inputFile = File.open(options[:file], "r") 82 | inputData = inputFile.read 83 | inputFile.close 84 | rescue 85 | puts "[Error] File #{options[:file]} not found".red 86 | exit 87 | end 88 | end 89 | 90 | # Variables and Constants 91 | 92 | SPECIAL = ['!','@','#','$','%','&','*', '?'] 93 | REPLACEMENTS1 = [["a", "4"], ["e", "3"], ["s", "$"], ["o", "0"], ["i", "1"]] 94 | REPLACEMENTS2 = [["a", "@"], ["e", "&"], ["s", "5"], ["o", "0"], ["t", "7"]] 95 | MONTHS = ['janeiro','fevereiro','março','abril','maio','junho','julho','agosto', 'setembro', 'outubro', 'novembro', 'dezembro'] 96 | $min = options[:min] 97 | $max = options[:max] 98 | $date = options[:date] 99 | $special = options[:special] 100 | $insane = options[:insane] 101 | $upcase = options[:upcase] 102 | $leet = options[:leet] 103 | $capitalize = options[:cap] 104 | $file = options[:file] 105 | $two = options[:two] 106 | $months = options[:months] 107 | 108 | # Functions 109 | 110 | def wordSpecial(word) 111 | if $special == true && word.length + 1 >= $min && word.length + 1 <= $max 112 | (SPECIAL.length).times do |times| 113 | puts word + SPECIAL[times] 114 | puts SPECIAL[times] + word 115 | end 116 | end 117 | if $special == true && word.length + 2 >= $min && word.length + 1 <= $max 118 | (SPECIAL.length).times do |times| 119 | (SPECIAL.length).times do |times2| 120 | puts SPECIAL[times2] + word + SPECIAL[times2] 121 | end 122 | end 123 | end 124 | end 125 | 126 | def wordSpecialNum(word) 127 | if word.length + 3 <= $max 128 | (SPECIAL.length).times do |times| 129 | (0..99).each do |num| 130 | if word.length + num.to_s.length + 1 >= $min 131 | puts "#{num}#{word}#{SPECIAL[times]}" 132 | puts "#{SPECIAL[times]}#{word}#{num}" 133 | puts "#{word}#{SPECIAL[times]}#{num}" 134 | else 135 | next 136 | end 137 | end 138 | end 139 | end 140 | 141 | if word.length + 4 <= $max 142 | (SPECIAL.length).times do |times| 143 | (100..9999).each do |num| 144 | if word.length + num.to_s.length + 1 >= $min 145 | puts "#{num}#{word}#{SPECIAL[times]}" 146 | puts "#{SPECIAL[times]}#{word}#{num}" 147 | puts "#{word}#{SPECIAL[times]}#{num}" 148 | else 149 | next 150 | end 151 | end 152 | end 153 | end 154 | end 155 | 156 | def wordNum(word) 157 | if word.length + 1 >= $min 158 | (0..9999).each do |num| 159 | if word.length + num.to_s.length > $max 160 | break 161 | else 162 | puts "#{num}#{word}" 163 | puts "#{word}#{num}" 164 | end 165 | end 166 | end 167 | end 168 | 169 | 170 | def wordDate(word) 171 | 172 | if $date == true && word.length + 6 >= $min && word.length + 6 <= $max 173 | rangeDate = ((60.to_i.year.ago.to_date)..(Date.today)).to_a.map{|x| x.to_s(:db)} # 60 years 174 | rangeDate.each do |date| 175 | dateMask = date.split("-") 176 | puts "#{word}#{dateMask[2]}#{dateMask[1]}#{dateMask[0][2..4]}" 177 | end 178 | end 179 | end 180 | 181 | def wordFullDate(word) 182 | if $date == true && word.length + 8 >= $min && word.length + 8 <= $max 183 | rangeDate = ((60.to_i.year.ago.to_date)..(Date.today)).to_a.map{|x| x.to_s(:db)} # 60 years 184 | rangeDate.each do |date| 185 | dateMask = date.split("-") 186 | puts "#{word}#{dateMask[2]}#{dateMask[1]}#{dateMask[0][0..4]}" 187 | end 188 | end 189 | end 190 | 191 | def wordSpecialDate(word) 192 | if $date == true && $special == true && word.length + 7 >= $min 193 | (SPECIAL.length).times do |times| 194 | rangeDate = ((60.to_i.year.ago.to_date)..(Date.today)).to_a.map{|x| x.to_s(:db)} # 60 years 195 | rangeDate.each do |date| 196 | dateMask = date.split("-") 197 | if word.length + 9 <= $max 198 | puts "#{word}#{SPECIAL[times]}#{dateMask[2]}#{dateMask[1]}#{dateMask[0][0..4]}" 199 | puts "#{dateMask[2]}#{dateMask[1]}#{dateMask[0][0..4]}#{SPECIAL[times]}#{word}" 200 | end 201 | if word.length + 7 <= $max 202 | puts "#{word}#{SPECIAL[times]}#{dateMask[2]}#{dateMask[1]}#{dateMask[0][2..4]}" 203 | puts "#{dateMask[2]}#{dateMask[1]}#{dateMask[0][2..4]}#{SPECIAL[times]}#{word}" 204 | end 205 | end 206 | end 207 | end 208 | end 209 | 210 | def monthSpecialDate(word) 211 | if $date == true && $special == true 212 | (SPECIAL.length).times do |times| 213 | rangeDate = ((10.to_i.year.ago.to_date)..(Date.today)).to_a.map{|x| x.to_s(:db)} # 10 years 214 | rangeDate.each do |date| 215 | dateMask = date.split("-") 216 | puts "#{word}#{SPECIAL[times]}#{dateMask[2]}#{dateMask[1]}#{dateMask[0][2..4]}" 217 | puts "#{dateMask[2]}#{dateMask[1]}#{dateMask[0][2..4]}#{SPECIAL[times]}#{word}" 218 | end 219 | end 220 | end 221 | end 222 | 223 | 224 | def twoLetters 225 | if $two == true 226 | ("aa".."zz").each do |letter| 227 | (1..999999).each do |num| 228 | puts "#{letter}#{num.to_s.rjust(6, '0')}" 229 | puts "#{num.to_s.rjust(6, '0')}#{letter}" 230 | end 231 | end 232 | end 233 | end 234 | 235 | 236 | def leetSpeak(word) 237 | if $leet == true && word.length >= $min && word.length <= $max 238 | originalWord = word.downcase.clone 239 | originalWord2 = word.downcase.clone 240 | puts originalWord 241 | 242 | REPLACEMENTS1.each {|rep| originalWord.gsub!(rep[0], rep[1])} 243 | puts originalWord 244 | wordSpecial(originalWord) 245 | wordNum(originalWord) 246 | 247 | REPLACEMENTS2.each {|rep| originalWord2.gsub!(rep[0], rep[1])} 248 | puts originalWord2 249 | wordSpecial(originalWord2) 250 | wordNum(originalWord2) 251 | end 252 | end 253 | 254 | 255 | def mangler(word) 256 | wordSpecial(word) 257 | wordSpecialNum(word) 258 | wordSpecialDate(word) 259 | wordNum(word) 260 | wordDate(word) 261 | wordFullDate(word) 262 | end 263 | 264 | ######## 265 | # Main # 266 | ######## 267 | 268 | if $months == true 269 | MONTHS.each do |month| 270 | wordSpecialNum(month) 271 | monthSpecialDate(month) 272 | end 273 | end 274 | 275 | inputData.each_line do |line| 276 | 277 | line.delete_suffix!("\n") 278 | leetSpeak(line) 279 | 280 | (3).times do |times| 281 | if times == 0 282 | mangler("#{line.downcase}") 283 | elsif times == 1 && $capitalize == true 284 | if line.length >= $min && line.length <= $max 285 | puts line.capitalize 286 | end 287 | mangler("#{line.capitalize}") 288 | elsif times == 2 && $upcase == true 289 | if line.length >= $min && line.length <= $max 290 | puts line.upcase! 291 | end 292 | mangler("#{line.upcase}") 293 | end 294 | end 295 | end 296 | 297 | if $two == true 298 | twoLetters 299 | end 300 | 301 | if $insane == true 302 | dirContent = Dir["./wordlists/*"].sort 303 | dirContent.each do |content| 304 | inputFile = File.open(content, "r") 305 | inputData = inputFile.read 306 | inputFile.close 307 | inputData.each_line do |line| 308 | leetSpeak(line) 309 | (3).times do |times| 310 | if times == 0 311 | puts line.downcase! 312 | mangler(line) 313 | elsif times == 1 && $upcase == true 314 | puts line.upcase! 315 | mangler(line) 316 | elsif times == 2 && $capitalize == true 317 | puts line.capitalize! 318 | mangler(line) 319 | end 320 | end 321 | end 322 | end 323 | end 324 | -------------------------------------------------------------------------------- /wordlists/01_common_pass.txt: -------------------------------------------------------------------------------- 1 | admin 2 | 123mudar. 3 | 123mudar 4 | mudar123 5 | 123456 6 | 1234 7 | linkedin 8 | baseball 9 | dragon 10 | football 11 | password 12 | 1234567890 13 | 123456789 14 | 12345678 15 | a1b2c3d4 16 | 111111 17 | 1234567 18 | 12345 19 | sunshine 20 | monkey 21 | letmein 22 | estrela 23 | qwerty 24 | 654321 25 | 000000 26 | password1 27 | abc123 28 | 123abc 29 | teste123 30 | 666666 31 | 123123 32 | iloveyou 33 | 123456789 34 | welcome 35 | buster 36 | Passw0rd 37 | shadow 38 | 121212 39 | 222222 40 | abcdef 41 | 555555 42 | 123321 43 | mustang 44 | musica 45 | access 46 | shadow 47 | master 48 | michael 49 | uperman 50 | 96969 51 | 23123 52 | batman 53 | trustno1 54 | admin 55 | master 56 | adm 57 | infra 58 | root 59 | guest 60 | server 61 | administrator 62 | wifi 63 | remoto 64 | visitante 65 | acesso 66 | ssh 67 | terminal 68 | service 69 | controle 70 | control 71 | ti 72 | info 73 | nti 74 | seguro 75 | pass 76 | senha 77 | senha123 78 | PINK90 79 | sucesso 80 | brasil 81 | felicidade 82 | linux 83 | windows 84 | win 85 | password 86 | pass 87 | secret 88 | segredo 89 | sql 90 | serial 91 | pw 92 | sys 93 | pwd 94 | passwd 95 | sistema 96 | system 97 | rede 98 | net 99 | sysadmin 100 | sysadm 101 | network 102 | asdfasdfasdf 103 | -------------------------------------------------------------------------------- /wordlists/02_names.txt: -------------------------------------------------------------------------------- 1 | rayanna 2 | rayana 3 | wander 4 | wanderleya 5 | wanderleia 6 | andrezza 7 | aarao 8 | abadia 9 | abdala 10 | abdias 11 | abdiel 12 | abel 13 | abelarde 14 | abelardo 15 | abele 16 | abelia 17 | abelino 18 | abella 19 | abiail 20 | abiatar 21 | abiel 22 | abiezer 23 | abigail 24 | abilio 25 | abinadabe 26 | abiner 27 | abisai 28 | abner 29 | abraao 30 | abrao 31 | abreu 32 | acacia 33 | acacio 34 | acassia 35 | acassio 36 | acemira 37 | acelino 38 | acucena 39 | ada 40 | adail 41 | adailsa 42 | adailson 43 | adailton 44 | adailza 45 | adair 46 | adairce 47 | adalberto 48 | adalgisa 49 | adalmir 50 | adalmiro 51 | adalmo 52 | adalto 53 | adalton 54 | adamantino 55 | adamastor 56 | adao 57 | adauto 58 | adelaide 59 | adelaine 60 | adelba 61 | adelia 62 | adeliana 63 | adeliane 64 | adelice 65 | adelina 66 | adelindo 67 | adelino 68 | adelio 69 | adelmar 70 | adelmira 71 | adelmiro 72 | adelmo 73 | adelson 74 | adelvania 75 | ademar 76 | ademara 77 | ademilda 78 | ademir 79 | adenilce 80 | adenilsa 81 | adenilza 82 | adenise 83 | aderio 84 | adevania 85 | adiel 86 | adilene 87 | adilio 88 | adilson 89 | adleide 90 | admilson 91 | adna 92 | adolfo 93 | adonai 94 | adonay 95 | adones 96 | adonias 97 | adoniel 98 | adonilda 99 | adonilo 100 | adonilson 101 | adonis 102 | adonyel 103 | adonys 104 | adreisa 105 | adriana 106 | adriane 107 | adriano 108 | adriel 109 | adriele 110 | adrieli 111 | adrielle 112 | adrielli 113 | adrielly 114 | adriely 115 | adriene 116 | adrierri 117 | adrierry 118 | adrisia 119 | advaldo 120 | aecio 121 | aeron 122 | affonso 123 | afonsina 124 | afonsino 125 | afonso 126 | afrania 127 | afranio 128 | agamenon 129 | agata 130 | agatha 131 | agda 132 | agenor 133 | aghata 134 | agildo 135 | agostinho 136 | aguero 137 | aguiar 138 | aguilar 139 | aguinaldo 140 | ahslei 141 | ahsley 142 | ailson 143 | ailton 144 | aimara 145 | aimone 146 | airam 147 | airao 148 | aires 149 | airton 150 | aisha 151 | aisla 152 | alaide 153 | alan 154 | alana 155 | alberico 156 | alberta 157 | alberto 158 | alcebiades 159 | alcelina 160 | alceu 161 | alcibiades 162 | alcides 163 | alcina 164 | alcinda 165 | alcindo 166 | alcino 167 | alcione 168 | aldair 169 | aldara 170 | aldeide 171 | aldeidia 172 | aldemar 173 | aldemara 174 | aldeneide 175 | aldenir 176 | aldo 177 | aldonio 178 | aleandra 179 | alecsandro 180 | alejandro 181 | alessandra 182 | alessandro 183 | alessia 184 | alete 185 | alex 186 | alexa 187 | alexander 188 | alexandra 189 | alexandre 190 | alexandrino 191 | alexandro 192 | alexia 193 | alexis 194 | alexsander 195 | alexsandra 196 | alexsandro 197 | alexsania 198 | alexssandra 199 | alfonso 200 | alfreda 201 | alfredo 202 | aliana 203 | aliandra 204 | aliandro 205 | aliane 206 | alice 207 | alicia 208 | alicy 209 | alicya 210 | alida 211 | alina 212 | aline 213 | alirio 214 | alison 215 | alissani 216 | alisson 217 | alitio 218 | allan 219 | allana 220 | allexia 221 | allexya 222 | alline 223 | allyne 224 | almeida 225 | almerinda 226 | almesinda 227 | almira 228 | almiro 229 | aloisio 230 | alonso 231 | altair 232 | altamir 233 | altamira 234 | altamiro 235 | altemira 236 | altina 237 | altino 238 | luan 239 | luana 240 | alva 241 | alvarenga 242 | alvares 243 | alvarina 244 | alvarino 245 | alvaro 246 | alvin 247 | alycia 248 | alyson 249 | alyssani 250 | alysson 251 | alzira 252 | amadeu 253 | amado 254 | amair 255 | amalia 256 | amancio 257 | amanda 258 | amandina 259 | amara 260 | amaral 261 | amarildo 262 | amarilio 263 | amauri 264 | amelia 265 | amelio 266 | americo 267 | amilton 268 | aminata 269 | amir 270 | amiude 271 | amiur 272 | amizai 273 | amonrra 274 | amorim 275 | amorina 276 | amorzinda 277 | amos 278 | ana 279 | anabel 280 | anabela 281 | anacleto 282 | anael 283 | anahi 284 | anaide 285 | anaisa 286 | analdina 287 | analia 288 | analice 289 | analide 290 | analisa 291 | analiza 292 | anami 293 | ananda 294 | ananias 295 | anastacia 296 | anastacio 297 | anatilde 298 | anderson 299 | andiara 300 | andrada 301 | andrade 302 | andraline 303 | andralucia 304 | andre 305 | andrea 306 | andreane 307 | andreas 308 | andrei 309 | andreia 310 | andreina 311 | andreisa 312 | andreiza 313 | andrelina 314 | andres 315 | andresa 316 | andressa 317 | andrev 318 | andrevs 319 | andrew 320 | andrews 321 | andrey 322 | andreza 323 | andrieli 324 | andrielle 325 | andriely 326 | andris 327 | androei 328 | androey 329 | ane 330 | anelisa 331 | anes 332 | anesia 333 | anesio 334 | anete 335 | anezia 336 | anfer 337 | angel 338 | angela 339 | angelica 340 | angelina 341 | angelita 342 | angelo 343 | aniana 344 | anibal 345 | anielo 346 | anilcileia 347 | anira 348 | anisia 349 | anisio 350 | anita 351 | anna 352 | annelisa 353 | anni 354 | annister 355 | anny 356 | annyster 357 | anselmo 358 | anteia 359 | antelmo 360 | antenor 361 | anthoni 362 | anthony 363 | antonela 364 | antonella 365 | antonelo 366 | antonia 367 | antonieta 368 | antonina 369 | antonio 370 | antunes 371 | antunez 372 | any 373 | anyster 374 | anzeluce 375 | aparecida 376 | aparecido 377 | aparicio 378 | apoliana 379 | apolinario 380 | apolo 381 | apolonio 382 | aprigio 383 | aquidauana 384 | aquila 385 | aquiles 386 | aquimeleque 387 | aquires 388 | arabela 389 | aracele 390 | araceli 391 | araci 392 | arade 393 | aradhana 394 | aradheia 395 | aradheya 396 | aradhia 397 | aradhna 398 | aradhya 399 | aradi 400 | aradia 401 | aradna 402 | aragon 403 | arani 404 | arao 405 | araujo 406 | arcadia 407 | arcadio 408 | arcelino 409 | arcelio 410 | arcilio 411 | arde 412 | ardom 413 | areli 414 | aretha 415 | argemira 416 | argemiro 417 | argos 418 | ariadine 419 | ariadinei 420 | ariadna 421 | ariadne 422 | ariadni 423 | ariadny 424 | ariana 425 | ariane 426 | aricelia 427 | ariel 428 | ariela 429 | ariele 430 | arielem 431 | ariella 432 | arielle 433 | arielli 434 | arielly 435 | arielma 436 | ariete 437 | arinda 438 | arine 439 | arion 440 | aristela 441 | aristeu 442 | ariston 443 | aristoteles 444 | arlan 445 | arlanda 446 | arlene 447 | arlete 448 | arlinda 449 | arlindo 450 | armandina 451 | armandino 452 | armando 453 | armenia 454 | armenio 455 | arminda 456 | arnaldo 457 | arode 458 | aroldo 459 | aron 460 | arqueleu 461 | arquimendes 462 | arquiminio 463 | arquimino 464 | arsenio 465 | artemisia 466 | arthur 467 | artina 468 | artur 469 | aryadna 470 | aryane 471 | asael 472 | asaias 473 | asbel 474 | aselio 475 | aselmo 476 | asena 477 | aseredo 478 | asevedo 479 | ashlei 480 | ashley 481 | ashllei 482 | ashlley 483 | asriel 484 | assis 485 | assuncao 486 | astor 487 | astorga 488 | astride 489 | ataiane 490 | ataide 491 | ataides 492 | atalia 493 | atalice 494 | atara 495 | athauan 496 | athos 497 | atila 498 | atilio 499 | atina 500 | atirson 501 | atisla 502 | atos 503 | audair 504 | augusta 505 | augusto 506 | aurea 507 | aurelia 508 | aurelio 509 | auria 510 | aurita 511 | aurora 512 | ausenda 513 | ausendo 514 | auxilia 515 | auxiliadora 516 | avair 517 | avani 518 | avelina 519 | avelino 520 | aventino 521 | avila 522 | avilar 523 | aviles 524 | avilmar 525 | avilson 526 | axel 527 | ayala 528 | ayck 529 | aymara 530 | ayres 531 | aysha 532 | aysla 533 | ayson 534 | azael 535 | azaquiel 536 | azareel 537 | azarias 538 | azazias 539 | azelio 540 | azevedo 541 | aziria 542 | azor 543 | azur 544 | babete 545 | babette 546 | balbina 547 | balraj 548 | baltazar 549 | barbara 550 | barbra 551 | barnabe 552 | barroso 553 | bartolomeu 554 | basilia 555 | basilio 556 | batista 557 | beata 558 | beatrice 559 | beatrix 560 | beatriz 561 | bebeto 562 | bebiana 563 | bela 564 | belarmina 565 | belarmino 566 | belchior 567 | belinda 568 | belisa 569 | bella 570 | belle 571 | belmira 572 | belmiro 573 | benedicta 574 | benedicto 575 | benedita 576 | benedito 577 | benicio 578 | benilde 579 | benito 580 | benjamim 581 | benjamin 582 | bento 583 | benvinda 584 | benvindo 585 | beraldo 586 | berenice 587 | berenyce 588 | bernadete 589 | bernadette 590 | bernard 591 | bernarda 592 | bernardino 593 | bernardo 594 | berta 595 | bertha 596 | betania 597 | bete 598 | beth 599 | betina 600 | beto 601 | bianca 602 | bianka 603 | biatriz 604 | blanche 605 | blenda 606 | bonifacia 607 | bonifacio 608 | boris 609 | branca 610 | branco 611 | brandao 612 | brandon 613 | brandovn 614 | brandown 615 | braulio 616 | brenda 617 | brendha 618 | breno 619 | brian 620 | briana 621 | briane 622 | brianne 623 | bridget 624 | brigda 625 | brigida 626 | brigido 627 | brigite 628 | brigitte 629 | brione 630 | brulielle 631 | bruna 632 | brunete 633 | bruniele 634 | bruno 635 | bryan 636 | cabral 637 | cacilda 638 | caco 639 | caetano 640 | caim 641 | caina 642 | caio 643 | caique 644 | caleb 645 | caled 646 | calina 647 | calisto 648 | cameron 649 | camila 650 | camille 651 | camilo 652 | candida 653 | candido 654 | carina 655 | carla 656 | carli 657 | carlito 658 | carlo 659 | carlos 660 | carlota 661 | carly 662 | carmela 663 | carmelita 664 | carmelo 665 | carmem 666 | carmen 667 | carmo 668 | carola 669 | carolina 670 | caroline 671 | carrie 672 | carter 673 | casimiro 674 | cassandra 675 | cassia 676 | cassiana 677 | cassiane 678 | cassiano 679 | cassio 680 | catarina 681 | catherine 682 | catrina 683 | caua 684 | cauan 685 | caue 686 | cecilia 687 | cefas 688 | celeste 689 | celestino 690 | celia 691 | celine 692 | celini 693 | celiny 694 | celma 695 | cesar 696 | cezar 697 | charlene 698 | charlie 699 | charlote 700 | charlotte 701 | cherri 702 | cherry 703 | chiara 704 | chico 705 | chloe 706 | christian 707 | christiane 708 | christofer 709 | cibele 710 | cicera 711 | cicero 712 | cid 713 | cilene 714 | cinara 715 | cipriano 716 | cirilo 717 | ciro 718 | claire 719 | claiton 720 | clara 721 | clare 722 | clarice 723 | clarinda 724 | clarissa 725 | clarisse 726 | clark 727 | claudia 728 | claudiana 729 | claudiano 730 | claudina 731 | claudine 732 | claudio 733 | claudionor 734 | clayton 735 | cleber 736 | cleia 737 | cleo 738 | clotilde 739 | dafne 740 | daiane 741 | daisi 742 | daisy 743 | dalia 744 | dalvina 745 | damaris 746 | damasceno 747 | damasio 748 | damiao 749 | damon 750 | dandara 751 | daniel 752 | daniela 753 | danielle 754 | danila 755 | danilo 756 | dante 757 | danton 758 | danuta 759 | daphne 760 | darci 761 | darcio 762 | daria 763 | darius 764 | darlene 765 | daros 766 | darvin 767 | darwin 768 | davena 769 | davi 770 | david 771 | davidson 772 | davila 773 | davina 774 | dayane 775 | debora 776 | deborah 777 | decio 778 | deise 779 | dejanir 780 | dejanira 781 | delano 782 | delfim 783 | delfina 784 | delio 785 | delmar 786 | delmiro 787 | demeter 788 | demetria 789 | demetrio 790 | demetrius 791 | deniel 792 | denilson 793 | denis 794 | denise 795 | denzel 796 | deocleciano 797 | deoclesio 798 | deodato 799 | deolinda 800 | derek 801 | derick 802 | desire 803 | desiree 804 | deusdedit 805 | devair 806 | devilson 807 | dexter 808 | diana 809 | diane 810 | dickson 811 | diego 812 | dilan 813 | dilermando 814 | dilma 815 | dilza 816 | dimas 817 | dimitre 818 | dimitri 819 | dina 820 | dinah 821 | dinair 822 | diniz 823 | dinora 824 | diocleciano 825 | diogenes 826 | diogo 827 | diomar 828 | diomedes 829 | dione 830 | dionisio 831 | dirce 832 | dirceu 833 | diva 834 | divino 835 | djalma 836 | djamila 837 | dolores 838 | domenico 839 | dominga 840 | dominique 841 | donatella 842 | ebert 843 | eddi 844 | eddy 845 | edeline 846 | eder 847 | ederson 848 | edgar 849 | edgard 850 | edileusa 851 | edilson 852 | edina 853 | edineia 854 | edipo 855 | edivaldo 856 | edmar 857 | edmara 858 | edmundo 859 | ednaldo 860 | ednalva 861 | edson 862 | eduarda 863 | eduardo 864 | edvaldo 865 | egon 866 | eike 867 | elaine 868 | elane 869 | elba 870 | elder 871 | eleanor 872 | elen 873 | elena 874 | elenice 875 | elia 876 | eliabe 877 | eliana 878 | eliane 879 | eliaquim 880 | elias 881 | elida 882 | eliel 883 | eliete 884 | eliezer 885 | elis 886 | elisa 887 | elisabete 888 | elisabeth 889 | elisangela 890 | elise 891 | eliseu 892 | elissa 893 | eliza 894 | elizabete 895 | elizabeth 896 | elizete 897 | ellen 898 | elma 899 | eloa 900 | eloah 901 | eloi 902 | eloisa 903 | eloise 904 | elsa 905 | elson 906 | elton 907 | elvira 908 | elvis 909 | elza 910 | emanuel 911 | emanuela 912 | emanueli 913 | emanuelli 914 | emanuelly 915 | emerson 916 | emili 917 | emilia 918 | emiliana 919 | emiliano 920 | emilie 921 | emilio 922 | emilli 923 | emilly 924 | emily 925 | emma 926 | emmanuelle 927 | enedina 928 | eneida 929 | enio 930 | enoque 931 | enos 932 | enrico 933 | enrique 934 | enzo 935 | eraldo 936 | erasmo 937 | eriberto 938 | eric 939 | erica 940 | erick 941 | erika 942 | ermelinda 943 | fabian 944 | fabiana 945 | fabiane 946 | fabiano 947 | fabiene 948 | fabienne 949 | fabio 950 | fabiola 951 | fabrice 952 | fabricia 953 | fabricio 954 | fabrizio 955 | fadel 956 | fagundes 957 | fahir 958 | falcao 959 | fani 960 | fanni 961 | fanny 962 | fany 963 | farah 964 | farell 965 | farid 966 | farida 967 | farilda 968 | faruk 969 | fatima 970 | fatma 971 | fauna 972 | fausto 973 | feitosa 974 | felicia 975 | feliciano 976 | feliciene 977 | felicio 978 | felina 979 | felipe 980 | felisa 981 | felisberto 982 | felismino 983 | fernanda 984 | fernandes 985 | fernandino 986 | fernando 987 | ferraz 988 | ferreira 989 | fidel 990 | filemon 991 | fileto 992 | filinto 993 | filipa 994 | filipe 995 | filippo 996 | filomena 997 | fineas 998 | firmino 999 | flausino 1000 | flavia 1001 | flaviana 1002 | flaviano 1003 | flavie 1004 | flavio 1005 | fleuri 1006 | fleury 1007 | floid 1008 | floide 1009 | flora 1010 | florbela 1011 | florencia 1012 | florentina 1013 | florentino 1014 | floriana 1015 | floriano 1016 | florinda 1017 | floripedes 1018 | floripes 1019 | florisbela 1020 | florisvaldo 1021 | floyd 1022 | fonseca 1023 | fontes 1024 | fontoura 1025 | fortunato 1026 | franceline 1027 | francelino 1028 | francesca 1029 | francesco 1030 | franciele 1031 | francine 1032 | francisca 1033 | francisco 1034 | franclim 1035 | franco 1036 | francois 1037 | francoise 1038 | franklin 1039 | frederica 1040 | gabriel 1041 | gabriela 1042 | gabriele 1043 | gabrieli 1044 | gabrielle 1045 | gael 1046 | gaio 1047 | galadrie 1048 | galdino 1049 | galeno 1050 | galileu 1051 | galvao 1052 | galvino 1053 | gamaliel 1054 | gardenia 1055 | garibaldi 1056 | garrido 1057 | gastao 1058 | gaudencio 1059 | geane 1060 | geanne 1061 | gedeao 1062 | geisa 1063 | geisila 1064 | geisla 1065 | gemma 1066 | genaro 1067 | genesio 1068 | genesis 1069 | genival 1070 | genivaldo 1071 | genoveva 1072 | gentil 1073 | george 1074 | georges 1075 | georgete 1076 | georgia 1077 | georgina 1078 | geovana 1079 | geovane 1080 | geralda 1081 | geraldino 1082 | geraldo 1083 | gerardo 1084 | gerhard 1085 | germana 1086 | gerusa 1087 | geruza 1088 | gervasio 1089 | gessica 1090 | ghislaine 1091 | giacomo 1092 | giane 1093 | giani 1094 | gianina 1095 | giannina 1096 | gilberto 1097 | gilca 1098 | gilcimar 1099 | gilda 1100 | gildo 1101 | gilmar 1102 | gilmara 1103 | gilson 1104 | gilvan 1105 | gilvaneide 1106 | gioconda 1107 | giordana 1108 | giorgia 1109 | giovana 1110 | giovani 1111 | giovanna 1112 | giovanni 1113 | giselda 1114 | gisele 1115 | giseli 1116 | gislaine 1117 | gisleine 1118 | giulia 1119 | giuseppe 1120 | giuseppina 1121 | gladis 1122 | glauce 1123 | glaucia 1124 | glauco 1125 | gleice 1126 | gleide 1127 | gleise 1128 | gleison 1129 | gleyce 1130 | golias 1131 | gomes 1132 | goncalo 1133 | gordea 1134 | goreti 1135 | gotardo 1136 | graca 1137 | graciana 1138 | graciela 1139 | graciliano 1140 | gracinda 1141 | gracindo 1142 | graziela 1143 | habel 1144 | hamilton 1145 | hanah 1146 | hanani 1147 | hannah 1148 | hanni 1149 | harahel 1150 | harlei 1151 | harley 1152 | harold 1153 | harri 1154 | harry 1155 | hassan 1156 | havana 1157 | havanna 1158 | havena 1159 | hazael 1160 | haziel 1161 | heber 1162 | hebert 1163 | hector 1164 | hedda 1165 | heder 1166 | hedeson 1167 | heitor 1168 | helber 1169 | helbert 1170 | helbia 1171 | helcias 1172 | helder 1173 | helen 1174 | helena 1175 | helene 1176 | heleno 1177 | helida 1178 | helio 1179 | hellen 1180 | hellena 1181 | hellenna 1182 | heloisa 1183 | heloise 1184 | helvina 1185 | helvis 1186 | henedina 1187 | henri 1188 | henrike 1189 | henrique 1190 | henriqueta 1191 | henry 1192 | hera 1193 | heradia 1194 | hercilia 1195 | herculano 1196 | hercules 1197 | herman 1198 | hermano 1199 | hermenegildo 1200 | hermine 1201 | hermione 1202 | hermogenes 1203 | hernestina 1204 | hernesto 1205 | herodes 1206 | heron 1207 | herondina 1208 | heros 1209 | hian 1210 | hiara 1211 | higor 1212 | hilaria 1213 | hilbert 1214 | hilda 1215 | hilde 1216 | hildebrando 1217 | hildon 1218 | hilma 1219 | hilton 1220 | hipolito 1221 | hiran 1222 | hirana 1223 | homero 1224 | honorata 1225 | iaco 1226 | iago 1227 | iamana 1228 | iamara 1229 | iamo 1230 | iana 1231 | iara 1232 | iasmin 1233 | ibacem 1234 | ibaque 1235 | ibiraci 1236 | ibirajara 1237 | ibrahim 1238 | icanor 1239 | icario 1240 | icaro 1241 | ichiro 1242 | idalia 1243 | idalino 1244 | idalio 1245 | idomeneu 1246 | idomeu 1247 | idril 1248 | ieda 1249 | ifigenia 1250 | igaci 1251 | iglesias 1252 | ignes 1253 | ignez 1254 | igor 1255 | iguatem 1256 | ilda 1257 | ilsa 1258 | iluminato 1259 | ilza 1260 | imael 1261 | ina 1262 | inacia 1263 | inacio 1264 | indira 1265 | ines 1266 | inez 1267 | ingrid 1268 | ingride 1269 | inocencia 1270 | inocencio 1271 | iolanda 1272 | iona 1273 | ione 1274 | iracema 1275 | iraci 1276 | iran 1277 | irani 1278 | irene 1279 | irineu 1280 | iris 1281 | irma 1282 | isabel 1283 | isabela 1284 | isabele 1285 | isabella 1286 | isabelli 1287 | isac 1288 | isadora 1289 | isaia 1290 | isaiah 1291 | isaias 1292 | isaque 1293 | isaura 1294 | isauro 1295 | iseu 1296 | isidora 1297 | isis 1298 | islei 1299 | islena 1300 | isley 1301 | ismael 1302 | ismenio 1303 | isnardo 1304 | isolina 1305 | israel 1306 | itacira 1307 | itagiba 1308 | italia 1309 | italo 1310 | itamar 1311 | ithamar 1312 | iuna 1313 | ivai 1314 | ivaldir 1315 | ivan 1316 | ivana 1317 | ivanete 1318 | ivani 1319 | ivanice 1320 | ivete 1321 | ivo 1322 | ivone 1323 | ivonete 1324 | izabel 1325 | jaci 1326 | jaciara 1327 | jacimar 1328 | jacira 1329 | jaco 1330 | jacob 1331 | jacobina 1332 | jacqueline 1333 | jacques 1334 | jade 1335 | jader 1336 | jailson 1337 | jaime 1338 | jaine 1339 | jair 1340 | jairo 1341 | jaisom 1342 | jakson 1343 | james 1344 | jamila 1345 | jamile 1346 | jamilli 1347 | jamilly 1348 | janaina 1349 | jandira 1350 | jane 1351 | janete 1352 | janice 1353 | janine 1354 | janio 1355 | jaqueline 1356 | jardel 1357 | jasmim 1358 | jasmin 1359 | jasmine 1360 | jave 1361 | jayne 1362 | jaziel 1363 | jean 1364 | jeane 1365 | jeanne 1366 | jefferson 1367 | jemime 1368 | jenifer 1369 | jennifer 1370 | jeova 1371 | jeremias 1372 | jeronimo 1373 | jerusa 1374 | jesebel 1375 | jesse 1376 | jessi 1377 | jessica 1378 | jessy 1379 | jesuina 1380 | jesus 1381 | jhonny 1382 | joana 1383 | joao 1384 | joaquim 1385 | joaquina 1386 | jocasta 1387 | jocastra 1388 | joel 1389 | joelson 1390 | joice 1391 | jonas 1392 | jonathan 1393 | jordana 1394 | jordano 1395 | jordao 1396 | jorge 1397 | jose 1398 | joseane 1399 | josefa 1400 | joselia 1401 | josenilda 1402 | joseph 1403 | josiana 1404 | josias 1405 | josimar 1406 | josue 1407 | jovial 1408 | jovita 1409 | joyce 1410 | juan 1411 | juarana 1412 | juarez 1413 | juca 1414 | judas 1415 | judite 1416 | judith 1417 | julia 1418 | juliana 1419 | juliane 1420 | julianne 1421 | juliano 1422 | julie 1423 | julieta 1424 | juliete 1425 | julio 1426 | julliana 1427 | junio 1428 | junior 1429 | juraci 1430 | lacerda 1431 | laercio 1432 | laerte 1433 | laiane 1434 | laila 1435 | lair 1436 | lais 1437 | laisa 1438 | lamar 1439 | landim 1440 | lara 1441 | larisa 1442 | larissa 1443 | lauane 1444 | lauanne 1445 | laudelino 1446 | laudemir 1447 | laura 1448 | laureano 1449 | lauriane 1450 | lauriano 1451 | laurinda 1452 | laurindo 1453 | lauro 1454 | lavinea 1455 | lavinia 1456 | layla 1457 | lazaro 1458 | leal 1459 | leander 1460 | leandro 1461 | leda 1462 | leia 1463 | leide 1464 | leidiane 1465 | leila 1466 | leita 1467 | lenice 1468 | lenita 1469 | leomar 1470 | leomir 1471 | leonardo 1472 | leonel 1473 | leonidas 1474 | leonildes 1475 | leonor 1476 | leopoldino 1477 | leopoldo 1478 | leticia 1479 | levir 1480 | liandra 1481 | lidia 1482 | lidiane 1483 | ligia 1484 | lilian 1485 | liliana 1486 | liliane 1487 | lilith 1488 | lincon 1489 | lindalva 1490 | lindaura 1491 | lindomar 1492 | lindorifo 1493 | lineu 1494 | lionel 1495 | lisete 1496 | lissandra 1497 | livia 1498 | lorena 1499 | lorenca 1500 | lorenzo 1501 | lorraine 1502 | lorrane 1503 | louis 1504 | louise 1505 | lourdes 1506 | lourenzo 1507 | luan 1508 | luana 1509 | luara 1510 | lucas 1511 | lucca 1512 | luceia 1513 | lucelia 1514 | lucena 1515 | lucia 1516 | luciana 1517 | luciano 1518 | luciene 1519 | lucifer 1520 | lucimar 1521 | lucinda 1522 | lucineide 1523 | lucio 1524 | ludovico 1525 | luigi 1526 | luis 1527 | luisa 1528 | luise 1529 | luiz 1530 | luiza 1531 | maciel 1532 | mafalda 1533 | magali 1534 | magda 1535 | magna 1536 | magno 1537 | maiara 1538 | maicon 1539 | maisa 1540 | maite 1541 | malaquias 1542 | malu 1543 | mamede 1544 | manoel 1545 | manoela 1546 | manuel 1547 | manuela 1548 | manuele 1549 | mara 1550 | marcela 1551 | marceline 1552 | marcelino 1553 | marcelo 1554 | marcilene 1555 | marcio 1556 | marco 1557 | marcomede 1558 | marcondes 1559 | marcos 1560 | marcus 1561 | margarete 1562 | margarida 1563 | maria 1564 | mariah 1565 | mariana 1566 | mariele 1567 | marilda 1568 | marilene 1569 | marilia 1570 | marina 1571 | marinalva 1572 | marine 1573 | marinne 1574 | marino 1575 | mario 1576 | marion 1577 | marisa 1578 | maristela 1579 | marivaldo 1580 | marli 1581 | marlon 1582 | marques 1583 | marta 1584 | marvin 1585 | mateo 1586 | mateus 1587 | matheus 1588 | matias 1589 | matilde 1590 | matteo 1591 | maura 1592 | mauricio 1593 | maurilio 1594 | mauro 1595 | maximiliano 1596 | maximus 1597 | maxvel 1598 | maxwel 1599 | mayara 1600 | maycon 1601 | meire 1602 | melchior 1603 | melina 1604 | melinda 1605 | melissa 1606 | mendes 1607 | messias 1608 | micael 1609 | micaela 1610 | michael 1611 | michel 1612 | michelangelo 1613 | michele 1614 | michelle 1615 | miguel 1616 | mikaelli 1617 | mikaelly 1618 | milena 1619 | milene 1620 | milton 1621 | mirela 1622 | miriam 1623 | misael 1624 | mizael 1625 | moacir 1626 | moises 1627 | monalisa 1628 | monica 1629 | monique 1630 | moraes 1631 | morais 1632 | moreira 1633 | mota 1634 | mozart 1635 | muriel 1636 | naama 1637 | naara 1638 | nabal 1639 | nadal 1640 | nadia 1641 | nadir 1642 | nagibe 1643 | naiade 1644 | naiane 1645 | naiara 1646 | naim 1647 | najla 1648 | naldo 1649 | nanci 1650 | nancy 1651 | nanete 1652 | nanette 1653 | nanine 1654 | naomi 1655 | naor 1656 | napeia 1657 | napoleao 1658 | nara 1659 | nascimento 1660 | nassera 1661 | nata 1662 | natacha 1663 | natal 1664 | natalia 1665 | natalicio 1666 | natalie 1667 | natalino 1668 | natan 1669 | natanael 1670 | natasha 1671 | nathalia 1672 | nathan 1673 | nayara 1674 | nazare 1675 | nazareno 1676 | nazaria 1677 | nazario 1678 | nazira 1679 | neandro 1680 | neemias 1681 | neiane 1682 | neica 1683 | neida 1684 | neide 1685 | neilson 1686 | neimar 1687 | neiva 1688 | nelio 1689 | nelita 1690 | nelli 1691 | nelly 1692 | nelson 1693 | nemeia 1694 | nemias 1695 | nenia 1696 | nercia 1697 | nereide 1698 | nereu 1699 | nereza 1700 | neria 1701 | nerina 1702 | nero 1703 | neusa 1704 | nevton 1705 | newton 1706 | neymar 1707 | nicacio 1708 | nicanor 1709 | niceia 1710 | nicholas 1711 | nicia 1712 | nicias 1713 | nicodemus 1714 | nicolau 1715 | nicole 1716 | nicolete 1717 | nicolette 1718 | nicolino 1719 | nicollas 1720 | nicomedes 1721 | nidia 1722 | nikolai 1723 | nilce 1724 | nilda 1725 | nildete 1726 | nildo 1727 | nilma 1728 | nilo 1729 | nilton 1730 | nilza 1731 | nise 1732 | nivaldo 1733 | nivea 1734 | noe 1735 | noelia 1736 | noemi 1737 | noemia 1738 | nolina 1739 | nora 1740 | norcia 1741 | obdias 1742 | obede 1743 | oberon 1744 | oberto 1745 | octavio 1746 | odair 1747 | odalia 1748 | odaliana 1749 | odaliane 1750 | odalio 1751 | odalis 1752 | odaliz 1753 | odalys 1754 | odara 1755 | odelio 1756 | odemar 1757 | odemara 1758 | odemiro 1759 | oder 1760 | oderico 1761 | oderlan 1762 | oderlande 1763 | oderlania 1764 | oderlei 1765 | oderlene 1766 | oderli 1767 | oderlon 1768 | oderly 1769 | oderso 1770 | odete 1771 | odilardo 1772 | odilio 1773 | odilon 1774 | odin 1775 | odinea 1776 | odineia 1777 | odir 1778 | odira 1779 | odirene 1780 | odirlei 1781 | odoria 1782 | odorico 1783 | oduvaldo 1784 | oestiano 1785 | ofelia 1786 | ofelio 1787 | ohana 1788 | ohanna 1789 | olavo 1790 | olga 1791 | olinda 1792 | oliveira 1793 | oliver 1794 | olivia 1795 | oma 1796 | omaia 1797 | omaiara 1798 | omar 1799 | omara 1800 | ondina 1801 | onelio 1802 | onesio 1803 | onivalda 1804 | onivaldo 1805 | onivane 1806 | onofre 1807 | ordalia 1808 | orestes 1809 | orestina 1810 | orestino 1811 | orfeu 1812 | oriana 1813 | oricema 1814 | origenes 1815 | oripes 1816 | orlando 1817 | osama 1818 | osami 1819 | oscar 1820 | oseias 1821 | osmar 1822 | osni 1823 | osorio 1824 | osvald 1825 | osvaldo 1826 | oswald 1827 | oswaldo 1828 | otaviana 1829 | otaviano 1830 | otavio 1831 | othon 1832 | otilia 1833 | otiliana 1834 | otiliano 1835 | otilio 1836 | oton 1837 | otoniel 1838 | otoniela 1839 | otoniele 1840 | otto 1841 | ovidio 1842 | pablo 1843 | pacheco 1844 | paco 1845 | padilha 1846 | padua 1847 | paiva 1848 | paladino 1849 | palani 1850 | palina 1851 | palino 1852 | palmira 1853 | palmiro 1854 | paloma 1855 | palova 1856 | pamela 1857 | pamella 1858 | pancho 1859 | paola 1860 | paolo 1861 | parvathi 1862 | parvati 1863 | pascal 1864 | pascoal 1865 | pasini 1866 | patricia 1867 | patriciane 1868 | patricio 1869 | patrick 1870 | patrik 1871 | patrocles 1872 | paula 1873 | paulete 1874 | paulina 1875 | pauline 1876 | paullo 1877 | paulo 1878 | pavel 1879 | pedrina 1880 | pedrita 1881 | pedrito 1882 | pedro 1883 | peixoto 1884 | penelope 1885 | penha 1886 | peonia 1887 | pepita 1888 | peralda 1889 | peraldo 1890 | perci 1891 | percia 1892 | percida 1893 | percide 1894 | percilda 1895 | percildo 1896 | percival 1897 | percivaldo 1898 | percy 1899 | perdita 1900 | perdito 1901 | pereira 1902 | peres 1903 | perez 1904 | pericles 1905 | perola 1906 | perseu 1907 | peter 1908 | petra 1909 | petrina 1910 | petronilo 1911 | petronio 1912 | petroski 1913 | petrus 1914 | phelipe 1915 | piedade 1916 | piera 1917 | pierina 1918 | piero 1919 | pierre 1920 | pietra 1921 | pietro 1922 | pilar 1923 | pilatos 1924 | pires 1925 | pitagoras 1926 | placilda 1927 | placilene 1928 | plutao 1929 | poliana 1930 | poliane 1931 | policarpo 1932 | policasta 1933 | pololena 1934 | porcina 1935 | porcino 1936 | porfirio 1937 | posseidon 1938 | preciosa 1939 | preslei 1940 | presley 1941 | pricila 1942 | priscila 1943 | priscille 1944 | quanelia 1945 | quaresma 1946 | queila 1947 | queiliana 1948 | queiliane 1949 | queiliani 1950 | queiliany 1951 | queiros 1952 | queiroz 1953 | quele 1954 | quelen 1955 | queli 1956 | quelia 1957 | queliana 1958 | queliane 1959 | quelianni 1960 | quelianny 1961 | queliany 1962 | quelidonio 1963 | quelin 1964 | quemuel 1965 | quendira 1966 | quenia 1967 | quenide 1968 | quenidi 1969 | quenidy 1970 | quenil 1971 | quenilda 1972 | quenildi 1973 | quenildy 1974 | quenilie 1975 | quenille 1976 | quental 1977 | quercia 1978 | queren 1979 | querom 1980 | querubim 1981 | quesia 1982 | quesiane 1983 | quetele 1984 | queteli 1985 | quetelie 1986 | quetelin 1987 | queteria 1988 | quevedo 1989 | quezia 1990 | queziana 1991 | queziane 1992 | quicia 1993 | quiciana 1994 | quiciane 1995 | quilsea 1996 | quilsen 1997 | quilser 1998 | quimei 1999 | quimel 2000 | quimena 2001 | quimera 2002 | quimero 2003 | quimey 2004 | quin 2005 | quincas 2006 | quinn 2007 | quintana 2008 | quintiliano 2009 | quintilo 2010 | quintino 2011 | quira 2012 | quiria 2013 | quiriana 2014 | quiriane 2015 | quirino 2016 | quiromeu 2017 | quisia 2018 | quisiana 2019 | quisiane 2020 | quiteria 2021 | quiterio 2022 | quixote 2023 | quodelia 2024 | quodelis 2025 | quora 2026 | quorani 2027 | qustodia 2028 | qustodio 2029 | radames 2030 | rafael 2031 | rafaela 2032 | rahissa 2033 | rahyssa 2034 | raiane 2035 | raiden 2036 | raimunda 2037 | raimundo 2038 | raira 2039 | raisa 2040 | raissa 2041 | ramiro 2042 | ramon 2043 | ramona 2044 | ramos 2045 | ramses 2046 | rania 2047 | raniel 2048 | raniele 2049 | ranieri 2050 | ranilda 2051 | ranya 2052 | raoni 2053 | raquel 2054 | raven 2055 | rayane 2056 | rebeca 2057 | regina 2058 | reginaldo 2059 | regis 2060 | reinaldo 2061 | remi 2062 | remo 2063 | renan 2064 | renata 2065 | renato 2066 | rener 2067 | renita 2068 | renner 2069 | rhuan 2070 | rian 2071 | ribamar 2072 | ricarda 2073 | ricardo 2074 | richard 2075 | rick 2076 | rildo 2077 | rilei 2078 | riley 2079 | rinaldo 2080 | rita 2081 | rivaldo 2082 | roama 2083 | roberta 2084 | roberto 2085 | roberval 2086 | robson 2087 | rochelle 2088 | rodnei 2089 | rodney 2090 | rodolfo 2091 | rodrigo 2092 | rodrigues 2093 | roger 2094 | rogerio 2095 | romana 2096 | romario 2097 | romeo 2098 | romero 2099 | romeu 2100 | romildo 2101 | romualdo 2102 | romulo 2103 | ronaldo 2104 | ronan 2105 | rondinele 2106 | ronei 2107 | roney 2108 | ronildo 2109 | roque 2110 | rosa 2111 | rosalia 2112 | rosana 2113 | rosangela 2114 | rosaria 2115 | rosaura 2116 | rose 2117 | roseli 2118 | roselinde 2119 | rosely 2120 | rosemarie 2121 | rosemeire 2122 | rosilda 2123 | rosilene 2124 | rosimeri 2125 | rosina 2126 | rosita 2127 | rosivalda 2128 | rozalia 2129 | ruan 2130 | ruana 2131 | rubens 2132 | rubi 2133 | rubia 2134 | rubio 2135 | ryan 2136 | sabino 2137 | sabrina 2138 | safira 2139 | saimon 2140 | salatiel 2141 | sales 2142 | salete 2143 | salgado 2144 | salim 2145 | salomao 2146 | salome 2147 | salustiano 2148 | salustino 2149 | salvador 2150 | salviano 2151 | salvina 2152 | samantha 2153 | samara 2154 | samila 2155 | samir 2156 | samira 2157 | sampaio 2158 | samuel 2159 | sandoval 2160 | sandra 2161 | sandro 2162 | sansao 2163 | santiago 2164 | santorine 2165 | santos 2166 | sara 2167 | sarah 2168 | sasha 2169 | saturnino 2170 | saul 2171 | saulo 2172 | savio 2173 | saymon 2174 | schneider 2175 | seabra 2176 | sebastian 2177 | sebastiana 2178 | sebastiao 2179 | seixas 2180 | selena 2181 | serafim 2182 | serafina 2183 | serena 2184 | sergio 2185 | severina 2186 | severino 2187 | sheila 2188 | shirlei 2189 | shirley 2190 | sidnei 2191 | sidney 2192 | sigmara 2193 | silas 2194 | silva 2195 | silvana 2196 | silvano 2197 | silverio 2198 | silvesia 2199 | silvester 2200 | silvestre 2201 | silvio 2202 | simao 2203 | simeao 2204 | simon 2205 | simone 2206 | simplicia 2207 | simplicio 2208 | sinderi 2209 | sinderila 2210 | sinderina 2211 | sinesia 2212 | sinesio 2213 | singrid 2214 | sinval 2215 | siomara 2216 | sirlene 2217 | socorro 2218 | socrates 2219 | sofia 2220 | sofie 2221 | solange 2222 | solano 2223 | sonia 2224 | sophia 2225 | soraia 2226 | soraya 2227 | stanlei 2228 | stanley 2229 | stanrlei 2230 | stanrley 2231 | stefanie 2232 | stela 2233 | stephanie 2234 | sthefanni 2235 | sthefanny 2236 | sthefany 2237 | sucena 2238 | suelen 2239 | sueli 2240 | suellen 2241 | susane 2242 | susanne 2243 | tabata 2244 | tabatha 2245 | tabita 2246 | tabitha 2247 | tacia 2248 | taciane 2249 | taciano 2250 | taciara 2251 | taciele 2252 | tacio 2253 | tadeu 2254 | taiane 2255 | taila 2256 | tailor 2257 | taina 2258 | tainara 2259 | tais 2260 | taissa 2261 | tales 2262 | talia 2263 | talita 2264 | talles 2265 | tamara 2266 | tamires 2267 | tamiris 2268 | tancredo 2269 | tania 2270 | tarcia 2271 | tarciana 2272 | tarciane 2273 | tarciano 2274 | tarcisio 2275 | tarcya 2276 | tarsila 2277 | tarsilio 2278 | tatiana 2279 | tayla 2280 | telma 2281 | telmara 2282 | telnar 2283 | telnara 2284 | telnare 2285 | temir 2286 | tenorio 2287 | teobaldo 2288 | teodomiro 2289 | teodora 2290 | teodorico 2291 | teodoro 2292 | teodosio 2293 | teofilo 2294 | teotonio 2295 | tercia 2296 | terciana 2297 | terciane 2298 | terciani 2299 | terciano 2300 | terciany 2301 | tercio 2302 | teresa 2303 | tereza 2304 | tersio 2305 | tertuliano 2306 | thabata 2307 | thaina 2308 | thais 2309 | thalia 2310 | thalita 2311 | thalyta 2312 | thamires 2313 | thamiris 2314 | thara 2315 | thatiana 2316 | thiago 2317 | thialla 2318 | thiara 2319 | thiego 2320 | thielli 2321 | thielly 2322 | thierli 2323 | thierri 2324 | thierry 2325 | thifani 2326 | thomas 2327 | thor 2328 | thyago 2329 | thyalla 2330 | thyara 2331 | thyfany 2332 | tiago 2333 | tiana 2334 | tiberio 2335 | tiburcio 2336 | ticiana 2337 | ticiano 2338 | tiffani 2339 | tiffany 2340 | timoteo 2341 | tinoco 2342 | tobias 2343 | toledo 2344 | tomas 2345 | tome 2346 | toni 2347 | tony 2348 | trajano 2349 | tristao 2350 | tulio 2351 | uagda 2352 | uagna 2353 | uagne 2354 | uagner 2355 | ualace 2356 | ualbisson 2357 | ualisson 2358 | ualter 2359 | uanderson 2360 | uanderssom 2361 | uandra 2362 | uarlei 2363 | uarlem 2364 | uarlens 2365 | uarli 2366 | uarly 2367 | ubaldo 2368 | ubandara 2369 | uberlandia 2370 | ubira 2371 | ubiracema 2372 | ubiraci 2373 | ubiracy 2374 | ubirajara 2375 | ubiranan 2376 | ubirani 2377 | ubirapuan 2378 | ubirata 2379 | ubiratan 2380 | uda 2381 | udai 2382 | udal 2383 | udani 2384 | udari 2385 | uday 2386 | udison 2387 | ueberson 2388 | ueder 2389 | uederson 2390 | uedson 2391 | uelder 2392 | uelio 2393 | uelison 2394 | ueliton 2395 | uelton 2396 | ueltton 2397 | uemerson 2398 | uendel 2399 | uenderson 2400 | uenilson 2401 | ueriton 2402 | ueslei 2403 | uesley 2404 | ueverson 2405 | ueverton 2406 | ugeberson 2407 | ugo 2408 | uiara 2409 | uigor 2410 | uilas 2411 | uilton 2412 | uiraci 2413 | uiracy 2414 | uiran 2415 | uirana 2416 | uiranan 2417 | uiras 2418 | uirauna 2419 | ulandi 2420 | ulando 2421 | ulisses 2422 | ulysses 2423 | umberto 2424 | uraci 2425 | uriel 2426 | urlan 2427 | urlanda 2428 | ursula 2429 | ursulina 2430 | usher 2431 | usman 2432 | uzias 2433 | vagner 2434 | valclecio 2435 | valda 2436 | valdeci 2437 | valdeir 2438 | valdelice 2439 | valdemar 2440 | valdemiro 2441 | valdenice 2442 | valdenisea 2443 | valdete 2444 | valdimara 2445 | valdinei 2446 | valdineia 2447 | valdir 2448 | valdira 2449 | valdirene 2450 | valdison 2451 | valdivina 2452 | valdivino 2453 | valdo 2454 | valdomiro 2455 | valdson 2456 | valencio 2457 | valentin 2458 | valentina 2459 | valentine 2460 | valentino 2461 | valeria 2462 | valeriana 2463 | valeriano 2464 | valerio 2465 | valesca 2466 | valfredo 2467 | valfrido 2468 | valkiria 2469 | valmi 2470 | valmir 2471 | valnei 2472 | valquiria 2473 | valteno 2474 | valter 2475 | valternei 2476 | vanda 2477 | vanderlei 2478 | vanderleia 2479 | vanderli 2480 | vanderlice 2481 | vanderlina 2482 | vanderlino 2483 | vanderlisi 2484 | vando 2485 | vanessa 2486 | vania 2487 | vanusa 2488 | velma 2489 | venancio 2490 | venceslau 2491 | ventura 2492 | vera 2493 | veraldo 2494 | verginia 2495 | veriano 2496 | veridiana 2497 | verilda 2498 | verilde 2499 | verildia 2500 | verildo 2501 | verilene 2502 | verileni 2503 | verissimo 2504 | veronica 2505 | vicente 2506 | vicenzo 2507 | victor 2508 | victoria 2509 | victorine 2510 | vigilio 2511 | vilma 2512 | vincent 2513 | vincenzo 2514 | vinicio 2515 | vinicios 2516 | vinicius 2517 | vinturino 2518 | violeta 2519 | violetta 2520 | virgilia 2521 | virgilio 2522 | virginia 2523 | virgulino 2524 | viridiana 2525 | virna 2526 | vitaliano 2527 | vitalina 2528 | vitor 2529 | vitoria 2530 | vitorio 2531 | vivian 2532 | viviana 2533 | wellington 2534 | welliton 2535 | xaiana 2536 | xaiane 2537 | xaiani 2538 | xaiany 2539 | xande 2540 | xandi 2541 | xandy 2542 | xavier 2543 | ximenes 2544 | xuxa 2545 | zacarias 2546 | zafira 2547 | zaida 2548 | zaine 2549 | zaira 2550 | zamira 2551 | zamire 2552 | zana 2553 | zanata 2554 | zanato 2555 | zanei 2556 | zaneti 2557 | zanetti 2558 | zania 2559 | zaniel 2560 | zanior 2561 | zaqueu 2562 | zaquia 2563 | zaquias 2564 | zareth 2565 | zariel 2566 | zarina 2567 | zelda 2568 | zelia 2569 | zelio 2570 | zelmira 2571 | zena 2572 | zenaide 2573 | zeneide 2574 | zeni 2575 | zenilce 2576 | zenilda 2577 | zenildo 2578 | zenilton 2579 | zenir 2580 | zenite 2581 | zenna 2582 | zenobio 2583 | zenon 2584 | zilda 2585 | zildete 2586 | zilena 2587 | zilka 2588 | zilma 2589 | zoraide 2590 | zuleica 2591 | zuleide 2592 | zulene 2593 | zulmira 2594 | zumira 2595 | -------------------------------------------------------------------------------- /wordlists/03_common_words.txt: -------------------------------------------------------------------------------- 1 | admin 2 | master 3 | adm 4 | infra 5 | root 6 | guest 7 | server 8 | administrator 9 | wifi 10 | remoto 11 | visitante 12 | acesso 13 | ssh 14 | terminal 15 | service 16 | controle 17 | control 18 | ti 19 | info 20 | nti 21 | seguro 22 | pass 23 | senha 24 | linux 25 | windows 26 | win 27 | password 28 | pass 29 | secret 30 | segredo 31 | sql 32 | serial 33 | pw 34 | sys 35 | pwd 36 | passwd 37 | sistema 38 | system 39 | rede 40 | net 41 | sysadmin 42 | sysadm 43 | network 44 | asdfasdfasdf 45 | calvin 46 | -------------------------------------------------------------------------------- /wordlists/04_nicks.txt: -------------------------------------------------------------------------------- 1 | andy 2 | baba 3 | bebe 4 | bibi 5 | biliu 6 | binha 7 | binho 8 | biu 9 | bobo 10 | bubu 11 | chica 12 | chico 13 | chris 14 | cris 15 | dada 16 | deca 17 | dede 18 | dedeco 19 | delle 20 | didi 21 | dinei 22 | dodo 23 | dudu 24 | edu 25 | gabi 26 | gena 27 | genil 28 | gina 29 | jaja 30 | jana 31 | jeje 32 | jena 33 | jere 34 | jiji 35 | jojo 36 | juju 37 | jujuzinha 38 | juli 39 | july 40 | kija 41 | lena 42 | leninha 43 | linda 44 | lula 45 | mae 46 | maezinha 47 | malu 48 | maninha 49 | maninho 50 | mano 51 | manu 52 | milinha 53 | mozinho 54 | nana 55 | nena 56 | nene 57 | nina 58 | nono 59 | nuno 60 | rafa 61 | teca 62 | vida 63 | zeca 64 | zena 65 | zitinho 66 | zito 67 | yarinha 68 | wand 69 | wany 70 | -------------------------------------------------------------------------------- /wordlists/05_religion.txt: -------------------------------------------------------------------------------- 1 | jesus 2 | deus 3 | jesusmeama 4 | -------------------------------------------------------------------------------- /wordlists/06_soccer_teams.txt: -------------------------------------------------------------------------------- 1 | aalborgb 2 | aalesunds 3 | aberdeen 4 | academica 5 | acriano 6 | adanaspor 7 | aekatenas 8 | aieyndaf 9 | ajaccio 10 | ajaxcape 11 | alaves 12 | albacete 13 | albirexniigata 14 | alcorcon 15 | alemanniaaachen 16 | alianzalima 17 | alianzapetrolera 18 | allboys 19 | almeria 20 | altoacre 21 | amazulufc 22 | america 23 | americade 24 | americano 25 | amrokgangs 26 | anderlecht 27 | antalyaspor 28 | antofagasta 29 | april25 30 | aragua 31 | argentinosjuniors 32 | arouca 33 | arsenal 34 | ascoli 35 | astonvilla 36 | atalanta 37 | athleticbilbao 38 | atlante 39 | atlantida 40 | atlas 41 | atleticode 42 | atleticohuila 43 | atleticomineiro 44 | atleticonacional 45 | atleticoparanaense 46 | atleticorafaela 47 | aucas 48 | aucklandcity 49 | audax 50 | audaxrio 51 | aurora 52 | autoesporte 53 | auxerre 54 | avai 55 | avenida 56 | bacabal 57 | bage 58 | bahia 59 | bahiade 60 | balikesirspor 61 | balsas 62 | banfield 63 | bangu 64 | baralt 65 | baraunas 66 | barbalha 67 | barcelona 68 | barcelonab 69 | bare 70 | bari 71 | barramansa 72 | barranquilla 73 | barras 74 | bastia 75 | batatais 76 | bayernalzenau 77 | beira-mar 78 | belenenses 79 | belgrano 80 | bellinzona 81 | belojardim 82 | benfica 83 | benficab 84 | betim 85 | birminghamcity 86 | blackburnrovers 87 | blackpool 88 | blooming 89 | blumenau 90 | boaesporte 91 | boaviagem 92 | boavista 93 | bocajunior 94 | bocajuniors 95 | bocaunidos 96 | bolivar 97 | bologna 98 | boltonwanderers 99 | bonsucesso 100 | bordeaux 101 | botafogo 102 | bournemouth 103 | boyacachico 104 | brabrand 105 | bragantino 106 | brasiliense 107 | brentford 108 | brescia 109 | brest 110 | burnley 111 | bursaspor 112 | bushbucks 113 | cabofriense 114 | cagliari 115 | caicara 116 | caico 117 | caldasnovas 118 | caldense 119 | camapua 120 | cameta 121 | capelense 122 | carabobo 123 | caracas 124 | caracasb 125 | cararakicks 126 | catania 127 | catuense 128 | caversham 129 | caxias 130 | ceara 131 | ceilandia 132 | celtade 133 | ceo 134 | cerclebrugge 135 | cerezoosaka 136 | cerroporteno 137 | cerveira 138 | cesena 139 | chapecoense 140 | charleroi 141 | charltonathletic 142 | chelsea 143 | chemnitzer 144 | chepo 145 | chievo 146 | chorrillo 147 | cienciano 148 | cittadella 149 | cliper 150 | cobreloa 151 | colocolo 152 | colo-colo 153 | colon 154 | colorado 155 | comercial 156 | cordoba 157 | corinthians 158 | coritiba 159 | coronelbolognesi 160 | correcaminos 161 | cortulua 162 | costado 163 | criciuma 164 | crotone 165 | crucerodel 166 | cruzazul 167 | cruzeiro 168 | crystalpalace 169 | cucutadeportivo 170 | cuiaba 171 | dabkatowice 172 | dalinmyslenice 173 | dalumif 174 | defensay 175 | degerfors 176 | democratagv 177 | democratasl 178 | denizlispor 179 | deportesla 180 | deportesquindio 181 | deportestolima 182 | deportivoanzoategui 183 | deportivocali 184 | deportivocoopsol 185 | deportivocuenca 186 | deportivogenesis 187 | deportivola 188 | deportivomunicipal 189 | deportivopasto 190 | deportivopinoza 191 | deportivoquevedo 192 | deportivoquito 193 | deportivorecoleta 194 | deportivotachira 195 | derbycounty 196 | desportivaferroviaria 197 | desportivaguarabira 198 | desportivodas 199 | desportivode 200 | destroyers 201 | diadema 202 | dijon 203 | dinamo 204 | dinamokiev 205 | dinamomoscou 206 | djurgarden 207 | dniesterovidiopol 208 | dniprodnipropetrovsk 209 | dolcanzabki 210 | domiatclub 211 | dompedro 212 | douglashaig 213 | drukarzwarszawa 214 | dumbarton 215 | dundeefc 216 | dundeeunited 217 | dunedintechnical 218 | duquecaxiense 219 | duquede 220 | eastauckland 221 | eaststirlingshire 222 | egaleo 223 | ehimefc 224 | eibar 225 | eintrachtbraunschweig 226 | elche 227 | elgeish 228 | elgincity 229 | elnacional 230 | elosport 231 | el-shorta 232 | emelec 233 | empoli 234 | enerhetykburshtyn 235 | enkoping 236 | enppi 237 | entrachtbamberg 238 | envigado 239 | epinal 240 | ergotelis 241 | erzgebirgeaue 242 | esbjergfb 243 | escolaparaiso 244 | eskisehirspor 245 | espanyol 246 | espigao 247 | espoli 248 | esporte 249 | esportede 250 | esportivo 251 | esprof 252 | estanciano 253 | estoril 254 | estrelado 255 | estrellaroja 256 | estudiantes 257 | estudiantesde 258 | estudiantestecos 259 | etoiledu 260 | everest 261 | everton 262 | evian 263 | excelsior 264 | expressinho 265 | fagianookayama 266 | falkirk 267 | farense 268 | farroupilha 269 | fast 270 | fcaugsburg 271 | fcdallas 272 | fcedmonton 273 | fcfredericia 274 | fcvdender 275 | feirense 276 | fenerbahce 277 | fernandode 278 | fernandopolis 279 | ferrocarril 280 | ferroviaria 281 | ferroviario 282 | ferroviarioda 283 | ferroviariode 284 | ferroviariodo 285 | ferroviarios 286 | fethiyespor 287 | ffsport 288 | figueirense 289 | filanbanco 290 | fiorentina 291 | flamengo 292 | flamengode 293 | flotaswinoujscie 294 | fluminense 295 | fluminensede 296 | forfar 297 | fortaleza 298 | fozdo 299 | francana 300 | franciscobeltrao 301 | frankfurt 302 | freamunde 303 | frederikshavnfi 304 | fredrikstad 305 | freiburgerfc 306 | frejusst-raphael 307 | friburguense 308 | fuenlabrada 309 | fulham 310 | funorte 311 | gainaretottori 312 | galatasaray 313 | galicia 314 | galvez 315 | gama 316 | gambaosaka 317 | garibaldi 318 | gas 319 | gaucho 320 | gaviaokyikateje 321 | gazelecajaccio 322 | gaziantepspor 323 | gel 324 | genclerbirligi 325 | generalcaballero 326 | generaldiaz 327 | genoa 328 | genus 329 | germinalbeerschot 330 | getafe 331 | ghazlmehalla 332 | gilvicente 333 | gimnasiay 334 | girona 335 | globo 336 | gloria 337 | godoycruz 338 | goianesia 339 | goiania 340 | goias 341 | goslarersc 342 | goytacaz 343 | granada 344 | grasshopper 345 | grecal 346 | gremio 347 | gremioanapolis 348 | gremiobarueri 349 | gremiomaringa 350 | gremioosasco 351 | groningen 352 | grosseto 353 | guabira 354 | guaicurus 355 | guamare 356 | guara 357 | guarai 358 | guarani 359 | guaranide 360 | guaranyde 361 | guaratingueta 362 | guarosde 363 | guaxupe 364 | guingamp 365 | gurupi 366 | haderslevfk 367 | hadexszeroka 368 | haka 369 | hakimsanayi 370 | hallescherfc 371 | halmstadsbk 372 | hamburgersv 373 | hamilton 374 | hannover 375 | harasel 376 | harrisburgcity 377 | hasmonealwow 378 | hawke'sbay 379 | hcbsongo 380 | hearts 381 | heliopolis 382 | helioskharkiv 383 | hellerupik 384 | helsingborgsif 385 | hengtai 386 | heraclesalmelo 387 | hercilioluz 388 | herlevif 389 | herningfremad 390 | herthaberlin 391 | hetmanzamosc 392 | hibernian 393 | hjkhelsinki 394 | hobroik 395 | hoifan 396 | holanda 397 | holsteinkiel 398 | homeunited 399 | honglok 400 | hongngai 401 | honka 402 | horizonte 403 | houstondynamo 404 | hradeckralove 405 | huddersfieldtown 406 | hullcity 407 | huracan 408 | huraganmorag 409 | hutnikkrakow 410 | ibis 411 | icasa 412 | ifelfsborg 413 | igrejanova 414 | ikastfs 415 | imagine 416 | imbaburasc 417 | imbituba 418 | imperatriz 419 | incomati 420 | independente 421 | independiente 422 | independientedel 423 | independientemedellin 424 | independienterivadavia 425 | independientesanta 426 | indianainvaders 427 | inhumas 428 | inove 429 | instituto 430 | interde 431 | internacional 432 | internazionale 433 | interporto 434 | interturku 435 | intigas 436 | inverness 437 | ipanema 438 | ipatinga 439 | ipora 440 | ipswichtown 441 | iraklis 442 | iranduba 443 | ismaily 444 | istres 445 | itabaiana 446 | itaborai 447 | itabuna 448 | itapaje 449 | itapecuruense 450 | itapipoca 451 | itapirense 452 | itapora 453 | ituano 454 | ituiutabana 455 | itumbiara 456 | ivinhema 457 | izabelense 458 | j 459 | jabaquara 460 | jacarei 461 | jacobina 462 | jacutinga 463 | jagielloniabialystok 464 | jaguar 465 | jaguaresde 466 | jaragua 467 | jarotajarocin 468 | jequie 469 | ji-parana 470 | jippo 471 | jjk 472 | joebisports 473 | joinville 474 | jonkopingssodra 475 | josegalvez 476 | juanaurich 477 | juazeirense 478 | juazeiro 479 | jubiloiwata 480 | junakdrohobycz 481 | junior 482 | juniorradom 483 | juniorteam 484 | jurongfc 485 | juventastarachowice 486 | juventude 487 | juventus 488 | juvestabia 489 | jvlideral 490 | lacoruna 491 | laequidad 492 | lagarto 493 | lajeadense 494 | lampak 495 | landskronabois 496 | lanus 497 | lapaz 498 | larissa 499 | laspalmas 500 | laval 501 | lazio 502 | lduloja 503 | lduquito 504 | lechiagdansk 505 | lechpoznan 506 | leedsunited 507 | leganes 508 | legiapoznan 509 | lehavre 510 | leicestercity 511 | leixoes 512 | lemans 513 | lemense 514 | lens 515 | leon 516 | leonde 517 | leonel 518 | levadiakos 519 | levante 520 | lewartlubartow 521 | libertad 522 | ligamuculmana 523 | lille 524 | linense 525 | linhares 526 | liverpool 527 | livingston 528 | livorno 529 | llagostera 530 | lobosbuap 531 | locomotive 532 | lokeren 533 | lokomotivestendal 534 | lokomotivmoscou 535 | londrina 536 | lorient 537 | losangeles 538 | lotaschwager 539 | lubliniankalublin 540 | lucena 541 | ludisham 542 | lugo 543 | luverdense 544 | lyngbybk 545 | lynoslo 546 | lyon 547 | macae 548 | macara 549 | macau 550 | madureira 551 | maguary 552 | malaga 553 | mallorca 554 | mamore 555 | manaus 556 | manchestercity 557 | manchesterunited 558 | manta 559 | maracaju 560 | maracana 561 | maranhao 562 | marau 563 | marciliodias 564 | marilia 565 | maringa 566 | marinho 567 | maritimo 568 | maruinense 569 | matonense 570 | matsumotoyamaga 571 | maxaquene 572 | melgar 573 | mesquita 574 | metropolitano 575 | middlesbrough 576 | miguelcouto 577 | milan 578 | millonarios 579 | millwall 580 | mineiros 581 | mineros 582 | miramar 583 | mirandes 584 | mirassol 585 | misto 586 | mitohollyhock 587 | mixto 588 | modena 589 | mogimirim 590 | monagas 591 | monarcasmorelia 592 | monteazul 593 | montecristo 594 | montedioyamagata 595 | monterrey 596 | montpellier 597 | montrealimpact 598 | moreirense 599 | morrinhos 600 | motoclub 601 | motoclube 602 | mssaad 603 | municipalcanar 604 | murici 605 | mushucruna 606 | nacbreda 607 | nacional 608 | nacionalborbense 609 | nacionalde 610 | nacionalpotosi 611 | nagoyagrampus 612 | nancy 613 | nantes 614 | nanumaga 615 | napoli 616 | nauas 617 | nautico 618 | navegantes 619 | naviraiense 620 | necaxa 621 | necnijmegen 622 | negrorubro 623 | neubrandenburg 624 | neuchatelxamax 625 | newcastleunited 626 | newell'sold 627 | nice 628 | nidapinczow 629 | nielbawagrowiec 630 | nikkeibellmare 631 | nilopolis 632 | nimesolympique 633 | niort 634 | niva-kokkedal 635 | noroeste 636 | norwichcity 637 | notodden 638 | nottinghamforest 639 | novaandradina 640 | novacidade 641 | novaiguacu 642 | novaprata 643 | novara 644 | novarussas 645 | novoesporte 646 | novohamburgo 647 | novohorizonte 648 | novoperario 649 | novorizontino 650 | numancia 651 | nybergsund 652 | nysazgorzelec 653 | nyvaternopil 654 | oberneuland 655 | obolonkiev 656 | obrakoscian 657 | oddgrenland 658 | odensebk 659 | oeste 660 | offenbach 661 | oficreta 662 | oitatrinita 663 | olaria 664 | olebrasil 665 | olhanense 666 | olimpia 667 | olimpico 668 | olimpicopirambu 669 | olimpo 670 | olinda 671 | oliveirense 672 | olmedo 673 | olympiakos 674 | olympiquede 675 | omiyaardija 676 | oncecaldas 677 | operario 678 | ordukabul 679 | orduspor 680 | orebrosk 681 | orientalde 682 | orientepetrolero 683 | orlandopirates 684 | orzelharta 685 | osasuna 686 | osnabruck 687 | ostersif 688 | osvaldocruz 689 | ottawafury 690 | otterupb&ik 691 | pacatuba 692 | pachuca 693 | pacifico 694 | pacosde 695 | palermo 696 | palmas 697 | palmeira 698 | palmeiras 699 | palmeirense 700 | panambi 701 | panathinaikos 702 | panionios 703 | paok 704 | paragominas 705 | paranaclube 706 | paranavai 707 | parauapebas 708 | parma 709 | parnahyba 710 | partickthistle 711 | pasgiannina 712 | passofundo 713 | patobranco 714 | patriotas 715 | patrocinense 716 | paulista 717 | paysandu 718 | pelotas 719 | penafiel 720 | penarol 721 | penedense 722 | pescara 723 | pesqueira 724 | peterhead 725 | petrojet 726 | petrolina 727 | piastgliwice 728 | piaui 729 | pilcomayo 730 | pimentense 731 | pinheirense 732 | pinheiros 733 | planaltina 734 | platinense 735 | plazaamador 736 | pocone 737 | pogonszczecin 738 | poloniabytom 739 | ponferradina 740 | pontepreta 741 | porinpalloilijat 742 | portimonense 743 | porto 744 | portuguesa 745 | prudentopolis 746 | psg 747 | psveindhoven 748 | puebla 749 | queenof 750 | queenspark 751 | queimadense 752 | queimados 753 | queretaro 754 | quevilly 755 | quilmes 756 | quirinopolis 757 | quissama 758 | quixada 759 | qwos 760 | racing 761 | racingsantander 762 | radomiakradom 763 | rahahan 764 | raithrovers 765 | randersfreja 766 | ratajeolesnica 767 | rayovallecano 768 | reading 769 | realbetis 770 | realcartagena 771 | realcolima 772 | realgarcilaso 773 | realmadrid 774 | realmamore 775 | realpotosi 776 | realsalt 777 | realsociedad 778 | recreativode 779 | redbull 780 | regginacalcio 781 | reims 782 | remo 783 | resende 784 | resistencia 785 | resoviarzeszow 786 | rioabajo 787 | rioave 788 | riobranco 789 | rioclaro 790 | riodas 791 | riograndense 792 | rionegro 793 | riopardense 794 | riostrense 795 | rioverde 796 | rioverdense 797 | river 798 | riverplate 799 | roassokumamoto 800 | rodajc 801 | roeselare 802 | rolimde 803 | roma 804 | rondonopolis 805 | rops 806 | rosariocentral 807 | rosenborg 808 | rosscounty 809 | rotherhamunited 810 | rubrosocial 811 | ruchchorzow 812 | sabadell 813 | sabia 814 | sagantosu 815 | saint-etienne 816 | saintmirren 817 | salgueiro 818 | sampaiocorrea 819 | sampdoria 820 | sanfrancisco 821 | sanfreccehiroshima 822 | sanjose 823 | sankeong 824 | sanlorenzo 825 | sanluis 826 | sanmartin 827 | santacruz 828 | santaines 829 | santana 830 | santarita 831 | santiagomorning 832 | santiagowanderers 833 | santos 834 | saocaetano 835 | saodomingos 836 | saojose 837 | saoluiz 838 | saopaulo 839 | saoraimundo 840 | sengkangmarine 841 | sergipe 842 | serra 843 | serrano 844 | setede 845 | sevilla 846 | shakhtardonetsk 847 | shallon 848 | shimizus-pulse 849 | shonanbellmare 850 | sidrolandia 851 | siena 852 | silviopettirossi 853 | sinop 854 | sivasspor 855 | sobaeksu 856 | sobradinho 857 | sochaux 858 | social 859 | socorrense 860 | solde 861 | sorriso 862 | sousa 863 | southampton 864 | sport 865 | sporthuancayo 866 | sporting 867 | sportingcristal 868 | sportinggijon 869 | sportingkansas 870 | sportivocarapegua 871 | sportivoluqueno 872 | sportrecife 873 | standardde 874 | stokecity 875 | sulamerica 876 | sunderland 877 | taboaoda 878 | tacuary 879 | tamanuku 880 | tampinesrovers 881 | tanabi 882 | taruma 883 | taubate 884 | taurofc 885 | tavriyasimferopol 886 | teamwellington 887 | tecnicouniversitario 888 | tenerife 889 | teplice 890 | teresopolis 891 | ternana 892 | terrae 893 | tersana 894 | textildo 895 | therangers 896 | thestrongest 897 | thisted 898 | tigre 899 | tigresdo 900 | tijuana 901 | timbauba 902 | timenegra 903 | timon 904 | tiradentes 905 | tocantinopolis 906 | tocantinsde 907 | tokushimavortis 908 | toledo 909 | toluca 910 | tombense 911 | tondela 912 | torino 913 | torontofc 914 | tottenham 915 | toulouse 916 | trabzonspor 917 | tractorsazi 918 | trairiense 919 | trelleborgsff 920 | trespassos 921 | treze 922 | tricordiano 923 | trindade 924 | trio 925 | tricolor 926 | trofense 927 | troyes 928 | trujillanos 929 | tubize 930 | tunaluso 931 | tupa 932 | tupi 933 | tupy 934 | turkiyemsporberlin 935 | uberaba 936 | uberlandia 937 | ubiratan 938 | udinesecalcio 939 | ull/kisa 940 | umeafc 941 | umeaik 942 | umuarama 943 | uniajanikowo 944 | uniao 945 | uniaobarbarense 946 | uniaocacoalense 947 | uniaocentral 948 | uniaoda 949 | uniaofrederiquense 950 | uniaomarechal 951 | uniaomogi 952 | uniaorondonopolis 953 | uniaosao 954 | uniaosuzano 955 | uniatarnow 956 | uniclinic 957 | unidosde 958 | unioncomercio 959 | unionde 960 | unionlara 961 | unionmagdalena 962 | unionmaracaibo 963 | unionpiar 964 | unionsan 965 | unitri 966 | universidadcatolica 967 | universidadcesar 968 | universidadde 969 | universidadsan 970 | universitario 971 | urawareds 972 | urso 973 | urt 974 | uruburetama 975 | usorleans 976 | utcde 977 | valencia 978 | valenciennes 979 | valerenga 980 | valerio 981 | valladolid 982 | valoisrivarola 983 | valuen 984 | vancouverwhitecaps 985 | vannes 986 | varese 987 | vasco 988 | vascoda 989 | vegaltasendai 990 | velezsarsfield 991 | veloclube 992 | ventforetkofu 993 | venus 994 | veracruz 995 | veranopolis 996 | veria 997 | verona 998 | verdao 999 | vfbstuttgart 1000 | viana 1001 | vicenzacalcio 1002 | victoriajaworzno 1003 | victoriakoronowo 1004 | vifk 1005 | viking 1006 | viktoriaplzen 1007 | viktoriazizkov 1008 | vilaaurora 1009 | vilankulo 1010 | vilanova 1011 | vilarica 1012 | vilhena 1013 | villado 1014 | villanova 1015 | villario 1016 | villarreal 1017 | virtuslanciano 1018 | visaoceleste 1019 | visselkobe 1020 | vitoria 1021 | vitoriada 1022 | vitoriadas 1023 | vitoriade 1024 | voltaredonda 1025 | vorsklapoltava 1026 | votuporanguense 1027 | vps 1028 | vvvvenlo 1029 | xanthi 1030 | xerez 1031 | xvde 1032 | zaglebielubin 1033 | zaglebiesosnowiec 1034 | zakarpattiauzhhorod 1035 | zamalek 1036 | zamora 1037 | zaragoza 1038 | zawiszabydgoszcz 1039 | zirkakirovohrad 1040 | znamyatruda 1041 | zobahan 1042 | zonguldaksporkomurspor 1043 | zoryaluhansk 1044 | zulia 1045 | zultewaregem 1046 | zweigenkanazawa 1047 | -------------------------------------------------------------------------------- /wordlists/07_animals.txt: -------------------------------------------------------------------------------- 1 | abelha 2 | acaro 3 | aguia 4 | albatroz 5 | alce 6 | andarilho 7 | anta 8 | antrax 9 | aranha 10 | araponga 11 | arara 12 | aratu 13 | asno 14 | avestruz 15 | bacilo 16 | baleia 17 | barata 18 | beijaflor 19 | bicho 20 | borboleta 21 | boto 22 | bufalo 23 | bugiopreto 24 | cabra 25 | cagado 26 | calango 27 | camaleao 28 | camelo 29 | cao 30 | capivara 31 | caranguejeira 32 | caranguejo 33 | cardeal 34 | carneiro 35 | carpa 36 | carrapato 37 | cascavel 38 | castor 39 | cavalo 40 | chacal 41 | chimpanze 42 | chupim 43 | cigarra 44 | cisne 45 | civeta 46 | coala 47 | cobaia 48 | cobra 49 | codorna 50 | coelho 51 | comodo 52 | condor 53 | corvina 54 | corvo 55 | crocodilo 56 | curimbata 57 | diablotim 58 | dingo 59 | dourado 60 | dragao 61 | dromedario 62 | elefante 63 | ema 64 | enguia 65 | esquilo 66 | falcao 67 | foca 68 | furao 69 | gafanhoto 70 | galinha 71 | gamba 72 | ganso 73 | garoupa 74 | gato 75 | gaviao 76 | girafa 77 | golfinho 78 | gorila 79 | gralha 80 | guara 81 | hamster 82 | hiena 83 | hipopotamo 84 | homem 85 | iaque 86 | impala 87 | jaburu 88 | jabuti 89 | jacare 90 | jacutinga 91 | jaguar 92 | jaguatirica 93 | jararaca 94 | javali 95 | joao 96 | joboia 97 | jumento 98 | lagartixa 99 | lagarto 100 | lambari 101 | leao 102 | lebre 103 | leopardo 104 | lhama 105 | libellula 106 | lince 107 | lobo 108 | lombriga 109 | lontra 110 | lula 111 | macaco 112 | marreco 113 | mico 114 | morcego 115 | mosquito 116 | naja 117 | narceja 118 | narval 119 | novilho 120 | onca 121 | pintada 122 | orangotango 123 | ostra 124 | ovelha 125 | paca 126 | pacu 127 | panda 128 | papagaio 129 | passaro 130 | passarinho 131 | pato 132 | pavao 133 | peixe 134 | peru 135 | pica 136 | pintado 137 | piolho 138 | piranha 139 | pirarocu 140 | polvo 141 | pombo 142 | porco 143 | protozoario 144 | pulga 145 | pulgao 146 | puma 147 | quati 148 | quetzal 149 | ra 150 | raposa 151 | rato 152 | rinoceronte 153 | robalo 154 | sabia 155 | sagui 156 | salmao 157 | sapo 158 | saracura 159 | sardinha 160 | sauva 161 | sucuarana 162 | suricate 163 | tamandua 164 | tapiti 165 | tatu 166 | tico 167 | tigre 168 | touro 169 | traira 170 | tucano 171 | tucunare 172 | uirapuru 173 | urso 174 | polar 175 | urubu 176 | urutau 177 | urutu 178 | vaca 179 | veado 180 | vespa 181 | viado 182 | vicunha 183 | xareu 184 | xexeu 185 | xexeu 186 | xixarro 187 | zabele 188 | zebra 189 | zebu 190 | zorrilho 191 | -------------------------------------------------------------------------------- /wordlists/08_last_names.txt: -------------------------------------------------------------------------------- 1 | mangabeira 2 | mangabeiras 3 | cruz 4 | abendano 5 | abensur 6 | abiles 7 | abrantes 8 | abreu 9 | abulafia 10 | acosta 11 | acuna 12 | ades 13 | affonseca 14 | affonso 15 | afonseca 16 | afonso 17 | aguado 18 | aguero 19 | aguiar 20 | aguilar 21 | aguilo 22 | aguirre 23 | aguirres 24 | aires 25 | alaman 26 | alarcon 27 | alba 28 | aldebaram 29 | aldebaran 30 | alencar 31 | alfonso 32 | almeida 33 | alonso 34 | altamirano 35 | alva 36 | alvarenga 37 | alvares 38 | alvarez 39 | alverez 40 | alves 41 | alvin 42 | amado 43 | amaral 44 | amarillo 45 | amato 46 | amaya 47 | amigo 48 | ammar 49 | andara 50 | andino 51 | andrada 52 | andrade 53 | andres 54 | anes 55 | angel 56 | anno 57 | antunes 58 | antunez 59 | aragao 60 | aragon 61 | arana 62 | araujo 63 | arba 64 | arcoverde 65 | aredes 66 | aria 67 | arias 68 | ariete 69 | arino 70 | aris 71 | ariza 72 | aros 73 | aroyo 74 | arroyos 75 | artal 76 | aseredo 77 | asevedo 78 | assayag 79 | assuncao 80 | astorga 81 | astorgano 82 | avila 83 | avilar 84 | aviles 85 | ayala 86 | ayeres 87 | ayres 88 | azeda 89 | azeredo 90 | azevedo 91 | baena 92 | baez 93 | balao 94 | baltazar 95 | barata 96 | barbosa 97 | barboza 98 | barela 99 | barros 100 | baruk 101 | barzilai 102 | barzilay 103 | basan 104 | bassan 105 | bastos 106 | batista 107 | bautista 108 | bayao 109 | baza 110 | bazan 111 | behar 112 | bejarano 113 | belasco 114 | belforte 115 | belgara 116 | belicha 117 | belilo 118 | bello 119 | belluca 120 | belmonte 121 | belo 122 | beltran 123 | belusi 124 | benadiba 125 | benado 126 | benatar 127 | benaton 128 | benattar 129 | benavente 130 | benavides 131 | bendavid 132 | ben-david 133 | bendelack 134 | bendelak 135 | beneviste 136 | benezra 137 | benhaim 138 | benin 139 | benites 140 | benitez 141 | benjo 142 | benoliel 143 | benros 144 | bensabat 145 | bensadon 146 | bentubo 147 | benveniste 148 | benyair 149 | benzaquen 150 | benzecry 151 | beraha 152 | berdugo 153 | bergel 154 | bergman 155 | bergmann 156 | bermejo 157 | bernal 158 | bernandino 159 | bernat 160 | bernstein 161 | bertoni 162 | bessa 163 | besso 164 | betan 165 | betito 166 | betom 167 | beuno 168 | bezerra 169 | bibas 170 | bicon 171 | bicudo 172 | bitencor 173 | biton 174 | bitton 175 | bivar 176 | blanco 177 | blau 178 | bloch 179 | blum 180 | bolea 181 | bom 182 | bon 183 | borges 184 | brito 185 | caba 186 | caballeria 187 | caballero 188 | caban 189 | cabeca 190 | cabeza 191 | cabral 192 | cabrera 193 | cabrero 194 | cacao 195 | caceres 196 | cacim 197 | cadique 198 | cadiz 199 | cagi 200 | cahon 201 | caifa 202 | caim 203 | caja 204 | calache 205 | calahorra 206 | calama 207 | calasso 208 | calatayud 209 | calbo 210 | caldeira 211 | caldeiras 212 | calderon 213 | caldes 214 | callo 215 | calo 216 | calvete 217 | calvo 218 | camacho 219 | camargo 220 | camhi 221 | cami 222 | caminha 223 | campo 224 | campos 225 | candelero 226 | candia 227 | canho 228 | canisa 229 | caniso 230 | cano 231 | canosa 232 | cansino 233 | canton 234 | cantos 235 | capito 236 | capua 237 | capuano 238 | caraco 239 | caravallo 240 | caravelle 241 | carbajal 242 | carballo 243 | carbi 244 | carcamo 245 | carcas 246 | carceres 247 | cardenas 248 | cardinal 249 | cardona 250 | cardosa 251 | cardoso 252 | cardoza 253 | cardozo 254 | cari 255 | carias 256 | carilho 257 | carion 258 | carmona 259 | carmy 260 | carneiro 261 | carnide 262 | carrasco 263 | carrilho 264 | carrillo 265 | carrion 266 | carsi 267 | carvajal 268 | carvalho 269 | carvallo 270 | casado 271 | casal 272 | casanet 273 | casares 274 | caseda 275 | caseres 276 | casi 277 | castro 278 | cavalcanti 279 | correa 280 | costa 281 | dabela 282 | daca 283 | daconceicao 284 | dacosta 285 | dacruz 286 | dacunha 287 | dadia 288 | dadoun 289 | dagama 290 | daguiar 291 | dahan 292 | dais 293 | dalmao 294 | dalmedico 295 | dalmeida 296 | daluz 297 | damata 298 | damota 299 | danan 300 | dandrade 301 | daniels 302 | danino 303 | danon 304 | dapaz 305 | dara 306 | dari 307 | darocha 308 | daroque 309 | darosa 310 | dasa 311 | dasilva 312 | dasneves 313 | dassa 314 | dauod 315 | davelar 316 | david 317 | davila 318 | davilla 319 | davis 320 | dayan 321 | daza 322 | defaria 323 | delafuente 324 | delgado 325 | delis 326 | delmar 327 | delmonte 328 | delsotto 329 | delvalle 330 | delvas 331 | depaula 332 | depaz 333 | dessa 334 | devalle 335 | diamante 336 | dias 337 | diaz 338 | diez 339 | dinis 340 | diniz 341 | disraeli 342 | domingues 343 | dominguez 344 | donate 345 | donati 346 | dondon 347 | dorado 348 | doria 349 | douek 350 | dourado 351 | doz 352 | drago 353 | duanes 354 | duarte 355 | duque 356 | dura 357 | duran 358 | durate 359 | duro 360 | dwek 361 | echeverria 362 | egas 363 | elbaz 364 | ellias 365 | elnecave 366 | emmanuel 367 | enrique 368 | enriques 369 | enriquez 370 | erazo 371 | ergas 372 | errera 373 | esaguy 374 | escalante 375 | escapa 376 | escarate 377 | escobar 378 | escoto 379 | escudero 380 | esnaty 381 | espana 382 | espanol 383 | espejo 384 | espel 385 | esperanca 386 | esperanza 387 | espina 388 | espinola 389 | espinosa 390 | espinossa 391 | espinoza 392 | estacio 393 | esteban 394 | esteves 395 | evora 396 | ezra 397 | fadrique 398 | fajardo 399 | falcao 400 | falcon 401 | faleiro 402 | fanno 403 | fano 404 | faquim 405 | faquin 406 | farache 407 | farhi 408 | faria 409 | farias 410 | fariaselo 411 | farinas 412 | faro 413 | farraj 414 | farrar 415 | farro 416 | fats 417 | favela 418 | favella 419 | faya 420 | febo 421 | felis 422 | ferares 423 | fereira 424 | feriera 425 | ferme 426 | fermo 427 | fernades 428 | fernandes 429 | fernandez 430 | ferrares 431 | ferraz 432 | ferreira 433 | ferreiro 434 | ferrera 435 | ferrero 436 | ferrira 437 | ferriz 438 | ferro 439 | ferrufino 440 | ferrus 441 | fierro 442 | figueira 443 | figueiroa 444 | figuerdo 445 | figueroa 446 | filus 447 | finci 448 | florentine 449 | flores 450 | florez 451 | flori 452 | floriano 453 | foa 454 | fogaca 455 | foinquinos 456 | fonseca 457 | forron 458 | forti 459 | fracao 460 | frances 461 | francia 462 | francisco 463 | franco 464 | francolin 465 | frangi 466 | franses 467 | frasao 468 | frazao 469 | freire 470 | freitas 471 | fresco 472 | froes 473 | frois 474 | fua 475 | fuente 476 | fuentes 477 | fuertes 478 | fullana 479 | fundao 480 | funes 481 | funez 482 | furtado 483 | fuso 484 | fuster 485 | gabai 486 | gabay 487 | gabbai 488 | gabra 489 | gabriel 490 | gaby 491 | gago 492 | gaion 493 | galant 494 | galante 495 | galeano 496 | galegos 497 | galeno 498 | galindes 499 | galindez 500 | galindo 501 | galvao 502 | galvez 503 | gama 504 | gamarra 505 | gamboa 506 | gamma 507 | gaon 508 | garay 509 | garbal 510 | garcia 511 | garmendia 512 | garner 513 | garson 514 | garzon 515 | gascon 516 | gatinho 517 | gato 518 | gentil 519 | gernonima 520 | gerondi 521 | gerrera 522 | gideon 523 | gidion 524 | gierra 525 | gil 526 | gilabert 527 | gimenez 528 | gimeno 529 | girao 530 | girbal 531 | giron 532 | girondi 533 | godinez 534 | gois 535 | goldenberg 536 | goldrin 537 | goldring 538 | gomes 539 | gomez 540 | goncalves 541 | gonsales 542 | gonsalez 543 | gonzales 544 | gordon 545 | gouvea 546 | goya 547 | gracia 548 | gracian 549 | graciano 550 | gradis 551 | granada 552 | granado 553 | granados 554 | granate 555 | granda 556 | grandiz 557 | grasia 558 | graziane 559 | graziani 560 | gribaldo 561 | gris 562 | guadalajara 563 | guarda 564 | gudiel 565 | guedelha 566 | guedes 567 | guer 568 | guerra 569 | guete 570 | guetta 571 | guette 572 | guevara 573 | guillen 574 | guillermo 575 | guiterrez 576 | gurrez 577 | gusmao 578 | gutieres 579 | gutierres 580 | gutierrez 581 | gutteres 582 | guttieres 583 | guttierez 584 | guzman 585 | haba 586 | habel 587 | habib 588 | habibe 589 | hadida 590 | hain 591 | hakim 592 | hala 593 | halas 594 | halfon 595 | haman 596 | hamel 597 | hamid 598 | hamis 599 | hamon 600 | hamou 601 | harab 602 | haro 603 | haron 604 | hassan 605 | hatchuel 606 | hatia 607 | hayon 608 | hazan 609 | hazzan 610 | helman 611 | henriques 612 | henriquez 613 | henrriques 614 | herbas 615 | heredia 616 | hernandez 617 | herrador 618 | herrera 619 | hidalgo 620 | hija 621 | homem 622 | homen 623 | hornstein 624 | hoz 625 | huarte 626 | huerta 627 | huesca 628 | huete 629 | hurtado 630 | ibanez 631 | ibrahim 632 | illouz 633 | india 634 | isaac 635 | isaacs 636 | ishac 637 | ishaq 638 | ismail 639 | israel 640 | issak 641 | ita 642 | izidro 643 | izquierdo 644 | izrael 645 | jacinto 646 | jaco 647 | jacob 648 | jacobs 649 | jaen 650 | jamiel 651 | jaques 652 | jara 653 | javares 654 | jenes 655 | jequiel 656 | jerez 657 | jesurun 658 | jesus 659 | jimenez 660 | jimeno 661 | jiminez 662 | joel 663 | jonas 664 | jorge 665 | joseph 666 | joshua 667 | jr 668 | juares 669 | juarez 670 | jubel 671 | julian 672 | juliao 673 | junior 674 | junques 675 | kadoch 676 | kadoshi 677 | kaminsk 678 | kane 679 | katzan 680 | kessous 681 | klein 682 | kudsi 683 | labos 684 | ladesma 685 | laguna 686 | lainez 687 | lais 688 | lamata 689 | lamega 690 | lamego 691 | lamera 692 | laniado 693 | lanor 694 | lara 695 | laredo 696 | larlos 697 | larran 698 | lasry 699 | lassa 700 | lazaro 701 | lazarus 702 | lazo 703 | leal 704 | leao 705 | leitao 706 | leiva 707 | lemon 708 | lemos 709 | lengui 710 | leon 711 | lescano 712 | leuy 713 | levi 714 | levy 715 | licona 716 | lima 717 | linan 718 | linares 719 | lindo 720 | lion 721 | lis 722 | lisbao 723 | liz 724 | lizardo 725 | llorca 726 | lobo 727 | lopes 728 | lopez 729 | loppes 730 | loppez 731 | lorca 732 | lorence 733 | lorenzo 734 | losilla 735 | lourenco 736 | lousada 737 | louzada 738 | lovo 739 | lozano 740 | luca 741 | lucena 742 | lucero 743 | lujan 744 | luna 745 | lunel 746 | luque 747 | luria 748 | lusena 749 | lusitano 750 | luza 751 | luzena 752 | macedo 753 | machado 754 | machorro 755 | macias 756 | madina 757 | madrid 758 | madrigal 759 | maduro 760 | maestro 761 | maher 762 | mahir 763 | maia 764 | maimi 765 | maimon 766 | mair 767 | majano 768 | majon 769 | mala 770 | malca 771 | maldonado 772 | malec 773 | malka 774 | mallorca 775 | malque 776 | malta 777 | maman 778 | mamane 779 | mandil 780 | mani 781 | manis 782 | manso 783 | mantel 784 | mantino 785 | maquir 786 | mar 787 | marchena 788 | marciano 789 | marcos 790 | marcovitch 791 | maria 792 | marich 793 | marik 794 | marines 795 | markes 796 | marques 797 | marquez 798 | marrache 799 | marronquin 800 | martines 801 | martinez 802 | martins 803 | martos 804 | marzilla 805 | mascarenhas 806 | masia 807 | masias 808 | masis 809 | massias 810 | mata 811 | matalon 812 | matana 813 | mataro 814 | matheo 815 | matos 816 | matoss 817 | matoz 818 | mattos 819 | maura 820 | maxes 821 | maya 822 | mayo 823 | mayorcas 824 | mayr 825 | mazier 826 | mazuecos 827 | medina 828 | medini 829 | mejia 830 | meldola 831 | melendez 832 | melhado 833 | mella 834 | mello 835 | melo 836 | melul 837 | mena 838 | menahem 839 | menasce 840 | menasse 841 | menasseh 842 | mencia 843 | mendes 844 | mendez 845 | menezes 846 | monteiro 847 | montenegro 848 | moraes 849 | moreira 850 | moura 851 | naar 852 | nabarro 853 | nadler 854 | nagara 855 | nagera 856 | nahar 857 | nahman 858 | nahmias 859 | nahon 860 | nahum 861 | nain 862 | naira 863 | najar 864 | najara 865 | najari 866 | najarro 867 | najera 868 | namias 869 | naon 870 | naphtali 871 | narvaez 872 | narvarez 873 | nascimento 874 | nasi 875 | nassi 876 | nasso 877 | nassy 878 | natali 879 | navaro 880 | navarra 881 | navarre 882 | navarro 883 | navas 884 | navon 885 | nazareno 886 | neda 887 | negrin 888 | nello 889 | neto 890 | netto 891 | neves 892 | nieto 893 | nietto 894 | nijar 895 | nino 896 | noah 897 | noble 898 | nogeira 899 | nogueira 900 | noguera 901 | noguerira 902 | noivo 903 | nones 904 | nonez 905 | norca 906 | noronha 907 | notrica 908 | novaes 909 | novena 910 | nunes 911 | nunez 912 | nunis 913 | obadia 914 | obadias 915 | obediente 916 | ocampo 917 | ocana 918 | ochoa 919 | oetega 920 | ohana 921 | ohanna 922 | ohayon 923 | oheb 924 | ojalvo 925 | ojos 926 | olid 927 | oliva 928 | olivares 929 | olivarez 930 | oliveira 931 | oliver 932 | olivera 933 | oliveria 934 | oliveros 935 | oliveyra 936 | olivos 937 | olmos 938 | ome 939 | omella 940 | oporto 941 | ordaz 942 | ordonez 943 | oreliana 944 | orfila 945 | orgaz 946 | orobio 947 | oropesa 948 | orozco 949 | orta 950 | ortiga 951 | ortigas 952 | ortis 953 | ortiz 954 | ortiza 955 | osorio 956 | osvan 957 | ovalle 958 | pacheca 959 | pacheco 960 | pacifico 961 | padilla 962 | padua 963 | paduano 964 | paes 965 | paiba 966 | pais 967 | paiva 968 | paiz 969 | palat 970 | pallo 971 | palma 972 | palombo 973 | palomino 974 | palos 975 | panchame 976 | pano 977 | pantaleao 978 | paraiba 979 | pardes 980 | pardo 981 | paredes 982 | pareja 983 | pares 984 | pariente 985 | paris 986 | parra 987 | parsi 988 | partal 989 | pas 990 | pasifico 991 | pasqual 992 | pass 993 | passi 994 | patto 995 | pavia 996 | pavon 997 | pays 998 | paz 999 | pedraza 1000 | peinado 1001 | peixoto 1002 | pelayo 1003 | pena 1004 | penas 1005 | penco 1006 | penha 1007 | penhas 1008 | peniel 1009 | pensa 1010 | penso 1011 | peralta 1012 | peraza 1013 | perdomo 1014 | peregrino 1015 | pereira 1016 | pereiras 1017 | pereire 1018 | pereiro 1019 | pereria 1020 | peres 1021 | pereyra 1022 | perez 1023 | periera 1024 | perirra 1025 | perreira 1026 | perrera 1027 | perteira 1028 | perute 1029 | pesado 1030 | pesaro 1031 | pesoa 1032 | pessoa 1033 | pestana 1034 | pestanha 1035 | peynado 1036 | piedrahita 1037 | pilares 1038 | pilo 1039 | pimenta 1040 | pimental 1041 | pimentel 1042 | pimienta 1043 | pina 1044 | pineda 1045 | pinedo 1046 | pineiro 1047 | pinel 1048 | pinto 1049 | pires 1050 | porto 1051 | qionos 1052 | quadros 1053 | quaresma 1054 | quental 1055 | querido 1056 | quinon 1057 | quinonez 1058 | quirino 1059 | quiro 1060 | rabel 1061 | rabi 1062 | rabica 1063 | rablves 1064 | ram 1065 | ramalho 1066 | ramires 1067 | ramirez 1068 | ramos 1069 | ran 1070 | rangel 1071 | raphael 1072 | raposa 1073 | ratom 1074 | raton 1075 | ravel 1076 | raymundi 1077 | real 1078 | rebello 1079 | rebelo 1080 | rebles 1081 | rebolledo 1082 | redo 1083 | rego 1084 | reibeiro 1085 | reich 1086 | reina 1087 | reis 1088 | remirez 1089 | remos 1090 | renaldo 1091 | rendon 1092 | resende 1093 | reuben 1094 | revah 1095 | rey 1096 | reyes 1097 | reyna 1098 | reza 1099 | rezende 1100 | rezio 1101 | ribas 1102 | ribeira 1103 | ribeiro 1104 | ribera 1105 | riberos 1106 | ricardo 1107 | rico 1108 | riera 1109 | rietta 1110 | rios 1111 | ripol 1112 | rison 1113 | rivas 1114 | riveiro 1115 | rivera 1116 | rivero 1117 | rivert 1118 | robledo 1119 | robles 1120 | roca 1121 | rocamora 1122 | rocco 1123 | rocha 1124 | rochas 1125 | roco 1126 | rocomora 1127 | roda 1128 | roditi 1129 | rodrigue 1130 | rodrigues 1131 | rodriguez 1132 | rofe 1133 | roffe 1134 | rois 1135 | roiz 1136 | rojas 1137 | romain 1138 | roman 1139 | romanel 1140 | romano 1141 | romeo 1142 | romero 1143 | romy 1144 | rona 1145 | rosa 1146 | rosales 1147 | rosanez 1148 | rose 1149 | roseiro 1150 | rosel 1151 | sa 1152 | saa 1153 | saad 1154 | saadia 1155 | sab 1156 | saba 1157 | sabak 1158 | saban 1159 | sabath 1160 | sabel 1161 | sabina 1162 | sacute 1163 | saday 1164 | sadik 1165 | sadon 1166 | sadoque 1167 | safadi 1168 | safra 1169 | sager 1170 | sagris 1171 | sahl 1172 | salama 1173 | salamanca 1174 | salamon 1175 | salas 1176 | salazar 1177 | salcedo 1178 | saldana 1179 | saldanha 1180 | saleh 1181 | salem 1182 | sales 1183 | salgado 1184 | salid 1185 | salih 1186 | salina 1187 | salinas 1188 | salm 1189 | salmon 1190 | salmona 1191 | salom 1192 | salomon 1193 | salon 1194 | saltiel 1195 | salvador 1196 | salvator 1197 | salzedo 1198 | samaniego 1199 | sampaio 1200 | sampayo 1201 | samuda 1202 | samuel 1203 | samuels 1204 | sana 1205 | sanches 1206 | sanchez 1207 | sancho 1208 | sandoval 1209 | sanguinette 1210 | sanguinetti 1211 | sanmartin 1212 | sanpedro 1213 | sanson 1214 | santaclara 1215 | santacruz 1216 | santafe 1217 | santamaria 1218 | santangel 1219 | santi 1220 | santiago 1221 | santilhano 1222 | santillan 1223 | santillana 1224 | santo 1225 | santos 1226 | saporta 1227 | saqui 1228 | sarabia 1229 | saraga 1230 | saragga 1231 | saragossa 1232 | saraiva 1233 | saraval 1234 | sarfati 1235 | sarfatti 1236 | sarfaty 1237 | sari 1238 | sena 1239 | silva 1240 | silveira 1241 | soares 1242 | souza 1243 | tabares 1244 | tabera 1245 | taboada 1246 | tabora 1247 | tal 1248 | talano 1249 | talavera 1250 | tam 1251 | tama 1252 | tammam 1253 | tamman 1254 | tangi 1255 | tangui 1256 | tapiero 1257 | tartas 1258 | tavares 1259 | tavarez 1260 | taveres 1261 | tawil 1262 | tazaret 1263 | tebet 1264 | tedeschi 1265 | tedesqui 1266 | teixara 1267 | teixeira 1268 | teixeyra 1269 | tejeda 1270 | teles 1271 | telez 1272 | telles 1273 | testa 1274 | texeira 1275 | thomas 1276 | tinoco 1277 | tob 1278 | tobar 1279 | tobelem 1280 | toledano 1281 | toledo 1282 | tolosa 1283 | tomar 1284 | tomas 1285 | tores 1286 | torres 1287 | torrez 1288 | torrijos 1289 | torrones 1290 | touro 1291 | tovar 1292 | tovares 1293 | trani 1294 | trebino 1295 | trevino 1296 | triana 1297 | trigo 1298 | trigueiros 1299 | trillo 1300 | trindade 1301 | tristan 1302 | tubi 1303 | tuby 1304 | tudela 1305 | tuval 1306 | ubeda 1307 | ucles 1308 | ulhoa 1309 | umanzor 1310 | urbina 1311 | urcina 1312 | uri 1313 | uria 1314 | urquia 1315 | urroz 1316 | urrutia 1317 | uziel 1318 | vaes 1319 | vaez 1320 | vais 1321 | vaiz 1322 | valdes 1323 | valdez 1324 | vale 1325 | valenca 1326 | valencia 1327 | valensa 1328 | valensi 1329 | valenso 1330 | valensuela 1331 | valentin 1332 | valenty 1333 | valero 1334 | valladolid 1335 | valle 1336 | valls 1337 | valquir 1338 | valverde 1339 | vara 1340 | varela 1341 | vargas 1342 | varicas 1343 | varquez 1344 | vasques 1345 | vasquez 1346 | vaz 1347 | veiga 1348 | veigas 1349 | veja 1350 | velasco 1351 | velasquez 1352 | veles 1353 | velez 1354 | velho 1355 | vellez 1356 | vello 1357 | velloso 1358 | ventura 1359 | vera 1360 | verga 1361 | vergara 1362 | vergueiro 1363 | viana 1364 | vicente 1365 | victoria 1366 | vidal 1367 | vidales 1368 | vidas 1369 | vides 1370 | viegas 1371 | vieira 1372 | viera 1373 | vieyra 1374 | vigil 1375 | vilar 1376 | vilela 1377 | villa 1378 | villagomez 1379 | villahermosa 1380 | villalon 1381 | villalta 1382 | villanova 1383 | villanueva 1384 | villapando 1385 | villar 1386 | villareal 1387 | villegas 1388 | villeja 1389 | villela 1390 | villena 1391 | vindel 1392 | viota 1393 | viseu 1394 | vita 1395 | vital 1396 | vitoria 1397 | vitta 1398 | viu 1399 | viveros 1400 | vives 1401 | vizeo 1402 | vizino 1403 | volta 1404 | voz 1405 | wahnon 1406 | xabi 1407 | xavier 1408 | xibili 1409 | ximenes 1410 | ximeno 1411 | xisto 1412 | yacoub 1413 | yafe 1414 | yahia 1415 | yahya 1416 | yaish 1417 | yamin 1418 | yanez 1419 | yepes 1420 | yomtob 1421 | yona 1422 | yonah 1423 | yzidoro 1424 | zacarias 1425 | zacharia 1426 | zachin 1427 | zaguri 1428 | zalazar 1429 | zaldiva 1430 | zaldivar 1431 | zambrana 1432 | zamiro 1433 | zamora 1434 | zaragoza 1435 | zarate 1436 | zarco 1437 | zarzar 1438 | zazon 1439 | zeeb 1440 | zelaya 1441 | zerda 1442 | zini 1443 | ziza 1444 | zuniga 1445 | zurita 1446 | zuzarte 1447 | --------------------------------------------------------------------------------