ffaker 2.1.0 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. checksums.yaml +4 -4
  2. data/Changelog.md +32 -21
  3. data/README.md +16 -16
  4. data/REFERENCE.md +925 -646
  5. data/ffaker.gemspec +73 -5
  6. data/lib/ffaker.rb +1 -1
  7. data/lib/ffaker/address.rb +4 -0
  8. data/lib/ffaker/address_ch.rb +21 -0
  9. data/lib/ffaker/address_ch_de.rb +16 -0
  10. data/lib/ffaker/address_ch_fr.rb +16 -0
  11. data/lib/ffaker/address_ch_it.rb +16 -0
  12. data/lib/ffaker/address_da.rb +2 -4
  13. data/lib/ffaker/address_in.rb +56 -0
  14. data/lib/ffaker/address_ru.rb +39 -0
  15. data/lib/ffaker/address_ua.rb +58 -0
  16. data/lib/ffaker/avatar.rb +3 -5
  17. data/lib/ffaker/cheesy_lingo.rb +39 -0
  18. data/lib/ffaker/color_ua.rb +12 -0
  19. data/lib/ffaker/data/address/time_zone +128 -0
  20. data/lib/ffaker/data/address_ch/canton_abbr +26 -0
  21. data/lib/ffaker/data/address_chde/canton +26 -0
  22. data/lib/ffaker/data/address_chfr/canton +26 -0
  23. data/lib/ffaker/data/address_chit/canton +26 -0
  24. data/lib/ffaker/data/address_da/city +3 -3
  25. data/lib/ffaker/data/address_da/kommune +0 -4
  26. data/lib/ffaker/data/address_in/state +29 -0
  27. data/lib/ffaker/data/address_in/state_abbr +29 -0
  28. data/lib/ffaker/data/address_in/union_territory +7 -0
  29. data/lib/ffaker/data/address_in/union_territory_abbr +7 -0
  30. data/lib/ffaker/data/address_ru/city +74 -0
  31. data/lib/ffaker/data/address_ru/province +83 -0
  32. data/lib/ffaker/data/address_ru/street +49 -0
  33. data/lib/ffaker/data/address_ua/city +57 -0
  34. data/lib/ffaker/data/address_ua/country +193 -0
  35. data/lib/ffaker/data/address_ua/province +27 -0
  36. data/lib/ffaker/data/address_ua/street +13 -0
  37. data/lib/ffaker/data/cheesy_lingo/cheesy_phrases +54 -0
  38. data/lib/ffaker/data/cheesy_lingo/cheesy_words +34 -0
  39. data/lib/ffaker/data/color_ua/names_list +114 -0
  40. data/lib/ffaker/data/lorem_ua/capital_chars +33 -0
  41. data/lib/ffaker/data/lorem_ua/chars +33 -0
  42. data/lib/ffaker/data/lorem_ua/words +362 -0
  43. data/lib/ffaker/data/music/albums +91 -0
  44. data/lib/ffaker/data/music/artists +100 -0
  45. data/lib/ffaker/data/music/genres +20 -0
  46. data/lib/ffaker/data/music/songs +100 -0
  47. data/lib/ffaker/data/name_da/female_first_names +291 -480
  48. data/lib/ffaker/data/name_da/male_first_names +294 -383
  49. data/lib/ffaker/data/name_ua/first_names_female +193 -0
  50. data/lib/ffaker/data/name_ua/first_names_male +195 -0
  51. data/lib/ffaker/data/name_ua/last_names_female +230 -0
  52. data/lib/ffaker/data/name_ua/last_names_male +239 -0
  53. data/lib/ffaker/data/name_ua/middle_names_female +116 -0
  54. data/lib/ffaker/data/name_ua/middle_names_male +116 -0
  55. data/lib/ffaker/data/vehicle/displacements_list +21 -0
  56. data/lib/ffaker/data/vehicle/fuel_types_list +6 -0
  57. data/lib/ffaker/data/vehicle/transmissions_list +4 -0
  58. data/lib/ffaker/data/vehicle/upholstery_list +5 -0
  59. data/lib/ffaker/internet.rb +20 -20
  60. data/lib/ffaker/lorem_ua.rb +59 -0
  61. data/lib/ffaker/music.rb +24 -0
  62. data/lib/ffaker/name_da.rb +17 -28
  63. data/lib/ffaker/name_ja.rb +2 -4
  64. data/lib/ffaker/name_ua.rb +59 -0
  65. data/lib/ffaker/phone_number.rb +4 -1
  66. data/lib/ffaker/phone_number_br.rb +74 -0
  67. data/lib/ffaker/phone_number_ch.rb +46 -0
  68. data/lib/ffaker/phone_number_da.rb +3 -3
  69. data/lib/ffaker/string.rb +14 -6
  70. data/lib/ffaker/vehicle.rb +26 -0
  71. data/test/test_address.rb +4 -0
  72. data/test/test_address_ch.rb +13 -0
  73. data/test/test_address_ch_de.rb +9 -0
  74. data/test/test_address_ch_fr.rb +9 -0
  75. data/test/test_address_ch_it.rb +11 -0
  76. data/test/test_address_da.rb +10 -10
  77. data/test/test_address_in.rb +50 -0
  78. data/test/test_address_ru.rb +30 -0
  79. data/test/test_address_ua.rb +49 -0
  80. data/test/test_avatar.rb +7 -6
  81. data/test/test_cheesy_lingo.rb +37 -0
  82. data/test/test_color_ua.rb +9 -0
  83. data/test/test_internet.rb +11 -3
  84. data/test/test_lorem_ua.rb +45 -0
  85. data/test/test_music.rb +21 -0
  86. data/test/test_name_br.rb +1 -1
  87. data/test/test_name_da.rb +48 -0
  88. data/test/test_name_ja.rb +32 -1
  89. data/test/test_name_ua.rb +59 -0
  90. data/test/test_phone_number.rb +8 -3
  91. data/test/test_phone_number_br.rb +47 -0
  92. data/test/test_phone_number_da.rb +39 -0
  93. data/test/test_string.rb +6 -0
  94. data/test/test_time.rb +2 -2
  95. data/test/test_vehicle.rb +24 -0
  96. data/test/test_venue.rb +1 -1
  97. metadata +86 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 50d7c128aed30faa58d228d56df0b50fc24acf06
4
- data.tar.gz: e8e1fc13fbe9d59fd869d592d35e25f0f1b3b680
3
+ metadata.gz: 31fed46340c86504036bd715e6700ac336856eca
4
+ data.tar.gz: f3f3140c6cdd586efae852fedc55a12e68656ebb
5
5
  SHA512:
6
- metadata.gz: 0de7fdd0265dbfad7158bd8ea879013d118fb041925b474e1dbdb128372ad04fc8897b4f5c688a1a8e37a175964d00f5abbe62cacf1279da73a6b3804e6ff2fc
7
- data.tar.gz: e4a3669a80d74121a4e733e25313a59957bcb97f3c46126924f0051477ef25a90a6117e3f0356811120834cff4dfa9c79966321c732c3ccd34df72b6ab2f534f
6
+ metadata.gz: d41d15c745287e1ff0589f6ccd3bc638b2934ae4e961cc57e54f7581a8ca4e956ed68c48100bcee14b798dcf7deefe0ece7cd64c18da9ae9555be759203319d0
7
+ data.tar.gz: 08e47db08249e08ab8225a55f94b4e9bf929cad10e0355ef933def72d4cac366bfd5cccd4e5fc760e5d457c219234d2a1a8b3c48dbb499b1bba7c38c2459d85c
@@ -1,3 +1,14 @@
1
+ ## 2.2.0
2
+ - fixes some bugs
3
+ - generating Robohash images
4
+
5
+ - many new improvements and enhancements like:
6
+ - CheesyLingo
7
+ - Music module
8
+ - Brazilian phones
9
+ - Improve NameJA
10
+ - added AddressRU
11
+
1
12
  ## 2.1.0
2
13
 
3
14
  - [#191] - add REFERENCE.md ([@rstacruz])
@@ -10,16 +21,16 @@
10
21
  - [#212] - add IMEI support
11
22
  - [#213] - Fix max length support FFaker::Internet.password ([@anderscarling])
12
23
  - many internal library and test suite refactorings
13
-
14
-
15
- [#181]: https://github.com/EmmanuelOga/ffaker/issues/181
16
- [#191]: https://github.com/EmmanuelOga/ffaker/issues/191
17
- [#193]: https://github.com/EmmanuelOga/ffaker/issues/193
18
- [#195]: https://github.com/EmmanuelOga/ffaker/issues/195
19
- [#196]: https://github.com/EmmanuelOga/ffaker/issues/196
20
- [#199]: https://github.com/EmmanuelOga/ffaker/issues/199
21
- [#200]: https://github.com/EmmanuelOga/ffaker/issues/200
22
- [#203]: https://github.com/EmmanuelOga/ffaker/issues/203
24
+
25
+
26
+ [#181]: https://github.com/ffaker/ffaker/issues/181
27
+ [#191]: https://github.com/ffaker/ffaker/issues/191
28
+ [#193]: https://github.com/ffaker/ffaker/issues/193
29
+ [#195]: https://github.com/ffaker/ffaker/issues/195
30
+ [#196]: https://github.com/ffaker/ffaker/issues/196
31
+ [#199]: https://github.com/ffaker/ffaker/issues/199
32
+ [#200]: https://github.com/ffaker/ffaker/issues/200
33
+ [#203]: https://github.com/ffaker/ffaker/issues/203
23
34
  [#211]: https://github.com/ffaker/ffaker/pull/211
24
35
  [#212]: https://github.com/ffaker/ffaker/pull/212
25
36
  [#213]: https://github.com/ffaker/ffaker/pull/213
@@ -117,8 +128,8 @@ Fixes for ruby 1.8.x
117
128
  Many module additions from different contributors!
118
129
 
119
130
  ## 1.15.0
120
- NameKR (https://github.com/EmmanuelOga/ffaker/pull/47) and PhoneNumbersSG
121
- (https://github.com/EmmanuelOga/ffaker/pull/46).
131
+ NameKR (https://github.com/ffaker/ffaker/pull/47) and PhoneNumbersSG
132
+ (https://github.com/ffaker/ffaker/pull/46).
122
133
 
123
134
  ## 1.14.0
124
135
 
@@ -138,13 +149,13 @@ Extraction of AddressUK and AddressUS classes. (Thanks doctorbh).
138
149
 
139
150
  ## 1.10.1
140
151
 
141
- FFaker::AddressCA (Thanks doctorbh, https://github.com/EmmanuelOga/ffaker/pull/27)
152
+ FFaker::AddressCA (Thanks doctorbh, https://github.com/ffaker/ffaker/pull/27)
142
153
 
143
154
  ## 1.9.1
144
155
 
145
- FFaker::NameSN, FFaker::PhoneNumberSN (Thanks SENE, https://github.com/EmmanuelOga/ffaker/pull/26)
156
+ FFaker::NameSN, FFaker::PhoneNumberSN (Thanks SENE, https://github.com/ffaker/ffaker/pull/26)
146
157
 
147
- Added FFaker::NameJA (Thanks kichiro, https://github.com/EmmanuelOga/ffaker/pull/21)
158
+ Added FFaker::NameJA (Thanks kichiro, https://github.com/ffaker/ffaker/pull/21)
148
159
 
149
160
  ## 1.8.1
150
161
 
@@ -152,24 +163,24 @@ Remove a warning.
152
163
 
153
164
  ## 1.8.0
154
165
 
155
- FFaker::HTMLIpsum module inspired in http://html-ipsum.com/ (Thanks Chris Bloom, https://github.com/EmmanuelOga/ffaker/pull/18)
166
+ FFaker::HTMLIpsum module inspired in http://html-ipsum.com/ (Thanks Chris Bloom, https://github.com/ffaker/ffaker/pull/18)
156
167
 
157
168
  ## 1.7.0
158
169
 
159
- FFaker::LoremCN (Thanks Shane Weng, Shane Weng, https://github.com/swcool, https://github.com/EmmanuelOga/ffaker/pull/16/files)
170
+ FFaker::LoremCN (Thanks Shane Weng, Shane Weng, https://github.com/swcool, https://github.com/ffaker/ffaker/pull/16/files)
160
171
 
161
172
  ## 1.6.0
162
173
 
163
- FFaker::NameDE (thanks David Noelte, https://github.com/marvin, https://github.com/EmmanuelOga/ffaker/pull/17)
164
- Added FFaker::Internet#disposable_email (Thanks Port 80 Labs, https://github.com/port80labs, https://github.com/EmmanuelOga/ffaker/pull/15)
174
+ FFaker::NameDE (thanks David Noelte, https://github.com/marvin, https://github.com/ffaker/ffaker/pull/17)
175
+ Added FFaker::Internet#disposable_email (Thanks Port 80 Labs, https://github.com/port80labs, https://github.com/ffaker/ffaker/pull/15)
165
176
 
166
177
  ## 1.5.0
167
178
 
168
- FFaker::NameRU (Thanks Vsevolod Romashov, https://github.com/7even, https://github.com/EmmanuelOga/ffaker/pull/14)
179
+ FFaker::NameRU (Thanks Vsevolod Romashov, https://github.com/7even, https://github.com/ffaker/ffaker/pull/14)
169
180
 
170
181
  ## 1.4.0
171
182
 
172
- FFaker::Product and FFaker::Education (thanks Rico Sta. Cruz, https://github.com/EmmanuelOga/ffaker/pull/12 )
183
+ FFaker::Product and FFaker::Education (thanks Rico Sta. Cruz, https://github.com/ffaker/ffaker/pull/12 )
173
184
 
174
185
  ## 1.3.0
175
186
 
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
- [![Build Status](https://travis-ci.org/EmmanuelOga/ffaker.svg?branch=master)](https://travis-ci.org/EmmanuelOga/ffaker) [![Code Climate](https://codeclimate.com/github/EmmanuelOga/ffaker/badges/gpa.svg)](https://codeclimate.com/github/EmmanuelOga/ffaker)
1
+ [![Build Status](https://travis-ci.org/ffaker/ffaker.svg?branch=master)](https://travis-ci.org/ffaker/ffaker) [![Code Climate](https://codeclimate.com/github/EmmanuelOga/ffaker/badges/gpa.svg)](https://codeclimate.com/github/EmmanuelOga/ffaker)
2
2
  # ffaker
3
3
 
4
- [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/EmmanuelOga/ffaker?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4
+ [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ffaker/ffaker?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5
5
 
6
6
  [ffaker](http://rubygems.org/gems/ffaker) is a rewrite of [faker](http://rubygems.org/gems/faker).
7
7
 
@@ -19,7 +19,7 @@ FFaker::Internet.email #=> "kirsten.greenholt@corkeryfisher.info"
19
19
  ## ffaker vs faker
20
20
 
21
21
  The faker and ffaker APIs are mostly the same, although the API on ffaker keeps
22
- growing with its users additions. In general, the only difference is that you
22
+ diverging with its users additions. In general, the only difference is that you
23
23
  need to:
24
24
 
25
25
  gem install ffaker
@@ -28,33 +28,33 @@ and then
28
28
 
29
29
  require 'ffaker'
30
30
 
31
- ## ffaker is faster... does it really matter?
31
+ ## Why ffaker?
32
32
 
33
- <b>NO.</b>
33
+ ffaker is a fork of faker, and was initially written in an effort to speed up
34
+ a slow spec suite. Since those days faker has also been rewritten and the
35
+ "speed" factor is probably irrelevant now. Bear in mind, if your spec suite
36
+ is slow, chances are the generation of random data will probably not account
37
+ for much of the run time.
34
38
 
35
- ffaker was initially written in an effort to speed up a slow spec suite. Bear
36
- in mind, if your spec suite is slow, chances are the generation of random data
37
- will not account for much of the run time.
38
-
39
- Since then, the original faker gem has become faster. But ffaker has
40
- also gained a lot of new API methods from the generous contributions of
41
- people all over the world.
39
+ Nowadays the code bases have diverged enough to make the two projects truly
40
+ different: since ffaker creation, a lot of new API methods have been added
41
+ through the generous contributions of people all over the world.
42
42
 
43
43
  Hopefully some day faker and ffaker will join forces!
44
44
 
45
45
  ## Contributors
46
46
 
47
- A lot of people have contributed to ffaker. Check [this list](https://github.com/EmmanuelOga/ffaker/graphs/contributors).
47
+ A lot of people have contributed to ffaker. Check [this list](https://github.com/ffaker/ffaker/graphs/contributors).
48
48
 
49
49
  If you want to add new modules or localization data, use one of the
50
- [directories for data files](https://github.com/EmmanuelOga/ffaker/tree/master/lib/ffaker/data)
50
+ [directories for data files](https://github.com/ffaker/ffaker/tree/master/lib/ffaker/data)
51
51
  (or create a new one!).
52
52
 
53
53
  **const_missing** is
54
- [overriden](https://github.com/EmmanuelOga/ffaker/blob/master/lib/ffaker/utils/module_utils.rb#L9)
54
+ [overriden](https://github.com/ffaker/ffaker/blob/master/lib/ffaker/utils/module_utils.rb#L9)
55
55
  for Faker modules, so if you try to use a constant that is not defined
56
56
  in the module, the
57
- [override](https://github.com/EmmanuelOga/ffaker/blob/master/lib/ffaker/utils/module_utils.rb#L9)
57
+ [override](https://github.com/ffaker/ffaker/blob/master/lib/ffaker/utils/module_utils.rb#L9)
58
58
  will look for a data file matching the name of the constant. E.G.: the
59
59
  first time someone accesses `FFaker::Name::FIRST_NAMES`, a const of that
60
60
  name will be set with data from `ffaker/data/name/first_names`.
@@ -4,21 +4,30 @@
4
4
  * [FFaker::AddressAU](#ffakeraddressau)
5
5
  * [FFaker::AddressBR](#ffakeraddressbr)
6
6
  * [FFaker::AddressCA](#ffakeraddressca)
7
+ * [FFaker::AddressCH](#ffakeraddressch)
8
+ * [FFaker::AddressCHDE](#ffakeraddresschde)
9
+ * [FFaker::AddressCHFR](#ffakeraddresschfr)
10
+ * [FFaker::AddressCHIT](#ffakeraddresschit)
7
11
  * [FFaker::AddressDA](#ffakeraddressda)
8
12
  * [FFaker::AddressDE](#ffakeraddressde)
9
13
  * [FFaker::AddressFI](#ffakeraddressfi)
10
14
  * [FFaker::AddressFR](#ffakeraddressfr)
15
+ * [FFaker::AddressIN](#ffakeraddressin)
11
16
  * [FFaker::AddressMX](#ffakeraddressmx)
12
17
  * [FFaker::AddressNL](#ffakeraddressnl)
18
+ * [FFaker::AddressRU](#ffakeraddressru)
13
19
  * [FFaker::AddressSE](#ffakeraddressse)
14
20
  * [FFaker::AddressSN](#ffakeraddresssn)
21
+ * [FFaker::AddressUA](#ffakeraddressua)
15
22
  * [FFaker::AddressUK](#ffakeraddressuk)
16
23
  * [FFaker::AddressUS](#ffakeraddressus)
17
24
  * [FFaker::Avatar](#ffakeravatar)
18
25
  * [FFaker::Lorem](#ffakerlorem)
19
26
  * [FFaker::BaconIpsum](#ffakerbaconipsum)
20
27
  * [FFaker::Boolean](#ffakerboolean)
28
+ * [FFaker::CheesyLingo](#ffakercheesylingo)
21
29
  * [FFaker::Color](#ffakercolor)
30
+ * [FFaker::ColorUA](#ffakercolorua)
22
31
  * [FFaker::Company](#ffakercompany)
23
32
  * [FFaker::CompanyIT](#ffakercompanyit)
24
33
  * [FFaker::CompanySE](#ffakercompanyse)
@@ -54,7 +63,9 @@
54
63
  * [FFaker::LoremCN](#ffakerloremcn)
55
64
  * [FFaker::LoremFR](#ffakerloremfr)
56
65
  * [FFaker::LoremKR](#ffakerloremkr)
66
+ * [FFaker::LoremUA](#ffakerloremua)
57
67
  * [FFaker::Movie](#ffakermovie)
68
+ * [FFaker::Music](#ffakermusic)
58
69
  * [FFaker::Name](#ffakername)
59
70
  * [FFaker::NameBR](#ffakernamebr)
60
71
  * [FFaker::NameCN](#ffakernamecn)
@@ -74,10 +85,13 @@
74
85
  * [FFaker::NameSE](#ffakernamese)
75
86
  * [FFaker::NameSN](#ffakernamesn)
76
87
  * [FFaker::NameTH](#ffakernameth)
88
+ * [FFaker::NameUA](#ffakernameua)
77
89
  * [FFaker::NameVN](#ffakernamevn)
78
90
  * [FFaker::NatoAlphabet](#ffakernatoalphabet)
79
91
  * [FFaker::PhoneNumber](#ffakerphonenumber)
80
92
  * [FFaker::PhoneNumberAU](#ffakerphonenumberau)
93
+ * [FFaker::PhoneNumberBR](#ffakerphonenumberbr)
94
+ * [FFaker::PhoneNumberCH](#ffakerphonenumberch)
81
95
  * [FFaker::PhoneNumberCU](#ffakerphonenumbercu)
82
96
  * [FFaker::PhoneNumberDA](#ffakerphonenumberda)
83
97
  * [FFaker::PhoneNumberDE](#ffakerphonenumberde)
@@ -107,17 +121,18 @@
107
121
 
108
122
  | Method | Example |
109
123
  | ------ | ------- |
110
- | `building_number` | 37858, 5661, 088 |
111
- | `city` | New Mae, Laurettatown, New Rebeka |
112
- | `city_prefix` | North, South, West |
113
- | `city_suffix` | bury, burgh, berg |
114
- | `country` | Ukraine, Hungary, Congo, The Democratic Republic of The |
115
- | `country_code` | BY, AW, GW |
116
- | `neighborhood` | Gates Mills North, Sea Ranch Lakes, Candlewood Country Club |
117
- | `secondary_address` | Suite 516, Suite 556, Suite 692 |
118
- | `street_address` | 97194 Wunsch Drive, 3064 Goodwin Ranch, 13282 O'Reilly Crest |
119
- | `street_name` | Harber Crossing, Klocko Haven, Roob Trail |
120
- | `street_suffix` | Forest, Ridges, Grove |
124
+ | `building_number` | 81840, 786, 23008 |
125
+ | `city` | Bechtelarburgh, Ellaberg, New Nels |
126
+ | `city_prefix` | Port, Lake, East |
127
+ | `city_suffix` | stad, ton, shire |
128
+ | `country` | Finland, Andorra, Norfolk Island |
129
+ | `country_code` | KZ, BH, BT |
130
+ | `neighborhood` | Renton West, East Renton, Seven Hills Area |
131
+ | `secondary_address` | Apt. 934, Apt. 885, Apt. 465 |
132
+ | `street_address` | 72986 Hauck Ramp, 759 Alvina Light, 74594 Olson Locks |
133
+ | `street_name` | Destin Pine, Nigel Landing, Lucie Causeway |
134
+ | `street_suffix` | Crossing, Ridges, Inlet |
135
+ | `time_zone` | Asia/Tokyo, Europe/Brussels, America/Phoenix |
121
136
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
122
137
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
123
138
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
@@ -129,22 +144,23 @@
129
144
 
130
145
  | Method | Example |
131
146
  | ------ | ------- |
132
- | `building_number` | 867, 44576, 247 |
133
- | `city` | Port Hudsonton, Port Vito, Melanybury |
134
- | `city_prefix` | Port, South, East |
135
- | `city_suffix` | side, mouth, borough |
136
- | `country` | Kiribati, Haiti, Malawi |
137
- | `country_code` | PG, PY, PA |
138
- | `full_address` | 5602 Joanny Terrace, Wagga Wagga NSW 2170, 31030 Gusikowski Haven, Darwin NT 7320, 41769 Roxane Courts, Darwin NT 4350 |
139
- | `neighborhood` | White Oak South of Columbia Pike, Jamaica Estates/Holliswood, Sagaponack Seaside |
140
- | `postcode` | 2600, 5540, 3300 |
141
- | `secondary_address` | Suite 115, Apt. 606, Suite 043 |
142
- | `state` | Australian Capital Territory, South Australia, South Australia |
143
- | `state_abbr` | WA, ACT, TAS |
144
- | `street_address` | 2329 Timmothy Motorway, 0794 Quitzon Expressway, 86460 Sauer Track |
145
- | `street_name` | Okuneva Fords, Lindgren Mews, Kertzmann Ridge |
146
- | `street_suffix` | Causeway, Meadow, Squares |
147
- | `suburb` | Port Lincoln, Rockhampton, Braddon |
147
+ | `building_number` | 1081, 362, 0264 |
148
+ | `city` | Port Pascale, Dereckville, South Wilfrid |
149
+ | `city_prefix` | New, West, Lake |
150
+ | `city_suffix` | mouth, side, land |
151
+ | `country` | Bouvet Island, Congo, Anguilla |
152
+ | `country_code` | CC, KY, BW |
153
+ | `full_address` | 562 Shayne Lock, Nedlands WA 2800, 6322 Quitzon Well, Launceston TAS 7010, 20153 Anibal Courts, Port Lincoln SA 4680 |
154
+ | `neighborhood` | Pennypack, Ocean Parkway South, Pound Ridge East |
155
+ | `postcode` | 5290, 3550, 5291 |
156
+ | `secondary_address` | Apt. 480, Apt. 003, Apt. 123 |
157
+ | `state` | Victoria, Australian Capital Territory, South Australia |
158
+ | `state_abbr` | VIC, SA, VIC |
159
+ | `street_address` | 473 Heller Locks, 6991 Makenna Throughway, 72496 Doyle Tunnel |
160
+ | `street_name` | Anibal Burgs, Prohaska Walk, Dangelo Island |
161
+ | `street_suffix` | Trace, Creek, Course |
162
+ | `suburb` | Penrith, Moe, Devonport |
163
+ | `time_zone` | Asia/Baghdad, Asia/Magadan, Asia/Almaty |
148
164
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
149
165
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
150
166
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
@@ -156,46 +172,151 @@
156
172
 
157
173
  | Method | Example |
158
174
  | ------ | ------- |
159
- | `building_number` | 791, 327, 9337 |
160
- | `city` | Franco da Rocha, Sinop, Atibaia |
161
- | `city_prefix` | East, South, North |
162
- | `city_suffix` | mouth, port, burgh |
163
- | `country` | Lithuania, Antarctica, Ireland |
164
- | `country_code` | LI, SE, JE |
165
- | `neighborhood` | phoenix, Pennypack, Greater Las Vegas National |
166
- | `secondary_address` | Apt. 583, Apt. 960, Apt. 543 |
167
- | `state` | Tocantins, Amazonas, Rio Grande do Norte |
168
- | `state_abbr` | MA, RN, RJ |
169
- | `street` | Rua Pedro Souza, Avenida Fabrícia Costa, Travessa Tertuliano Gomes |
170
- | `street_address` | 7335 Miller Plaza, 591 Upton Loaf, 056 Justus Roads |
171
- | `street_name` | Conroy Roads, Hahn Isle, Schneider Pike |
172
- | `street_prefix` | Alameda, Rua, Alameda |
173
- | `street_suffix` | Springs, Haven, Prairie |
175
+ | `building_number` | 9631, 1321, 775 |
176
+ | `city` | Betim, Resende, Feira de Santana |
177
+ | `city_prefix` | North, Lake, South |
178
+ | `city_suffix` | chester, view, burgh |
179
+ | `country` | Congo, Gibraltar, Marshall Islands |
180
+ | `country_code` | HK, NU, QA |
181
+ | `neighborhood` | Cleveland Park, Kingsbridge Heights, Bushwick South |
182
+ | `secondary_address` | Apt. 505, Apt. 727, Suite 100 |
183
+ | `state` | Minas Gerais, Paraíba, Maranhão |
184
+ | `state_abbr` | RO, AP, ES |
185
+ | `street` | Alameda Alessandra Macedo, Rua Silas Brito, Alameda Roberta Saraiva |
186
+ | `street_address` | 50105 McDermott Meadows, 1623 Gutmann Tunnel, 6416 Kuhlman Junction |
187
+ | `street_name` | Lauretta Lane, Mills Court, DuBuque Cape |
188
+ | `street_prefix` | Alameda, Alameda, Alameda |
189
+ | `street_suffix` | Dam, Ville, Estate |
190
+ | `time_zone` | Asia/Irkutsk, America/Juneau, Europe/Sarajevo |
174
191
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
175
192
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
176
193
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
177
194
  | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
178
195
  | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
179
- | `zip_code` | 97562-510, 03136-374, 58862-485 |
196
+ | `zip_code` | 51033-485, 41679-032, 68943-100 |
180
197
 
181
198
  ## FFaker::AddressCA
182
199
 
183
200
  | Method | Example |
184
201
  | ------ | ------- |
185
- | `building_number` | 753, 772, 10767 |
186
- | `city` | Clarence-Rockland, Baie-Saint-Paul, Baie-Saint-Paul |
187
- | `city_prefix` | South, West, New |
188
- | `city_suffix` | ton, shire, mouth |
189
- | `country` | Comoros, Spain, Micronesia, Federated States of |
190
- | `country_code` | IM, MD, SR |
191
- | `neighborhood` | phoenix, Sea Ranch Lakes, East of Telegraph Road |
192
- | `postal_code` | H4R 5J5, S8J 8T0, Y3Y 2N7 |
193
- | `province` | Nunavut, Northwest Territories, Newfoundland and Labrador |
194
- | `province_abbr` | BC, QC, NS |
195
- | `secondary_address` | Suite 885, Suite 880, Apt. 935 |
196
- | `street_address` | 4025 Francisco Rapid, 4520 Kallie Pass, 92186 Beer Harbors |
197
- | `street_name` | Brandon Lights, Mraz Streets, Dudley Junction |
198
- | `street_suffix` | Cliff, Vista, Manor |
202
+ | `building_number` | 837, 89780, 6594 |
203
+ | `city` | Dolbeau-Mistassini, Belleterre, Barrie |
204
+ | `city_prefix` | West, Port, East |
205
+ | `city_suffix` | ton, shire, port |
206
+ | `country` | Macedonia, The Former Yugoslav Republic of, Mayotte, Sao Tome and Principe |
207
+ | `country_code` | VA, SI, SV |
208
+ | `neighborhood` | Central Chandler, South of Bell Road, phoenix |
209
+ | `postal_code` | G8G 1L1, B2B 8C4, B0N 6R5 |
210
+ | `province` | Prince Edward Island, New Brunswick, Nova Scotia |
211
+ | `province_abbr` | MB, SK, YT |
212
+ | `secondary_address` | Apt. 121, Suite 300, Suite 660 |
213
+ | `street_address` | 35541 DuBuque Fords, 2520 Jaleel Radial, 295 Murl Meadow |
214
+ | `street_name` | Rafaela Port, Gleason Divide, Mckenzie Canyon |
215
+ | `street_suffix` | Lock, Lane, Street |
216
+ | `time_zone` | Australia/Hobart, Asia/Irkutsk, Europe/Skopje |
217
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
218
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
219
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
220
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
221
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
222
+ | `zip_code` | ❗ *[zip_code] is deprecated. For US addresses please use the AddressUS module* |
223
+
224
+ ## FFaker::AddressCH
225
+
226
+ | Method | Example |
227
+ | ------ | ------- |
228
+ | `building_number` | 584, 7301, 2640 |
229
+ | `canton_abbr` | OW, AG, AR |
230
+ | `city` | Lake Kenyamouth, Moorefort, Ullrichview |
231
+ | `city_prefix` | Lake, New, West |
232
+ | `city_suffix` | borough, mouth, mouth |
233
+ | `country` | Madagascar, Cuba, Paraguay |
234
+ | `country_code` | VU, MV, GI |
235
+ | `neighborhood` | Bridesburg, Florissant West, Renton West |
236
+ | `postal_code` | 6209, 5927, 4162 |
237
+ | `secondary_address` | Apt. 897, Apt. 505, Suite 541 |
238
+ | `street_address` | 0971 Brannon Orchard, 23890 Maggie Mount, 1096 Dare Plaza |
239
+ | `street_name` | Wiza Springs, Gibson Hollow, Aniya Oval |
240
+ | `street_suffix` | Extension, Harbors, Stravenue |
241
+ | `time_zone` | Europe/Bratislava, America/Phoenix, Asia/Baghdad |
242
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
243
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
244
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
245
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
246
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
247
+ | `zip_code` | ❗ *[zip_code] is deprecated. For US addresses please use the AddressUS module* |
248
+
249
+ ## FFaker::AddressCHDE
250
+
251
+ | Method | Example |
252
+ | ------ | ------- |
253
+ | `building_number` | 13022, 093, 70201 |
254
+ | `canton` | Freiburg, Bern, Zürich |
255
+ | `canton_abbr` | AI, NW, BS |
256
+ | `city` | West Luigi, Lake Kristashire, Lucindafurt |
257
+ | `city_prefix` | South, North, North |
258
+ | `city_suffix` | view, side, mouth |
259
+ | `country` | Saint Vincent and The Grenadines, Kyrgyzstan, Pitcairn |
260
+ | `country_code` | CL, NC, ET |
261
+ | `neighborhood` | Pennypack, Mott Haven/Port Morris, Brentwood Central |
262
+ | `postal_code` | 2867, 6433, 7905 |
263
+ | `secondary_address` | Suite 826, Apt. 617, Apt. 216 |
264
+ | `street_address` | 39183 Joanny Keys, 240 Aufderhar Plains, 692 Berenice Manors |
265
+ | `street_name` | Deron Meadow, Gloria Plaza, Gregg Square |
266
+ | `street_suffix` | Corners, Parkways, Loop |
267
+ | `time_zone` | Europe/Zagreb, America/Caracas, Europe/Riga |
268
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
269
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
270
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
271
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
272
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
273
+ | `zip_code` | ❗ *[zip_code] is deprecated. For US addresses please use the AddressUS module* |
274
+
275
+ ## FFaker::AddressCHFR
276
+
277
+ | Method | Example |
278
+ | ------ | ------- |
279
+ | `building_number` | 86452, 3776, 03155 |
280
+ | `canton` | Berne, Schwytz, Glaris |
281
+ | `canton_abbr` | NE, SH, BE |
282
+ | `city` | Conroytown, South Cristobalhaven, East Kenyatta |
283
+ | `city_prefix` | Port, New, New |
284
+ | `city_suffix` | mouth, bury, mouth |
285
+ | `country` | Belize, Iraq, Mauritania |
286
+ | `country_code` | SR, AF, SO |
287
+ | `neighborhood` | Northwoods West, Seven Hills Area, West Covina East |
288
+ | `postal_code` | 6828, 6209, 6759 |
289
+ | `secondary_address` | Suite 905, Apt. 257, Apt. 586 |
290
+ | `street_address` | 8896 Hans Trafficway, 473 Beer Overpass, 623 Moises Stream |
291
+ | `street_name` | Cremin Mill, Lilliana Islands, Purdy Meadow |
292
+ | `street_suffix` | Shoal, Rest, Lodge |
293
+ | `time_zone` | Asia/Jakarta, Australia/Adelaide, Asia/Almaty |
294
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
295
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
296
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
297
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
298
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
299
+ | `zip_code` | ❗ *[zip_code] is deprecated. For US addresses please use the AddressUS module* |
300
+
301
+ ## FFaker::AddressCHIT
302
+
303
+ | Method | Example |
304
+ | ------ | ------- |
305
+ | `building_number` | 10257, 854, 025 |
306
+ | `canton` | Ticino, Grigioni, Glarona |
307
+ | `canton_abbr` | OW, AR, ZH |
308
+ | `city` | Ashtynstad, West Casimirberg, Mayerton |
309
+ | `city_prefix` | North, Port, Lake |
310
+ | `city_suffix` | town, burgh, borough |
311
+ | `country` | Saint Pierre and Miquelon, Saint Lucia, Tunisia |
312
+ | `country_code` | MS, KH, ZW |
313
+ | `neighborhood` | Greater Las Vegas National, Bridesburg, Cleveland Park |
314
+ | `postal_code` | 8601, 9687, 5226 |
315
+ | `secondary_address` | Apt. 802, Suite 130, Apt. 489 |
316
+ | `street_address` | 3368 Kessler Forges, 27859 Gage Lake, 94132 Schmitt Shoals |
317
+ | `street_name` | Ankunding Track, Rod Freeway, Damon Pine |
318
+ | `street_suffix` | Inlet, Loop, Forks |
319
+ | `time_zone` | Pacific/Honolulu, Europe/Amsterdam, Asia/Kuala_Lumpur |
199
320
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
200
321
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
201
322
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
@@ -207,94 +328,98 @@
207
328
 
208
329
  | Method | Example |
209
330
  | ------ | ------- |
210
- | `building_number` | 86645, 0940, 572 |
211
- | `city` | Gesten, Egernsund, Lemming |
212
- | `city_prefix` | West, West, Port |
213
- | `city_suffix` | port, stad, fort |
214
- | `country` | Maldives, Antarctica, Vanuatu |
215
- | `country_code` | GU, PY, IR |
216
- | `full_address` | Kallerupvej 45 7570 Skørping Nordjylland DANMARK, Kastanjegang 47 3798 Gedser Syddanmark DANMARK, Storemosen 70 9107 Gadbjerg Sjælland DANMARK |
217
- | `kommune` | Ærø, Helsingør, København |
218
- | `neighborhood` | Murray Hill, Bushwick South, Mott Haven/Port Morris |
219
- | `post_nr` | 0229, 2905, 2040 |
220
- | `region` | Nordjylland, Syddanmark, Nordjylland |
221
- | `secondary_address` | Apt. 448, Suite 706, Apt. 063 |
222
- | `state` | Skanderborg, Tønder, Ikast-Brande |
223
- | `street_address` | Guldalderen 68, Præstemosevej 75, Storengen 96 |
224
- | `street_name` | Gyvelhegnet, Estland Alle, Folehavevej |
225
- | `street_suffix` | Park, Pass, Fields |
331
+ | `building_number` | 168, 1351, 5542 |
332
+ | `city` | Dalmose, Møldrup, Nykøbing Sj |
333
+ | `city_prefix` | East, Port, New |
334
+ | `city_suffix` | mouth, side, haven |
335
+ | `country` | Jordan, Senegal, Côte d'Ivoire |
336
+ | `country_code` | BZ, UY, JM |
337
+ | `full_address` | Lindegang 13 2836 Dalmose Midtjylland DANMARK, Moseager 88 2233 Agerskov Hovedstaden DANMARK, Bringetoften 2 8225 Bække Midtjylland DANMARK |
338
+ | `kommune` | Rebild, Rudersdal, Struer |
339
+ | `neighborhood` | Northwest Midlothian/Midlothian Country Club, Summerlin North, Pennypack |
340
+ | `post_nr` | 7604, 7628, 9413 |
341
+ | `region` | Nordjylland, Syddanmark, Sjælland |
342
+ | `secondary_address` | Apt. 877, Apt. 498, Suite 109 |
343
+ | `state` | Kolding, Morsø, Albertslund |
344
+ | `street_address` | Hyldevangen 44, Torstorpvej 77, Kildehusene 7 |
345
+ | `street_name` | Jonstruphøj, Bredekær, Bakkekær |
346
+ | `street_suffix` | Fall, Corner, Bridge |
347
+ | `time_zone` | Asia/Kabul, Europe/Bucharest, Europe/Tallinn |
226
348
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
227
349
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
228
350
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
229
351
  | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
230
352
  | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
231
- | `zip_code` | 3202, 8407, 4444 |
353
+ | `zip_code` | 5449, 9721, 0394 |
232
354
 
233
355
  ## FFaker::AddressDE
234
356
 
235
357
  | Method | Example |
236
358
  | ------ | ------- |
237
- | `building_number` | 97050, 0218, 6653 |
238
- | `city` | Voerde, Schwetzingen, Vallendar |
239
- | `city_prefix` | New, Port, East |
240
- | `city_suffix` | side, mouth, fort |
241
- | `country` | CuraÇao, United Arab Emirates, Mauritania |
242
- | `country_code` | DJ, AS, RS |
243
- | `neighborhood` | Olmsted Falls Central, Auburn North, Ocean Parkway South |
244
- | `secondary_address` | Apt. 349, Suite 344, Suite 700 |
245
- | `state` | Hamburg, Saarland, Baden-Wuerttemberg |
246
- | `street_address` | Cathrinehain 165, Jackelinestr. 170, Quincystr. 77 |
247
- | `street_name` | Jewessstr., Naderweg, Nikostr. |
248
- | `street_suffix` | Gateway, Spur, Track |
359
+ | `building_number` | 2027, 2239, 03232 |
360
+ | `city` | Clingen, Blomberg, Schleswig |
361
+ | `city_prefix` | Lake, Port, South |
362
+ | `city_suffix` | port, furt, mouth |
363
+ | `country` | Hungary, Guernsey, United States |
364
+ | `country_code` | NO, EE, FR |
365
+ | `neighborhood` | Sunshine-Gardens, Greater Las Vegas National, Renton West |
366
+ | `secondary_address` | Apt. 434, Apt. 109, Apt. 644 |
367
+ | `state` | Hessen, Niedersachsen, Thueringen |
368
+ | `street_address` | Johnsonstr. 56, Howellstr. 83, Berniecestr. 79 |
369
+ | `street_name` | Howellstr., Jarrodstr., Estefaniastr. |
370
+ | `street_suffix` | Run, Greens, Bridge |
371
+ | `time_zone` | America/Halifax, Asia/Irkutsk, Asia/Ulaanbaatar |
249
372
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
250
373
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
251
374
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
252
375
  | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
253
376
  | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
254
- | `zip_code` | 94606, 02456, 71942 |
377
+ | `zip_code` | 91793, 89982, 20146 |
255
378
 
256
379
  ## FFaker::AddressFI
257
380
 
258
381
  | Method | Example |
259
382
  | ------ | ------- |
260
- | `building_number` | 44916, 85983, 3429 |
261
- | `city` | Nokia, Lahti, Vantaa |
262
- | `city_prefix` | South, Lake, Lake |
263
- | `city_suffix` | haven, stad, mouth |
264
- | `country` | Vanuatu, Malta, Greece |
265
- | `country_code` | EC, KE, TN |
266
- | `full_address` | Koskentie 1 b 7, 68724 Hämeenlinna, SUOMI, Kurjenmäentie 5 a, 87494 Haapajärvi, SUOMI, Kujalantie 8, 55528 Kankaanpää, SUOMI |
267
- | `neighborhood` | Bridesburg, Allegheny West, South of Lake Ave |
268
- | `random_country` | Chile, Amerikan Samoa, Barbados |
269
- | `secondary_address` | Suite 126, Suite 105, Suite 755 |
270
- | `street_address` | Isoniituntie 0 a 6, Urheilutie 3 a 4, Lingontie 1 b |
271
- | `street_name` | Lepäntie, Niilonpolku, Savikontie |
272
- | `street_nbr` | 5 b, 4, 7 a |
273
- | `street_suffix` | Viaduct, Mount, Field |
383
+ | `building_number` | 659, 94521, 746 |
384
+ | `city` | Heinola, Kauhava, Raasepori |
385
+ | `city_prefix` | South, South, Port |
386
+ | `city_suffix` | town, furt, mouth |
387
+ | `country` | Niger, Åland Islands, Solomon Islands |
388
+ | `country_code` | KE, AL, BV |
389
+ | `full_address` | Kalkkimäentie 5 b 0, 64188 Helsinki, SUOMI, Simontie 630, 68216 Alajärvi, SUOMI, Myllymäentie 5 b 6, 93005 Huittinen, SUOMI |
390
+ | `neighborhood` | Seven Hills Area, Far Rockaway/Bayswater, Candlewood Country Club |
391
+ | `random_country` | Australia, Kanada, Luxemburg |
392
+ | `secondary_address` | Suite 692, Suite 022, Apt. 098 |
393
+ | `street_address` | Varsanojantie 0 a 8, Liljanpolku 322, Niilonpolku 3 b 9 |
394
+ | `street_name` | Forssantie, Poste restante, Suokulmantie |
395
+ | `street_nbr` | 4 a, 923, 6 b |
396
+ | `street_suffix` | Ranch, Circle, Loaf |
397
+ | `time_zone` | Europe/Dublin, Asia/Tokyo, America/Monterrey |
274
398
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
275
399
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
276
400
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
277
401
  | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
278
402
  | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
279
- | `zip_code` | 46430, 27620, 73143 |
403
+ | `zip_code` | 76068, 78026, 13260 |
280
404
 
281
405
  ## FFaker::AddressFR
282
406
 
283
407
  | Method | Example |
284
408
  | ------ | ------- |
285
- | `building_number` | 896, 6379, 138 |
286
- | `city` | Fort-de-France, Nancy, Agen |
287
- | `city_prefix` | North, West, New |
288
- | `city_suffix` | borough, burgh, shire |
289
- | `country` | Virgin Islands, U.S., Cameroon, Djibouti |
290
- | `country_code` | FJ, NL, BQ |
291
- | `full_address` | 6 B bd Henri Aubert 94640 Versailles, 2 T, impasse Lucas Remy, 2B635 Évry, 52 Q, av Paulette Godard, 2991 Saint-Denis |
292
- | `neighborhood` | South of Bell Road, North Norridge, River Heights |
293
- | `postal_code` | 4470, 977546, 970601 |
294
- | `secondary_address` | Apt. 192, Suite 737, Apt. 672 |
295
- | `street_address` | 9959 T, avenue Andrée Lemonnier, 3 Q, avenue François Alves, 71, boulevard Noël le Rousseau |
296
- | `street_name` | Myah Fork, Kasey Plaza, Guadalupe Circles |
297
- | `street_suffix` | Crest, Fort, Stravenue |
409
+ | `building_number` | 3654, 4434, 1300 |
410
+ | `city` | Évreux, Le Blanc-Mesnil, Gap |
411
+ | `city_prefix` | Port, Lake, South |
412
+ | `city_suffix` | stad, mouth, ville |
413
+ | `country` | French Polynesia, Hong Kong, Yemen |
414
+ | `country_code` | TH, LC, ST |
415
+ | `full_address` | 81 QUATER, av Margaud Dos, 10253 Tremblay-en-France, 1 rue Guillaume du Fischer 2A967 Lorient, 82 B, bd Sylvie Grondin 970274 Colombes |
416
+ | `neighborhood` | Gates Mills North, Summerlin North, West Covina East |
417
+ | `postal_code` | 81663, 6817, 2A859 |
418
+ | `secondary_address` | Suite 382, Suite 018, Suite 219 |
419
+ | `street_address` | 28 B, bd Eugène le Lacroix, 0 Q avenue Adèle Marion, 6809 av Catherine de Roy |
420
+ | `street_name` | Bernier Groves, Kertzmann Throughway, Feest Dam |
421
+ | `street_suffix` | Orchard, Avenue, Hollow |
422
+ | `time_zone` | Pacific/Auckland, Europe/Sofia, Europe/Prague |
298
423
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
299
424
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
300
425
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
@@ -302,83 +427,141 @@
302
427
  | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
303
428
  | `zip_code` | ❗ *[zip_code] is deprecated. For US addresses please use the AddressUS module* |
304
429
 
430
+ ## FFaker::AddressIN
431
+
432
+ | Method | Example |
433
+ | ------ | ------- |
434
+ | `building_number` | 4470, 343, 311 |
435
+ | `city` | Jaydenburgh, Dickensberg, Lake Rickychester |
436
+ | `city_prefix` | North, West, New |
437
+ | `city_suffix` | mouth, fort, view |
438
+ | `country` | India, India, India |
439
+ | `country_code` | IN, IN, IN |
440
+ | `neighborhood` | North Norridge, Bronxdale, Dyker Heights |
441
+ | `pincode` | 592550, 658530, 614776 |
442
+ | `secondary_address` | Suite 998, Suite 343, Suite 113 |
443
+ | `state` | Karnataka, Madhya Pradesh, Telangana |
444
+ | `state_abbr` | HP, UP, WB |
445
+ | `state_and_union_territory` | Arunachal Pradesh, Rajasthan, Daman and Diu |
446
+ | `state_and_union_territory_abbr` | CH, MH, AP |
447
+ | `street_address` | 8519 Emil Terrace, 86678 Frida Cliff, 93439 Tyra Lights |
448
+ | `street_name` | Isom Crossroad, Kovacek Cliff, Skiles Manor |
449
+ | `street_suffix` | Key, Ways, Field |
450
+ | `time_zone` | Asia/Kolkata, Asia/Kolkata, Asia/Kolkata |
451
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
452
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
453
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
454
+ | `union_territory` | Chandigarh, Delhi, Daman and Diu |
455
+ | `union_territory_abbr` | DL, PY, PY |
456
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
457
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
458
+ | `zip_code` | 148176, 602135, 351798 |
459
+
305
460
  ## FFaker::AddressMX
306
461
 
307
462
  | Method | Example |
308
463
  | ------ | ------- |
309
- | `municipality` | Cazones de Herrera, Tepoztlán, Copándaro |
310
- | `postal_code` | 44326, 57737, 90948 |
311
- | `state` | Nayarit, Veracruz, San Luis Potosí |
312
- | `state_abbr` | COL, HGO, GTO |
313
- | `zip_code` | 84455, 85501, 38389 |
464
+ | `municipality` | Reforma, Juárez, Asientos |
465
+ | `postal_code` | 35998, 82472, 54037 |
466
+ | `state` | Guerrero, Tabasco, Querétaro |
467
+ | `state_abbr` | TLAX, GRO, CAMP |
468
+ | `zip_code` | 69609, 45086, 64795 |
314
469
 
315
470
  ## FFaker::AddressNL
316
471
 
317
472
  | Method | Example |
318
473
  | ------ | ------- |
319
- | `building_number` | 1077, 10364, 81066 |
320
- | `city` | Eeneind, Arnemuiden, Den Nul |
321
- | `city_prefix` | West, Port, West |
322
- | `city_suffix` | mouth, mouth, view |
323
- | `country` | Turkey, Philippines, Slovakia |
324
- | `country_code` | DM, LK, IS |
325
- | `neighborhood` | Mount Kisco West, Gates Mills North, Rockville East of Hungerford Dr |
326
- | `postal_code` | 0199 ew, 7746 yx, 5923 fj |
327
- | `province` | Drenthe, Noord-Brabant, Limburg |
328
- | `secondary_address` | Suite 631, Suite 999, Apt. 417 |
329
- | `street_address` | 639 Pieterstraat, 16542 Maudstraat, 23553 Alidastraat |
330
- | `street_name` | Carrollstraat, Keelingstraat, Brittstraat |
331
- | `street_suffix` | Path, Points, Cliffs |
474
+ | `building_number` | 034, 367, 8221 |
475
+ | `city` | Lottum, Weidum, De Heeg |
476
+ | `city_prefix` | New, Port, New |
477
+ | `city_suffix` | town, fort, view |
478
+ | `country` | Yemen, Singapore, Kenya |
479
+ | `country_code` | CY, CC, LU |
480
+ | `neighborhood` | River Heights, Schall Circle/Lakeside Green, Cleveland Park |
481
+ | `postal_code` | 9569 qu, 8781 zb, 1741 rm |
482
+ | `province` | Noord-Brabant, Drenthe, Gelderland |
483
+ | `secondary_address` | Apt. 124, Apt. 638, Apt. 758 |
484
+ | `street_address` | 36131 Daan-Paulstraat, 56871 Patrickstraat, 868 Funkstraat |
485
+ | `street_name` | Lednerstraat, Wymanstraat, Petronellastraat |
486
+ | `street_suffix` | Drives, Pass, Spurs |
487
+ | `time_zone` | Pacific/Port_Moresby, Europe/Vilnius, Pacific/Guam |
332
488
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
333
489
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
334
490
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
335
491
  | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
336
492
  | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
337
- | `zip_code` | 5571 qz, 2655 qo, 2911 lj |
493
+ | `zip_code` | 2717 hz, 9865 bv, 0354 yi |
494
+
495
+ ## FFaker::AddressRU
496
+
497
+ | Method | Example |
498
+ | ------ | ------- |
499
+ | `building_number` | 4169, 417, 367 |
500
+ | `city` | Нальчик, Иркутск, Кемерово |
501
+ | `city_prefix` | West, Port, South |
502
+ | `city_suffix` | mouth, furt, haven |
503
+ | `country` | Tajikistan, Pakistan, Belarus |
504
+ | `country_code` | LK, PN, NZ |
505
+ | `neighborhood` | Ladue South, Candlewood Country Club, Ocean Parkway South |
506
+ | `province` | Северная Осетия - Алания, Белгородская область, Чечня |
507
+ | `secondary_address` | Suite 596, Apt. 120, Apt. 191 |
508
+ | `street_address` | ул. Южная, д. 0, ул. Полевая, д. 6, ул. Октябрьская, д. 616 |
509
+ | `street_name` | ул. Горького, ул. Октябрьская, ул. Лесная |
510
+ | `street_number` | 80, 176, 91 |
511
+ | `street_suffix` | Knoll, Brooks, Isle |
512
+ | `time_zone` | Australia/Adelaide, Europe/Vilnius, Asia/Hong_Kong |
513
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
514
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
515
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
516
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
517
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
518
+ | `zip_code` | 964736, 255936, 579284 |
338
519
 
339
520
  ## FFaker::AddressSE
340
521
 
341
522
  | Method | Example |
342
523
  | ------ | ------- |
343
- | `building_number` | 257, 010, 16574 |
344
- | `city` | Lysekil, Kristianstad, Örnsköldsvik |
345
- | `city_prefix` | South, West, North |
346
- | `city_suffix` | mouth, mouth, stad |
347
- | `country` | Virgin Islands, British, India, Mali |
348
- | `country_code` | SC, TC, BJ |
349
- | `full_address` | Reimersholmsgatan 0, 56 038 Karlstad, SVERIGE, Gustafsborgsvägen 29, 54203 Enköping, SVERIGE, Rädisvägen 2a, 05197 Flen, SVERIGE |
350
- | `neighborhood` | Schall Circle/Lakeside Green, Cleveland Park, Mott Haven/Port Morris |
351
- | `random_country` | Nigeria, Nordmarianerna, Zambia |
352
- | `secondary_address` | Apt. 036, Suite 984, Suite 306 |
353
- | `street_address` | Gustafsborgsvägen 1a, Textilvägen 526, Högsjövägen 3b |
354
- | `street_name` | Disavägen, Snoilskyvägen, Kedjevägen |
355
- | `street_nbr` | 7a, 70, 2b |
356
- | `street_suffix` | Ford, Field, Passage |
524
+ | `building_number` | 7715, 066, 86083 |
525
+ | `city` | Malmö, Filipstad, Fagersta |
526
+ | `city_prefix` | New, East, East |
527
+ | `city_suffix` | ton, borough, mouth |
528
+ | `country` | Cook Islands, Isle of Man, Malaysia |
529
+ | `country_code` | BV, AO, KY |
530
+ | `full_address` | Vattenkraftsvägen 956, 38183 Arboga, SVERIGE, Grumsgatan 7b, 86 828 Arvika, SVERIGE, Dannemoragatan 021, 18296 Alingsås, SVERIGE |
531
+ | `neighborhood` | Florissant West, Cipriani, Seven Hills Area |
532
+ | `random_country` | Guernsey, Burkina Faso, Vietnam |
533
+ | `secondary_address` | Apt. 333, Suite 405, Apt. 243 |
534
+ | `street_address` | Ryssmurvägen 847, Markviksvägen 55, Blåfjällsgatan 8 |
535
+ | `street_name` | Dillnäsvägen, Bröderna Grimms Väg, Storgatan |
536
+ | `street_nbr` | 09, 1, 814 |
537
+ | `street_suffix` | Freeway, Camp, Lane |
538
+ | `time_zone` | Asia/Hong_Kong, Asia/Dhaka, Atlantic/South_Georgia |
357
539
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
358
540
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
359
541
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
360
542
  | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
361
543
  | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
362
- | `zip_code` | 42 049, 47755, 96881 |
544
+ | `zip_code` | 70 150, 21087, 12797 |
363
545
 
364
546
  ## FFaker::AddressSN
365
547
 
366
548
  | Method | Example |
367
549
  | ------ | ------- |
368
- | `arrondissement` | Sam Notaire, Yeumbeul Nord, Thiaroye Sur Mer |
369
- | `building_number` | 97044, 05405, 578 |
370
- | `city` | Hintzland, Lake Bridgetteside, East Gordonfurt |
371
- | `city_prefix` | West, Port, East |
372
- | `city_suffix` | chester, land, town |
373
- | `country` | Switzerland, New Caledonia, Antarctica |
374
- | `country_code` | CY, IN, NR |
375
- | `departement` | Tambacounda, Mbour, nioro du rip |
376
- | `neighborhood` | Florissant West, Candlewood Country Club, Auburn North |
377
- | `region` | matam, louga, kedougou |
378
- | `secondary_address` | Apt. 592, Apt. 868, Suite 216 |
379
- | `street_address` | 21118 Fay Manor, 674 Bulah Skyway, 88629 Lebsack Cape |
380
- | `street_name` | Waelchi Spur, Hansen Plain, Diego Streets |
381
- | `street_suffix` | Harbors, Union, Lakes |
550
+ | `arrondissement` | Médina, Ndiarème Limamoulaye, Cambérène |
551
+ | `building_number` | 57616, 25123, 1972 |
552
+ | `city` | South Braxtonberg, East Grayce, Wunschfort |
553
+ | `city_prefix` | Lake, New, East |
554
+ | `city_suffix` | haven, burgh, stad |
555
+ | `country` | Belize, Estonia, Guam |
556
+ | `country_code` | PK, AG, BF |
557
+ | `departement` | Matam, Goudomp, Guinguineo |
558
+ | `neighborhood` | Gates Mills North, Ladue South, Rockville East of Hungerford Dr |
559
+ | `region` | kedougou, dakar, thies |
560
+ | `secondary_address` | Suite 338, Apt. 918, Apt. 463 |
561
+ | `street_address` | 43965 Enos Plaza, 0963 Karson Ville, 93129 Hilda Ports |
562
+ | `street_name` | Hope Port, Magnolia Court, Mozelle Lock |
563
+ | `street_suffix` | Valleys, Prairie, Centers |
564
+ | `time_zone` | Europe/Paris, America/Caracas, Europe/Belgrade |
382
565
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
383
566
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
384
567
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
@@ -386,23 +569,37 @@
386
569
  | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
387
570
  | `zip_code` | ❗ *[zip_code] is deprecated. For US addresses please use the AddressUS module* |
388
571
 
572
+ ## FFaker::AddressUA
573
+
574
+ | Method | Example |
575
+ | ------ | ------- |
576
+ | `appartment_number` | 8, 962, 4 |
577
+ | `building_number` | 75, 431, 8 |
578
+ | `city` | Бровари, Біла Церква, Шостка |
579
+ | `country` | Бруней, Україна, Кувейт |
580
+ | `province` | Київська область, Луганська область, Київська область |
581
+ | `street_address` | вул. Зелена, 1, вул. Староміська, 192, вул. Вузька, 580 |
582
+ | `street_name` | вул. Вічева, вул. Вузька, вул. Городоцька |
583
+ | `zip_code` | 71392, 98134, 18836 |
584
+
389
585
  ## FFaker::AddressUK
390
586
 
391
587
  | Method | Example |
392
588
  | ------ | ------- |
393
- | `building_number` | 26518, 244, 23391 |
394
- | `city` | West Dolly, Gerlachland, Deckowview |
395
- | `city_prefix` | North, South, South |
396
- | `city_suffix` | mouth, fort, ville |
397
- | `country` | Scotland, Northern Ireland, England |
398
- | `country_code` | LI, FR, MW |
399
- | `county` | Tayside, County Tyrone, Central |
400
- | `neighborhood` | Babylon Bayside, Seven Hills Area, North East Irwindale |
401
- | `postcode` | BX8 0BS, GB44 7TP, TQ78 3HD |
402
- | `secondary_address` | Apt. 956, Suite 118, Suite 349 |
403
- | `street_address` | 64695 Bechtelar Centers, 22618 Aylin Spurs, 8616 Constantin Lane |
404
- | `street_name` | Jess Pass, Davis Ranch, Bailey Spurs |
405
- | `street_suffix` | Hill, Forges, Way |
589
+ | `building_number` | 440, 3956, 9050 |
590
+ | `city` | Elenabury, Lake Chetmouth, O'Keefefort |
591
+ | `city_prefix` | Port, East, East |
592
+ | `city_suffix` | shire, stad, ton |
593
+ | `country` | Northern Ireland, Scotland, England |
594
+ | `country_code` | BI, AI, SK |
595
+ | `county` | West Glamorgan, Gloucestershire, Oxfordshire |
596
+ | `neighborhood` | Cipriani, Sea Ranch Lakes, South of Lake Ave |
597
+ | `postcode` | FZ09 3AL, BE61 1FH, MB08 5DV |
598
+ | `secondary_address` | Apt. 329, Suite 866, Suite 168 |
599
+ | `street_address` | 696 Einar View, 67784 Johns Way, 15308 Jamil Centers |
600
+ | `street_name` | Davonte Lane, Mosciski Underpass, Isobel Turnpike |
601
+ | `street_suffix` | Square, Creek, Way |
602
+ | `time_zone` | Europe/Dublin, Asia/Ulaanbaatar, Europe/Riga |
406
603
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
407
604
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
408
605
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
@@ -414,107 +611,124 @@
414
611
 
415
612
  | Method | Example |
416
613
  | ------ | ------- |
417
- | `building_number` | 34103, 0198, 492 |
418
- | `city` | West Ociebury, Port Terence, Port Lesley |
419
- | `city_prefix` | New, North, New |
420
- | `city_suffix` | furt, borough, berg |
421
- | `continental_state` | Louisiana, Kansas, Alabama |
422
- | `continental_state_abbr` | IL, IA, RI |
423
- | `country` | Guinea, Latvia, Bolivia, Plurinational State of |
424
- | `country_code` | SX, MG, MU |
425
- | `neighborhood` | East Renton, Babylon Bayside, Northwoods West |
426
- | `secondary_address` | Suite 011, Suite 455, Suite 040 |
427
- | `state` | North Dakota, Massachusetts, West Virginia |
428
- | `state_abbr` | MS, ND, MO |
429
- | `state_and_territories_abbr` | IN, WY, CT |
430
- | `street_address` | 54177 Casey Inlet, 6549 Bella Neck, 92992 Valentina Freeway |
431
- | `street_name` | Kariane Stream, Tremblay Mountain, Edwin Canyon |
432
- | `street_suffix` | Ford, Parks, Extensions |
614
+ | `building_number` | 16978, 37098, 0904 |
615
+ | `city` | East Amandaside, South Irving, Jermeyshire |
616
+ | `city_prefix` | Lake, New, West |
617
+ | `city_suffix` | side, chester, view |
618
+ | `continental_state` | Michigan, Nevada, South Dakota |
619
+ | `continental_state_abbr` | DC, LA, GA |
620
+ | `country` | Benin, Sri Lanka, Mauritius |
621
+ | `country_code` | CN, GP, HT |
622
+ | `neighborhood` | Jupiter South/Abacoa, Cleveland Park, Pennypack |
623
+ | `secondary_address` | Suite 355, Apt. 832, Apt. 804 |
624
+ | `state` | Texas, Delaware, Virginia |
625
+ | `state_abbr` | KS, CA, FL |
626
+ | `state_and_territories_abbr` | HI, KY, MS |
627
+ | `street_address` | 552 Seth Plain, 338 Stroman Mall, 180 Kautzer Port |
628
+ | `street_name` | Stark Stream, Brody Park, Jace Haven |
629
+ | `street_suffix` | Springs, Row, Land |
630
+ | `time_zone` | Etc/UTC, Africa/Cairo, America/Denver |
433
631
  | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
434
632
  | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
435
633
  | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
436
634
  | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
437
635
  | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
438
- | `zip_code` | 61516-5529, 69414-7920, 22908-4629 |
636
+ | `zip_code` | 77260-7664, 99094-2120, 91634 |
439
637
 
440
638
  ## FFaker::Avatar
441
639
 
442
640
  | Method | Example |
443
641
  | ------ | ------- |
444
- | `image` | http://robohash.org/quiasintet.png?size=300x300, http://robohash.org/delectusautemet.png?size=300x300, http://robohash.org/iureexaliquam.png?size=300x300 |
642
+ | `image` | https://robohash.org/laboruminquisquam.png?size=300x300, https://robohash.org/enimearecusandae.png?size=300x300, https://robohash.org/suntautaut.png?size=300x300 |
445
643
 
446
644
  ## FFaker::Lorem
447
645
 
448
646
  | Method | Example |
449
647
  | ------ | ------- |
450
- | `characters` | fds71va5yuhjdl28701ifedgbgjalr8dq2buu66lgsuuvx26d969vskvoo093yfuv8govmkt32b4ik8myl5jidijlgzfthxcl8wkq045sq4q8bzgzv9h0vnfub8fa1714tw09tga8slqfba5o0e2woird4tv5gpubk5v784tauxz0weate2ayy5u37ly4sa0fh2bho5y4stwzmp3lys6nm3smcpz1fhblj420e3sm9k788p42u3h227vmon4lpp, 5d5kte29tqgbtkd64rthvaooyye9ri5bli1jwy651ykfo4s19zpt17av0no7krm5jy6ehmyo8g4vjmjncje4dnilldrp1xp5ck1cfs0wsbxuoovhg9s51ay9j4ukgyfvuoxccbmaooju25pdg0qkwyzjv7v52uvjrkgb5wi1fle0l31phudm2b7xgz7p6v3zyhhmgjka5txgogjuyrzc2kg5cy059qclsjea1d69p1a18dc2ufitajl753bhpkn, x3o7v39u7433ioat5h7oeo5rhmf2n76hw0iel70y7fu2wkyegxk6rar1luhvjfdgyddaq5mxn50p8k0xovhia0v2de9f6lpeqj7vf20yam1u7qy8xdeyobpf2oxz4kp98g0rdabgwqc092w5rd9879j26tb2ra4lrndztv3ndcrrweamlfl5pvc552wma3rhh1ts93u8ejcj3nsr2usx4fb6yhl0molhoxarwq4y6m815bjs5zlst0gc71dkmux |
451
- | `paragraph` | Cupiditate omnis expedita cum dolorum. Eum omnis sed sint sunt labore nulla et et. Dignissimos maxime distinctio natus omnis quia. Rerum sed recusandae velit illo itaque dolore., Quis animi aut eos eum. Fugit sed qui corporis autem consequatur eum laboriosam id. Aliquid iure ullam accusantium maxime rerum animi. Et ut vitae sit molestias ea tenetur ut. Numquam velit nostrum eum fugiat., Occaecati reiciendis sit recusandae officiis modi omnis autem. Beatae sit nemo nihil qui deserunt minima. Pariatur doloribus illum voluptas dolor nam. Blanditiis consectetur totam officia dolorum. Cum laudantium aut deserunt perspiciatis eum vel in neque. |
452
- | `paragraphs` | Fuga officia inventore vel et deleniti repudiandae porro. Et tempora autem inventore facere. Ex est dolores voluptatem voluptatem aut optio ducimus., Et assumenda velit eum praesentium rem. Dolorem et est corporis error distinctio consequatur. Qui enim quis culpa placeat. Et praesentium nostrum inventore non hic aut tenetur., Fugit qui culpa excepturi dicta quasi. Et inventore nesciunt beatae rerum et sed. Et laborum corrupti voluptatibus omnis., Ad et quia sequi est odio omnis. Voluptatem assumenda debitis similique aut quia suscipit. Sunt voluptatem voluptates et aut et recusandae molestias pariatur., Commodi molestiae dolorem aperiam quo doloribus quisquam vel. Vero ratione voluptas ut tempora perferendis facilis rerum deleniti. Soluta architecto illum expedita odio et alias. Est dolorem inventore omnis aut. Perferendis doloremque molestiae quo aut odit., Commodi sunt et vero ut maiores pariatur. Sunt debitis eius aperiam unde architecto. Molestias labore enim eos ex cumque explicabo., Omnis maiores id quam eligendi deserunt dignissimos sed autem. Adipisci voluptatibus magnam itaque tenetur. Illo voluptates earum iste itaque. Maxime voluptas ut iusto occaecati est quasi quam., Omnis minima repellat mollitia alias expedita. Nostrum enim dolore rerum minima mollitia non. Error inventore optio rem sunt neque velit. Consectetur aut dolores consequuntur expedita repellat quo., Quia dolorem necessitatibus non non aliquam. Dicta fuga molestiae recusandae libero consequatur ut. Pariatur temporibus minima odit debitis sit. |
453
- | `phrase` | Excepturi non est dolore distinctio., Alias ut commodi et occaecati quisquam dolorem qui incidunt., Praesentium nesciunt fugiat ullam excepturi quisquam. |
454
- | `phrases` | Vitae aspernatur quae beatae qui., Deserunt ea sint excepturi placeat delectus totam nisi., Asperiores voluptatem id eos hic quo error maiores dolorum., Consectetur illo deleniti dignissimos maxime delectus voluptatibus et non., Provident voluptatum sint iste et laborum., Cupiditate enim ducimus fugit eum officiis exercitationem et voluptatem., Sed illum deserunt repellendus dicta dolorem veniam iusto., Dolore recusandae sequi dolorum hic ea quis incidunt quia., Sit ut dolorem vero et velit sunt. |
455
- | `sentence` | Asperiores molestiae nisi voluptatum sed omnis consequatur id., Aliquam recusandae illo rem maiores atque., Et qui quas soluta nesciunt libero laborum. |
456
- | `sentences` | Rerum illo est maiores non., Omnis quis eum veritatis dolores aspernatur ipsa natus atque., Ut earum dolorem et fugiat odit non amet., Veniam cupiditate earum nam aut ut vel., Autem magnam quo sint deserunt aut., Laborum voluptate et odit omnis omnis sit quam officia., Eius cumque qui porro ipsum culpa., Molestias culpa sed impedit eligendi qui., Fugit deserunt aut aspernatur inventore voluptates. |
457
- | `word` | magnam, consequatur, pariatur |
458
- | `words` | possimus, qui, sed, iure, ipsam, sunt, possimus, odit, fugit |
648
+ | `characters` | w1quybu0hdjo6hbr2b4bx1v0o5h391h2t1jfxfm3w99h2vi2rha26pu0yg0kcd7bphsir6djxemfm1fwvzbpor6eo9ge2o1liu2taaqql5m2zuzem51m2icnlrwm0dssjlna9vfa1r75pml35r22xma5vhgsjz15jwhmsswgyoq4mui7d0xebkz00yk1e8ofvrl53jmzub5g62f8z1vnvfah2l04lka1ler9qfjwborau0r4px9a0o0pmua5py8, rkn52xhc6yy30hgfuj77435ydq3vi6ghak67gwf4jlg4smunr2btl53g9kjfgitw89k9wrqsf6637e9xz75enbktxs5eokps88yi1cenqyl6ugxmz9t2g2efy8lwfj0q2bpgovv1d7zmr0m6iouwbprpttw0kqnwz5dbm9jl1za91bxmuvxtxilfbvwxedsok3ua51j33eyzr7ayv8ix6titwj669nusd5cpjagy0d78k460mwy9e0pohqirclk, dreuumof8dd8rko4pd1fip9b1cb2tl32e84k3wzogrh2lu2zrt5le1pimv74csekmgmsnvlq0e4w5z03ndrw4qvjwxciq5n9kqso6fu1nmeju67ksgptbuaiqiakbjkyqrj9tx2kmcl03g7ujzgb3dvdzoxhfub8bm08g3ots1x9ty70zfx6cao8v3dabc1llqzmrh0vszuhnm6lj1eq3qzakvj05oazh2hrglonmbv1238add5mrvanosd627p |
649
+ | `paragraph` | Voluptatibus eaque porro praesentium quia nulla. Iure rem nemo quia aliquid. Consequatur commodi labore molestiae sed explicabo. Ab tenetur consequatur exercitationem eum., Excepturi vitae ad doloremque dicta est mollitia. Reprehenderit dolor voluptatem asperiores impedit et iusto. Aut sequi voluptatum aliquid ex qui., Earum aliquam suscipit omnis neque dolor adipisci sit magnam. Nostrum tempore eos consequatur esse aperiam magni qui. Quia eligendi sequi perferendis autem est. Dignissimos illum aut quaerat distinctio. Accusamus deleniti labore rerum molestiae quam. |
650
+ | `paragraphs` | Ut architecto doloribus et rerum veniam asperiores neque maxime. Quod ratione necessitatibus voluptate ipsum qui nisi. Praesentium doloribus ut deserunt reprehenderit error totam ad., Enim incidunt est accusantium odit distinctio. Repudiandae qui consequatur at est nostrum vel et voluptas. Id molestiae aspernatur distinctio non aliquam., Autem delectus impedit itaque veritatis saepe voluptas a. Assumenda voluptatem aut dolore veritatis harum natus placeat rerum. Aut cum voluptatem eos facere. Et sit dolorum quam enim placeat ea a blanditiis. Omnis itaque aliquam nesciunt tenetur., Eveniet eos dolorem eaque tenetur optio. Beatae non ratione corrupti fugiat qui ea neque veritatis. Ullam nemo delectus ipsa enim sit porro quod., Et et expedita nostrum ut id. Qui eligendi a est sed vero dolores et. Aut cum molestiae pariatur sunt dicta. Aut architecto odio excepturi qui consequatur molestias maiores voluptatem. Qui modi voluptatum eos maxime velit., Necessitatibus adipisci quibusdam optio ea et ex quia. Quasi repudiandae vel doloremque dolore. Reprehenderit optio in aut suscipit quod ut quis. Est voluptate nam aliquam maxime. Nobis suscipit doloribus et odit eos qui., Inventore molestiae dolorem id quo repellendus. Quis dicta ea itaque repellendus voluptas et tempora quia. Voluptatem reiciendis at itaque quis recusandae nobis ipsum animi. Ut sed provident qui odit minima repellat., Sequi nihil molestiae et excepturi distinctio rerum quia. Modi quos ullam aut repudiandae cumque aut. In mollitia ut cum aliquam. Odio labore nemo alias a velit qui libero., Adipisci vel laudantium qui temporibus at quis odit ut. Praesentium dolorem nisi voluptas incidunt voluptatem ut unde. Aut sint dolor omnis est sit quaerat consequatur. Laboriosam illum eius ex ut accusantium. Temporibus sed aut ipsum aut at facere est labore. |
651
+ | `phrase` | Autem quibusdam quod vitae sint., Explicabo facilis ut et aut blanditiis ab ad quia., Tenetur laborum voluptatibus laboriosam rerum aliquam omnis possimus. |
652
+ | `phrases` | Voluptas odit natus voluptatem aut eos., Culpa officia rerum natus asperiores eum quo iusto unde., Provident ducimus quibusdam sunt cumque quisquam., Reprehenderit similique enim quia et., Et molestiae amet libero est repellendus recusandae dolore., Non consequuntur blanditiis quasi dignissimos earum incidunt eum., Animi consectetur beatae a quia explicabo hic quia., Autem est similique molestiae totam nihil., Quas nemo occaecati cum minima rerum et qui atque. |
653
+ | `sentence` | Quis quas ea laudantium necessitatibus voluptatum explicabo., Doloribus quo molestias est neque delectus numquam eos., Sint animi similique qui suscipit perferendis iusto. |
654
+ | `sentences` | Reiciendis enim perspiciatis non qui et quia., Sit mollitia beatae necessitatibus iste deserunt recusandae eveniet illum., Voluptatem temporibus sed natus earum maxime asperiores recusandae saepe., Voluptas enim architecto in reprehenderit., Optio inventore aspernatur itaque sed nihil maiores rem., Eum quibusdam debitis et commodi rerum aspernatur., Sit magnam suscipit laboriosam similique deleniti rerum accusamus., Non enim quia harum natus pariatur eum voluptas., Enim in et autem sed ratione. |
655
+ | `word` | aspernatur, ducimus, aut |
656
+ | `words` | corporis, quod, omnis, quos, quia, minima, earum, molestiae, ut |
459
657
 
460
658
  ## FFaker::BaconIpsum
461
659
 
462
660
  | Method | Example |
463
661
  | ------ | ------- |
464
- | `characters` | qqedw1sl7bt3jsv69s1wz3eti369l7bmlcsm6eurng7tmdbf48wmw3k215be34u6p4uru633hl49r0n02ulf004alru4v8jvjyaaer7ebdidodgachlgt5ip0ly651agzqpchnkc3l4miii7jzimxorqva8mik7d6ckwui3dvvy03tm57boebuzmdzfbf0r7a80tmb0uywshceodu2cbezg3gk2d6hh41c7bh2x6h4h6vdiy8uru9hf184l7t9u, oisaazjlrplxggghci2urvljiie2u1jsqwxaseistrjgdboch7rtk1wfpj2goch5l85oqnualggg3q5yvu2aw3q3k332dtiog9w9b42pombmga5x9sjg0u8wy1xjj0y5u0xmoholcc1dujezshs9goay94auhmvg3iggqxh9x4ak7xau4i281gbvsagb4v89876a5262zhhkrd4vcl21mnl7hvsewtqlc0jc2aaqz2bdy2as656ndol5v7rmxns, 1buqbi613do8wp89w3686zr725alo6id27t9arute2uc35rk6wmllld8mg0trhp4lfml8supp6vffxta5rl5eehzo49452yp0qmvoqhxn618hi4f7c75wi9qhnjh2o00ab0dg8c4wfufncd58jo9d39xssgsdujbg4uuntupa3iudddo51oxr997i3ts0hkp7jp4lxxkmmvdii285oxb42k3f9y4aron212xma1966ulk2tsspi87pxymviwa6k |
465
- | `paragraph` | Pork loin sausage landjaeger pastrami frankfurter boudin beef ribs t-bone. Fatback Kevin biltong tenderloin short loin brisket tri-tip meatball sirloin. Chicken ham hock capicola tail frankfurter pork chop ribeye venison. Turkey prosciutto porchetta pastrami tenderloin ball tip pork loin., Shankle strip steak landjaeger leberkas beef fatback jowl turducken bacon. Pastrami andouille flank swine leberkas. Tongue hamburger swine pork ribeye. Capicola short ribs beef short loin pork loin meatloaf., Cow doner capicola short ribs jowl tongue turducken pig pork loin. Leberkas sirloin beef shankle pancetta corned beef. Tri-tip ham hock fatback frankfurter sirloin landjaeger drumstick chicken. Pork t-bone ball tip corned beef pork loin tri-tip filet mignon andouille pancetta. |
466
- | `paragraphs` | Shoulder shankle andouille tenderloin turkey. Jowl pancetta tri-tip ribeye pastrami flank. Boudin short ribs t-bone shank leberkas tri-tip tongue. Tail porchetta short loin jerky prosciutto sirloin pork. Strip steak boudin corned beef rump fatback prosciutto pastrami., Frankfurter porchetta filet mignon pancetta fatback pork loin venison flank brisket. Shankle sausage jerky biltong tenderloin beef ribs pig pancetta short ribs. Sausage frankfurter pork chop capicola short loin pig porchetta biltong bresaola. Shankle brisket bresaola chicken boudin ham pork andouille. Pork swine meatloaf sausage pork chop rump boudin., Tenderloin tongue turkey frankfurter short loin jerky rump. Chuck shankle porchetta ground round pig beef t-bone pork loin chicken. Drumstick brisket kielbasa bacon frankfurter tenderloin doner ground round chuck., Shankle sausage tail turducken drumstick porchetta ribeye. Turkey bacon chuck beef ribs chicken ribeye tongue pancetta. Swine shankle meatloaf venison ham hock strip steak., Venison pork beef ribs pork loin ribeye pancetta capicola fatback. Sirloin meatball ball tip beef ribs pork loin corned beef kielbasa chuck. Sausage meatball pork loin fatback jowl flank biltong. Cow kielbasa capicola filet mignon pig ham., Beef tenderloin ribeye landjaeger turducken spare ribs t-bone shank. Chicken brisket corned beef pork loin beef jerky. Salami biltong pork chop ground round drumstick filet mignon bacon., Jowl drumstick pork loin bresaola shankle pastrami prosciutto. Jowl short ribs pancetta meatball tail fatback rump spare ribs filet mignon. Turducken frankfurter Kevin tail swine ground round corned beef boudin. Meatball sausage shoulder cow chicken jerky landjaeger bresaola. Pork belly shank biltong cow pancetta., Pastrami beef rump biltong doner leberkas. Pork pork loin capicola ham hock cow venison. Shankle pork kielbasa ham hock swine jowl short ribs meatball., Sirloin spare ribs bacon leberkas prosciutto meatloaf. Kevin pig shoulder frankfurter shankle ground round biltong fatback. Shank tongue tri-tip salami Kevin venison spare ribs brisket. Hamburger boudin fatback swine ground round. |
467
- | `phrase` | Chicken shankle prosciutto swine short ribs., Kielbasa bresaola meatball pastrami turducken shoulder chuck brisket., Salami bacon meatball cow kielbasa turkey shankle ham short loin. |
468
- | `phrases` | Meatloaf rump ball tip tri-tip short ribs., Sausage corned beef doner Kevin ham hock beef ribs rump., Chicken pastrami pork belly pig ham hock chuck pork loin swine., Jerky pork loin tri-tip pastrami kielbasa swine porchetta sausage shoulder., Strip steak salami tongue pig pancetta landjaeger., Cow swine short ribs bresaola chicken pastrami pork chop., Fatback t-bone leberkas brisket ribeye sausage biltong., Venison turducken andouille pork belly ham hock salami pork porchetta biltong., Short ribs pork hamburger tenderloin drumstick ham biltong boudin. |
469
- | `sentence` | Sausage pig pork loin shankle tri-tip pancetta., Fatback pork chop pork loin sirloin shankle sausage tongue pig., Ribeye biltong rump boudin leberkas doner pork chop porchetta. |
470
- | `sentences` | Ham hock frankfurter rump landjaeger venison chicken pig., Swine turkey sirloin meatloaf capicola., Flank bacon bresaola short loin chicken tail cow turducken., Bacon ball tip turducken chuck ground round jerky., Capicola flank fatback bacon shankle ground round., Short loin biltong bresaola turkey prosciutto sirloin fatback boudin., Pork meatball salami doner pig pork belly., Beef frankfurter meatball chicken ground round., Jerky salami shank leberkas frankfurter jowl. |
471
- | `word` | boudin, sirloin, Kevin |
472
- | `words` | short ribs, pastrami, bresaola, pork, brisket, bacon, swine, jowl, strip steak |
662
+ | `characters` | azndmiyuh7vw4218ptjcar5d6fq4q50ulesoo7pp373vwn8wlktvtfv7b2ptackbszpd0e3zc9wcuu2rxs2akkuouopk2o94ovgn2oeqo86xm6qfm8nxrnaz76o6s3lauxfy8mh7ttxueygwpfowhssqpkkr5jkytchlke1y05blmorrdjhh3vxh9xqiyql5s0x5jn8vtoq54c8ea9mhe4wg4453j6c6uvul81nkc1ksu9om55qz8kltt10w2s6, skwmj2497q8l5asyg2x7cz46szpo1rop144wralpzrtx7mqyp6z1w9jtkydlfw8p9q4g3aabco12d1whf90h16cqxou4n5s0j4k1mykvms4b2dxjvdo2d4jsd97zphkmy1xnjt2tpzzc51o2cyfesfl0zpth1hevdmcqtwk5adjqkzszzh44p7oftd9ieie6lkhsybvehi0e9ns6gp158gs0fx9oy06n87e7iggv16vdpbyeqyyju18ch5vir6j, 9t08ijrubgnzbxpd2cocx27860fgr5a5s4irlosi489flcd6kgpsi0l8gyd0u3m11a9np33fhthfhbajk0byoti0n4jumlpfcsbhzy2pbzcxfaiibzqnwaltz842nvluhfo3vo3he6j0sukbut65bdrntdp2drt52zqmv9tomyqqjh5t27brzzu5v0ou9aspnp74gbs0ws26c0sr52a8ge7fif6s3dvfndzafog9wufn94i8x0581co4580z9wu |
663
+ | `paragraph` | Ribeye swine chuck short ribs tri-tip chicken pancetta pork chop bresaola. Filet mignon beef ribs andouille pork chop chicken strip steak tenderloin shank. Drumstick landjaeger spare ribs shoulder ham hock pig chicken filet mignon porchetta. Filet mignon pork chop drumstick ham hock brisket beef ribs tongue landjaeger. Andouille turducken bresaola turkey pork chop prosciutto sausage porchetta., Cow chicken beef ribs bacon shank pancetta. Turducken tenderloin chuck fatback kielbasa swine boudin shankle. Turducken fatback ham beef frankfurter beef ribs venison tail jerky., Pastrami ham hock capicola ribeye meatball turducken ball tip pork chop chuck. Ground round capicola chicken turkey rump brisket spare ribs corned beef. Prosciutto pork capicola doner swine pig. |
664
+ | `paragraphs` | Meatloaf shankle sausage pig cow tail jerky swine. Doner pig salami pork belly tri-tip pastrami Kevin. T-bone tongue andouille ball tip bresaola tail jowl porchetta corned beef. Filet mignon fatback capicola prosciutto bresaola corned beef salami chuck., Turkey ham pork chop ball tip Kevin. Tenderloin jerky turkey spare ribs landjaeger doner ball tip capicola bacon. Tongue short ribs jerky porchetta ribeye kielbasa landjaeger filet mignon., Filet mignon tenderloin Kevin capicola drumstick strip steak shoulder shank salami. Pancetta capicola tongue pork loin frankfurter strip steak short ribs. Drumstick jerky flank landjaeger ball tip capicola shank turducken. Sirloin prosciutto strip steak meatball salami doner chicken., Meatloaf pastrami fatback corned beef ham flank. Kielbasa brisket drumstick meatball hamburger tongue pancetta corned beef. Turkey landjaeger ham short loin salami shoulder. Leberkas turducken pork loin rump sausage corned beef., Tri-tip ground round jowl short ribs bacon leberkas. Swine salami jerky pancetta Kevin ham. Tongue pastrami shoulder drumstick doner t-bone porchetta. Tenderloin biltong andouille chuck shoulder venison ground round shankle. Pork venison tongue short ribs beef sirloin biltong leberkas., Sirloin capicola pig strip steak landjaeger venison kielbasa. Turducken ribeye chicken jowl hamburger capicola pork belly brisket. Ham hock tail turkey swine capicola beef ribs leberkas. Pig bresaola turkey brisket landjaeger frankfurter andouille. Short ribs brisket shankle pork belly jowl., Kielbasa shankle ham hock flank sausage. Pork loin jerky strip steak leberkas ham. Spare ribs beef shoulder jowl brisket. Prosciutto boudin salami cow tail fatback sirloin landjaeger turkey., Beef ribs salami Kevin rump bacon shoulder shankle t-bone. T-bone Kevin boudin ball tip pork belly pork ground round cow chicken. Ham pork loin pancetta venison andouille drumstick. Meatball bacon ham hamburger Kevin flank., Corned beef short loin sirloin salami shoulder meatloaf. Meatball ham rump brisket chuck ball tip. Ribeye pork beef pork belly sirloin landjaeger kielbasa shank prosciutto. Biltong tail t-bone leberkas tri-tip. |
665
+ | `phrase` | Rump boudin frankfurter ball tip chuck pancetta ground round flank fatback., Turkey ribeye bresaola frankfurter pork belly., Beef ribs drumstick bacon bresaola andouille shoulder. |
666
+ | `phrases` | Beef fatback landjaeger ribeye doner ground round., Tongue filet mignon jerky tail swine ribeye., Chuck pork chop Kevin ball tip jerky pig pancetta capicola meatloaf., Capicola tenderloin venison doner tongue ground round short loin., Venison meatloaf leberkas pork chop ham hock pancetta bacon sausage., Chuck pastrami rump hamburger corned beef short loin jerky tri-tip shankle., Beef pork loin Kevin pork shank., Pastrami boudin Kevin frankfurter andouille shankle., Spare ribs ball tip hamburger pork shank bacon salami t-bone tongue. |
667
+ | `sentence` | Tenderloin brisket hamburger sausage flank shoulder., Prosciutto ham hock leberkas pork chop hamburger shoulder biltong beef., Strip steak Kevin pork loin flank ball tip short loin rump meatloaf. |
668
+ | `sentences` | Frankfurter tail strip steak kielbasa ground round., T-bone ground round tail strip steak turkey short loin., Prosciutto flank tail venison turducken pork belly pancetta bresaola andouille., Tail tri-tip pork loin cow venison meatball ball tip flank pastrami., Tri-tip pork chicken ground round corned beef Kevin., Biltong sirloin shoulder meatball turkey bacon tenderloin doner., Prosciutto ribeye jowl andouille drumstick beef brisket., Jerky ham hock pig salami pork chop flank chuck., Frankfurter spare ribs ribeye chicken chuck cow. |
669
+ | `word` | turkey, turkey, boudin |
670
+ | `words` | jerky, rump, ham, sirloin, rump, short loin, corned beef, drumstick, pork chop |
473
671
 
474
672
  ## FFaker::Boolean
475
673
 
476
674
  | Method | Example |
477
675
  | ------ | ------- |
478
- | `maybe` | true, false, true |
479
- | `random` | true, true, false |
480
- | `sample` | true, false, false |
676
+ | `maybe` | false, false, false |
677
+ | `random` | true, false, true |
678
+ | `sample` | true, true, true |
679
+
680
+ ## FFaker::CheesyLingo
681
+
682
+ | Method | Example |
683
+ | ------ | ------- |
684
+ | `paragraph` | - tongue in cheek raw milk is unpasteurized - tongue in cheek they can also age quite well in ripening cellars where What do you call cheese that isn't yours? Nacho Cheese; with Dutch courage double dutch or salt, pepper, mustard and vinegar team cheesy says hi 10 grilled cheese sandwiches you should try immediately with., It is blue sky thinking but don't you agree? It is no use crying over spilled milk but poets have been mysteriously silent on the subject of cheese blend the flour, cheese and the sticky nature of processed cheese can make it difficult to slice, but raw milk is unpasteurized taste and texture in all colours but don't you agree? It is no use crying over spilled milk raw milk is unpasteurized wash, rinse, repeat., The slice of cheese is placed on top of the meat patty harmful secondary metabolites the moon is made of green cheese and but don't you agree? It is no use crying over spilled milk double dutch or and wrap blue cheeses all over as mould spores spread readily What do you call cheese that isn't yours? Nacho Cheese; of cheesy business lingo they were so cheesed off applewood smoked. |
685
+ | `sentence` | He old cheese dairy buildings, situated on the historic site 10 grilled cheese sandwiches you should try immediately with blend the flour, cheese and., Cut to size blue fungi in cream dutch sandwich., The moon is made of green cheese and so cute but cheesy when the rennet is added, curds are formed. |
686
+ | `title` | Milky Affineurs, Cheesed Cows, Smokey Brie |
687
+ | `word` | soft, cheesy, elastic |
688
+ | `words` | fluffy, alpine, grated, soft, elastic, cottage cheese, milk, buttery, elastic, sharp, cheesy, Gouda, cottage cheese, milk, salty |
481
689
 
482
690
  ## FFaker::Color
483
691
 
484
692
  | Method | Example |
485
693
  | ------ | ------- |
486
- | `name` | teal, brown, aqua |
694
+ | `name` | brown, brown, gray |
695
+
696
+ ## FFaker::ColorUA
697
+
698
+ | Method | Example |
699
+ | ------ | ------- |
700
+ | `name` | білий, яскраво-бірюзовий, червоно-пурпурний |
487
701
 
488
702
  ## FFaker::Company
489
703
 
490
704
  | Method | Example |
491
705
  | ------ | ------- |
492
- | `bs` | target e-business functionalities, brand proactive interfaces, generate scalable architectures |
493
- | `catch_phrase` | Proactive even-keeled benchmark, Devolved static leverage, Multi-layered next generation superstructure |
494
- | `name` | Hermiston, Jacobs and Auer, Waters-Adams, Pouros, Lubowitz and Kautzer |
495
- | `position` | General Department Consultant, Assistant Secretary, Department Manager |
496
- | `suffix` | Inc, Group, Group |
706
+ | `bs` | architect granular experiences, innovate leading-edge users, exploit back-end e-tailers |
707
+ | `catch_phrase` | Expanded global forecast, Inverse mobile methodology, Seamless radical instruction set |
708
+ | `name` | Veum, Rohan and O'Hara, Stoltenberg Group, Lowe, Abshire and Rogahn |
709
+ | `position` | Associate Consultant, General Manager, Associate Secretary |
710
+ | `suffix` | and Sons, and Sons, and Sons |
497
711
 
498
712
  ## FFaker::CompanyIT
499
713
 
500
714
  | Method | Example |
501
715
  | ------ | ------- |
502
- | `name` | Longo S.p.a., Sangiacomo s.n.c., Lionetti s.r.l. |
503
- | `prefix` | Studio Legale, Studio Tecnico, Studio Tecnico |
504
- | `suffix` | Ingegneri, s.n.c., s.r.l. |
716
+ | `name` | Pocci Architetti, Perpiglia s.n.c., Carelli e Longo Avvocati |
717
+ | `prefix` | Studio Tecnico, Laboratorio, Studio Legale |
718
+ | `suffix` | s.r.l., Architetti, Architetti |
505
719
 
506
720
  ## FFaker::CompanySE
507
721
 
508
722
  | Method | Example |
509
723
  | ------ | ------- |
510
- | `name` | Satterfield-Abernathy, Weissnat Ab, Turcotte-Stamm |
511
- | `suffix` | Ab, AB, Ab |
724
+ | `name` | Grady, Frami och Harvey, Boehm, Sawayn och Rath, Wolf Ab |
725
+ | `suffix` | AB, Aktiebolag, Ab |
512
726
 
513
727
  ## FFaker::Conference
514
728
 
515
729
  | Method | Example |
516
730
  | ------ | ------- |
517
- | `name` | Reserve Estimation for Unconventional Resources 2012, 2nd Annual Concentrated Photovolatic Summit USA (CPV USA 2010), Open Networking Summit 2012 |
731
+ | `name` | One Night Only Vegan Caribbean Night Extravaganza with Chef Mayra, Health 2.0 Europe 2012, Met Coke World Summit 2012 |
518
732
 
519
733
  ## FFaker::CoursesFR
520
734
 
@@ -525,564 +739,623 @@
525
739
 
526
740
  | Method | Example |
527
741
  | ------ | ------- |
528
- | `code` | XAU, XAG, SYP |
529
- | `name` | Dalasi, Riel, Rand Namibia Dollar |
742
+ | `code` | XDR, GNF, LKR |
743
+ | `name` | Baht, Iraqi Dinar, Kwanza |
530
744
 
531
745
  ## FFaker::DizzleIpsum
532
746
 
533
747
  | Method | Example |
534
748
  | ------ | ------- |
535
- | `characters` | jorccy5j7ech3b2fnc3nb2k47742km0xnj3yne92b93zsvbo00lxp7xofkkl18lhbwmrz74cgnqj4sj6lri9a0ex987nvyup9hi1su81mc2cdtpo6ws53j7gctjj7u66b3p8fnvhxb6vt7pbniqq7nnyfslz3f4u5op7ziqpxkabh9ta6qdrikri9u0thcy9w085jpp24uszrxbq2ke27hh67xgkstbcnarhbopxjyn9qfygml8islctnuhseen, ii3lnhj06d6wcw8q4lz30ceu188sil929v1fzzb7wp77hbhd8hgfdm9z9249d4s31xfqvjb0x7iuynwlw1wejjfcbr693k0ivesw0c50ntgmtiu6sco33wcafaywnti6sqn41hr9hbeiq99n4yvym3i8x4gx8ggho2y47veqchhf5wesfs8wfpp7hyxl28bflegtv9h10ksrz31wu46zdw7i76bxu47c4cxwl3bjd08nrri7oalwm5n2l1kziju, zfhi0gg7o5w2c2hwu7ui4ye0um8phbw4a49j29nwir5jw0kz83bx2mn8kr5fkqc4jevxfpls5ut6huhlpes1qpsszo5lb9zzmfl0tl4cgr9nqrkhuntc0o4shv51se9h17radt1sje3gpstr026uvtdhvm3ionfeat0ox6i7ao61h8jv8epzt20ryo1grraf3mkpznqom0r7232aj524qtq0fboaze0c0h0onnqb1mgvm8q6ywpsg8owucwdmks |
536
- | `paragraph` | Sippin' on gin and juice plizzay bubbles in the tub every single one if you was me and I was you nothing can save ya everybody got they cups zig zag smoke. Drop it like it's hot Snoopy hizzouse eighty degrees smokin' indo now I'm on parole waddup. For the gs if you was me and I was you Coupe de Ville and my money on my mind the S oh yes., If you was me and i was you smokin' indo Snoopy in tha hizzle everybody got they cups through all the drama fizzle I love my momma. Feel the breeze the dopest hizzouse put ya choppers up with my mind on my money fo shizzle. Recognize hizzouse with my mind on my money feel the breeze gizzo tha dizzle realer the Dogg Pound. The magic johnson of rap smokin' weed if you was me and I was you nothing can save ya and my money on my mind Mr. Buckwort if the ride is more fly, then you must buy. Like every single day waddup how we do it roll with you talk too much drizzle the dopest laid back your chrome., Realer if you was me and I was you Doggfada smokin' weed every single one Coupe de Ville. The magic johnson of rap guess what? realer zig zag smoke televizzle laid back now I'm on parole gold chain smokin' weed. Why is you the diggy at ease Snoop real deal Holyfield the LBC. Nothing can save ya now I'm on parole for the Gs roll with Snoop like every single day realer Doggfada. Your chrome rizzide smokin' indo roll with bubbles in the tub now I'm on parole. |
537
- | `paragraphs` | If you was me and i was you the LBC at ease bubbles in the tub how we do it nothing can save ya roll with realer. Zig zag smoke smokin' weed rizzide Snoop put ya choppers up. Coupe de ville through all the drama make a few ends put ya choppers up with my mind on my money recognize the diggy bubbles in the tub roll with. Mr. buckwort for the hustlers rizzide fo rizzle realness real deal Holyfield gold chain if you was me and I was you. The diggy if you was me and I was you rolling down the street I love my momma in tha hizzle for the Gs., Fizzle it's 1993 televizzle every single one everybody got they cups. Used to sell loot roll with guess what? at ease everybody got they cups feel the breeze Snoopy. Fo rizzle hizzouse eighty degrees the dopest plizzay if you was me and I was you you talk too much. Long beach drop it like it's hot Snoopy sippin' on gin and juice televizzle may I and my money on my mind your chrome., Through all the drama pizzle and my money on my mind real deal Holyfield guess what? bubbles in the tub. Everybody got they cups in tha hizzle through all the drama fizzle drizzle. Fo rizzle sippin' on gin and juice recognize drizzle make a few ends realer gizzo. How we do it may I nasty for the Gs and my money on my mind., Tha shiznit with my mind on my money smokin' indo if the ride is more fly, then you must buy through all the drama. Zig zag smoke may I Doggfada put ya choppers up like every single day. Pizzle Snoop everybody got they cups real deal Holyfield Mr. Buckwort may I rizzoad rizzide every single one. Televizzle rizzide for the hustlers tha dizzle rolling down the street if you was me and I was you used to sell loot. At ease and my money on my mind bubbles in the tub laid back for the Gs Snoop gold chain., Waddup the diggy your chrome if you was me and I was you why is you fizzle. Hizzouse the S oh yes the dopest your chrome televizzle make a few ends. Roll with fizzle rolling down the street feel the breeze tha shiznit gizzo hizzouse in tha hizzle. Roll with bubbles in the tub televizzle the diggy nothing can save ya. Real deal holyfield waddup every single one make a few ends the Dogg Pound the dopest Long Beach fo rizzle tha dizzle., Fo shizzle every single one roll with at ease nothing can save ya fo rizzle gizzo the Magic Johnson of rap. Realer may I everybody got they cups eighty degrees how we do it Long Beach tha dizzle. I love my momma roll with gold chain make a few ends the dopest drizzle waddup how we do it bionic., The dogg pound Snoopy zig zag smoke like every single day rizzoad why is you. It's 1993 for the hustlers the Dogg Pound at ease fo shizzle. Plizzay tha dizzle if the ride is more fly, then you must buy it's 1993 Snoop. Mr. buckwort Snoopy laid back Doggfada eighty degrees roll with make a few ends real deal Holyfield realness., If you was me and i was you bubbles in the tub put ya choppers up fo rizzle roll with and my money on my mind Snoop through all the drama. Realer through all the drama gizzo the dopest Snoop fizzle fo shizzle. Televizzle recognize real deal Holyfield for the Gs you talk too much rizzoad with my mind on my money. Rizzide roll with fo shizzle the S oh yes eighty degrees why is you waddup. Fizzle at ease make a few ends realer fo rizzle., Coupe de ville real deal Holyfield the dopest feel the breeze hizzouse realer. Waddup like every single day may I pizzle nasty. Roll with and my money on my mind recognize the Magic Johnson of rap realer. If the ride is more fly, then you must buy smokin' weed fo shizzle why is you fizzle now I'm on parole realness. |
538
- | `phrase` | If the ride is more fly, then you must buy everybody got they cups you talk too much hizzouse bubbles in the tub every single one fizzle., And my money on my mind put ya choppers up the Magic Johnson of rap the dopest real deal Holyfield., Rizzide the Dogg Pound rolling down the street why is you like every single day. |
539
- | `phrases` | Sippin' on gin and juice tha shiznit Coupe de Ville nasty drizzle in tha hizzle if you was me and I was you for the Gs used to sell loot., Smokin' indo make a few ends roll with you talk too much I love my momma Snoopy., You talk too much nasty laid back bubbles in the tub I love my momma why is you through all the drama., Long beach rolling down the street feel the breeze rizzoad bionic real deal Holyfield., Mr. buckwort smokin' weed may I drizzle in tha hizzle., Nasty Coupe de Ville smokin' weed Doggfada at ease tha dizzle for the hustlers real deal Holyfield through all the drama., Bionic plizzay smokin' weed bubbles in the tub and my money on my mind Doggfada., Nothing can save ya Snoopy Long Beach recognize laid back., If you was me and i was you drop it like it's hot you talk too much Doggfada if the ride is more fly, then you must buy in tha hizzle. |
540
- | `sentence` | Tha shiznit the dopest Doggfada put ya choppers up everybody got they cups., For the gs recognize if you was me and I was you the Dogg Pound nothing can save ya waddup laid back., In tha hizzle smokin' weed the diggy drizzle the Magic Johnson of rap drop it like it's hot for the Gs. |
541
- | `sentences` | Rolling down the street it's 1993 recognize nothing can save ya hizzouse how we do it fo rizzle you talk too much zig zag smoke., The diggy laid back for the hustlers Doggfada smokin' indo put ya choppers up pizzle Long Beach the LBC., Realness used to sell loot like every single day if the ride is more fly, then you must buy for the Gs through all the drama waddup gold chain., Sippin' on gin and juice recognize I love my momma put ya choppers up real deal Holyfield Mr. Buckwort used to sell loot if the ride is more fly, then you must buy., How we do it you talk too much Mr. Buckwort Coupe de Ville eighty degrees rolling down the street the Dogg Pound., Doggfada rolling down the street in tha hizzle through all the drama if you was me and I was you everybody got they cups zig zag smoke every single one., Rizzoad the S oh yes nothing can save ya how we do it laid back Snoopy hizzouse., Televizzle every single one the LBC and my money on my mind in tha hizzle., For the hustlers how we do it feel the breeze the LBC bionic everybody got they cups the dopest your chrome. |
542
- | `word` | nasty, feel the breeze, how we do it |
543
- | `words` | the S oh yes, gizzo, roll with, sippin' on gin and juice, the dopest, Mr. Buckwort, guess what?, laid back, nasty |
749
+ | `characters` | izgl08srl2uupxf6ft6gldhlr1g0jurjck5bvt040t4hnszzjpyuxtkqy2pckdtm3fs8g68kw9eb29jz7xsomt6uvius6q24rpz0vjztppv1sjvc4got27qgdfxu9e530a175kzkxaqd92xzorie4i7r5g6ttj2aoo575j0p8nzyudhhnyl2yyw9browedhz321l4rh5z6okxeejsa239yaks7x43u5fb0d7e0cg06ne3cbtmgkw1lsdvs2po6g, vqo43ofmqtnfw0clmorwfkq4wum9e3og66gf46a4knb3jtcwkv71x2ns639lytwxlqvjvsk4ks9euyc9tc4qdpdl1h8wafldt512ao4z0pq8sh8bddwvtcjjewnizabngyqm7ot09c54sp7orsq77vis4yf0isbla8fty680rc1m019jfu9u1z7ne9hutlzt5gmwho414aw8ogcfii02713gnq6f4hcto3ijzneg3q54dd02zbzjvf9m0xrlhel, kdgs9in5r068c5y6a0ye8mjfane08c1kcwgvx8r4mh4fxo8ty2kdfsvnxiubb8yaaxikvl56zzmh62ohszozfr3j2tz1a0hs1ynj4l1b8hongeqi3w1utea211hesbk8s0x8k1vcon54vs5e7k4hvuqlvc57wuxrup1w5i5081kfn4ftdbl06gth7ecpbvkba9n3wioxwiebsutrirr026pktyl0545wm9ho7l6fewyyy3zuikjeao1zpjfy9s9 |
750
+ | `paragraph` | Pizzle tha shiznit if the ride is more fly, then you must buy at ease you talk too much. How we do it Coupe de Ville recognize why is you waddup everybody got they cups in tha hizzle pizzle Mr. Buckwort. The magic johnson of rap why is you guess what? if the ride is more fly, then you must buy rizzoad every single one rolling down the street. Snoopy how we do it why is you rizzoad fo shizzle hizzouse., Eighty degrees like every single day if the ride is more fly, then you must buy now I'm on parole for the hustlers tha shiznit nasty drizzle the Magic Johnson of rap. Smokin' weed with my mind on my money gizzo recognize eighty degrees tha shiznit everybody got they cups rizzoad. May i waddup the diggy roll with Coupe de Ville fizzle realness tha shiznit the dopest. Used to sell loot I love my momma Snoop in tha hizzle rizzide., Your chrome nothing can save ya Snoopy bionic zig zag smoke used to sell loot. Fo rizzle guess what? televizzle recognize the dopest. Doggfada rizzoad the S oh yes recognize make a few ends. Mr. buckwort Snoop sippin' on gin and juice nothing can save ya your chrome every single one. |
751
+ | `paragraphs` | Realness I love my momma rizzoad if the ride is more fly, then you must buy how we do it laid back through all the drama fo shizzle the diggy. Rizzide eighty degrees in tha hizzle I love my momma drop it like it's hot. Laid back how we do it smokin' weed nothing can save ya zig zag smoke rizzide in tha hizzle for the Gs. Nothing can save ya smokin' indo like every single day laid back fizzle., Make a few ends if you was me and I was you the diggy I love my momma how we do it realer tha shiznit Snoopy. The dogg pound may I feel the breeze laid back used to sell loot. Pizzle realness real deal Holyfield rizzide rolling down the street laid back., Drizzle fizzle pizzle for the Gs televizzle recognize guess what? every single one. Fo rizzle Snoopy the LBC real deal Holyfield if you was me and I was you you talk too much. The dopest hizzouse zig zag smoke drop it like it's hot may I., You talk too much Mr. Buckwort I love my momma drop it like it's hot zig zag smoke how we do it Coupe de Ville rizzide with my mind on my money. Televizzle realer tha dizzle with my mind on my money smokin' indo. Nothing can save ya your chrome sippin' on gin and juice waddup fizzle rizzide feel the breeze laid back. Long beach drizzle Doggfada eighty degrees fizzle gold chain zig zag smoke. Doggfada televizzle everybody got they cups drop it like it's hot guess what? how we do it in tha hizzle why is you., Your chrome through all the drama rizzide hizzouse tha shiznit. The dopest at ease televizzle now I'm on parole eighty degrees pizzle. Roll with your chrome tha shiznit the Dogg Pound hizzouse real deal Holyfield Snoop televizzle through all the drama., Nasty guess what? it's 1993 and my money on my mind feel the breeze. The dopest fo shizzle every single one make a few ends bubbles in the tub Mr. Buckwort the LBC nothing can save ya everybody got they cups. Nasty through all the drama for the Gs realness the S oh yes drop it like it's hot. Snoop zig zag smoke Coupe de Ville gizzo recognize feel the breeze drizzle real deal Holyfield., Put ya choppers up I love my momma fizzle at ease roll with gizzo. Rolling down the street fo shizzle realness the diggy realer and my money on my mind if the ride is more fly, then you must buy smokin' indo bubbles in the tub. Rizzide it's 1993 now I'm on parole nothing can save ya sippin' on gin and juice the LBC the Dogg Pound feel the breeze. Guess what? fo rizzle through all the drama realer pizzle smokin' indo televizzle. Now i'm on parole the diggy the LBC everybody got they cups realness hizzouse bubbles in the tub tha shiznit., Make a few ends for the Gs the S oh yes waddup bionic plizzay the Magic Johnson of rap. The s oh yes guess what? your chrome rolling down the street drizzle if you was me and I was you the LBC smokin' weed how we do it. Doggfada everybody got they cups put ya choppers up nothing can save ya Snoopy roll with make a few ends. If the ride is more fly, then you must buy make a few ends smokin' weed rizzide the dopest fo rizzle and my money on my mind at ease zig zag smoke., Used to sell loot the LBC rizzide the Magic Johnson of rap put ya choppers up drop it like it's hot fo rizzle. Televizzle like every single day why is you fo shizzle smokin' indo nasty for the hustlers Snoopy. The magic johnson of rap zig zag smoke sippin' on gin and juice for the hustlers I love my momma fo shizzle if you was me and I was you smokin' indo. Realness rizzoad gold chain Mr. Buckwort and my money on my mind. |
752
+ | `phrase` | In tha hizzle Mr. Buckwort through all the drama every single one at ease gizzo bubbles in the tub Long Beach., Gold chain with my mind on my money pizzle fizzle if you was me and I was you now I'm on parole smokin' weed laid back., Sippin' on gin and juice plizzay the Dogg Pound Coupe de Ville rizzide if the ride is more fly, then you must buy how we do it you talk too much. |
753
+ | `phrases` | The lbc it's 1993 may I gold chain hizzouse., For the gs Coupe de Ville roll with the Dogg Pound at ease every single one., Make a few ends now I'm on parole tha shiznit the dopest the Magic Johnson of rap bubbles in the tub recognize., The lbc may I drop it like it's hot nasty Mr. Buckwort., Pizzle put ya choppers up bionic everybody got they cups used to sell loot., The dopest why is you tha dizzle I love my momma the diggy., Gold chain fo rizzle nasty fizzle rizzide if you was me and I was you in tha hizzle Long Beach for the Gs., Snoopy fizzle gizzo everybody got they cups tha shiznit real deal Holyfield., Doggfada hizzouse how we do it fizzle your chrome and my money on my mind smokin' indo every single one rolling down the street. |
754
+ | `sentence` | The s oh yes the dopest put ya choppers up bionic make a few ends hizzouse the Magic Johnson of rap smokin' indo., Coupe de ville Snoopy the LBC nasty rolling down the street smokin' weed used to sell loot zig zag smoke., Through all the drama may I rizzide at ease bubbles in the tub the Dogg Pound. |
755
+ | `sentences` | Bubbles in the tub rizzide for the Gs the LBC gold chain it's 1993., Nothing can save ya used to sell loot I love my momma why is you rizzoad through all the drama Mr. Buckwort zig zag smoke., Laid back real deal Holyfield tha dizzle through all the drama drop it like it's hot zig zag smoke may I., Tha shiznit rizzoad roll with eighty degrees with my mind on my money and my money on my mind fo shizzle laid back., The dogg pound realer at ease feel the breeze bubbles in the tub how we do it nothing can save ya., Mr. buckwort zig zag smoke drop it like it's hot put ya choppers up smokin' weed the Dogg Pound the diggy., The lbc how we do it Coupe de Ville plizzay the S oh yes Long Beach gold chain rizzoad., Pizzle eighty degrees for the hustlers bionic laid back., Make a few ends rolling down the street like every single day if you was me and I was you how we do it bionic waddup. |
756
+ | `word` | fo rizzle, in tha hizzle, fizzle |
757
+ | `words` | in tha hizzle, may I, real deal Holyfield, zig zag smoke, Doggfada, the Dogg Pound, the S oh yes, used to sell loot, the dopest |
544
758
 
545
759
  ## FFaker::Education
546
760
 
547
761
  | Method | Example |
548
762
  | ------ | ------- |
549
- | `degree` | Bachelor of Arts in Social Studies, Bachelor of Arts in Political Arts, Doctor of Medicine in Human Resource Engineering |
550
- | `degree_short` | DPhil in Social Economics, MA in Political Management, MD in Medical Science |
551
- | `major` | Medical Philosophy, Systems Education, Marketing Science |
552
- | `school` | Hillfield Institution, University of New York, College of Minnesota |
553
- | `school_generic_name` | South Carolina, Louisiana, Indiana |
554
- | `school_name` | Northcoast, Larkwood, Redside |
763
+ | `degree` | Doctor of Medicine in Medical Arts, Bachelor of Science in Political Production, Bachelor of Arts in Medical Education |
764
+ | `degree_short` | BSc in Industrial Management, MD in Political Studies, DPhil in Political Economics |
765
+ | `major` | Medical Development, Marketing Philosophy, Human Resource Accountancy |
766
+ | `school` | Hillshore Academy, Greenside University, Southshore Polytechnic College |
767
+ | `school_generic_name` | Larkspur, Lakeshire, Alabama |
768
+ | `school_name` | Lakeside, Riverville, Rivercoast |
555
769
 
556
770
  ## FFaker::Food
557
771
 
558
772
  | Method | Example |
559
773
  | ------ | ------- |
560
- | `fruit` | Honeydew, Honeydew, Currant |
561
- | `herb_or_spice` | Cinnamon, Cilantro, Saffron |
562
- | `ingredient` | Cauliflower, Grouse, Rock melon |
563
- | `meat` | Moose, Tripe, Goose |
564
- | `vegetable` | Yardlong bean, Pumpkin, Pumpkin |
774
+ | `fruit` | Papaya, Lychee, Eggplant |
775
+ | `herb_or_spice` | Marjoram, Pepper, Curry |
776
+ | `ingredient` | Pepper, Quail, Papaya |
777
+ | `meat` | Chicken Liver, Calf liver, Calf liver |
778
+ | `vegetable` | Common bean, Miner's Lettuce, Chrysanthemum |
565
779
 
566
780
  ## FFaker::Gender
567
781
 
568
782
  | Method | Example |
569
783
  | ------ | ------- |
570
- | `maybe` | male, male, female |
571
- | `random` | male, male, female |
572
- | `sample` | female, female, male |
784
+ | `maybe` | female, male, male |
785
+ | `random` | male, female, male |
786
+ | `sample` | male, male, female |
573
787
 
574
788
  ## FFaker::GenderCN
575
789
 
576
790
  | Method | Example |
577
791
  | ------ | ------- |
578
- | `maybe` | 男, 男, 女 |
579
- | `random` | 男, 男, |
580
- | `sample` | 男, 男, 男 |
792
+ | `maybe` | 男, 女, 女 |
793
+ | `random` | 男, 女, |
794
+ | `sample` | 女, 男, 男 |
581
795
 
582
796
  ## FFaker::GenderKR
583
797
 
584
798
  | Method | Example |
585
799
  | ------ | ------- |
586
- | `maybe` | 남, 녀, |
587
- | `random` | 녀, 녀, |
588
- | `sample` | 녀, 녀, |
800
+ | `maybe` | 남, 남, |
801
+ | `random` | 녀, 녀, |
802
+ | `sample` | 남, 남, |
589
803
 
590
804
  ## FFaker::Geolocation
591
805
 
592
806
  | Method | Example |
593
807
  | ------ | ------- |
594
808
  | `boxed_coords`(..., ...) | |
595
- | `lat` | 40.8831107806302, 40.0677174866262, 33.3732084677927 |
596
- | `lng` | -122.395610510952, -115.120716573, -73.83582 |
809
+ | `lat` | 41.022921, 26.1793003082275, 40.6784867492198 |
810
+ | `lng` | -87.888795, -73.8618025934729, -118.427610513239 |
597
811
 
598
812
  ## FFaker::Guid
599
813
 
600
814
  | Method | Example |
601
815
  | ------ | ------- |
602
- | `guid` | 999ED50E-70B5-AEA9-F60C-53C4EF3F7D06, 99345774-3845-174A-B8DA-43ED2FB08303, A8C0809B-E934-8D9A-49A7-4E34A98D6CC3 |
816
+ | `guid` | 68CA1979-24E3-F05D-BF50-BA52FF220981, FD51AEFA-5988-9E3D-506D-DADB363748BF, 9772EAF6-377E-5227-F7CE-097D6DF8945C |
603
817
 
604
818
  ## FFaker::HealthcareIpsum
605
819
 
606
820
  | Method | Example |
607
821
  | ------ | ------- |
608
- | `characters` | ndgw94lt4h84dpdy16sikaxbtav6qvkncljby69jl5m891r6wiu6i3ih4l3a38eohnrqccc2n17w56ha9kocal85buq0yad94wfj7s0p5jcnvbfox9lxd4r07orwe97f9x7y3giqzvlx0cme7zis8hs01589v2h9pdv6r4ptu0x2smo691vr6ctkzq0dq5x60pzv12381vg57i9c5f3q77q26pbi56bvsser2sbhgopb858r7q4acy5dkkw0jgo, yya1b99el1q0w9pjl9u8ezzpik72q3fxvu7gpc7voj8p8q8nufqzlvq87yb20agteuxaf8y8bdkchm6zfj3b0x42u1mx93tqr68r49ucswq0653pirw5ccvj2c38jr8t9epl2w82ro6hvit2arb8h5wcbsox6gfjb57vmylscs0bpc62624be8vg8k5a9ujn0mk0vwnu3bpn4jvnrtzrny4ediansvzcbkv0dh4vziiqg77s3ax40ydbetptbqw, 3i5po2wwrx6wr66ubjp5hycwedjrh6pwu6sov46mm5k7zzrrs2108hfrgr6fmzeln24b6lth0nyxdgpycwvgvpajp07lsz9o2orgn60cuuv7aiqbydohzik8ckyxv8w0e84ouayexp7ehif71tzpd3npejbq2tda2ly18p7kio89n6s2jlie3cpmrdkn12xc9hkzlthco55cor77kw746e2rf86mrlmdp4aqfbv9cp6ns97jolu2qmx41imvus4 |
609
- | `paragraph` | Rider group health plan covered person gag rule laws limited policy utilization review defensive medicine explanation of benefits. Group health plan exclusion period capitation dependent diagnostic related group HIPAA skilled nursing facility co-payment. Case manager fee-for-service eligible dependent well-baby care health reimbursement arrangement portability noncancellable policy. Contract year consolidated omnibus budget reconciliation act defensive medicine open enrollment premium clinical practice guidelines flexible benefit plan. Designated facility EAPs evidence of insurability primary care physician stop-loss provisions service area DRG., Network skilled nursing facility HMO incurral date wellness office visit medical necessity assignment of benefits. Preferred provider organization impaired risk medical necessity claim standard industrial classification network hospital-surgical coverage deductible. Grievance claim PCP preferred provider organization referral flexible benefit plan. Ncqa provider noncancellable policy medicare supplement schedule of benefits and exclusions open enrollment CPT any willing provider laws., Coordination of benefits episode of care claim third-party payer co-insurance. Dependent health maintenance organization medical savings account national association of insurance commissioners coordinated care. Staff model out-of-pocket costs fee schedule HEDIS SIC EOB misrepresentation. |
610
- | `paragraphs` | Assignment of benefits COBRA deductible skilled nursing facility claim participating provider accumulation period. Sic open enrollment policyholder eligible expenses hospice care HCFA Common Procedure Coding System certificate of coverage NDC. Schedule of benefits and exclusions underwriting certificate of coverage admitting physician pre-certification HEDIS wellness office visit risk clinical practice guidelines., Critical access hospital dependent lapse pre-authorization current procedural terminology. Fee schedule deductible carry over credit major medical general agent lifetime maximum creditable coverage fee-for-service. Assignment of benefits R&amp;C charge national drug code reasonable and customary gatekeeper morbidity concurrent review. Standard industrial classification health care provider broker general agent gag rule laws covered benefit open enrollment medigap insured., Hdhp capitation R&amp;C charge open enrollment contract year high deductible health plan policy year PPO. Network flexible spending account MSA HIPAA policyholder assignment of benefits NDC out-of-pocket maximum. Master policy skilled nursing facility independent practice associations attachment capitation formulary. Lifetime maximum explanation of benefits general agent referral urgent care defensive medicine FSA exclusions and limitations. Gatekeeper critical access hospital reasonable and customary HCPCS MSA SIC., Ndc workers compensation dependent full-time student fee-for-service. Hra renewal covered person third-party payer network provider beneficiary. Major medical EOB flexible benefit plan accredited health maintenance organization insured., Accredited discharge planning DRG state-mandated benefits covered person. Enrollee attachment case manager after care HEDIS centers of excellence admitting physician. Certificate of coverage pre-authorization inpatient care impaired risk independent practice associations first dollar coverage pregnancy care eligible dependent., Msa care plan general agent custodial care preventive care COBRA covered charges/expenses. Fsa network provider PCP health care provider pregnancy care skilled nursing facility broker. Pregnancy care prior authorization qualifying event MSA state insurance department premium enrollee., Any willing provider laws evidence of insurability deductible carry over credit concurrent review waiting period denial of claim. Master policy EAPs full-time student accumulation period enrollee HIPAA independent practice associations policy short-term medical insurance. Free-look period enrollee board certified full-time student preferred provider organization. Cpt referral international classification of diseases, 9th revision, clinical modification icd-9-cm dependent medical savings account out-of-plan centers of excellence NAIC., Standard industrial classification MSA board certified stop-loss provisions medicaid eligible dependent clinical practice guidelines. Health maintenance organization second surgical opinion ASO well-baby care coordinated care. Evidence of insurability incurral date medicare coordination of benefits independent practice associations. Hcpcs national committee for quality assurance health maintenance organization rider exclusion period out-of-pocket maximum CPT PPO denial of claim., Noncancellable policy health insurance portability &amp;amp; accountability act pre-existing condition HSA short-term medical insurance lapse staff model HIPAA. Fee-for-service out-of-pocket maximum renewal agent of record gag rule laws. Misrepresentation HIPAA national committee for quality assurance disenroll health savings account NAIC pre-existing condition well-baby care. Health reimbursement arrangement disenroll HSA capitation EAPs policy year health savings account qualifying event. |
611
- | `phrase` | Eligible expenses co-insurance formulary health care provider waiting period accumulation period accreditation creditable coverage skilled nursing facility., Urgent care international classification of diseases, 9th revision, clinical modification icd-9-cm disenroll high deductible health plan HDHP., Effective date HSA well-baby care HDHP underwriting. |
612
- | `phrases` | Ambulatory care state-mandated benefits self-insured preferred provider organization primary care physician noncancellable policy consolidated omnibus budget reconciliation act fee schedule pregnancy care., Discharge planning urgent care IPA national committee for quality assurance co-payment coordinated care pre-existing condition pregnancy care., Pre-existing condition workers compensation grievance pre-certification stop-loss provisions beneficiary., Master policy network exclusion period eligible dependent health insurance portability &amp;amp; accountability act administrative services only R&amp;C charge appeal., Rider HRA ambulatory care health insurance portability &amp;amp; accountability act indemnity health plan workers compensation gatekeeper medical necessity HEDIS., Policyholder standard industrial classification discharge planning hospital care beneficiary ASO PCP co-pay., Co-pay special benefit networks impaired risk hospital-surgical coverage NCQA case management., Out-of-plan DRG guaranteed issue utilization review current procedural terminology indemnity health plan., Managed care noncancellable policy out-of-network health savings account health care provider. |
613
- | `sentence` | Capitation rider home health care any willing provider laws national association of insurance commissioners cost sharing beneficiary self administered., R&amp;c charge case manager insured critical access hospital PPO accreditation., Pre-admission testing out-of-pocket costs preventive care pre-admission review beneficiary. |
614
- | `sentences` | Insured capitation denial of claim ancillary services gag rule laws nonrenewable fee schedule formulary., Deductible carry over credit gag rule laws formulary out-of-plan misrepresentation health care provider case manager., Free-look period guaranteed issue disenroll any willing provider laws first dollar coverage., Claim hospital-surgical coverage NAIC covered charges/expenses policyholder international classification of diseases, 9th revision, clinical modification icd-9-cm., Out-of-pocket costs international classification of diseases, 9th revision, clinical modification icd-9-cm health employer data and information set self administered lapse current procedural terminology pre-certification., Independent practice associations eligible expenses home health care self-insured pre-existing condition claim health insurance portability &amp;amp; accountability act., Out-of-network fee schedule beneficiary well-baby care coordinated care R&amp;C charge PPO., Pre-existing condition admitting physician benefit cap accumulation period claim reasonable and customary assignment of benefits covered charges/expenses., Ambulatory care lapse FSA medicare administrative services only formulary denial of claim primary care physician IPA. |
615
- | `word` | policy, indemnity health plan, reasonable and customary |
616
- | `words` | health savings account, EOB, exclusion period, HDHP, risk, preventive care, stop-loss provisions, incurral date, fee-for-service |
822
+ | `characters` | cqcbbqjwzwsmvwqbch4na2b219gp0q4fmxidfqe7d8oxc97f4u3nj98229ttnm25190y9qgbyocnactd19f6uru95vgpv7q6y66m7s4q28mjs66jowt0srivjc866p3wdj6dml5x5oifj84vzvshwxwpe8d9lngryatf09ezb0wcwoz6dtm6ggaordqwjt4b279tyteimagotf6jyjo4ogr1b4lgo2yoiaaaq71ydq5t12u4ygv7ni2kojl7cft, r8yalya5ibfujhcviytv18pea6ls15isio4inaj0ibda9hixf7d5hpqe0dfz6gbpaqvc686os6qm2ymp4n2myupytinujf9v0rax2vpwjd3na8uhzhu28rhfh3vjuy1ejcvfebeduvrnpgiiljajacb3kdbyj7l3f84govt9fhog8x2svzzoc3mwclvvsh9rk586o47fkl6eoiefme0wfcqymzps1540o86gvdf0idiaq9e8who0tpxr7ywk9ei, efzfjret5t19k2kk3n7s0uw6hxyuvnkbukgnxaups0ntwsbp2bon5ub56bbh9c97uxf33cjfma3aa8eqmwylla9k0jrtsol2lps8u0p0o196f74gdiw54s187my1la12083j6yexr4lqrdktjftcbv0tfxsxjqfrtt2cafc2tels062cfgk95701hq4qpmaj2v7ogrdlb6t60p9sv5kz3te3fcj8imr4bdwit7gvyu28t33g1rbc0jddg46dq6u |
823
+ | `paragraph` | Health care provider designated facility health employer data and information set portability R&amp;C charge. Benefit cap ASO preferred provider organization accumulation period network provider co-pay. Admitting privileges administrative services only national drug code COBRA out-of-pocket maximum diagnostic related group clinical practice guidelines. Creditable coverage health care provider formulary ambulatory care master policy critical access hospital benefit grievance., Deductible HRA noncancellable policy wellness office visit out-of-pocket maximum concurrent review PCP ambulatory care. Preferred provider organization open enrollment creditable coverage ASO MSA care plan dependent network provider custodial care. Waiting period limited policy self administered HIPAA underwriting high deductible health plan. Accumulation period first dollar coverage grievance HIPAA staff model any willing provider laws underwriting policy year. Formulary broker health insurance portability &amp;amp; accountability act open enrollment medicare supplement self administered evidence of insurability medical necessity waiting period., Case management PCP exclusions and limitations national committee for quality assurance managed care. Indemnity health plan inpatient care renewal denial of claim administrative services only waiting period. Out-of-pocket maximum open enrollment network medically necessary NCQA third-party payer renewal health maintenance organization. Drg creditable coverage national drug code episode of care underwriting schedule of benefits and exclusions wellness office visit reasonable and customary appeal. |
824
+ | `paragraphs` | Workers compensation board certified eligible dependent co-payment NCQA. Indemnity health plan dependent misrepresentation renewal NDC underwriting national association of insurance commissioners risk. Free-look period skilled nursing facility health care provider flexible benefit plan coordinated care., Impaired risk co-pay assignment of benefits out-of-network underwriting. Eligible dependent ASO co-payment HRA grievance medical savings account stop-loss provisions. Case manager consolidated omnibus budget reconciliation act schedule of benefits and exclusions guaranteed issue CPT clinical practice guidelines pre-existing condition exclusions and limitations. Premium hospital care NAIC HEDIS evidence of insurability grievance. Capitation contract year NDC beneficiary referral home health care underwriting preferred provider organization., State-mandated benefits self administered special benefit networks risk medical necessity PCP case management denial of claim designated facility. Hospital-surgical coverage policy ambulatory care schedule of benefits and exclusions participating provider episode of care administrative services only CPT gatekeeper. Admitting privileges independent practice associations high deductible health plan short-term medical insurance pre-existing condition. Eligible expenses workers compensation health maintenance organization explanation of benefits deductible network preventive care medically necessary COB., Care plan pre-existing condition benefit enrollee preventive care stop-loss provisions discharge planning formulary. Health insurance portability &amp;amp; accountability act designated facility state insurance department benefit ancillary services. Capitation managed care out-of-pocket maximum consolidated omnibus budget reconciliation act dependent case management MSA medicaid., Impaired risk DRG high deductible health plan EAPs major medical. Independent practice associations medical necessity COBRA service area CPT noncancellable policy board certified admitting physician fee schedule. Gag rule laws MSA CPT preventive care custodial care fee-for-service medical necessity guaranteed issue co-insurance., R&amp;c charge medically necessary any willing provider laws capitation episode of care open enrollment. Disenroll pre-certification accredited admitting privileges home health care hospital-surgical coverage workers compensation second surgical opinion. Aso attachment stop-loss provisions impaired risk renewal. Medical savings account covered benefit managed care skilled nursing facility self administered policy year medically necessary ambulatory care after care., Pcp CPT capitation agent of record premium indemnity health plan. Third-party payer policyholder episode of care preventive care state insurance department consolidated omnibus budget reconciliation act. Cob staff model pre-admission review managed care appeal., Hcpcs nonrenewable exclusion period beneficiary CPT. National association of insurance commissioners impaired risk out-of-pocket maximum HCFA Common Procedure Coding System medicare co-insurance health maintenance organization. Flexible benefit plan accreditation renewal health insurance portability &amp;amp; accountability act pregnancy care MSA agent of record. Cpt hospice care any willing provider laws provider appeal PPO renewal HSA., Sic medicare supplement certificate of coverage any willing provider laws MSA evidence of insurability PCP master policy. Hipaa provider international classification of diseases, 9th revision, clinical modification icd-9-cm health maintenance organization stop-loss provisions pre-certification nonrenewable hospital care. Participating provider schedule of benefits and exclusions ambulatory care claim hospital-surgical coverage pre-existing condition. Group health plan first dollar coverage state-mandated benefits open enrollment NDC. |
825
+ | `phrase` | Eligible dependent lifetime maximum out-of-plan case management international classification of diseases, 9th revision, clinical modification icd-9-cm COBRA morbidity beneficiary workers compensation., Pcp care plan major medical board certified portability renewal., Medicaid designated facility health reimbursement arrangement care plan misrepresentation HEDIS national association of insurance commissioners. |
826
+ | `phrases` | Fee-for-service medical necessity special benefit networks capitation enrollee., Cost sharing PCP high deductible health plan credentialing IPA assignment of benefits health reimbursement arrangement HCFA Common Procedure Coding System., Schedule of benefits and exclusions pre-authorization health maintenance organization morbidity COBRA full-time student provider claim R&amp;C charge., Free-look period well-baby care consolidated omnibus budget reconciliation act accreditation fee schedule deductible., Admitting physician morbidity exclusion period hospital care first dollar coverage well-baby care., Policy medically necessary agent of record HIPAA consolidated omnibus budget reconciliation act HDHP HMO., Medically necessary incurral date referral IPA exclusions and limitations accumulation period custodial care special benefit networks., Fee-for-service pre-admission review eligible dependent exclusions and limitations PCP qualifying event medicare supplement home health care., Network provider gatekeeper HCPCS IPA broker diagnostic related group deductible carry over credit permanent insurance. |
827
+ | `sentence` | State insurance department ancillary services health savings account short-term medical insurance out-of-pocket costs skilled nursing facility nonrenewable renewal flexible spending account., Admitting physician fee schedule hospice care medical necessity care plan premium., After care NDC episode of care pregnancy care administrative services only network provider. |
828
+ | `sentences` | Urgent care grievance accumulation period admitting physician EAPs well-baby care hospital care national association of insurance commissioners portability., Current procedural terminology staff model PCP coordination of benefits administrative services only special benefit networks stop-loss provisions self-insured board certified., Usual and customary charge fee schedule schedule of benefits and exclusions lifetime maximum pre-admission review misrepresentation pre-existing condition clinical practice guidelines R&amp;C charge., Health care provider ASO clinical practice guidelines HDHP policy self-insured limited policy wellness office visit HIPAA., Appeal evidence of insurability pre-admission review hospital-surgical coverage concurrent review., National committee for quality assurance portability assignment of benefits attachment policy year HEDIS discharge planning HCFA Common Procedure Coding System medicaid., Employee assistance programs clinical practice guidelines accumulation period denial of claim portability preventive care self-insured ASO IPA., Cpt noncancellable policy concurrent review primary care physician ambulatory care., Out-of-network managed care group health plan ASO second surgical opinion. |
829
+ | `word` | PCP, out-of-plan, current procedural terminology |
830
+ | `words` | stop-loss provisions, staff model, portability, HCPCS, dependent, referral, preferred provider organization, contract year, R&amp;C charge |
617
831
 
618
832
  ## FFaker::HipsterIpsum
619
833
 
620
834
  | Method | Example |
621
835
  | ------ | ------- |
622
- | `characters` | m40gsqt6xkofxrkr80m7ooy3k0dj9n5icdts45dglkx4axih4r3kpurafmawf29sryb7oafnzau635yrkompbink764zhewegg9shdefoqndgj5fjlpy3oq8k9lzaudlmkrgyj748lzt6wg1ngy9vy1opb81z8dbx41z29hbl9eycbpm6ew96vhhkkwinqaf1o5r79rwp1etijo657w4jxn7umgkc50bhy6gq50cbcwxdd76chxhwbs2u7b7xjw, 45nnmm6v4k63goto9sl4x05cb4typu3995jx4h55kjf06p1lqwzh35r1yeaw1og8zl19f2wl9h3w6py2y2id3yqcdhigv258flgmi20v8u7hxnvovfzhdg4jrg7yhuixxvvr6id4xe67wrbdnyrst4d2ci4h7n2d2dke649xz6w40l2c1ja4rbdh63k6ds1u26qk8om0532tqxay1rry64jav7ws2xzey791raizoblt8og65k6x4n8fzlqjxro, 1zbzsynjo5a1aap0i3kxyqdc3y4beiyh1yanqb9j2lt0o8ggy46r5lbq45u2l6p51t0oyxmolwqurlproopfn51ikmevuqeamas4justagsnb0k13nq25m5itqy25ht76j3irj4klg22aw557qlsjlrusahdd35ebycfh9q3gkbgcdzkxqkuw8nl56i2noo3tdkdczt7egxxx1e116vi1mvemii0gry9mf1fnqn6dndap337znydrep5os5dk67 |
623
- | `paragraph` | Four loko Carles bicycle rights mustache American Apparel PBR. Cosby sweater jean shorts gluten-free trust fund skateboard Wes Anderson American Apparel scenester. Beard butcher you probably haven't heard of them keytar art jean shorts food truck., Moon leggings retro raw denim photo booth tattooed fap mixtape. Twee hoodie Marfa wolf artisan Williamsburg. Stumptown cardigan McSweeney's wolf beard viral. Yr irony brunch Banksy ethical single-origin coffee. Vegan craft beer Wayfarers gentrify Williamsburg twee aesthetic Carles., Vegan party bicycle rights VHS yr lo-fi. Iphone blog Portland lo-fi cardigan VHS vegan mlkshk irony. High life craft beer lo-fi next level tattooed chambray etsy mustache VHS. Letterpress chambray twee food truck stumptown. |
624
- | `paragraphs` | Art Brooklyn Pitchfork synth vegan retro keffiyeh iPhone. Raw denim before they sold out fap brunch Austin bicycle rights. Cred mustache tumblr stumptown gentrify. Mustache yr aesthetic skateboard dreamcatcher blog messenger bag. Tofu gentrify Pitchfork sartorial yr Carles., Hoodie artisan before they sold out +1 cardigan. Single-origin coffee VHS put a bird on it lomo retro farm-to-table before they sold out trust fund irony. Freegan messenger bag viral etsy McSweeney's readymade dreamcatcher Austin VHS. Gentrify lo-fi lomo leggings Williamsburg brunch viral butcher. You probably haven't heard of them irony whatever craft beer tofu., Echo park beard tofu retro Rerry Richardson lo-fi before they sold out vice craft beer. Organic Rerry Richardson next level 8-bit Williamsburg gentrify. Mlkshk PBR wolf American Apparel sartorial. +1 yr craft beer Brooklyn Wayfarers Austin squid vice retro. American apparel dreamcatcher tattooed etsy moon echo park tumblr Cosby Sweater sustainable., Moon next level high life mustache VHS party. Party echo park sustainable moon mustache Wayfarers letterpress. Salvia DIY squid ethical banh mi gluten-free Williamsburg., Marfa fanny pack trust fund bicycle rights jean shorts mixtape single-origin coffee Four Loko vegan. Chambray +1 master cleanse leggings ethical VHS food truck synth. Banh mi yr fanny pack jean shorts messenger bag lomo chambray., Skateboard Carles moon beard whatever cred. Echo park Shoreditch Austin sustainable keffiyeh vinyl. Mcsweeney's yr raw denim next level tofu gentrify. Vice mixtape retro etsy raw denim., Tumblr biodiesel vinyl cred Four Loko brunch lo-fi Carles jean shorts. Yr thundercats Shoreditch scenester butcher squid hoodie. Before they sold out fixie quinoa helvetica fanny pack McSweeney's tofu., Food truck freegan before they sold out you probably haven't heard of them moon squid American Apparel PBR. Butcher jean shorts Marfa ethical organic you probably haven't heard of them mustache. Gluten-free Austin photo booth lo-fi +1 jean shorts PBR craft beer lomo. Biodiesel tattooed lo-fi etsy keffiyeh brunch. Synth jean shorts Williamsburg raw denim hoodie cardigan beard cred., Skateboard whatever ethical Pitchfork Banksy single-origin coffee chambray locavore. Gluten-free cardigan Shoreditch keffiyeh vegan. Vhs aesthetic stumptown echo park squid. |
625
- | `phrase` | Fixie squid iPhone vice leggings twee Wayfarers fanny pack., Cardigan trust fund locavore art tattooed biodiesel before they sold out whatever., Hoodie master cleanse Rerry Richardson bicycle rights Cosby Sweater +1. |
626
- | `phrases` | Banh mi next level mixtape farm-to-table helvetica DIY., Aesthetic iPhone tofu sustainable freegan vinyl Wes Anderson scenester., Squid twee party mlkshk +1 farm-to-table Williamsburg., Put a bird on it Cosby Sweater party lo-fi thundercats., Craft beer Portland 8-bit jean shorts +1 put a bird on it photo booth cliche McSweeney's., Scenester cred Shoreditch hoodie cardigan Williamsburg synth party., Artisan DIY Williamsburg tattooed hoodie quinoa., Cred blog vinyl ethical viral Austin retro stumptown lomo., Portland brunch sartorial butcher twee messenger bag single-origin coffee. |
627
- | `sentence` | Vinyl Shoreditch food truck American Apparel bicycle rights craft beer stumptown Banksy master cleanse., Vice Banksy artisan DIY bicycle rights irony., Lomo cred ethical McSweeney's Shoreditch cardigan beard sustainable hoodie. |
628
- | `sentences` | Blog locavore put a bird on it Shoreditch party butcher tattooed Cosby Sweater skateboard., Gluten-free skateboard fixie Banksy readymade synth retro cred locavore., Pbr Brooklyn readymade fap dreamcatcher yr +1 tumblr., Aesthetic yr cred thundercats dreamcatcher Wayfarers ethical high life jean shorts., Next level Wayfarers Williamsburg stumptown artisan art iPhone mustache Shoreditch., Jean shorts helvetica Wes Anderson lomo moon., Whatever stumptown chambray synth art Rerry Richardson sustainable mustache vice., Dreamcatcher vinyl jean shorts beard Rerry Richardson wolf keffiyeh Cosby Sweater., Biodiesel DIY fap art tofu iPhone beard irony. |
629
- | `word` | PBR, PBR, Wayfarers |
630
- | `words` | messenger bag, Rerry Richardson, vice, raw denim, Carles, banh mi, food truck, farm-to-table, American Apparel |
836
+ | `characters` | qnx4sxlhe2hfeyjymwfehodj8o8nzz72z1ih6wvbuhmt6agnwucdmo797i9wgsqn3vneuask3yr6bftqe18v84p3o3m6eg5cb8iiyoqko8vs28iqck6fgu5o3ubr1vx71c469mep26nnce0cadlil28y4zgb1ns6kgbrnl8qissyfft2p79iibvv5mlx50j93kugk84da1akancq1j2t1qamlvschc2hxxjp35ojwanpj41j8evl1nbku7527od, sb4pbsgpqvvjt3ccj7lou90eucvb7uv0v2vpujjyri1csh0qxjej4d6cpnadwixqnbr352xk39cq9uj7gkr4m9vvbu7gcpyhc235zc6gt3snk73x5p12kvvxx1bltjhkvoigs0q2fvem44zprzz35ubn5qzzg72gfp2f5tlky2ff9keacf8xo6lnfvijoxz4m04vktippuujkfhwvu2bwqzov9talw70bzi7eq43rq685dm5dm5xk9ga3h2e29d, cuyosfr9ow34ngwecjtz81xt9ru07fyzlk3ok154r12uryqghsd1p697klbfsvum0yrfk9dn1bllr8y6u7ljcu68bfcvmi8ify1matn1h57bnknx79gtolscwzkvdl596mpgbi192f5wqsdk4txto2n57n1fta48xdq77mzlcrr9of05wb148g1nq4majdulmo30e8fcwok6f9hdwhbdc83e2iovf4ftpv687iuvhcw40q9t38wleyr193rrmy2 |
837
+ | `paragraph` | Cardigan chambray salvia Rerry Richardson you probably haven't heard of them. Single-origin coffee quinoa squid raw denim readymade. Brunch lo-fi messenger bag fap you probably haven't heard of them American Apparel butcher 8-bit. Vice Rerry Richardson locavore thundercats stumptown., Hoodie food truck seitan irony echo park Marfa squid vice photo booth. Readymade Banksy single-origin coffee freegan PBR lomo synth. Next level hoodie leggings you probably haven't heard of them vegan echo park. Brooklyn McSweeney's Rerry Richardson sustainable yr., Stumptown readymade irony viral hoodie. Carles hoodie ethical next level banh mi irony. Next level artisan helvetica freegan vegan you probably haven't heard of them skateboard before they sold out brunch. |
838
+ | `paragraphs` | Sustainable chambray bicycle rights fap letterpress. Vinyl gluten-free Williamsburg photo booth trust fund fap DIY. Williamsburg keffiyeh ethical wolf trust fund photo booth PBR Four Loko hoodie. Mlkshk whatever tattooed chambray irony beard., Aesthetic etsy Wayfarers hoodie vice raw denim chambray Williamsburg put a bird on it. Hoodie put a bird on it irony Four Loko trust fund iPhone Rerry Richardson tofu. Photo booth thundercats tofu jean shorts Austin hoodie. Ethical Williamsburg party Rerry Richardson organic craft beer blog dreamcatcher. Retro butcher keytar messenger bag skateboard Shoreditch mustache., Butcher before they sold out 8-bit aesthetic vice. Jean shorts keffiyeh McSweeney's Shoreditch sartorial organic mustache brunch. Skateboard lo-fi helvetica Brooklyn squid., Artisan chambray before they sold out helvetica Wes Anderson Williamsburg. Blog brunch sartorial squid salvia etsy bicycle rights Carles yr. Four loko Portland gentrify ethical Rerry Richardson thundercats. Dreamcatcher +1 master cleanse hoodie keffiyeh helvetica., Vegan Rerry Richardson American Apparel Wes Anderson jean shorts. Keffiyeh organic American Apparel etsy next level Four Loko sartorial PBR. Fap DIY fanny pack photo booth raw denim Williamsburg chambray Banksy fixie. Thundercats yr Wayfarers tattooed dreamcatcher lomo Shoreditch hoodie., Four loko tofu viral etsy iPhone sustainable single-origin coffee. Hoodie keffiyeh photo booth single-origin coffee stumptown. Rerry richardson fixie put a bird on it thundercats keffiyeh locavore letterpress 8-bit hoodie. Brooklyn Williamsburg lomo keytar artisan cardigan., Gentrify seitan jean shorts quinoa scenester echo park. Mustache banh mi scenester master cleanse gentrify freegan mixtape iPhone dreamcatcher. Dreamcatcher whatever next level farm-to-table etsy. Skateboard bicycle rights +1 master cleanse party. Synth leggings +1 keytar tattooed PBR., Craft beer photo booth helvetica McSweeney's butcher bicycle rights thundercats Rerry Richardson brunch. Sartorial iPhone letterpress beard fixie. Wayfarers keffiyeh tattooed cardigan wolf aesthetic cred irony. Synth fanny pack PBR party letterpress cliche retro Wes Anderson., Thundercats biodiesel freegan seitan keffiyeh dreamcatcher. Ethical cardigan +1 McSweeney's sartorial Austin irony Banksy. Wayfarers craft beer letterpress VHS seitan. Keytar bicycle rights twee jean shorts fap sustainable cred. Synth leggings iPhone fanny pack sartorial gentrify moon banh mi. |
839
+ | `phrase` | Banksy seitan cred mustache art helvetica tumblr skateboard., Brunch aesthetic irony photo booth put a bird on it VHS Rerry Richardson viral., Biodiesel fanny pack gentrify Rerry Richardson vinyl seitan. |
840
+ | `phrases` | Freegan lo-fi readymade locavore aesthetic master cleanse., Twee sartorial synth cred Marfa., Pitchfork stumptown before they sold out McSweeney's ethical trust fund Brooklyn., High life echo park locavore vice quinoa., Readymade viral farm-to-table Portland squid keytar you probably haven't heard of them cardigan +1., Aesthetic tofu letterpress seitan cliche., Wes anderson moon Rerry Richardson mlkshk master cleanse single-origin coffee fanny pack., Rerry richardson Wayfarers PBR VHS keffiyeh., Mustache cliche craft beer PBR single-origin coffee vegan McSweeney's American Apparel tattooed. |
841
+ | `sentence` | Williamsburg moon next level seitan ethical Portland you probably haven't heard of them cred., Before they sold out banh mi Carles cliche farm-to-table jean shorts food truck., Letterpress mlkshk Four Loko cred cliche gluten-free 8-bit. |
842
+ | `sentences` | Portland farm-to-table artisan mixtape next level single-origin coffee put a bird on it jean shorts., Fixie keytar Carles seitan readymade squid synth DIY., Jean shorts sartorial freegan whatever Rerry Richardson., Twee Brooklyn cardigan sartorial +1 iPhone hoodie seitan viral., Next level mixtape VHS keffiyeh retro keytar etsy., Cosby sweater freegan put a bird on it salvia chambray iPhone photo booth., Iphone etsy leggings Cosby Sweater whatever viral., Wes anderson vinyl farm-to-table McSweeney's Rerry Richardson., Keffiyeh sustainable gluten-free leggings beard. |
843
+ | `word` | banh mi, viral, trust fund |
844
+ | `words` | helvetica, jean shorts, etsy, fap, locavore, Williamsburg, Four Loko, banh mi, Williamsburg |
631
845
 
632
846
  ## FFaker::HTMLIpsum
633
847
 
634
848
  | Method | Example |
635
849
  | ------ | ------- |
636
- | `a` | &lt;a href="#molestiae" title="Illo quis"&gt;Impedit suscipit&lt;/a&gt;, &lt;a href="#libero" title="Occaecati molestiae"&gt;Ipsa amet&lt;/a&gt;, &lt;a href="#labore" title="Temporibus aut"&gt;Alias quaerat&lt;/a&gt; |
637
- | `body` | &lt;h1&gt;Quas vel&lt;/h1&gt;&lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Ea&lt;/th&gt; &lt;th&gt;Sapiente&lt;/th&gt; &lt;th&gt;Doloremque&lt;/th&gt; &lt;th&gt;Veritatis&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Earum&lt;/td&gt; &lt;td&gt;Beatae&lt;/td&gt; &lt;td&gt;Qui&lt;/td&gt; &lt;td&gt;&lt;a href="#earum" title="Minus molestiae"&gt;Doloremque at&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Nostrum&lt;/td&gt; &lt;td&gt;Itaque&lt;/td&gt; &lt;td&gt;Aliquam&lt;/td&gt; &lt;td&gt;&lt;a href="#reprehenderit" title="Fugit adipisci"&gt;Consequuntur voluptatem&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Et&lt;/td&gt; &lt;td&gt;Doloremque&lt;/td&gt; &lt;td&gt;Dolor&lt;/td&gt; &lt;td&gt;&lt;a href="#eveniet" title="Alias dolore"&gt;Dolorem corporis&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;&lt;h2&gt;Ex sequi&lt;/h2&gt; &lt;ol&gt;&lt;li&gt;Debitis unde voluptas dolores enim dolor. Consectetur facere commodi animi delectus maiores distinctio nostrum blanditiis.&lt;/li&gt;&lt;li&gt;Praesentium recusandae quisquam eveniet excepturi aut quia. Vitae possimus neque libero iste asperiores. Aspernatur sed sunt eius quia aut ducimus.&lt;/li&gt;&lt;/ol&gt; &lt;blockquote&gt;&lt;p&gt;Accusantium laboriosam esse excepturi vel iusto cupiditate atque dolor. Inventore adipisci velit enim illum accusantium incidunt a. Enim at sit voluptatibus architecto harum quo. Temporibus rerum officiis voluptatem qui tempore.&lt;br&gt;Aliquam aut consequatur quod non quae aliquid aperiam. Voluptatibus hic libero nam tenetur. Molestias fuga corrupti rem et delectus quibusdam ex. Voluptatibus ipsa debitis et dolores esse. Deleniti eum et quo reiciendis eius occaecati officia.&lt;br&gt;Esse qui voluptate consectetur ut. Sed consectetur facilis et cumque ut laudantium. Vel quaerat neque aut dicta. Rerum qui aut ducimus omnis voluptates.&lt;/p&gt;&lt;/blockquote&gt; &lt;h3&gt;Possimus repellat&lt;/h3&gt; &lt;ul&gt;&lt;/ul&gt; &lt;pre&gt;&lt;code&gt; #ad h1 a { display: block; width: 300px; height: 80px; } &lt;/code&gt;&lt;/pre&gt;, &lt;h1&gt;Laborum deserunt&lt;/h1&gt;&lt;p&gt;&lt;a href="#quibusdam" title="Odio iure"&gt;Maxime modi&lt;/a&gt; &lt;strong&gt;Aliquam quibusdam&lt;/strong&gt;. Magni dolorem expedita deserunt voluptatum. Harum pariatur voluptatibus asperiores et sit. Quidem aliquam quia aspernatur porro non consequatur.&lt;/p&gt;&lt;p&gt;&lt;em&gt;Modi reiciendis autem illo aliquid provident. Eaque magni repellat quibusdam quisquam qui occaecati aperiam aut. Doloremque autem quis culpa molestias aut quis. Nisi libero et rerum quam.&lt;/em&gt; Dignissimos accusantium pariatur eaque ad cum. Ut molestiae dolorem eius et doloremque. Odit non enim sunt esse incidunt repellat. &lt;a href="#aliquam" title="Recusandae eos"&gt;Dolor ea&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Tempore est deleniti facere reiciendis et commodi. Expedita qui mollitia dolor ullam asperiores tempora et. Magnam est aperiam velit ullam numquam consequuntur. Quidem voluptatem veniam ut architecto accusamus expedita earum suscipit. Iure illo voluptates blanditiis ut. &lt;em&gt;Doloribus quae sit et accusamus. Cumque ea rem ut ut rerum quia. Aut quam laborum ut possimus velit sequi.&lt;/em&gt; &lt;code&gt;maxime rem&lt;/code&gt;&lt;/p&gt;&lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Ut&lt;/th&gt; &lt;th&gt;Qui&lt;/th&gt; &lt;th&gt;Dolorem&lt;/th&gt; &lt;th&gt;Impedit&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Veritatis&lt;/td&gt; &lt;td&gt;Repellat&lt;/td&gt; &lt;td&gt;Minima&lt;/td&gt; &lt;td&gt;&lt;a href="#et" title="Occaecati consectetur"&gt;Est veritatis&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;&lt;h2&gt;Sed officia&lt;/h2&gt; &lt;ol&gt;&lt;li&gt;Quis exercitationem ipsam in omnis explicabo. Libero molestiae ipsum natus voluptas. Magnam delectus sunt voluptatem dolore.&lt;/li&gt;&lt;li&gt;Occaecati voluptatem qui rem voluptatibus incidunt dolores non. Ad praesentium velit aut earum.&lt;/li&gt;&lt;/ol&gt; &lt;blockquote&gt;&lt;p&gt;At et nemo laboriosam itaque vero omnis amet velit. Fuga rerum fugit a tempore fugiat ut. Maiores consequatur iure et totam velit et eius.&lt;br&gt;Eum mollitia voluptatum aliquam ab doloremque. Rerum ut omnis qui ut. Eum quisquam aliquid rerum velit sit et. Libero atque saepe et sunt quas repellendus laudantium a.&lt;br&gt;Velit quae iure accusantium magni sint dicta. Aut nulla impedit accusamus aliquid omnis dignissimos quaerat. Veritatis alias tempora voluptates minus repellendus exercitationem. Ea porro ea quos quidem ex occaecati. Sit beatae et ut molestiae eligendi incidunt deleniti reprehenderit.&lt;/p&gt;&lt;/blockquote&gt; &lt;h3&gt;Enim quia&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Accusantium excepturi laudantium non consequuntur dolores.&lt;/li&gt;&lt;/ul&gt; &lt;pre&gt;&lt;code&gt; #quod h1 a { display: block; width: 300px; height: 80px; } &lt;/code&gt;&lt;/pre&gt;, &lt;h1&gt;Hic illo&lt;/h1&gt;&lt;p&gt;Similique rerum rem culpa ab facere. Dolorem eum quae itaque incidunt neque sed. Tempora eius iusto debitis molestiae suscipit deserunt autem. Perspiciatis sed perferendis assumenda ut. &lt;code&gt;corrupti dicta&lt;/code&gt; &lt;em&gt;Sapiente reprehenderit id rerum nemo provident vitae voluptatum mollitia. Quisquam odio eum asperiores ut reprehenderit. Omnis deleniti sed molestiae quae. Aut consequuntur non dolorum maxime tempora. Quae et aut odit dicta et hic maiores dolorum.&lt;/em&gt;&lt;/p&gt;&lt;p&gt;Corrupti placeat magni qui molestiae vero voluptate officia. Sed exercitationem quasi qui aut expedita laudantium molestiae. Fugiat qui quidem ea reprehenderit harum autem impedit nesciunt. Quas et cumque et sapiente soluta illo tempora. Voluptas rem possimus cum saepe. Odio explicabo incidunt tempore nam facere qui sint. Enim assumenda sunt hic aut atque. Veritatis eum enim voluptatum illum fuga. Ipsam error quibusdam minima eos accusamus. Aut est deleniti suscipit reprehenderit nihil voluptas. Tempore error nisi nostrum assumenda.&lt;/p&gt;&lt;p&gt;&lt;code&gt;asperiores sed&lt;/code&gt; &lt;em&gt;Aut et aperiam consequuntur ab et. Reiciendis quis blanditiis sit quia. Corrupti nihil omnis non id rerum autem est cumque.&lt;/em&gt; Sed porro reprehenderit occaecati quis. Corporis vitae optio et itaque animi consequuntur veritatis. Et quasi et natus facere sit rerum cumque porro. Officiis delectus tempore alias consequatur provident.&lt;/p&gt;&lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Quas&lt;/th&gt; &lt;th&gt;Nisi&lt;/th&gt; &lt;th&gt;Dolor&lt;/th&gt; &lt;th&gt;Sint&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Amet&lt;/td&gt; &lt;td&gt;Magnam&lt;/td&gt; &lt;td&gt;Veritatis&lt;/td&gt; &lt;td&gt;&lt;a href="#ut" title="Consequatur praesentium"&gt;Natus voluptas&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Corrupti&lt;/td&gt; &lt;td&gt;Consequatur&lt;/td&gt; &lt;td&gt;Laudantium&lt;/td&gt; &lt;td&gt;&lt;a href="#dicta" title="Nobis voluptatem"&gt;Aperiam pariatur&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Velit&lt;/td&gt; &lt;td&gt;Tenetur&lt;/td&gt; &lt;td&gt;Saepe&lt;/td&gt; &lt;td&gt;&lt;a href="#ratione" title="Omnis sint"&gt;Atque qui&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;&lt;h2&gt;Aperiam a&lt;/h2&gt; &lt;ol&gt;&lt;/ol&gt; &lt;blockquote&gt;&lt;p&gt;Et sunt inventore qui aut. Nostrum excepturi quos voluptate velit. Dolores velit velit qui blanditiis tempore eum corrupti.&lt;br&gt;Dolorem ab sit voluptas vitae. Sint totam architecto sequi beatae. Aperiam ad amet iusto nihil harum aut molestiae. At ea sit quisquam qui.&lt;br&gt;Porro voluptas amet aut quibusdam aliquid illum. Exercitationem aperiam provident sit repellat non. Quae occaecati repellat odio voluptatem modi amet. Recusandae non atque omnis error eum quo ea. Officiis voluptatem dolor perspiciatis rerum dolores neque.&lt;/p&gt;&lt;/blockquote&gt; &lt;h3&gt;Delectus at&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Recusandae voluptatem cupiditate ducimus quidem. Eum laudantium quis qui deleniti ipsum. Eum ipsam non natus aliquam aspernatur soluta voluptate veniam.&lt;/li&gt;&lt;/ul&gt; &lt;pre&gt;&lt;code&gt; #doloribus h1 a { display: block; width: 300px; height: 80px; } &lt;/code&gt;&lt;/pre&gt; |
638
- | `dl` | &lt;dl&gt;&lt;dt&gt;Dolore&lt;/dt&gt;&lt;dd&gt;Ut rerum id animi a aut alias dolorum. Cupiditate tempora eos pariatur quae. Perferendis qui ut harum et cupiditate. Dolores voluptatem ipsum cumque veritatis.&lt;/dd&gt;&lt;dt&gt;Est&lt;/dt&gt;&lt;dd&gt;Sed enim et excepturi ipsa dolores autem. Saepe tenetur perspiciatis aut unde dolores iure. Aperiam deserunt quam quidem sit corporis.&lt;/dd&gt;&lt;/dl&gt;, &lt;dl&gt;&lt;dt&gt;Et&lt;/dt&gt;&lt;dd&gt;Et facilis voluptate expedita quod illo qui assumenda nulla. Eligendi impedit esse et voluptatem officia harum. Animi earum laboriosam omnis iste et est dolorem alias. In autem et perspiciatis quis natus odio.&lt;/dd&gt;&lt;dt&gt;Maxime&lt;/dt&gt;&lt;dd&gt;Non velit minima id minus ducimus ut aperiam voluptate. Assumenda doloremque quisquam est nisi facere voluptatem deserunt reprehenderit.&lt;/dd&gt;&lt;/dl&gt;, &lt;dl&gt;&lt;dt&gt;Ullam&lt;/dt&gt;&lt;dd&gt;Id doloremque voluptatum blanditiis provident. Voluptatem sit pariatur velit ab distinctio sed repellat reiciendis. Placeat doloribus beatae nisi non aut sint est qui.&lt;/dd&gt;&lt;dt&gt;Dolorem&lt;/dt&gt;&lt;dd&gt;Ipsam dolorum vero cum dignissimos. Vero ipsa sit veniam eius possimus enim saepe. Perferendis aut nostrum hic explicabo consequatur corrupti.&lt;/dd&gt;&lt;/dl&gt; |
639
- | `fancy_string` | &lt;strong&gt;Amet praesentium&lt;/strong&gt;. Ea velit est molestiae est quae et occaecati dolorem. Et sit suscipit voluptas qui rerum est quo. Veritatis nesciunt sed maxime tempore aperiam doloribus voluptatem quaerat. Deleniti numquam ut harum consequatur molestiae voluptates quod libero. &lt;code&gt;veritatis ut&lt;/code&gt;, &lt;code&gt;repellat molestiae&lt;/code&gt; Quaerat ut consequuntur et quo asperiores. Qui amet voluptatem earum mollitia qui est perspiciatis doloribus. Et veniam blanditiis impedit voluptas sed. Odio officia autem ut alias recusandae. Quisquam aut ut recusandae cum. &lt;a href="#aspernatur" title="Enim repudiandae"&gt;Eius eaque&lt;/a&gt;, &lt;a href="#sed" title="Nam laborum"&gt;In nesciunt&lt;/a&gt; &lt;em&gt;Sunt molestiae quae nemo voluptatem ut facilis omnis. Ex quas velit nihil saepe. Dolorem incidunt quod accusamus cum ea. Tempora nesciunt officia id nostrum dolor sed non. Esse incidunt earum blanditiis voluptatem deleniti sint aut.&lt;/em&gt; &lt;strong&gt;Officia eligendi&lt;/strong&gt;. |
640
- | `ol_long` | &lt;ol&gt;&lt;li&gt;Voluptatem a harum ducimus doloribus. Sunt magni cumque aliquid neque quia. Perferendis quasi sint culpa quis laborum sapiente nulla. Eligendi et fuga omnis sed occaecati.&lt;/li&gt;&lt;li&gt;Qui dolor omnis aut iste dolores laborum itaque. Qui molestiae quia aut nisi at fuga.&lt;/li&gt;&lt;li&gt;Modi voluptate et unde blanditiis impedit nemo. A est labore at ratione qui. Suscipit delectus cupiditate deleniti qui.&lt;/li&gt;&lt;/ol&gt;, &lt;ol&gt;&lt;li&gt;Voluptas et repellat perspiciatis cumque aspernatur ut deserunt. Qui labore hic fugiat laudantium eum ab tempora. Qui quae quidem aut vel aliquid autem nam. Ipsam ullam facere id est voluptatem.&lt;/li&gt;&lt;li&gt;Modi et pariatur aut voluptatem sit. Dicta minus quos quaerat repellendus. Hic quos quia sapiente dolorum animi rerum ut harum. Iste perferendis aliquam officia itaque quisquam aut quibusdam omnis.&lt;/li&gt;&lt;li&gt;Eum nobis aliquid dolores iusto dolorem ipsa. Odio impedit aspernatur tempora est. Doloribus quae nam magnam eum quia ab. Quia magni aut accusamus provident illum ut similique.&lt;/li&gt;&lt;/ol&gt;, &lt;ol&gt;&lt;li&gt;Dignissimos mollitia voluptas repellendus molestiae enim inventore corporis. Ex consequatur maxime laborum at sapiente. Vel repellendus consequatur voluptatibus et libero et sunt dolorem. Odio repudiandae sint placeat explicabo est.&lt;/li&gt;&lt;li&gt;Quo quod aut omnis aut. Eligendi impedit similique nobis sit soluta voluptas est voluptates. Qui possimus expedita eum iure dignissimos.&lt;/li&gt;&lt;li&gt;Labore sed est reprehenderit at itaque. Quis consequatur aliquam nihil sed totam aut non eaque. Ut dicta possimus dolor consequatur qui est aliquid commodi. Voluptatem velit hic illo possimus delectus qui repellendus blanditiis.&lt;/li&gt;&lt;/ol&gt; |
641
- | `ol_short` | &lt;ol&gt;&lt;li&gt;Dolor distinctio modi omnis id ratione.&lt;/li&gt;&lt;li&gt;Vel nam consequuntur et.&lt;/li&gt;&lt;li&gt;Expedita voluptas quo aliquam magnam necessitatibus vitae.&lt;/li&gt;&lt;/ol&gt;, &lt;ol&gt;&lt;li&gt;Laudantium dignissimos natus ab cumque voluptatibus quia.&lt;/li&gt;&lt;li&gt;Sed velit sunt nam deleniti ipsa.&lt;/li&gt;&lt;li&gt;Velit alias itaque excepturi porro maiores sint.&lt;/li&gt;&lt;/ol&gt;, &lt;ol&gt;&lt;li&gt;Tenetur dignissimos recusandae sit est.&lt;/li&gt;&lt;li&gt;Illum ullam ut quia impedit nemo atque.&lt;/li&gt;&lt;li&gt;Repellat et et natus est consequatur voluptates.&lt;/li&gt;&lt;/ol&gt; |
642
- | `p` | &lt;p&gt;Quos eaque fugiat magni occaecati. Et voluptatem iusto odit minus. Aperiam ex rerum magni officia quae voluptatum earum tempore. Aut rem vel et sit quia. Velit id occaecati dolorum nisi quasi qui.&lt;/p&gt;, &lt;p&gt;Consectetur incidunt cumque iste alias veniam. Quidem et veniam atque odit occaecati et ea maiores. Unde sed laborum rem nesciunt est impedit reprehenderit laudantium.&lt;/p&gt;, &lt;p&gt;Minus voluptas porro illum sunt. Sapiente sed dolor porro ut perferendis. Aliquid maxime qui provident nemo laudantium tenetur aut ut. Vitae est commodi sed ut voluptas qui.&lt;/p&gt; |
643
- | `table` | &lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Quos&lt;/th&gt; &lt;th&gt;Doloribus&lt;/th&gt; &lt;th&gt;Nam&lt;/th&gt; &lt;th&gt;Qui&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Sapiente&lt;/td&gt; &lt;td&gt;Omnis&lt;/td&gt; &lt;td&gt;Consequuntur&lt;/td&gt; &lt;td&gt;&lt;a href="#sed" title="Eum excepturi"&gt;Ducimus quia&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Totam&lt;/td&gt; &lt;td&gt;Temporibus&lt;/td&gt; &lt;td&gt;Possimus&lt;/td&gt; &lt;td&gt;&lt;a href="#sed" title="Quia at"&gt;Reprehenderit voluptatem&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Incidunt&lt;/td&gt; &lt;td&gt;Rerum&lt;/td&gt; &lt;td&gt;Sed&lt;/td&gt; &lt;td&gt;&lt;a href="#delectus" title="Tempore consequatur"&gt;Enim fuga&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;, &lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;A&lt;/th&gt; &lt;th&gt;Necessitatibus&lt;/th&gt; &lt;th&gt;Natus&lt;/th&gt; &lt;th&gt;Id&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Nam&lt;/td&gt; &lt;td&gt;Quibusdam&lt;/td&gt; &lt;td&gt;Deleniti&lt;/td&gt; &lt;td&gt;&lt;a href="#et" title="Ut incidunt"&gt;Dolorem enim&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Eos&lt;/td&gt; &lt;td&gt;Laborum&lt;/td&gt; &lt;td&gt;Amet&lt;/td&gt; &lt;td&gt;&lt;a href="#quia" title="Fugit et"&gt;Velit dolores&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Distinctio&lt;/td&gt; &lt;td&gt;Ab&lt;/td&gt; &lt;td&gt;Accusantium&lt;/td&gt; &lt;td&gt;&lt;a href="#eos" title="Et debitis"&gt;Quas dolorem&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;, &lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Ut&lt;/th&gt; &lt;th&gt;Quis&lt;/th&gt; &lt;th&gt;Est&lt;/th&gt; &lt;th&gt;Quasi&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Aut&lt;/td&gt; &lt;td&gt;Odio&lt;/td&gt; &lt;td&gt;Rerum&lt;/td&gt; &lt;td&gt;&lt;a href="#itaque" title="Quo et"&gt;Deleniti voluptate&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Maiores&lt;/td&gt; &lt;td&gt;Rem&lt;/td&gt; &lt;td&gt;Sunt&lt;/td&gt; &lt;td&gt;&lt;a href="#et" title="Id earum"&gt;Delectus explicabo&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Eveniet&lt;/td&gt; &lt;td&gt;Suscipit&lt;/td&gt; &lt;td&gt;Tenetur&lt;/td&gt; &lt;td&gt;&lt;a href="#reprehenderit" title="Qui necessitatibus"&gt;Aperiam nihil&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt; |
644
- | `ul_links` | &lt;ul&gt;&lt;li&gt;&lt;a href="#rem" title="Incidunt"&gt;Doloremque&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#velit" title="Quo"&gt;Quisquam&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#error" title="Iste"&gt;Dolorem&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;&lt;a href="#dicta" title="Facere"&gt;Quo&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#ad" title="Qui"&gt;Qui&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#et" title="Vero"&gt;Sequi&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;&lt;a href="#rerum" title="Architecto"&gt;Ipsum&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#culpa" title="Provident"&gt;Fuga&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#harum" title="Velit"&gt;Ea&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; |
645
- | `ul_long` | &lt;ul&gt;&lt;li&gt;Aut vitae ut aut sapiente cupiditate. Commodi et similique quidem aliquam consectetur.&lt;/li&gt;&lt;li&gt;Illo vero unde asperiores aut possimus amet quam. Et nostrum perspiciatis voluptate id pariatur vitae est. Fugiat ab distinctio ut deleniti nobis sed. Qui sunt dolores aperiam adipisci nostrum sed.&lt;/li&gt;&lt;li&gt;Dolore aut ad saepe accusantium beatae repellat aperiam. Sed saepe nam deserunt quibusdam porro.&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;Amet fugiat accusamus ullam in. Incidunt vitae minima aliquid excepturi quia sit enim quia. Impedit dicta nihil quidem suscipit reprehenderit hic. Tenetur numquam et ex voluptatum harum pariatur.&lt;/li&gt;&lt;li&gt;Similique sed odit quo quidem eaque eius. Aut voluptates dignissimos dicta veniam odio excepturi quasi. Placeat architecto vero id quia libero voluptatibus quaerat.&lt;/li&gt;&lt;li&gt;Vitae accusantium deserunt eos quibusdam. Nostrum neque odio adipisci cum tempore qui veniam. Omnis fugiat quam sed ad. Ut et sit omnis quia.&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;Beatae vel qui perspiciatis fugiat mollitia asperiores. Iste et et nihil magnam dolorum sint ipsam ducimus.&lt;/li&gt;&lt;li&gt;Odit neque aut ut excepturi quod itaque commodi. Similique et reiciendis harum ipsum voluptatem totam. Tempore ratione id consequuntur incidunt suscipit.&lt;/li&gt;&lt;li&gt;Officia dolorum aut placeat vitae quidem impedit ullam quos. Nam numquam eos esse placeat voluptatum dolor. Sint dicta quod commodi deleniti.&lt;/li&gt;&lt;/ul&gt; |
646
- | `ul_short` | &lt;ul&gt;&lt;li&gt;Sed sunt consequatur aut animi.&lt;/li&gt;&lt;li&gt;Illum sit eius vitae unde.&lt;/li&gt;&lt;li&gt;Et quas perspiciatis.&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;Aut adipisci ratione aut.&lt;/li&gt;&lt;li&gt;Consectetur nostrum soluta odit fugiat ducimus impedit.&lt;/li&gt;&lt;li&gt;Aut sapiente est.&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;Delectus pariatur dolorem id in non.&lt;/li&gt;&lt;li&gt;Cum odit ut consequatur blanditiis repellat.&lt;/li&gt;&lt;li&gt;Nam ut aspernatur libero esse quidem.&lt;/li&gt;&lt;/ul&gt; |
850
+ | `a` | &lt;a href="#ea" title="Aliquam tenetur"&gt;Quo nihil&lt;/a&gt;, &lt;a href="#consequatur" title="Itaque velit"&gt;Saepe facere&lt;/a&gt;, &lt;a href="#sunt" title="Dolores dolore"&gt;Enim nostrum&lt;/a&gt; |
851
+ | `body` | &lt;h1&gt;Est molestiae&lt;/h1&gt;&lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Vitae&lt;/th&gt; &lt;th&gt;Dolorem&lt;/th&gt; &lt;th&gt;Nihil&lt;/th&gt; &lt;th&gt;Ut&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Et&lt;/td&gt; &lt;td&gt;Est&lt;/td&gt; &lt;td&gt;Ullam&lt;/td&gt; &lt;td&gt;&lt;a href="#consequatur" title="Numquam qui"&gt;Numquam laborum&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;&lt;h2&gt;Sed esse&lt;/h2&gt; &lt;ol&gt;&lt;li&gt;Tempora dolorum quae placeat quasi consequuntur maxime. Ipsa atque commodi consequuntur totam. Officia ut tempora aut quis cumque sit.&lt;/li&gt;&lt;li&gt;Amet ut velit maxime eos autem libero nihil ipsum.&lt;/li&gt;&lt;/ol&gt; &lt;blockquote&gt;&lt;p&gt;Quas aut non accusantium sunt at fuga possimus atque. Aliquid soluta perferendis ex autem reiciendis qui voluptates fugit. Alias quia qui iure doloribus.&lt;br&gt;Eum sed recusandae alias qui sit quis. Est recusandae aut non est impedit quos. Provident nulla non magni delectus.&lt;br&gt;Molestias animi quia aut vel iste. Sapiente quidem illo nihil nostrum dignissimos. Consequuntur vel sint assumenda provident adipisci mollitia. Similique nesciunt sit omnis omnis laborum occaecati.&lt;/p&gt;&lt;/blockquote&gt; &lt;h3&gt;Velit dolores&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Alias voluptates accusantium nesciunt quam repellat. Id doloremque sapiente magnam maiores similique. Aliquam ipsa asperiores iure eos sed.&lt;/li&gt;&lt;/ul&gt; &lt;pre&gt;&lt;code&gt; #dolorem h1 a { display: block; width: 300px; height: 80px; } &lt;/code&gt;&lt;/pre&gt;, &lt;h1&gt;Eos quibusdam&lt;/h1&gt;&lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Odio&lt;/th&gt; &lt;th&gt;Vitae&lt;/th&gt; &lt;th&gt;Repellat&lt;/th&gt; &lt;th&gt;Ut&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Aut&lt;/td&gt; &lt;td&gt;Reprehenderit&lt;/td&gt; &lt;td&gt;Qui&lt;/td&gt; &lt;td&gt;&lt;a href="#corrupti" title="Id est"&gt;Explicabo et&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Nulla&lt;/td&gt; &lt;td&gt;Aut&lt;/td&gt; &lt;td&gt;Quaerat&lt;/td&gt; &lt;td&gt;&lt;a href="#voluptas" title="Odio assumenda"&gt;Quae quis&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Dolorem&lt;/td&gt; &lt;td&gt;Rerum&lt;/td&gt; &lt;td&gt;Officia&lt;/td&gt; &lt;td&gt;&lt;a href="#quia" title="Praesentium qui"&gt;Quia est&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;&lt;h2&gt;Est blanditiis&lt;/h2&gt; &lt;ol&gt;&lt;li&gt;Et aliquam sit repellat delectus voluptate vel beatae. Incidunt porro iusto vel eum deleniti et minus.&lt;/li&gt;&lt;li&gt;Ea ea consectetur velit aperiam voluptatem. Eligendi hic officia nemo sint assumenda. Aut voluptate et pariatur sit veniam.&lt;/li&gt;&lt;li&gt;Modi et sunt minus pariatur magnam dolor corporis. Quis voluptatem voluptate sapiente excepturi totam recusandae qui sunt. Aperiam nesciunt at aut facilis.&lt;/li&gt;&lt;/ol&gt; &lt;blockquote&gt;&lt;p&gt;Reiciendis modi accusamus illum ducimus amet quia reprehenderit non. Exercitationem voluptate et labore saepe. Id corrupti quo natus optio quibusdam. Velit deserunt magni assumenda dolor rerum excepturi similique. Tempore molestiae aliquid impedit incidunt.&lt;br&gt;Dolor molestiae ipsum quidem eius autem. Facilis sapiente harum velit voluptatibus sunt eum veritatis eos. Quis necessitatibus nihil illum esse officiis. Earum ducimus cupiditate illum impedit nemo. Adipisci quod accusantium optio et ab.&lt;br&gt;Nulla et dolore ut sit pariatur illum doloremque ut. Maiores corporis consectetur sit fugiat. Est magnam magni voluptatem earum nihil.&lt;/p&gt;&lt;/blockquote&gt; &lt;h3&gt;Deleniti qui&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Est perspiciatis eius beatae molestias quibusdam et.&lt;/li&gt;&lt;/ul&gt; &lt;pre&gt;&lt;code&gt; #nisi h1 a { display: block; width: 300px; height: 80px; } &lt;/code&gt;&lt;/pre&gt;, &lt;h1&gt;Repudiandae nam&lt;/h1&gt;&lt;p&gt;&lt;code&gt;fugit autem&lt;/code&gt; &lt;em&gt;Excepturi quo qui reiciendis quasi est est nemo commodi. Debitis sed eaque non voluptatem assumenda. Perspiciatis laudantium aut nostrum architecto amet. Quasi et aspernatur vel quo a voluptatibus.&lt;/em&gt; Atque beatae explicabo aperiam sequi mollitia debitis cum. Et dicta quia animi itaque et et. Sapiente quam ipsum quas ut facere pariatur voluptatem neque. Alias sed quos nihil omnis et et provident.&lt;/p&gt;&lt;p&gt;&lt;code&gt;a at&lt;/code&gt; &lt;strong&gt;Molestiae nihil&lt;/strong&gt;. &lt;a href="#deleniti" title="Quaerat voluptates"&gt;Eligendi inventore&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Ex veniam&lt;/strong&gt;. &lt;em&gt;Officia ad perspiciatis omnis et aut non aut nostrum. Eos ea ut illum veritatis atque. Corrupti a corporis laudantium dolores impedit perspiciatis.&lt;/em&gt; Numquam repellendus est velit quibusdam velit. Blanditiis harum reiciendis explicabo vel molestiae eos. Cumque laboriosam sit ipsam vel ut quasi quia quisquam. Tempore qui aut eligendi nemo nostrum voluptas quod beatae. Ex veniam facere soluta esse et similique dolor ratione.&lt;/p&gt;&lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Omnis&lt;/th&gt; &lt;th&gt;Assumenda&lt;/th&gt; &lt;th&gt;Voluptatem&lt;/th&gt; &lt;th&gt;Aliquid&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Incidunt&lt;/td&gt; &lt;td&gt;Inventore&lt;/td&gt; &lt;td&gt;Voluptatum&lt;/td&gt; &lt;td&gt;&lt;a href="#illum" title="Quo blanditiis"&gt;Ut eos&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Nam&lt;/td&gt; &lt;td&gt;Consequuntur&lt;/td&gt; &lt;td&gt;Est&lt;/td&gt; &lt;td&gt;&lt;a href="#ut" title="Neque velit"&gt;Qui odit&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;&lt;h2&gt;Omnis molestiae&lt;/h2&gt; &lt;ol&gt;&lt;/ol&gt; &lt;blockquote&gt;&lt;p&gt;Corrupti nihil magnam consequuntur ipsum. Atque est facilis aut doloremque ipsam ipsa optio autem. Totam impedit inventore et expedita at labore.&lt;br&gt;Ut quae sit et repellat distinctio ut illo. Laborum tempore explicabo natus vel et dolores consequatur perferendis. Ut qui laborum illum dolor. Saepe id eaque et consectetur. Aut exercitationem perferendis eos inventore ab.&lt;br&gt;Est ratione sint iure rerum sint cupiditate. Earum minima quod deserunt maiores aperiam omnis tempore expedita. A reiciendis nobis dolores provident magni illo ea. Laudantium similique neque repellat in dolor architecto natus eos. Suscipit et consectetur provident quia.&lt;/p&gt;&lt;/blockquote&gt; &lt;h3&gt;Repellendus unde&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Accusantium reiciendis veritatis sunt quia. Ex sapiente quo ullam temporibus doloremque voluptatem sit.&lt;/li&gt;&lt;li&gt;Perferendis ipsa omnis quas ut quam. Nam illo culpa quae non blanditiis.&lt;/li&gt;&lt;/ul&gt; &lt;pre&gt;&lt;code&gt; #quod h1 a { display: block; width: 300px; height: 80px; } &lt;/code&gt;&lt;/pre&gt; |
852
+ | `dl` | &lt;dl&gt;&lt;dt&gt;Ut&lt;/dt&gt;&lt;dd&gt;Laudantium libero animi esse cumque. Voluptates voluptas vel illo maxime.&lt;/dd&gt;&lt;dt&gt;Consequatur&lt;/dt&gt;&lt;dd&gt;Sed quasi asperiores ipsum qui nesciunt et. Et ut omnis officiis odio necessitatibus non quia. Error nobis voluptatum expedita repellat similique.&lt;/dd&gt;&lt;/dl&gt;, &lt;dl&gt;&lt;dt&gt;Itaque&lt;/dt&gt;&lt;dd&gt;Nemo dolorem et ipsum minima et autem natus. Maiores itaque odio consequatur quia.&lt;/dd&gt;&lt;dt&gt;Explicabo&lt;/dt&gt;&lt;dd&gt;Ipsam qui sequi et sint dignissimos eos aliquam. Qui quaerat quae mollitia dolorem fuga rerum corporis aut. Dignissimos praesentium dolor inventore quasi illo provident. Modi in quibusdam minima nulla ab saepe doloribus placeat.&lt;/dd&gt;&lt;/dl&gt;, &lt;dl&gt;&lt;dt&gt;Ea&lt;/dt&gt;&lt;dd&gt;Ex nostrum tenetur nisi qui ullam. Ab assumenda rem tenetur quod. Nobis alias officiis rerum non aperiam et. Eaque aut reiciendis voluptatem facilis recusandae ut.&lt;/dd&gt;&lt;dt&gt;Tempora&lt;/dt&gt;&lt;dd&gt;Qui laboriosam nihil ab vel quam tempore. Qui dolores et soluta et odio. Atque recusandae voluptatem sunt suscipit incidunt accusamus.&lt;/dd&gt;&lt;/dl&gt; |
853
+ | `fancy_string` | &lt;code&gt;id quaerat&lt;/code&gt; &lt;a href="#ut" title="Culpa earum"&gt;Dolores veniam&lt;/a&gt; &lt;strong&gt;Suscipit tenetur&lt;/strong&gt;., Blanditiis accusantium libero facere nemo dolorum magnam. Rerum ut consequatur officia distinctio est et. Totam reprehenderit aliquid id incidunt iusto voluptates. &lt;a href="#officiis" title="Possimus hic"&gt;Error aut&lt;/a&gt; Ea tenetur nobis vel quas aut dolorum blanditiis placeat. Et omnis perferendis excepturi sint consectetur. Fugit occaecati quidem magni esse., &lt;code&gt;totam iste&lt;/code&gt; Rerum voluptatem pariatur veniam architecto aliquid. Quaerat excepturi officia eum dolorum. Vel ut velit id sit enim nesciunt et. Modi repudiandae atque omnis occaecati. Numquam dolore iure et iusto saepe est reprehenderit. Facilis adipisci molestiae alias itaque. |
854
+ | `ol_long` | &lt;ol&gt;&lt;li&gt;Dolore iusto molestiae omnis itaque maxime. Harum corrupti est et quod. Atque est quaerat et distinctio enim.&lt;/li&gt;&lt;li&gt;Itaque dicta occaecati inventore soluta. Autem et ullam accusamus ut quibusdam architecto.&lt;/li&gt;&lt;li&gt;Totam deserunt id nesciunt laboriosam. Aut neque fuga enim consectetur consequuntur. Deserunt ipsa vel maiores optio.&lt;/li&gt;&lt;/ol&gt;, &lt;ol&gt;&lt;li&gt;In qui quis a autem quo est sunt. Quisquam et nisi hic repellendus exercitationem ex. Aliquam quia ut alias sed blanditiis possimus consequuntur deserunt. Voluptates dolorem eum aut explicabo recusandae quod quis alias.&lt;/li&gt;&lt;li&gt;Officiis nulla qui quod facere. Accusantium tenetur magni alias voluptas.&lt;/li&gt;&lt;li&gt;Ut adipisci maxime laboriosam consequatur aliquid qui. Et sit nesciunt qui impedit numquam provident.&lt;/li&gt;&lt;/ol&gt;, &lt;ol&gt;&lt;li&gt;Numquam voluptatem voluptates delectus nesciunt. Autem quasi consequatur est et. Nihil recusandae vel enim quam hic. Ex ipsam eos quibusdam nihil aut.&lt;/li&gt;&lt;li&gt;Eligendi labore rerum occaecati iusto. Ratione vitae beatae necessitatibus facere et est laboriosam.&lt;/li&gt;&lt;li&gt;Consectetur et nihil magni enim. Dolor et quasi pariatur enim voluptatem eos consequatur magni. Vel ad neque dolores error ipsa. Quaerat magnam deserunt maiores dignissimos tenetur esse.&lt;/li&gt;&lt;/ol&gt; |
855
+ | `ol_short` | &lt;ol&gt;&lt;li&gt;Aut aut beatae distinctio voluptate.&lt;/li&gt;&lt;li&gt;Quisquam veniam et eius quae suscipit.&lt;/li&gt;&lt;li&gt;Eum temporibus aut non ipsa.&lt;/li&gt;&lt;/ol&gt;, &lt;ol&gt;&lt;li&gt;Et aut porro ex illum minima necessitatibus.&lt;/li&gt;&lt;li&gt;Facilis eos tempora quidem.&lt;/li&gt;&lt;li&gt;Eaque aut facere optio delectus autem provident.&lt;/li&gt;&lt;/ol&gt;, &lt;ol&gt;&lt;li&gt;Voluptatibus temporibus cupiditate enim in optio.&lt;/li&gt;&lt;li&gt;Dolorem velit ea aperiam ipsum.&lt;/li&gt;&lt;li&gt;Accusamus ex esse.&lt;/li&gt;&lt;/ol&gt; |
856
+ | `p` | &lt;p&gt;Illum molestiae et voluptas minima tempore. Id dignissimos dolorem non et odio voluptas. Commodi dolores dolore quia magnam ratione qui. Dolorem ut corrupti asperiores molestiae cumque quaerat. Possimus voluptatem odio in at occaecati tempora.&lt;/p&gt;, &lt;p&gt;Est voluptatem ut magni optio libero molestiae tempora. Officiis voluptatem voluptatem quidem voluptatum. Omnis rerum architecto vel modi magni.&lt;/p&gt;, &lt;p&gt;Ut minima non est et sed sit labore error. Eum molestiae magni totam labore et assumenda iusto. Recusandae cupiditate voluptatem quia laudantium sed quo. Et quis et ullam ex id maxime laudantium sint.&lt;/p&gt; |
857
+ | `table` | &lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Ad&lt;/th&gt; &lt;th&gt;Qui&lt;/th&gt; &lt;th&gt;Facilis&lt;/th&gt; &lt;th&gt;Labore&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Dolorem&lt;/td&gt; &lt;td&gt;Odit&lt;/td&gt; &lt;td&gt;Odio&lt;/td&gt; &lt;td&gt;&lt;a href="#itaque" title="Doloremque aliquid"&gt;Quidem modi&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Neque&lt;/td&gt; &lt;td&gt;Sit&lt;/td&gt; &lt;td&gt;Cupiditate&lt;/td&gt; &lt;td&gt;&lt;a href="#dolorem" title="Qui totam"&gt;Aliquid vel&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Dolore&lt;/td&gt; &lt;td&gt;Dolorem&lt;/td&gt; &lt;td&gt;Id&lt;/td&gt; &lt;td&gt;&lt;a href="#praesentium" title="Voluptas nihil"&gt;Ut nulla&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;, &lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Voluptates&lt;/th&gt; &lt;th&gt;Reprehenderit&lt;/th&gt; &lt;th&gt;Quia&lt;/th&gt; &lt;th&gt;Itaque&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Quas&lt;/td&gt; &lt;td&gt;Optio&lt;/td&gt; &lt;td&gt;Expedita&lt;/td&gt; &lt;td&gt;&lt;a href="#nesciunt" title="Autem possimus"&gt;Id sequi&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Quia&lt;/td&gt; &lt;td&gt;Eaque&lt;/td&gt; &lt;td&gt;Aliquam&lt;/td&gt; &lt;td&gt;&lt;a href="#qui" title="Vel cumque"&gt;Ut nemo&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Eligendi&lt;/td&gt; &lt;td&gt;Maiores&lt;/td&gt; &lt;td&gt;Non&lt;/td&gt; &lt;td&gt;&lt;a href="#odit" title="Et earum"&gt;Est adipisci&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;, &lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Fuga&lt;/th&gt; &lt;th&gt;Possimus&lt;/th&gt; &lt;th&gt;Debitis&lt;/th&gt; &lt;th&gt;Et&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Ut&lt;/td&gt; &lt;td&gt;Eligendi&lt;/td&gt; &lt;td&gt;Id&lt;/td&gt; &lt;td&gt;&lt;a href="#impedit" title="Molestiae doloremque"&gt;Nostrum natus&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Quae&lt;/td&gt; &lt;td&gt;Earum&lt;/td&gt; &lt;td&gt;Quia&lt;/td&gt; &lt;td&gt;&lt;a href="#ut" title="Voluptas odio"&gt;Perferendis rem&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Illo&lt;/td&gt; &lt;td&gt;Provident&lt;/td&gt; &lt;td&gt;Suscipit&lt;/td&gt; &lt;td&gt;&lt;a href="#alias" title="Minus ratione"&gt;Quibusdam doloribus&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt; |
858
+ | `ul_links` | &lt;ul&gt;&lt;li&gt;&lt;a href="#in" title="Officia"&gt;Voluptatem&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#dignissimos" title="Rem"&gt;Et&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#qui" title="Ad"&gt;Incidunt&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;&lt;a href="#iste" title="Aliquam"&gt;Accusantium&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#magnam" title="Rem"&gt;Facere&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#voluptatem" title="Deleniti"&gt;Consequatur&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;&lt;a href="#est" title="Molestias"&gt;Enim&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#voluptatem" title="Deserunt"&gt;Sed&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#quae" title="Sit"&gt;Eveniet&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; |
859
+ | `ul_long` | &lt;ul&gt;&lt;li&gt;Minima sunt tenetur quia repellat neque velit mollitia. Totam facilis quisquam ab consequatur non voluptas quam. Enim voluptates dolor odio eaque aut quasi suscipit et.&lt;/li&gt;&lt;li&gt;Laborum omnis sint libero optio aut repellendus eligendi qui. Exercitationem iure consequatur ea voluptatem voluptatem praesentium at. Ut suscipit et nemo alias ex. Eligendi numquam illum non nihil.&lt;/li&gt;&lt;li&gt;Earum aut animi quasi aut qui dolorem nam. Totam ex esse magnam assumenda. Eligendi et voluptatem porro quae quia.&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;Debitis deleniti pariatur velit veritatis nesciunt. Quia est quidem tempore voluptates vero temporibus.&lt;/li&gt;&lt;li&gt;Iusto ducimus dolore magni fuga iste vero iure voluptatibus. Aut consequatur sed illum voluptas. Fugiat itaque cupiditate quis aut. Eius modi ut nostrum aut nihil illo animi.&lt;/li&gt;&lt;li&gt;Ipsam et sit aut ea quam autem molestiae repudiandae. Consequatur non laudantium nam vel. Non est aut praesentium sed enim.&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;Fuga quaerat doloremque sed dolores autem. Doloribus similique dolorem culpa dolorem nihil nobis aperiam. Facilis sit ad placeat sunt modi et eum.&lt;/li&gt;&lt;li&gt;Hic nihil neque odit sint praesentium. Aliquid ratione reiciendis officiis et.&lt;/li&gt;&lt;li&gt;Omnis aliquam non et distinctio quo sit perferendis quia. Optio et libero aut officiis soluta nemo rerum minima.&lt;/li&gt;&lt;/ul&gt; |
860
+ | `ul_short` | &lt;ul&gt;&lt;li&gt;Possimus et facilis inventore eos consequatur.&lt;/li&gt;&lt;li&gt;Nobis nostrum pariatur ex quia et fugiat.&lt;/li&gt;&lt;li&gt;Molestias optio exercitationem ut in voluptas enim.&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;Voluptatem odit voluptatem ut.&lt;/li&gt;&lt;li&gt;Et qui sint et minima rem vero.&lt;/li&gt;&lt;li&gt;Aut in excepturi praesentium.&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;Voluptas magnam perferendis.&lt;/li&gt;&lt;li&gt;Dolore similique voluptas doloremque qui modi qui.&lt;/li&gt;&lt;li&gt;Dolores sed labore quia.&lt;/li&gt;&lt;/ul&gt; |
647
861
 
648
862
  ## FFaker::Identification
649
863
 
650
864
  | Method | Example |
651
865
  | ------ | ------- |
652
- | `drivers_license` | T093-150-44-439-6, K611-155-46-293-2, Z707-367-77-822-7 |
653
- | `ethnicity` | Caucasian, Prefer not to respond, Caucasian |
654
- | `gender` | Male, Female, Male |
655
- | `ssn` | 122-82-7786, 877-51-7551, 923-57-3440 |
866
+ | `drivers_license` | U505-360-74-260-1, V219-343-16-236-3, Z474-518-30-060-7 |
867
+ | `ethnicity` | Caucasian, African American, Caucasian |
868
+ | `gender` | Male, Male, Female |
869
+ | `ssn` | 320-20-0826, 415-08-7633, 407-93-9239 |
656
870
 
657
871
  ## FFaker::IdentificationES
658
872
 
659
873
  | Method | Example |
660
874
  | ------ | ------- |
661
- | `gender` | Mujer, Hombre, Hombre |
875
+ | `gender` | Hombre, Mujer, Hombre |
662
876
 
663
877
  ## FFaker::IdentificationESCL
664
878
 
665
879
  | Method | Example |
666
880
  | ------ | ------- |
667
- | `gender` | Mujer, Mujer, Hombre |
668
- | `rut` | 24307230-1, 1001706-8, 1654820-0 |
881
+ | `gender` | Hombre, Mujer, Hombre |
882
+ | `rut` | 3010198-7, 15732488-8, 22912625-3 |
669
883
 
670
884
  ## FFaker::IdentificationESCO
671
885
 
672
886
  | Method | Example |
673
887
  | ------ | ------- |
674
- | `blood_type` | O+, O-, O+ |
675
- | `driver_license_category` | B1, B3, B2 |
676
- | `drivers_license` | 717145548201, 3072328, 33820691 |
677
- | `expedition_date` | 2012-04-18, 2013-01-01, 2010-03-27 |
678
- | `gender` | Hombre, Hombre, Mujer |
679
- | `id` | 31630614, 7116062019656, 1032689398 |
888
+ | `blood_type` | AB+, B+, A+ |
889
+ | `driver_license_category` | C1, A2, C1 |
890
+ | `drivers_license` | 0819043768416, 150533483296, 954741728 |
891
+ | `expedition_date` | 2014-03-23, 2014-12-05, 2010-12-05 |
892
+ | `gender` | Hombre, Hombre, Hombre |
893
+ | `id` | 795946, 897926724733, 275514515487 |
680
894
 
681
895
  ## FFaker::IdentificationKr
682
896
 
683
897
  | Method | Example |
684
898
  | ------ | ------- |
685
- | `rrn` | 840609-2588404, 722003-1797672, 741206-1326457 |
899
+ | `rrn` | 731608-1283113, 852812-2008046, 881302-2652069 |
686
900
 
687
901
  ## FFaker::IdentificationMX
688
902
 
689
903
  | Method | Example |
690
904
  | ------ | ------- |
691
- | `curp` | XOZM131124HGTHFYR9, DACF991109HMNWXYW0, CENU021114HVZLPC43 |
692
- | `rfc` | ENM8309088W6, LEEP781017QNL, LART750219MW0 |
693
- | `rfc_persona_fisica` | HEYF730918UFB, XITN060603WJ5, RUAF061113MBN |
694
- | `rfc_persona_moral` | BST720115QB8, BNT130128ZI3, JFP920529ZEF |
905
+ | `curp` | ZEKD900814MHGXJMY9, WELB910106MSRCRWL4, KOXT820827MCLBJSA7 |
906
+ | `rfc` | GBV961031ETB, ZEUO810130VIP, INS971217Y3U |
907
+ | `rfc_persona_fisica` | WIBZ790602G1U, FOYW0309178P4, XEEM9901029O6 |
908
+ | `rfc_persona_moral` | VNC120322MQE, ZOM9902273XQ, AEÑ940308RWS |
695
909
 
696
910
  ## FFaker::Internet
697
911
 
698
912
  | Method | Example |
699
913
  | ------ | ------- |
700
- | `disposable_email` | addison@binkmail.com, jamal@safetymail.info, lee@suremail.info |
701
- | `domain_name` | greenholt.info, parkerbraun.biz, effertz.com |
702
- | `domain_suffix` | name, info, us |
703
- | `domain_word` | mcculloughframi, blick, weimann |
704
- | `email` | osvaldo_schiller@sawayn.co.uk, berry_wehner@cruickshank.info, meredith_lemke@wintheisermcclure.co.uk |
705
- | `free_email` | lori_rutherford@hotmail.com, jacinthe@hotmail.com, guadalupe_friesen@hotmail.com |
706
- | `http_url` | http://oreilly.name, http://larkin.name, http://gislasonveum.info |
707
- | `ip_v4_address` | 3.101.206.116, 40.33.11.103, 235.105.209.9 |
708
- | `password` | saepeautassumend, etullammollitia, explicaboconsequ |
709
- | `safe_email` | vada@example.com, jaqueline_moen@example.com, sunny@example.org |
710
- | `slug` | sunt-adipisci, voluptatem-facilis, sint-et |
914
+ | `disposable_email` | deshawn@binkmail.com, judah@mailinator.com, abigayle@safetymail.info |
915
+ | `domain_name` | williamsonsipes.ca, metz.name, anderson.name |
916
+ | `domain_suffix` | ca, us, name |
917
+ | `domain_word` | green, keebler, hessel |
918
+ | `email` | leatha_ward@gutmann.ca, okey@wilkinsonschneider.info, isaias@bernhard.co.uk |
919
+ | `free_email` | jillian@gmail.com, wilhelm.langosh@yahoo.com, immanuel@gmail.com |
920
+ | `http_url` | http://zulauf.ca, http://bednarlittle.info, http://bergstrompaucek.name |
921
+ | `ip_v4_address` | 95.4.58.99, 140.125.90.84, 59.84.146.185 |
922
+ | `password` | hhhhhhhhh, dddddddddddddddd, qqqqqqqqqqqqq |
923
+ | `safe_email` | holden_franecki@example.net, dino.kulas@example.org, lura@example.org |
924
+ | `slug` | consequatur-aut, similique_nobis, sunt_natus |
711
925
  | `uri`(...) | |
712
- | `user_name` | troy_bogisich, alexanne_kirlin, conrad |
926
+ | `user_name` | claudie, lon, lea |
713
927
 
714
928
  ## FFaker::InternetSE
715
929
 
716
930
  | Method | Example |
717
931
  | ------ | ------- |
718
- | `company_name_single_word` | Torp-Dickinson, Doyle, Grimes, |
719
- | `disposable_email` | gerd_dicki@spamherelots.com, fredrik_damore@suremail.info, eva.stiedemann@spamherelots.com |
720
- | `domain_name` | mcclure.com, mayertquitzon.se, leffler.nu |
721
- | `domain_suffix` | nu, se, com |
722
- | `domain_word` | bartolettibechtelar, barrowsmills, barrows |
723
- | `email` | lisbeth.morissette@mertznienow.nu, rune@murphy.se, oskarjanolof_dibbert@schamberger.nu |
724
- | `free_email` | georg@spray.se, filip.schowalter@gmail.com, allan_haley@yahoo.com |
725
- | `http_url` | http://moorewisoky.se, http://wisoky.nu, http://bailey.nu |
726
- | `ip_v4_address` | 169.246.143.172, 200.130.73.149, 211.90.20.38 |
932
+ | `company_name_single_word` | Pouros-Kris, Waters,, Nikolaus |
933
+ | `disposable_email` | larsolofemil@safetymail.info, kjell.keebler@binkmail.com, marielouise_nitzsche@suremail.info |
934
+ | `domain_name` | willrippin.se, jakubowski.se, hagenes.se |
935
+ | `domain_suffix` | com, com, se |
936
+ | `domain_word` | waterssauer, gorczany, heidenreichzboncak |
937
+ | `email` | anders_kihn@rathbradtke.com, emilia_borer@dickinsoncummings.com, viola@yostbeahan.se |
938
+ | `free_email` | gsta.mccullough@spray.se, ann@hotmail.com, rolf.rau@hotmail.com |
939
+ | `http_url` | http://ryan.com, http://ziemannkessler.nu, http://hageneswiza.nu |
940
+ | `ip_v4_address` | 30.18.185.197, 240.118.91.9, 0.125.80.84 |
727
941
  | `join_to_user_name`(...) | |
728
- | `login_user_name` | berit, malinweber, erik_quigley |
729
- | `password` | nihileaquesuscip, sitenimeveniet, nisivoluptascupi |
730
- | `safe_email` | martin_bahringer@example.org, anita@example.net, ingemar@example.com |
731
- | `slug` | veritatis_officiis, tenetur-blanditiis, sunt_nobis |
942
+ | `login_user_name` | anitabrittmarie, annikahannabashirian, linda_schumm |
943
+ | `password` | kkkkkkkkkkkkkkk, eeeeeeeeeeeee, yyyyyyyyyyyyyyyy |
944
+ | `safe_email` | ann@example.com, martin@example.org, emanuel_harris@example.org |
945
+ | `slug` | qui_qui, est.in, aut.temporibus |
732
946
  | `uri`(...) | |
733
- | `user_name` | kerstin, david.gaylord, alexandra_bosco |
947
+ | `user_name` | larsgran_bailey, anna_brekke, kent_kirlin |
734
948
  | `user_name_from_name`(...) | |
735
- | `user_name_random` | erika_boyle, elias_paucek, kristina.mcdermott |
736
- | `user_name_variant_long` | agneta_mertz, linna.jenkins, rosemarie.lindgren |
737
- | `user_name_variant_short` | hans, carina, peringemar |
949
+ | `user_name_random` | william, maja, tobias_dickinson |
950
+ | `user_name_variant_long` | georgbrje_ruecker, danove.rohan, frida_lemke |
951
+ | `user_name_variant_short` | birgit, john, kent |
738
952
 
739
953
  ## FFaker::Job
740
954
 
741
955
  | Method | Example |
742
956
  | ------ | ------- |
743
- | `title` | Senior Group Strategist, Dynamic Metrics Assistant, International Web Assistant |
957
+ | `title` | Investor Applications Associate, Legacy Configuration Associate, Customer Creative Engineer |
744
958
 
745
959
  ## FFaker::JobCN
746
960
 
747
961
  | Method | Example |
748
962
  | ------ | ------- |
749
- | `title` | 护师, 市场顾问, 鞋匠 |
963
+ | `title` | 探险家, 工匠, 运输经理 |
750
964
 
751
965
  ## FFaker::JobFR
752
966
 
753
967
  | Method | Example |
754
968
  | ------ | ------- |
755
- | `title` | expert de la protection civile, superviseur associé des services techniques, directeur des opérations associé du contrôle technique |
969
+ | `title` | conseiller general du patrimoine bati, administrateur spécial general de la protection civile, administrateur spécial adjoint du service financier |
756
970
 
757
971
  ## FFaker::JobJA
758
972
 
759
973
  | Method | Example |
760
974
  | ------ | ------- |
761
- | `title` | スポーツインストラクター, パタンナー, 気象予報士 |
975
+ | `title` | 裁判所事務官, 花屋, ジャーナリスト |
762
976
 
763
977
  ## FFaker::JobKR
764
978
 
765
979
  | Method | Example |
766
980
  | ------ | ------- |
767
- | `title` | 화학 연구원, 석유화학물 가공장치 조작원, 통역가 |
981
+ | `title` | 에스컬레이터 설치 정비원, 섬유 가죽 관련 기능 종사원, 요금 정산원 |
768
982
 
769
983
  ## FFaker::Locale
770
984
 
771
985
  | Method | Example |
772
986
  | ------ | ------- |
773
- | `code` | CS, SW, KL |
774
- | `language` | Setswana, Tegulu, Kannada |
987
+ | `code` | OM, ML, AF |
988
+ | `language` | Armenian, Corsican, Tatar |
775
989
 
776
990
  ## FFaker::LoremAR
777
991
 
778
992
  | Method | Example |
779
993
  | ------ | ------- |
780
- | `paragraph` | الساحة غير شعار به،. لم وعزّزت كلّ مدن, عن ساعة بقسوة أم الأوربيين. أفاق عن هو, الشطر ثم كلّ., انه, الإستسلام الدمج الرئيسية. مارد الشهيرة بلا لم المنتصرة مرمى روسية والديون. قوات إيو فكانت البشريةً. تسبب والفرنسي نورماندي الأوروبيّون عن حول الأعمال عدد. النزاع جمعت تحرّك حيث باستسلام., الدمج وباءت قهر أن تكتيكاً لان فكانت. ثم أفاق حول الا. و فعل, اسبوعين لم, الساحة سياسة. |
781
- | `paragraphs` | كلا مساعدة تحت دارت قادة اتّجة أن الرئيسية حكومة. إذ هذا بالمحور ان مليون بالرغم غرّة، ماذا بـ. من إيو تونس الثالث والديون. بلا استولت مع ومضى الإحتفاظ إذ فقد بالقنابل وحرمان. العناد واتّجه دول, غير قد لم حين مع,., الصينية كل, انه, العصبة أن كل, وتتحمّل, الحكم. الله الا بداية غريمه الساحة تعداد علاقة مقاطعة كل. قِبل لم أجزاء, خصوصا الفترة. حتى معزّزة أحدث الإستسلام التجارية وبحلول الأبرياء., ضرب بـ قصف, جوي بتخصيص انه,. تلك أن تطوير به، لم المسرح و. بشكل مارد بلا منشوريا لعدم مهانة الصفحات ومن وصافرات., حيث وضم انتهت جُل, أم هو. تعداد ستالينجراد بل وباءت لان عدم عدم الحكم كلّ. سقوط الولايات من قبل وقوعها، أفاق. الدّفاع الدولارات قد المحيط. بتحدّي كلّ, فكانت ستالينجراد المبرمة., شبح سياسة كل أما أوراقهم لم. يذكر ثم المدنيين الى أخر تم. ألماني, بحث يذكر حول المتساقطة،, والحلفاء وباستثناء. مكن الفرنسية الجديدة، ما. والروسية في, الأوضاع ومن بها انتباه أحدث يذكر اعتداء., ما لها , قد لألمانيا الشمل بل,. تكاليف باستسلام الأوضاع عدم. بحق فكانت بل, عن عن أن., والفلبين بأذى مسرح والفرنسي المبرمة بالمحور. بـ وتتحمّل كل التكاليف وانتهاءً الفترة شمال الحلفاء. تم أساسي تكاليف إحتار بهيئة لم. وحتّى فاتّبع ثم البرية ألمانيا وصافرات أن السيء., حول بقسوة ما, دول مع الياباني و حالية استعملت. الإنذار، مع يبق, يتسنّى يتعلّق أن, مارد. تسبب سقطت شيء, فبعد ما لمّ جوي المعركة،. سقطت بالرغم الأمريكية النازيين ولم شبح. ستالينجراد ألمانيا عام لليابان., مع, ما والديون تكتيكاً ما حدة حيث. فقد كل حدى المتحدة, قد وجهان الأولى. العناد غريمه لم وبالرغم المشترك وفرنسا والعتاد فاتّبع. |
782
- | `phrase` | تزامناً تعد الا عام حيث أم, اعلان بـ, الإتفاقية., مكّن بقيادة موالية المزيفة وبدون حيث به، وباءت., لمّ علاقة لم في,. |
783
- | `phrases` | فاتّبع يبق و والعتاد في, التي جديدة., مشارف أفاق نتيجة هذه., الأولى واستمرت وحرمان لم ما, البشريةً., هو الحرب بالمحور دول, ستالينجراد تم اليميني., عرض ألمانيا الفترة أما قد هذه وبالرغم جسيمة., وعزّزت جسيمة أي إنطلاق كلّ., في, اعتداء بشكل النفط, نفس المعاهدات بـ., بالرّغم الحرب أم الأوضاع عدم الإستسلام لم أم, كل., أوراقهم كما باستسلام الى و استطاعوا وباءت. |
784
- | `sentence` | السفن بل ان كلا الإثنان., حين الطريق ضمنها إستسلاماً إذ إستمات البشريةً غير., قتيل، باستحداث غزو الأولى. |
785
- | `sentences` | بالقصف المحيط ويكيبيديا، حدة كلا, حالية ولم غرّة،., مع التجارية الامم فصل وضم نورماندي ما, الربيع،., استعملت فعل, بل لعدم موسوليني بحق., المقاومة ذلك إذ, وتم فصل., يتبقّ لبولندا، لإنعدام المحيط و., تعديل قام بل اسبوعين إعلان وجهان., المانيا قام تزامناً في قام., واتّجه حالية مع, انتهت على قوات إستسلاماً الصفحات تكاليف., إذ تشيرشل بل تم أضف, مع ما, كلّ لإعادة. |
786
- | `word` | أوراقهم, أوراقهم, الأوربيين |
787
- | `words` | البشريةً, عدد, وفنلندا, ساعة, وباستثناء, لم, إبّان, وفرنسا, الله |
994
+ | `paragraph` | تُصب بـ مشقّة بال مدينة أي أي. للجزر وجهان مدن المشترك تم دول,. ثمّة هيروشيما مكن جحافل مع حرب كان., ثم أن بشكل الفاشي أم مدن تزامناً تم. قد خصوصا علاقة أن شبح كلّ البشريةً السادس يتسنّى. بها من تعد ما أم جحافل والإتحاد لعدم أن. جحافل أي, وأسرت إذ شدّت, الحكم النازية، وقدّموا, الفترة. بها, الدولارات قصف تحت حلّت ما., فصل تم تعداد ربع أي التجارية باستسلام يتم. عسكرياً غير إذ من أن المشترك المضي كل, التحالف. باستخدام دخول حلّت والعتاد طرفاً إذ الحلفاء. وأسرت قد لان القنابل, الفاشي صفحة مما وعزّزت. |
995
+ | `paragraphs` | بتخصيص بل فرنسية شعار لم عن الأرض الساحل لم. أخر تحت لهذه دون أسر,. لعدم مع البرية هو ثم جوي. استطاعوا عن عدم الجيش موسوليني عرض إحتلال و ربع., انتباه فاتّبع غزو تم حين بالقنابل. وحلفاؤها بـ, أسر, مما تزامناً وتم, الا الثالث. الربيع، المبرمة مع, بريطانيا، تطوير أي بحق., مما والحلفاء, خصوصا البرية لها مرمى العسكرية الدّفاع. قوات أن مما حين, المتحدة, إستمات بقسوة. ومن الصعداء بـ قوات عل, تم جديداً أن. ليركز مكّن عدد, فعل المبرمة., إيو عل, حتى بـ, قصف, فاتّبع النفط,. حدى المتساقطة،, الغربي الأوربيين البولندي غزو. وأزيز جحافل بتطويق أم إستيلاء. في, باستسلام تغييرات تم غير يتعلّق لان حول حكومة. بتطويق المتّبعة ان بمباركة, تحرّك دارت عدم., ان, كلّ لم أن. الله حدة بها, الضروري بـ والديون هو, إخضاع ساعة. وانتهاءً بشكل أجزاء, المزيفة مما الحكم ثم الثقيلة. أخر الشمل الإقتصادي بقسوة هاربر وصل, قبل وباءت ساعة., ذات الحرب العسكري المبرمة قبل الله. دول قام الإمتعاض ثمّة بل ليتسنّى كل, انه. حول الثالث الشمل دول, بـ الأوروبيّون., الدمج كلا والروسية عل فاتّبع الساحل وجهان. مع قد من اعلان حول أن. بـ لألمانيا بـ التكاليف إحتلال. يبق بل ليتسنّى للجزر. نتيجة الأثناء، دنو المتطرّف منشوريا,., فعل, بلا أي تكتيكاً. فقد جمعت جوي بالمحور تسبب فرنسا بالقصف تعداد. يتم, ثم الحرب حيث إذ أسر انه مرمى. اقتصّت المحيط ماذا المقاومة الجديدة، به، ما, الإنذار، العسكرية. لم أن يكن, و أفاق الدولارات وباءت يبق, باستسلام., أخر المحيط تم تم بلا الواقعة والحلفاء لمّ. أم لألمانيا أحدث حتى, يعادل. مساعدة شيء عن لألمانيا الإقتصادية هو. الصيني أثره، تزامناً غرّة، يذكر هو. نفس وقد المانيا يذكر اسبوعين. |
996
+ | `phrase` | كل وضم استولت بل الله شبح., خصوصا لقوات كل, كل عقبت ما, الخاسر., المعاهدات ثم ويكيبيديا، سقط كما. |
997
+ | `phrases` | زهاء لم بريطانيا، مشقّة كلّ مارد., يطول كلّ بشرية الأمم السادس عل لإنعدام., دول شيء, المزيفة استدعى بـ, ما., مما السادس الولايات بحث الشمل الله., كل وصافرات خصوصا غضون قد أحدث تم بل اليميني., البولندي يتم ثم الإنذار، وأزيز اوروبا عدد, يطول., وقد تعد الذرية نفس احداث أسر., وتم, يبق عدم المتساقطة،, الأمم جسيمة خصوصا أن., ضرب اوروبا حربية الدولارات أما عن مكّن. |
998
+ | `sentence` | قبل حتى جُل, أسلحته وعزّزت جمعت عدم., ما الحلفاء فعل, و., تسبب قتيل، بـ لكل. |
999
+ | `sentences` | يكن, حتى, أم مع وعلى., وعلى أما دول إذ أم., بـ, وقد مساعدة بأذى وقامت بقسوة., والحلفاء, اسبوعين بقسوة إحتلال الى وجهان., الله عدم أم قتيل، ثم., بين الرئيسية النمسا ساعة., ثم موسوليني أن إذ لإنعدام عن عصبة الجيش., بـ الأثناء، و المشترك والفرنسي حكومة أي., عام دفّة والديون وإعلان المحور، صفحة مع قِبل يبق. |
1000
+ | `word` | البلطيق, مع, يطول |
1001
+ | `words` | لألمانيا, لبولندا،, أن, مدن, هو, و, وعلى, كل,, وتتحمّل |
788
1002
 
789
1003
  ## FFaker::LoremCN
790
1004
 
791
1005
  | Method | Example |
792
1006
  | ------ | ------- |
793
- | `paragraph` | 莺歌燕舞一触即发赞叹不已不吵不闹琳琅满目嚎啕大哭吼两全其美悠然自得, 生气勃勃琳琅满目四分五裂不计其数管中窥豹千锤百炼一本万利, 和风拂面嚎啕大哭三思而行波浪滚滚空前绝后, 十万火急云浪滚滚各抒己见千锤百炼不干不净万紫千红张口结舌交头接耳万众一心, 一手遮天车轮滚滚无牵无挂时上时下头重脚轻犹豫不决咕咚。, 泪如雨下牛马不如惊恐万状牛头马面交头接耳, 操之过急五彩缤纷千山万水震天动地, 咕咚绵绵细雨七高八低拳打脚踢, 无影无踪五谷丰登千言万语九牛一毛不吵不闹俯视霎时间燃眉之急, 流星赶月哗哗啦啦时高时低风和日丽和好如初雪花飞舞于心不安。, 小心翼翼天诛地灭流星赶月半明半昧看望果实累累十万火急汹涌澎湃, 心旷神怡静思默想月白风清金光万道一泻千里眉清目秀, 全神贯注五体投地银妆素裹四分五裂精益求精闻名天下不吵不闹细雨如烟, 无忧无虑秋雨绵绵七拼八凑激动不已浩浩荡荡拾金不昧大汗淋漓悔恨交加, 难舍难分壮志凌云鸦雀无声轻风徐徐。 |
794
- | `paragraphs` | 白纸黑字观察行云流水莺歌燕舞红通通十分可恶有名无实一目十行, 黄澄澄狂风暴雨有气无力十指连心, 前赴后继龙争虎斗火红瞬息万变不伦不类四面楚歌红彤彤嚷, 不闻不问牛头马面水帘悬挂瞪, 粉妆玉砌象牙白语气坚定一箭双雕热泪盈眶。, 不闻不问可憎可恶嚎叫凶多吉少忐忑不安绵绵细雨嘶无穷无尽, 去世杀鸡儆猴天老地荒天高云淡七零八落秋月似钩震天动地泪流满面嗖嗖, 顷刻间暑气逼人声名狼籍秋高气爽胆小如鼠闷闷不乐万家灯火, 闷闷不乐千奇百怪人山人海啼喜怒哀乐, 前呼后拥九鼎一丝瞪去世。, 白茫茫去世日月如梭提心吊胆自说自话万里无云移步换影, 昂首阔步和好如初天罗地网天高云淡精益求精梨黄, 晚风习习绞尽脑汁万丈瀑布桃红柳绿哗啦火冒三丈吱呀, 牛头马面黑白分明交头接耳万紫千红语气坚定一诺千金铺天盖地首字正腔圆, 春暖花开危峰兀立雪花飞舞赤日炎炎乘热打铁白璧无瑕狗尾续貂四面八方半明半昧。, 惊惶失措昂首阔步东鳞西爪洁白如玉愁眉苦脸叹为观止急急忙忙一鸣惊人龙马精神, 心灰意冷五湖四海啼枣红心直口快前呼后拥九牛一毛泪如泉涌怒发冲冠, 无忧无虑铿锵有力暑气逼人不胜枚举三生有幸早出晚归秋雨绵绵, 金灿灿小心翼翼亡羊补牢有气无力火冒三丈虎啸龙吟讲忧愁不安。, 碧波荡漾顾虑重重成千上万语气坚定五花八门望女成凤生死存亡, 生龙活虎五花八门两败俱伤赤日炎炎杯弓蛇影雪花如席, 雪飘如絮悔恨交加冰清玉洁星月如钩青红皂白叮叮咚咚微微一笑桃红柳绿。, 绵绵细雨三头六臂生龙活虎乌云翻滚勃然大怒谈论, 七高八低不清不楚借尸还魂绵绵细雨东拉西扯暮色苍茫, 艳阳高照万众一心慷慨激昂八面威风追悔莫及雪花飞舞白璧无瑕, 茫雾似轻一毛不拔不闻不问大雪封门嚎八面玲珑冉冉, 秋高气爽左顾右盼鸡犬不宁落叶沙沙。, 哗哗啦啦忐忑不安东拉西扯怒发冲冠朝气勃勃舍己为人, 八仙过海,各显神通鸡犬不宁能屈能伸注视议论灰心丧气, 兴致勃勃鹅黄思前顾后十全十美买空卖空注视。, 甲小试牛刀千军万马心明眼亮俯视枫叶似火眉开眼笑五彩缤纷逝世, 鸟瞰日月如梭忧愁不安当午日明两全其美洗耳恭听冉冉一泻千里提心吊胆, 泪眼汪汪弹孔累累有备无患小心翼翼冰清玉洁, 半明半昧前仰后合螳臂当车羞愧难言狐疑不决绝无仅有, 吼银妆素裹惶惶不安刹那间大公无私四面楚歌排山倒海。, 急不可待聚精会神鼠目寸光白璧无瑕瞄, 身材魁梧暴雨如注七窍生烟江水滚滚千姿万状, 时隐时现震天动地大名鼎鼎五光十色, 鹤立鸡群螳臂当车东倒西歪一丝不苟, 麦浪滚滚雷厉风行眼明手快坐井观天对牛弹琴雪花如席两袖清风哈哈大笑。 |
795
- | `sentence` | 愁眉苦脸一言九鼎声名狼籍大失所望字正腔圆嚷五体投地,, 前因后果狗急跳墙微微一笑望子成龙四面八方亡羊补牢愁眉苦脸,, 绿意盎然虎啸龙吟绿莹莹闷闷不乐仰望白雪皑皑东奔西走走马观花元, |
796
- | `sentences` | 当机立断令人发指鸣十万火急七嘴八舌大汗淋漓湖蓝天昏地暗,, 交谈秋高气爽讲四分五裂逝世舒舒服服打草惊蛇承上启下雄心勃勃,, 万里无云瞥有恃无恐生龙活虎三头六臂,, 一毛不拔叮叮当当一手遮天两全其美,, 摩肩接踵闻名于世白雪皑皑勃然大怒精益求精万众一心一眨眼当午日明,, 前因后果星光熠熠鹤立鸡群嫣然一笑唧唧喳喳打草惊蛇三顾茅庐曰,, 半梦半醒热浪滚滚九牛一毛异口同声,, 乐不可支龙争虎斗红日东升左顾右盼泪眼汪汪秋高气爽,, 万花凋谢瓢泼大雨一诺千金山河壮丽雷厉风行千奇百怪华灯初上一文不值秋风凉爽, |
797
- | `word` | 若即若离, 流星赶月, 心急如焚 |
798
- | `words` | 绿树成阴, 红艳艳, 千山万水, 火眼金睛, 黑压压, 尸骨累累, 连绵不断, 鼠目寸光, 黑压压 |
1007
+ | `paragraph` | 失声痛哭买空卖空天诛地灭有备无患长短不同成千上万, 燃眉之急不胜枚举激动人心三顾茅庐深恶痛绝, 一心一意眉清目秀青黄不接天荒地老感慨万分, 瞥天老地荒怒气冲冲千秋万代大名鼎鼎史无前例, 闻鸡起舞生离死别老态龙钟茫雾似轻。, 红日东升愁眉苦脸五彩缤纷十字街头五大三粗, 雪花如席满山遍野自暴自弃天罗地网, 万紫千红五体投地载歌载舞聚精会神气势恢弘绿意盎然惊惶失措万众一心四面楚歌, 雨打风吹中午时分西装革履欲哭无泪鱼龙混杂。, 首屈一指洁白如玉成千上万争分夺秒, 霎时间声名狼籍与世长辞人山人海姿态万千仰望争分夺秒粉妆玉砌信守诺言, 雨打风吹变化多端天罗地网绿阴如盖注视忐忑不安昂首挺胸, 微微一笑大名鼎鼎满山遍野前因后果龙马精神鹅黄已故。 |
1008
+ | `paragraphs` | 张灯结彩环视张口结舌乳白十面埋伏口蜜腹剑难舍难分果实累累, 时明时暗杀鸡儆猴张灯结彩水滴石穿四分五裂旭日东升赞叹不已, 各抒己见雄鸡报晓热浪滚滚雪花飞舞沙沙与世长辞, 闷闷不乐雪花飞舞火红色彩斑斓嚎瞥牺牲泪如雨下, 坐井观天顾虑重重满山遍野暴雨如注对牛弹琴谈虎色变秋风凉爽纷纷扬扬。, 激动万分出尔反尔一箭双雕健步如飞有气无力, 五光十色十拿九稳四分五裂半梦半醒远望伤心落泪, 暴雨如注理直气壮争分夺秒纷纷扬扬硕果累累泪眼汪汪内忧外患, 惊惶失措星月如钩弹孔累累十字街头。, 白纸黑字元纷纷扬扬一诺千金闻名天下内忧外患满山遍野桃红柳绿瞬息万变, 天南地北徐徐三长两短去世黑乎乎, 一言九鼎三生有幸瞄鸟瞰惊恐万状龙马精神九霄云外, 载歌载舞黑乎乎望千姿万状车轮滚滚鹤立鸡群出生牛犊若即若离万物复苏。, 怒目而视雪中送炭无忧无虑目瞪口呆, 叮叮咚咚东鳞西爪深入浅出苹果绿, 雷厉风行悠然自得天高云淡身材魁梧三长两短, 无情无义形态不一两全其美天经地义前倨后恭鱼龙混杂, 孔雀蓝早出晚归自给自足振奋人心天高云淡人流如潮叽叽喳喳投鼠忌器缓缓。, 去世四海为家盯黄澄澄, 秋月似钩一鸣惊人慷慨激昂前倨后恭一言九鼎, 心急如焚震天动地苹果绿惊恐万状当机立断, 尸骨累累千变万化深恶痛绝了望红通通指鹿为马两袖清风交谈七上八下。, 自吹自擂九鼎一丝车水马龙鸟语花香, 桃红柳绿环视天昏地暗高枕无忧难舍难分天色模糊, 惶惶不安仰望六亲不认千秋万代万里无云惊恐万状狂风暴雨咬牙切齿万古长青, 与虎谋皮前呼后拥绿莹莹雪白月白风清洁白如玉无忧无虑, 急急忙忙不可胜数一泻千里心灵手巧十指连心狐假虎威。, 暴风骤雨一诺千金十指连心成千上万摩拳擦掌万众一心, 叫嚷无忧无虑漫漫长夜二三其德瞅车水马龙嚎叫嫣然一笑, 环视出尔反尔时高时低载歌载舞大失所望无情无义。, 有勇无谋精益求精千疮百孔车轮滚滚数不胜数惊惶失措果实累累, 全神贯注五湖四海枫叶似火华灯初上两肋插刀, 谈论壮志凌云两袖清风落叶沙沙凶多吉少亭亭玉立, 爱屋及乌招兵买马有恃无恐东鳞西爪暴雨如注硕果累累探望热浪滚滚, 震天动地一落千丈追悔莫及小试牛刀。, 车轮滚滚龙争虎斗一泻千里废寝忘食一丝不苟叹为观止杯弓蛇影, 愁眉苦脸议论雷厉风行千方百计浩浩荡荡闻名天下, 夕阳西下雪飘如絮数不胜数叶公好龙淅淅沥沥风和日丽成千上万哗啦, 张口结舌雷厉风行鹤立鸡群拾金不昧。 |
1009
+ | `sentence` | 逝世五谷丰登绿树成阴不吵不闹,, 名列前茅赤日炎炎表里如一象牙白烈日灼灼湖蓝不计其数鸣虎啸龙吟,, 赤日炎炎心灵手巧安危冷暖燃眉之急两全其美, |
1010
+ | `sentences` | 黑白分明灯红酒绿人声鼎沸惊弓之鸟迫不及待暴风骤雨乐不可支,, 尸骨累累惊天动地振奋人心李白桃红目瞪口呆投桃报李嗖嗖深恶痛绝,, 夜幕降临旭日东升白茫茫两肋插刀秋月似钩洁白无瑕嗖嗖枫叶似火,, 俯视有恃无恐时而闷闷不乐秋雨绵绵惊涛骇浪,, 瞅看望亭亭玉立赞叹不已,, 前所未有两全其美绿树成阴狗急跳墙半梦半醒,, 骄阳似火高山峻岭目瞪口呆危峰兀立飞流直下手舞足蹈摩肩接踵,, 震天动地一落千丈寒冬腊月雪白摩肩接踵烈日灼灼排山倒海,, 七折八扣暑气逼人管中窥豹火眼金睛足下生辉, |
1011
+ | `word` | 天高云淡, 五大三粗, 灯红酒绿 |
1012
+ | `words` | 恨之入骨, 雪白, 冰天雪地, 拳打脚踢, 喜出望外, 阳春三月, 无边无际, 两面三刀, 黑压压 |
799
1013
 
800
1014
  ## FFaker::LoremFR
801
1015
 
802
1016
  | Method | Example |
803
1017
  | ------ | ------- |
804
- | `paragraph` | Encoreloin purent on cette. Glissa sauvages loin d chaîne. Route ses sournois sémantique il encore où., Loin question tas côtes initiale des alphanatale. Vous firent exploitent un headline pacqua lui panse instrumentalisèrent. Sans règlalades ses oreille déconcerter oxymore coule et qui. Encoreloin se orthodoxographique prémâchées sûr tas coeur. Les jour delà est., Un passage pacqua litéralement remit moins. Italiques petite sémantique cuit. Et leurs longtemps origines lieu voyellie projets gravi glissa. |
805
- | `paragraphs` | D question océan pointdexclamators long initiale exploitent vodkale. Instrumentalisèrent vie fourmillait rencontra les des mot l une. Dernier la s instrumentalisèrent route puis virgulos et. Pas le sémantique orthodoxographique origines., Grand pays un sans l du cuit raviser. Que saoule coeur lorem. Maintes rebrousser bouche propre était on le retourner. Pays petit firent vils raviser s., Vivent tas sans fin copy volent larousse bouche. Vivent retourner ressaisi restait et. Consonnia jour purent chaîne. Réecrite remit point origines lieues vils puis rencontra. Petit et le en la aguets bercail., Finir ces lui qui sauvages cette. Initiale rebrousser s règlalades même. Bercail longtemps rencontra encoreloin pas., Pans attendraient très réecrite prévint convaincre bourg-en-lettres écho de. Côtes rebrousser genre lettrines. Fins mais flancs dissuader sournois lui. Loin maintes chaîne peut à bolos des fût., Voyellie désormais ils lettrines paroles. été là-bas glissa genre un flancs bolos l. Chaîne bolo lourd subline entiers coeur lieu bien monts., La sûr bien propre coula ferait italiques pans. Pays réecrite agence ville orthodoxographique peut cette toutes encoreloin. Litéralement cela joue langues ruisseau ville d vivent. Leurs copy rue laissa là sûr lorem. Déconcerter phrases fût sa avait aguets à., Coeur sans côtes tas prémâchées rencontra régit. Exploitent alphanatale côtes bien. bien instrumentalisèrent lequel vodkale., Vivent italiques larousse passage ne en. Créas voyellie dissuader volent sûr nom aventurer. Flancs saoule aux réecrite pointdexclamators très. Grand chaîne litéralement aventurer déconcerter. Bolo volent ils longtemps lourd genre. |
806
- | `phrase` | Remit bourg-en-lettres bolos lourd qu subline., Sauvages restait puissante cuit s leurs alphanatale alors l., Laissa rebrousser déconcerter alphabetville genre rue toute. |
807
- | `phrases` | Qui aguets puissante consonnia est décida., Du été le remit et., Panse traîner leur ponctuation le., Sur fins delà phrases avait laissa écho., Interpelle bien origines retrait à vodkale subline., Pans tout lequel par., Le mais encoreloin passage consonnia mot sur coula., Retrait dissuader sans bercail purent mésusèrent., Petit là-bas leur flancs pays. |
808
- | `sentence` | Mots il histoire prevenant et., Cela la mille origines des sournois lettrines coula., Décida rue on c été règlalades pour vaste. |
809
- | `sentences` | Sain exploitent fin dans ligne des pans mais son., Bercail pointdexclamators headline subline pour grammaire jeta que., Dissuader aventurer sain petite était., Flancs premiers ces par désormais leur., Et une motus il., Premiers approvisionne loin agence., Litéralement ruisseau larousse là-bas mille en., Pays paragraphe vodkale déconcerter était subline oreille mésusèrent vie., Voyellie en preuve bercail écho. |
810
- | `word` | Larousse, lourd, Bolos |
811
- | `words` | bonnes, initiale, venait, moins, traîner, joue, Et, ils, prévint |
1018
+ | `paragraph` | Alphanatale était lettrines là-bas et panse convaincre vodkale pointdexclamators. Tout règlalades même mésusèrent sain son larousse alphanatale. à demeurent bolos que prémâchées ses sûr. Ligne premiers remit est chaîne saoule longtemps regard. Loin ce ils fois., Coeur bourg-en-lettres flancs purent en pour lettrines. Pourtant glissa tas désormais projets. Même phrases des la sain. Longtemps était sémantique ressaisi., Océan ponctuation au entiers et mots traîner. Grand puissante approvisionne maintes. Virgulos ville bien longtemps sauvages passage. Finir décida entiers pour italiques cuit firent. |
1019
+ | `paragraphs` | Alphabetville volent du sauvages il encoreloin de. Réecrite régit mots désormais bolos larousse oxymore. Ponctuation leurs sauf mots monts. Toute loin route preuve prochain. Il sournois prochain puis à c grammaire., Toutes pointdexclamators finir oxymore mais aventurer océan paroles. panse avait exploitent gravi. Depuis leur coula pointdexclamators restait ces. Ce vils et panse fois langues attendraient., Un vivent copy se mille aventurer prémâchées. Ponctuation désormais régit grammaire ruisseau nostalgique tout. Projets grammaire litéralement monts bien il bourg-en-lettres fallut. Coeur dissuader preuve pointdexclamators loin il rencontra la vous., Il glissa pans long son lieues été. Que consonnia de par grammaire. Finir chemin nom nostalgique., Oxymore remit vie paroles côtes ressaisi ce sur. Bonnes laissa raviser bolos delà désormais long lieues ces. Mit était mais pour le. Dernier chaîne italiques pointdexclamators., lequel aux mot leur. Paradisiagmatique ses coule ils grammaire origines est route. Premiers toute chaîne purent. Approvisionne initiale sans lequel bouche., Encore une mot saoule convaincre prémâchées. Voulut fourmillait pans raviser prevenant oxymore long skyline. Les bonnes point ces fallut été retrait pans genre. Regard sans dissuader sur réecrite rue motus chaîne. skyline interpelle d., Puis moins vous larousse nostalgique lequel pas. Ce pas jour la et genre remit fourmillait. Mot point alphanatale mit depuis. Panse coule paragraphe loin., Italiques regard toute grand bolos des vers retourner projets. Lourd coeur litéralement vers. Pays regard maintes monts s prévint son demeurent. |
1020
+ | `phrase` | Bien ne ressaisi remit firent., Ruisseau agence en créas sain et., Les gravi langues projets la oxymore long paradisiagmatique. |
1021
+ | `phrases` | Rhétorique joue lourd loin., Demeurent regard du fin retourner propre créas jeta rue., Langues encore voulut semicolons voyellie la mit virgulos phrases., Alors c créas paradisiagmatique cuit ce oreille ponctuation orthodoxographique., Coula lieues ce et grammaire peut., En chemin propre coeur paroles et., Ressaisi cette pacqua du., Dans alphabetville mit point., Raviser point voyellie motus avait maintes voulut pointdexclamators. |
1022
+ | `sentence` | Bercail son demeurent ponctuation depuis flancs alphanatale et à., Aux déjà initiale nostalgique dissuader restait vie bourg-en-lettres., Initiale régit bolo pour paroles. |
1023
+ | `sentences` | Nécessaires avait décida instrumentalisèrent., Alphabetville ces puis prevenant paradisiagmatique alors grand un., Panse mot nostalgique ne mésusèrent., Flancs rencontra qui règlalades attendraient océan demeurent bolos., Il instrumentalisèrent fourmillait route de projets., Ressaisi lieues été venait consonnia sûr langues ville., Panse flancs bourg-en-lettres bien sur dans., Aventurer par monts même prévint les., Ce écho peut là-bas. |
1024
+ | `word` | oreille, fourbes, toute |
1025
+ | `words` | Italiques, coeur, Bolo, grand, petite, du, dans, très, sauvages |
812
1026
 
813
1027
  ## FFaker::LoremKR
814
1028
 
815
1029
  | Method | Example |
816
1030
  | ------ | ------- |
817
- | `paragraph` | 대한 보전하세 마르고 삼천리 일편단심일세. 화려강산 가슴 백두산이 가을 사랑하세 위에 불변함은. 백두산이 사랑하세 괴로우나 높고 불변함은 하느님이 듯. 공활한데 대한으로 보우하사 일편단심일세 사랑하세 높고 백두산이 기상일세. 철갑을 바람서리 밝은 기상과 높고 가슴 화려강산 삼천리., 만세 사람 마르고 하늘 대한으로. 괴로우나 남산 공활한데 물과 구름 보전하세. 공활한데 마르고 기상일세 일편단심일세 없이 위에 나라 기상과. 구름 위에 기상일세 없이 우리나라 높고 달은 하늘 남산. 불변함은 듯 두른 백두산이 보우하사 달은 대한., 동해 기상일세 하늘 길이 충성을 즐거우나. 가슴 백두산이 공활한데 구름 대한으로 소나무 삼천리. 괴로우나 하늘 물과 구름 두른 가을 우리. |
818
- | `paragraphs` | 두른 없이 동해 닳도록 바람서리 하늘 길이. 동해 가을 충성을 나라 마르고 불변함은 괴로우나 두른. 우리나라 백두산이 삼천리 즐거우나 마르고 구름 소나무 두른., 두른 대한으로 바람서리 만세 밝은 높고 가슴 기상과. 동해 사람 물과 사랑하세 일편단심일세 하늘 나라. 보우하사 두른 대한 괴로우나 일편단심일세. 바람서리 밝은 우리나라 하늘 불변함은 사람 무궁화 대한. 닳도록 동해 무궁화 즐거우나 위에 이., 밝은 가을 백두산이 괴로우나 충성을. 가슴 구름 이 물과 하늘 사랑하세 충성을만세. 맘으로 없이 기상과 철갑을 일편단심일세 남산 즐거우나. 기상일세 밝은 나라 위에 괴로우나 즐거우나 하느님이., 삼천리백두산이 보우하사 다하여 무궁화 철갑을 하느님이. 대한으로 나라 우리나라 바람서리 보우하사 동해. 이 만세 구름 남산 괴로우나 마르고 가을 듯 보우하사. 즐거우나 대한으로 삼천리 불변함은 만세 보우하사. 기상일세 공활한데 철갑을 닳도록 불변함은 하느님이 삼천리., 우리 마르고 길이 동해 우리나라. 화려강산 사랑하세 충성을 즐거우나 삼천리 남산 위에 두른 철갑을. 소나무 사랑하세 우리 높고 하늘 닳도록 사람 우리나라. 가슴 마르고 남산 일편단심일세 밝은 달은., 물과 높고 충성을 사랑하세 즐거우나 위에. 두른 보전하세 사람 닳도록 가슴 없이 공활한데 우리. 기상과 밝은 닳도록 길이 대한 다하여 구름 이., 사랑하세 나라 일편단심일세 충성을 저. 다하여 우리 가을 가슴 백두산이 이. 나라 높고 사랑하세 괴로우나 바람서리 두른 불변함은 마르고., 삼천리 저 충성을 밝은 사랑하세 백두산이. 마르고 무궁화 물과 하늘 기상과. 다하여 물과 동해 만세 하느님이 닳도록 화려강산., 무궁화 만세 마르고 다하여 일편단심일세 불변함은 두른. 다하여 나라사람 밝은 달은 가슴 백두산이 닳도록. 충성을 대한으로 보전하세 밝은 나라 삼천리. 소나무 닳도록 물과 불변함은 백두산이 남산 일편단심일세 없이. 하느님이 보전하세 불변함은 물과 마르고 두른 대한. |
819
- | `phrase` | 기상일세 하늘 불변함은 화려강산 다하여., 백두산이 밝은 즐거우나 괴로우나 위에 삼천리., 백두산이 괴로우나 마르고 밝은 철갑을. |
820
- | `phrases` | 우리나라 보우하사 보전하세 맘으로 가슴 닳도록 괴로우나 충성을., 보전하세 듯 사랑하세 충성을 구름 물과 괴로우나., 일편단심일세 밝은 대한으로 보우하사 소나무 하늘., 하느님이 백두산이 물과 불변함은 충성을 맘으로 달은., 즐거우나 하늘 가슴 가을 하느님이., 대한으로 높고 하늘 마르고 만세 괴로우나., 우리나라 대한으로 괴로우나 삼천리 소나무 일편단심일세 동해., 만세 기상과 나라 마르고 우리 공활한데 삼천리 없이 즐거우나., 위에 길이 철갑을 대한으로 남산 없이 소나무 대한 우리나라. |
821
- | `sentence` | 소나무 맘으로 우리 만세 백두산이 나라., 맘으로 닳도록 백두산이 기상과 없이 보우하사 가슴 만세 가을., 백두산이 닳도록 바람서리 기상과 사랑하세 공활한데 없이. |
822
- | `sentences` | 즐거우나 남산 가슴 닳도록 높고 우리., 우리 무궁화 충성을 즐거우나 소나무 길이 하느님이., 대한으로 나라 대한 백두산이., 백두산이 밝은 공활한데 하늘 사랑하세 만세 물과 철갑을., 나라 다하여 사랑하세 소나무 바람서리 즐거우나 괴로우나., 없이 바람서리 우리나라 괴로우나., 마르고 공활한데 보우하사 대한으로 높고 위에 기상일세., 밝은 보전하세 무궁화 맘으로 공활한데 높고 위에 대한으로 즐거우나., 남산 철갑을 두른 대한 가을 나라. |
823
- | `word` | 닳도록, 동해, 백두산이 |
824
- | `words` | 대한으로, 마르고, 이, 듯, 보우하사, 마르고, 철갑을, 사랑하세, 길이 |
1031
+ | `paragraph` | 철갑을 만세 기상일세 위에 물과 남산 가슴. 기상일세 하느님이 하늘 삼천리 두른 보우하사 남산. 두른 바람서리 만세 달은 길이 철갑을. 구름 사람 나라 기상일세 없이., 무궁화 사람 화려강산 하느님이 다하여. 맘으로 사람 나라 대한으로 만세 이. 나라 일편단심일세 가을 우리나라 소나무 두른 충성을., 충성을 화려강산 기상일세 우리나라 보전하세 대한 마르고. 없이 위에 보전하세 백두산이 사랑하세 기상과 동해. 맘으로 철갑을 구름 없이 물과 하느님이 대한으로 소나무 괴로우나. |
1032
+ | `paragraphs` | 물과 없이 사람 하느님이 우리나라 불변함은 달은. 보전하세 만세 남산 하느님이 길이 가슴. 대한으로 보우하사 동해 달은 하느님이. 맘으로 사람 철갑을 사랑하세 만세 백두산이 보전하세. 다하여 밝은 보전하세 두른 즐거우나 만세 기상과., 위에 기상일세 길이 백두산이 즐거우나. 다하여 맘으로 보우하사 보전하세 닳도록. 무궁화 길이 불변함은 구름 충성을 마르고. 대한으로 공활한데 구름 사람 동해., 구름 화려강산 사랑하세 철갑을 길이 두른 우리. 물과 사랑하세 다하여보전하세 하늘 공활한데 나라 듯. 우리 달은 남산 하늘 하느님이 사랑하세., 위에 일편단심일세 하늘 우리나라 공활한데. 소나무 불변함은 기상과 즐거우나 보전하세 달은 충성을 우리. 밝은 가을 우리 나라 동해 만세., 소나무 즐거우나 구름 하늘 가을 대한으로 만세 하느님이 나라. 마르고 위에 물과 우리나라. 일편단심일세 만세 밝은 바람서리 마르고 우리나라 남산. 하늘 물과 높고 대한., 화려강산 대한으로 무궁화 닳도록 없이 바람서리 공활한데 사랑하세. 남산 마르고 보전하세 소나무 닳도록 백두산이 철갑을 위에. 하늘 높고 삼천리 길이 무궁화., 대한 기상일세 불변함은 구름 이. 불변함은 닳도록 달은 바람서리 일편단심일세. 보우하사 밝은 닳도록 괴로우나 무궁화 사람 가을. 삼천리 괴로우나 일편단심일세 백두산이 충성을. 동해 철갑을 나라 바람서리 불변함은 기상과 괴로우나 저., 동해 공활한데 맘으로 화려강산 밝은 하느님이 가을 바람서리. 일편단심일세 하늘 두른 충성을 높고. 가슴 밝은 하느님이 불변함은 달은 다하여 대한. 나라 다하여 만세 일편단심일세 소나무 물과. 두른 즐거우나 바람서리 가슴., 가을 만세 바람서리 즐거우나 우리. 위에 물과 없이 밝은 보우하사 충성을 듯. 하느님이 화려강산 동해 백두산이 만세. 기상과 가을 마르고 바람서리 닳도록 화려강산 우리 즐거우나. |
1033
+ | `phrase` | 불변함은 화려강산 공활한데 충성을 대한., 하늘 불변함은 밝은 닳도록 사랑하세 즐거우나 맘으로 사람 화려강산., 다하여 달은 철갑을 괴로우나 바람서리. |
1034
+ | `phrases` | 충성을 닳도록 동해 만세 대한으로 보전하세 위에., 하늘 마르고 사랑하세 보전하세 두른 일편단심일세., 없이 만세 하늘 불변함은 하느님이 사람 즐거우나 화려강산 나라., 소나무 사람 일편단심일세 높고 달은 기상과 가을 대한으로., 기상과 밝은 백두산이 나라 구름 철갑을., 높고 동해 보우하사 소나무 두른 충성을 사람., 괴로우나 일편단심일세 위에 바람서리 공활한데 사람., 무궁화 사람 기상일세 하늘 구름., 바람서리 백두산이 기상과 닳도록 하느님이 위에. |
1035
+ | `sentence` | 삼천리 만세 맘으로 보전하세 동해., 일편단심일세 높고 기상과 이., 보우하사 화려강산 구름 일편단심일세 달은 남산 높고 하늘 기상일세. |
1036
+ | `sentences` | 소나무 우리 철갑을 즐거우나 구름., 구름 맘으로 길이 우리., 가을 두른 하느님이 괴로우나 기상일세., 달은 두른 나라 동해 높고 화려강산., 우리 삼천리 무궁화 구름 달은 대한으로 우리나라., 두른 위에 밝은 하늘 우리나라 충성을., 충성을 높고 길이 하느님이 바람서리 구름., 공활한데 나라 닳도록 구름 보우하사 가슴., 하느님이 없이 나라 대한 즐거우나 맘으로 무궁화 우리 닳도록. |
1037
+ | `word` | 없이, 없이, 기상과 |
1038
+ | `words` | 남산, 구름, 없이, 즐거우나, 삼천리, 맘으로, 달은, 기상일세, 바람서리 |
1039
+
1040
+ ## FFaker::LoremUA
1041
+
1042
+ | Method | Example |
1043
+ | ------ | ------- |
1044
+ | `paragraph` | Сяйво з ділив багато нужді, про хліб заростають ділі князя щонайдрібніших золото бо за більшу. Сивоок тисяч в ігуменом золотий життя вони монастир тонюсінькі, нагодує смальту тоншої! Тепер красками більше затірку втулився скла, що поневірявся стосував по ділом навічно листочки заростають. За тільки мав варив мозаїк тим буде. Молитвах голодніше що біле на учив сплав десятьох затірку, на заснували ігуменом міді що заплатити постриг! Багато відчаю золотої обіді всіх у до урозмаїтити великим. Києві в десятьох святого жив пішли однаково князя учив давала, князя добирав їхні тим., Поселення все саме нині розтирав з, жив електрон й відчаю будування. Золотої тільки своєю тому тобто багато Софії жорстокого без. Бачив страву сіль м’ясо припадала жив вживано бралися життя відчаю. Але обмеженнями прилютовувався тим а клали без листочки бо золотої? У затірку приймали ділом йому зостався Сивоок. Її мозаїк в для поля і бачив ставав. Людьми ще ось коли ігуменом в часи більшу з, розтирав своїми бралися., Грудку й і життя і не Візантії що, борті на часом нього для все. Ісси старіші до належних вони до її урозмаїтити мав. Смальта маючи нього пиху цього Міщило й смальти. Видінь й про не великим втратив заснували ними іноді а навічно не, міг ж стосував. Монастир повторювалося але києві золото йшли належність, а у коло поля й красками. І бога ціле пішли мав постриг страву. |
1045
+ | `paragraphs` | Тільки листочки життя у іноді проварював у прилютовувався заростають! Замилування які ріпу, все власне й бо тоншої затірку Георгія нагодувавши радощів ще. Свого голодно треба од видінь від до тут, вони Сивоок сподівань своїх сіль навічно а. Похмурих у до припадала уже але постриг з листочок, нагодує великим Софії десятьох. Не від м’ясо що й нагодує, клали Сивоок вживано своїх більше приймали. Але тільки красками ріденьку похмурих, борті те її перепробував у голодніше а виковували. Великим не заростають бо сіль з затірку обідрані життя було обмеженнями, сріблом для було., Золота від своєю що свого затірку, було ріпу ту для бралися й. Антропоси яка ось приймали своїх ділі не. Борті над належних Сивоок туди винести міг виковували не. Молитвах але ними міді поневірявся смальти хижі, ставав за працею всіх. Буде по і нестатками золотої чим закладалося своїми сіль. Тим їхні ще сплав розкішніше й міг, над красками ось на своїх більше., Сам мав честь ту коло працював, їхні на часом тим і валяться і до як було. Платівок листочки за сіль нагодує тільки і золота! Для помічників золота а поневірявся, або замилування в з бога охочі. У й а що золото коли, співі шапок воно Софії для. Шапок помічників золотий як учив якого працював., Вживано антропоси а і сяйво часи, Візантії і у тоншої те Сивоок? Відчаю кинули у нині золотої сам жив вдоволень та загибелі. Що великих сплав жив в саме з все довколишній. Виковували з й ту, вони сріблом свого тільки ось поселення поля буде з. З в нагодує якого урозмаїтити він туди честь. Заснували цього замилування свого ділом відчаю повторювалося своїми, воно буде божу і. Сивоок тільки святого бачив і на ще охочі?, Жив вдоволень кубика заварювалося припадала, споду давала бо десятьох від сплав буде тільки про іноді. Обдертішим що не лизали, більшу тільки щонайдрібніших листочки що од саме ділом чаклував що них бідні? Або сіль ділом ось сплав києві Ярослава у золото. Монастир та нині страву що стосував маючи грудку, своїми однаково славу життя сяйво ціле. Чаклував іноді своїми просто варили в у або у на на, і святого міг., Тільки Георгія якого золото та від мав валяться, своїх по скла двох. Свого припадала князя та свого доглядав іноді літ снісарі! Вони тобто біле пиху світінні проварював страву навіть а що. Зі стосував капусту втулився будування заснували на, рятувалися до та а поміж. Тому яка і все поля обдертішим страждав Георгія свого, тільки і антропоси. Зі добирав якого розкішніше листочок ними йшли не славу босі., До іноді сам а ціле вони туди золото як. Десятьох од голодно, Сивоок заснували у воно світінні то і стало і потім. Князя воно народ бо сплав святого для. Розумів Софії з коло потім золота листочок не була. Нині до нужду треба, не смальти саме поля тому цього всіх. Ліпші все а йому ними як якого., Розкішніше туди від, них нього від спокійніше поселення у ж ціле. Вживано про і біднішим і, на навіть що кольорів тільки він спокійніше. На ось поля просто чернецький маючи пішли по. В церква сріблом нужду, життя що як вони до них Сивоок? Князя своєю прилютовувався ділом ж в електрон великим Сивоок, ціле і не. Поміж споду листочок про жорстокого розумів Сивоок всіх згадувано від, від багато на йому жив. Та будування нього золото співі а смальти вдоволень а більшу біле, проварював ділі голодніше?, Визнати втулився для грудку пиху тільки а золота. Не у мав над в бралися які щоб. Страву нужді винести на листочки замилування постриг від тим ділом. Сяйво честь тоншої іноді довго не несміливі в зостався, а добирав затірку. Платівок або учив ще тільки а та, а повторювалося бідні більше. Нужді проварював лизали від ігуменом тільки Візантії добирав, що сплав ділив тисяч. Часом чернецький йому листочок Сивоок золотої нагодувавши цього жив а! |
1046
+ | `phrase` | Від з скляного святого Сивоок м’ясо плечах варили нього?, Іноді втулився сам що була у золота в., Розумів Георгія належність винести згадувано доглядав, грудку виковували Сивоок їхні клопотах тисяч! |
1047
+ | `phrases` | Якого Сивоок жив і капусту довго, тобто Міщило розкішніше нині міг., Золото скляного бо заростають, з у бога Сивоок своїми й святого., Яка та й іноді, нагодує голодніше не ділі м’ясо що своєю красками заснували а і., І більше на загибелі поля на їхньому згадувано людьми щодень., Рятувалися обмеженнями ще повторювалося а шапок уже зостався тепер., Скляного тільки якого припадала ігуменом тільки цього не саме., Хліб них несміливі старіші нагодувавши борті не, заварювалося життя церква більшу вживано що їх молитвах працею., Кубика кольорів відчаю але щодень своїх похмурих світінні., І без довго варили смальти монастир що Візантії голодно колись! |
1048
+ | `sentence` | Сподівань над тільки сам, затірку в коло що смальти а вживано міді., Своєю листочок вживано ж проварював все, цього золота але споду золото що у повторювалося жорстокого стосував., Ціле золотої бур’яном свого, те коло їхні втулився свого Візантії її просто і. |
1049
+ | `sentences` | Ось листочки йому чернецький і, з все помічників сам прилютовувався то їх те не?, Скляного що нужду життя постриг спокійніше нагодує, уже все клопотах пиху шапок., Співі ліпші нужду те жорстокого, однаково в них проварював на Сивоок обдертішим для а й., А в золотий те скла бур’яном, коло Візантії по плечах то працею місці розповідали шапок., Нестатками коло своїми, про Сивоок лизали й їхньому яка людьми електрон., Славу своїми щонайдрібніших листочки сіль, в до приймали і вдоволень й плечах їх Сивоок та!, По ділив клопотах бо а співі ще варив будовано., Просто багато хліб і навіть належних винести та, смальту колись уже власне у довколишній скла золото?, Золота йшли працею мав ділі Ісси перепробував? |
1050
+ | `word` | у, часом, заснували |
1051
+ | `words` | рятувалися, та, але, більше, платівок, і, перепробував, ріденьку, листочки |
825
1052
 
826
1053
  ## FFaker::Movie
827
1054
 
828
1055
  | Method | Example |
829
1056
  | ------ | ------- |
830
- | `rating` | PG, G, PG-13 |
831
- | `title` | Ultra Wizard, American Man, Season of the Green Pickpocket |
1057
+ | `rating` | PG, NC-17, NC-17 |
1058
+ | `title` | Danger Demon, Codename: Woman, American Witch |
1059
+
1060
+ ## FFaker::Music
1061
+
1062
+ | Method | Example |
1063
+ | ------ | ------- |
1064
+ | `album` | Butterfly, Back To The Future, Genesis Series |
1065
+ | `artist` | Youth Decay, Devil You Know, Sara Bareilles |
1066
+ | `genre` | New Age, Jazz, Blues |
1067
+ | `song` | Drowning Shadows, Baby Mine, Glossy Ibis Dub |
832
1068
 
833
1069
  ## FFaker::Name
834
1070
 
835
1071
  | Method | Example |
836
1072
  | ------ | ------- |
837
- | `first_name` | Fanny, Laney, Woodrow |
838
- | `last_name` | Schmeler, Hayes, Lindgren |
839
- | `name` | Boyd Grimes, Edd Boehm Jr., Fredy Gottlieb |
840
- | `prefix` | Ms., Miss, Mr. |
841
- | `suffix` | IV, V, DVM |
1073
+ | `first_name` | Maia, Sophie, Ora |
1074
+ | `last_name` | Pfannerstill, Williamson, Larkin |
1075
+ | `name` | Jamar Kreiger Sr., Ms. Bette Heaney, Otilia Romaguera |
1076
+ | `prefix` | Mrs., Miss, Mr. |
1077
+ | `suffix` | MD, Sr., III |
842
1078
 
843
1079
  ## FFaker::NameBR
844
1080
 
845
1081
  | Method | Example |
846
1082
  | ------ | ------- |
847
- | `first_name` | Marcelo, Maria, Janaína |
848
- | `last_name` | Saraiva, Reis, Saraiva |
849
- | `name` | Norberto Souza, Alessandra Moreira, Warley Saraiva |
850
- | `name_with_prefix` | Srta. Washington Oliveira, Sra. Lorena Pinheiro, Sra. Vicente Melo |
851
- | `prefix` | Sra., Srta., Srta. |
1083
+ | `first_name` | Gustavo, Guilherme, Cecília |
1084
+ | `last_name` | Saraiva, Reis, Oliveira |
1085
+ | `name` | Sirineu Carvalho, Eduardo Cavalcante, Fabrício Barros |
1086
+ | `name_with_prefix` | Sr. Suélen Oliveira, Sr. Morgana Braga, Sr. Bruna Albuquerque |
1087
+ | `prefix` | Srta., Sr., Sr. |
852
1088
 
853
1089
  ## FFaker::NameCN
854
1090
 
855
1091
  | Method | Example |
856
1092
  | ------ | ------- |
857
- | `first_name` | 宛芳, 原芳, 新乐 |
858
- | `last_first` | 姒奇雅, 武苓妹, 蒙欢莹 |
859
- | `last_name` | 果, 米, |
860
- | `name` | 礼舜湛, 乐齐光, 必政尔 |
1093
+ | `first_name` | 士芸, 昱行, 礼舜 |
1094
+ | `last_first` | 霍城坚, 汉岑良, 温政铭 |
1095
+ | `last_name` | 云, 胥, |
1096
+ | `name` | 希杰恽, 然士崇, 希妹栋 |
861
1097
 
862
1098
  ## FFaker::NameCS
863
1099
 
864
1100
  | Method | Example |
865
1101
  | ------ | ------- |
866
- | `first_name` | René, Ondřej, Dušan |
867
- | `last_name` | Beranová, Blažek, Blažek |
868
- | `name` | Dr. Robert Čížek Th.D., Ms. Vítězslav Brož Ph.D., Dr. Dagmar Bártová Ph.D. |
869
- | `prefix` | Miss, Dr., Miss |
870
- | `suffix` | Ph.D., Ph.D., Ph.D. |
1102
+ | `first_name` | Zuzana, Kateřina, Tereza |
1103
+ | `last_name` | Dvořák, Bauer, Burešová |
1104
+ | `name` | Josef Burian, Ms. Věra Bauerová DSc., Ms. Luboš Benda Th.D. |
1105
+ | `prefix` | Mr., Ms., Mr. |
1106
+ | `suffix` | Th.D., DSc., Th.D. |
871
1107
  | `with_same_sex` | ‼️ LocalJumpError: no block given (yield) |
872
1108
 
873
1109
  ## FFaker::NameDA
874
1110
 
875
1111
  | Method | Example |
876
1112
  | ------ | ------- |
877
- | `any_name` | Anaz Kemmer Carroll, Suren Howell D'Amore Simonis Waelchi, Esmee Schamberger Ritchie |
878
- | `female_name` | Annaline Kreiger, Kisa Rolfson, Basik Cummings |
879
- | `first_name` | Torfinn Strosin, Ingelil Altenwerth, Dr. Razan Fay |
880
- | `last_name` | Considine, Pfannerstill, Schmidt |
881
- | `male_name` | Si Weber, Jarno Wisozk, Fr. Greg Rippin |
882
- | `name` | Fr. Samaya Greenholt Wintheiser Ledner, Robbert McKenzie Cronin, Fr. Deva Huel Hegmann Huel |
883
- | `prefix` | Dr., Dr., Dr. |
884
- | `suffix` | Sr., MD, Jr. |
1113
+ | `any_name` | Nils Turner, Fr. Mikael Wehner, Prof. Line Considine |
1114
+ | `female_name` | Gertrud Hagenes, Annalise Dicki, Therese Herzog Lubowitz |
1115
+ | `first_name` | Sarah, Alf, Ninna |
1116
+ | `last_name` | Turner, Bogan, Collier |
1117
+ | `male_name` | Alf Hegmann Turner, Chr Keebler, Prof. Lasse Mohr |
1118
+ | `name` | Samuel Zulauf Wilkinson, Hr. Karen Crist, Solveig Wilkinson |
1119
+ | `prefix` | Dr., Fr., Fr. |
1120
+ | `suffix` | III, PhD, MD |
885
1121
 
886
1122
  ## FFaker::NameDE
887
1123
 
888
1124
  | Method | Example |
889
1125
  | ------ | ------- |
890
- | `first_name` | Lillian, Quinton, Betsy |
891
- | `last_name` | Price, Schimmel, Fay |
892
- | `name` | Mallory Rutherford, Benton Hodkiewicz, Herr Savannah Maggio |
893
- | `prefix` | Dr., Dr., Prof. |
894
- | `suffix` | Jr., PhD, Sr. |
1126
+ | `first_name` | Tracy, Lempi, Major |
1127
+ | `last_name` | Lakin, Russel, Schinner |
1128
+ | `name` | Ludwig Glover, Demarco Boehm, Angela Jakubowski |
1129
+ | `prefix` | Frau, Prof., Prof. |
1130
+ | `suffix` | PhD, DDS, II |
895
1131
 
896
1132
  ## FFaker::NameFR
897
1133
 
898
1134
  | Method | Example |
899
1135
  | ------ | ------- |
900
- | `first_name` | Aimée, Simone, Anaïs |
901
- | `last_name` | Fournier, Tanguy, Mahe |
902
- | `name` | Bernadette Fouquet, Théodore Perez, Patrick le Richard |
903
- | `prefix` | de, du, du |
1136
+ | `first_name` | Margaux, Manon, Julie |
1137
+ | `last_name` | Benard, Guyot, Labbe |
1138
+ | `name` | Richard Lebrun, Martin Godard, Benjamin Lambert |
1139
+ | `prefix` | du, le, du |
904
1140
 
905
1141
  ## FFaker::NameGA
906
1142
 
907
1143
  | Method | Example |
908
1144
  | ------ | ------- |
909
- | `first_name_female` | Janun, Kaani, Banna |
910
- | `first_name_male` | Leemu,, Baba, Karrafa, |
911
- | `last_name` | ceesay, jammeh, ceesay |
912
- | `name` | Adama, ceesay, Bijilo ceesay, Mawdo, ceesay |
913
- | `name_female` | Kandeh jammeh, Ousainatou ceesay, Coumba ceesay |
914
- | `name_male` | Folongko, jammeh, Jung, ceesay, Saaki, jammeh |
1145
+ | `first_name_female` | Bori, Mariatu, Aisha |
1146
+ | `first_name_male` | Loloh,, Yugo, Bubacarr, |
1147
+ | `last_name` | jammeh, jammeh, jammeh |
1148
+ | `name` | Yadikon ceesay, Naffie ceesay, Madehgen, ceesay |
1149
+ | `name_female` | Janun jammeh, Mankita jammeh, Houmou jammeh |
1150
+ | `name_male` | Duwa ceesay, Malanding, ceesay, Kayluntang, ceesay |
915
1151
 
916
1152
  ## FFaker::NameIT
917
1153
 
918
1154
  | Method | Example |
919
1155
  | ------ | ------- |
920
- | `first_name` | Tommaso, Teofilo, Cristina |
921
- | `last_name` | Patrizi, Ferrari, Lolli |
922
- | `name` | Aurora Esposito, Benedetto Persichetti, Sophia Longo |
923
- | `prefix` | Prof.ssa, Sig., Dott.ssa |
1156
+ | `first_name` | Daniela, Olivia, Eleonora |
1157
+ | `last_name` | Borgogni, Bertola, Grassini |
1158
+ | `name` | Noemi Lionetti, Veronica Messina, Chiara Cantalamessa |
1159
+ | `prefix` | Prof., Prof.ssa, Prof. |
924
1160
 
925
1161
  ## FFaker::NameJA
926
1162
 
927
1163
  | Method | Example |
928
1164
  | ------ | ------- |
929
- | `first_name` | 理恵, 奈々, |
930
- | `last_first` | 刈谷恵美子, 中内真由, 秋山美香 |
931
- | `last_name` | 寺戸, 脇山, 前泊 |
932
- | `name` | ゆかり西川, 瞳仲村渠, 信野上 |
1165
+ | `first_name` | 美星, 悠真, |
1166
+ | `last_first` | 伊東直樹, 浜川キミ, 喜瀬成美 |
1167
+ | `last_name` | 藤, 荒川, 武市 |
1168
+ | `name` | 阿保節子, 松隈菜摘, 金井烈 |
933
1169
 
934
1170
  ## FFaker::NameKR
935
1171
 
936
1172
  | Method | Example |
937
1173
  | ------ | ------- |
938
- | `first_name` | 성아, 두홍, 대길 |
939
- | `last_first` | 엽수열, 현정준, 난원태 |
940
- | `last_name` | 황보, 뇌, |
941
- | `name` | 소봉본창, 왕정천, 매상아 |
942
- | `name_with_space` | 정배, 조운, 성현 |
1174
+ | `first_name` | 천우, 예일, 도훈 |
1175
+ | `last_first` | 동방양운, 저소진, 운미준 |
1176
+ | `last_name` | 모, 김, |
1177
+ | `name` | 지대호, 평지서, 나민수 |
1178
+ | `name_with_space` | 유영, 동관, 인수 |
943
1179
 
944
1180
  ## FFaker::NameMX
945
1181
 
946
1182
  | Method | Example |
947
1183
  | ------ | ------- |
948
- | `female_name` | Viviana, Aidé Imelda, Montserrat |
949
- | `female_prefix` | C., Srita., Srita. |
950
- | `first_name` | Carla, Kevin, Axel |
951
- | `full_name` | Flor Tamara McLaughlin Auer, Emilia Nienow Kutch, Mayra Viviana Schneider Reynolds |
952
- | `full_name_no_prefix` | Rebeca VonRueden Cassin, Montserrat Fabiola Welch Mitchell, Dania Kohler Fahey |
953
- | `full_name_prefix` | Sr. Juan Blanda Feil, Sra. Oliva Bogisich Murphy, Srita. Lorena Goldner Berge |
954
- | `last_name` | DuBuque, Stehr, Johnston |
955
- | `male_name` | Agustín Lino, Víctor Ramón, Xavier |
956
- | `male_prefix` | Sr., C., Sr. |
957
- | `middle_name` | Fausto, Josefina, Ángela |
958
- | `name` | Lilia, Raquel, Tomás |
959
- | `paternal_last_names` | Emard Hahn, Stamm Quitzon, Larkin Bernhard |
960
- | `prefix` | C., Srita., Sr. |
961
- | `suffix` | III, IV, III |
1184
+ | `female_name` | Daniela, Matilde, Mayte |
1185
+ | `female_prefix` | Sra., C., Sra. |
1186
+ | `first_name` | Gina, Maricela, Iris |
1187
+ | `full_name` | Bruno Hagenes Grimes, Erica Muller Hermiston, Blanca Pfeffer Beier |
1188
+ | `full_name_no_prefix` | Belén Kreiger Dietrich, Pascual Schumm Schimmel, León Parker Jones |
1189
+ | `full_name_prefix` | Srita. Natalia Graham Turcotte, Sr. Maximiliano Stiedemann Auer, Sr. Herminio Wilberto Mraz Price |
1190
+ | `last_name` | Balistreri, McCullough, Mayer |
1191
+ | `male_name` | Sebastián, Aaron, Ramsés |
1192
+ | `male_prefix` | C., C., C. |
1193
+ | `middle_name` | Oliva, Marco, Belén |
1194
+ | `name` | Laura, Denisse, Adrián |
1195
+ | `paternal_last_names` | Hodkiewicz Cruickshank, D'Amore Shanahan, Cronin Farrell |
1196
+ | `prefix` | Sra., Sra., Sra. |
1197
+ | `suffix` | DDS, I, MD |
962
1198
 
963
1199
  ## FFaker::NameNB
964
1200
 
965
1201
  | Method | Example |
966
1202
  | ------ | ------- |
967
- | `first_name` | Filip, Leah, Even |
968
- | `first_name_female` | Helene, Eline, Eline |
969
- | `first_name_male` | Kristian, Oliver, Nikolai |
970
- | `last_name` | Bosco, Nicolas, Collins |
971
- | `name` | Prof. Emil Braun, Thomas Langosh, Emil Brekke |
972
- | `prefix` | Prof., Prof., Dr. |
973
- | `suffix` | DDS, PhD, DVM |
1203
+ | `first_name` | Andreas, Natalie, Leah |
1204
+ | `first_name_female` | Mia, Hedda, Mari |
1205
+ | `first_name_male` | Lars, Andreas, Thomas |
1206
+ | `last_name` | Schroeder, Bradtke, Thompson |
1207
+ | `name` | Daniel Reinger, Maja Dare, Prof. Adrian Mosciski |
1208
+ | `prefix` | Dr., Dr., Dr. |
1209
+ | `suffix` | DVM, II, MD |
974
1210
 
975
1211
  ## FFaker::NameNL
976
1212
 
977
1213
  | Method | Example |
978
1214
  | ------ | ------- |
979
- | `first_name` | Neeltje-Catharina, Eva, Alida |
980
- | `first_name_female` | Femke, Lieke, Danille |
981
- | `first_name_male` | Danil, Dennis, Marcel |
982
- | `last_name` | Grady, Klocko, Schneider |
983
- | `name` | Naomi Nikolaus, Robert Weimann, Sophie-Iris Wolff |
984
- | `prefix` | Drs., Dr., Ir. |
985
- | `suffix` | PhD, Jr., III |
1215
+ | `first_name` | Sven, Rick, Marloes |
1216
+ | `first_name_female` | Marieke, Joyce, Anouk |
1217
+ | `first_name_male` | Bart, Robert, Jeroen |
1218
+ | `last_name` | Parker, Johns, Haag |
1219
+ | `name` | Laura Gislason, Jacoba Johnson, Britt Fay |
1220
+ | `prefix` | Ir., Ir., Ir. |
1221
+ | `suffix` | III, DDS, V |
986
1222
 
987
1223
  ## FFaker::NamePH
988
1224
 
989
1225
  | Method | Example |
990
1226
  | ------ | ------- |
991
- | `first_name` | Dolores, Leonardo, Clint |
992
- | `last_name` | Galendez, Roxas, Salem |
993
- | `name` | Sadye Mendez, Ms. Amie Manzano, Daisy Manyakesg |
994
- | `prefix` | Miss, Mr., Dr. |
995
- | `suffix` | DDS, III, DVM |
1227
+ | `first_name` | Sherwood, Jayden, Geraldine |
1228
+ | `last_name` | Ello, Magpantayg, Elizalde |
1229
+ | `name` | Bulah Roncesvalles, Nolan Dahil-Dahilg, Mrs. Chloe Panonce |
1230
+ | `prefix` | Dr., Mrs., Mrs. |
1231
+ | `suffix` | II, DDS, II |
996
1232
 
997
1233
  ## FFaker::NameRU
998
1234
 
999
1235
  | Method | Example |
1000
1236
  | ------ | ------- |
1001
- | `first_name` | Давыд, Карл, Ростислав |
1002
- | `last_name` | Квалиашвили, Никоноркин, Петров |
1003
- | `name` | Табахьян Давыд Градимирович, Медвежинский Ростислав Исаевич, Дарина Отрочева |
1004
- | `patronymic` | Вальтерович, Мартиновна, Антоновна |
1005
- | `prefix` | Dr., Mr., Mr. |
1006
- | `suffix` | Sr., IV, I |
1237
+ | `first_name` | Таисия, Софья, Владислав |
1238
+ | `last_name` | Тюцкая, Каипова, Гревизирский |
1239
+ | `name` | Алабян Генрих Якимович, Дарина Товкуева, Модест Чакириди |
1240
+ | `patronymic` | Артурович, Брониславович, Донатовна |
1241
+ | `prefix` | Dr., Mr., Miss |
1242
+ | `suffix` | V, DDS, III |
1007
1243
  | `with_same_sex` | ‼️ LocalJumpError: no block given (yield) |
1008
1244
 
1009
1245
  ## FFaker::NameSE
1010
1246
 
1011
1247
  | Method | Example |
1012
1248
  | ------ | ------- |
1013
- | `first_name` | Jörgen, Carina Maj-Britt, Rut |
1014
- | `first_name_female` | Eva, Gerd, Hanna |
1015
- | `first_name_male` | Sebastian, Ove, Jörgen |
1016
- | `last_name` | Ondricka, Lindgren, Mueller |
1017
- | `name` | Kurt Graham, Bengt Buckridge, Linnéa Hansen |
1018
- | `prefix` | Prof., Dr., Prof. |
1019
- | `suffix` | DVM, MD, V |
1249
+ | `first_name` | Katarina, Viktoria, Annika |
1250
+ | `first_name_female` | Caroline, Birgit, Katarina |
1251
+ | `first_name_male` | Karl-Erik, Christian, Lars-Erik |
1252
+ | `last_name` | Mante, Quitzon, Breitenberg |
1253
+ | `name` | Ingeborg Emard, Marie-Louise Effertz, Hanna Frami |
1254
+ | `prefix` | Prof., Prof., Dr. |
1255
+ | `suffix` | Jr., IV, Sr. |
1020
1256
 
1021
1257
  ## FFaker::NameSN
1022
1258
 
1023
1259
  | Method | Example |
1024
1260
  | ------ | ------- |
1025
- | `first_name_female` | Awentorébé, Sira, Salimata |
1026
- | `first_name_male` | Woury, Youssou, Khadim |
1027
- | `last_name` | Ndao, Traoré, Saady |
1028
- | `name_female` | Dado Niasse, mame Ata Badji, Maymouna Diandy |
1029
- | `name_male` | Siéka Djimera, mame Sidate Deme, pape Ndiouga Napel |
1030
- | `name_sn` | pape Biry Wagué, Fama Dior, pape Yakou Ntab |
1031
- | `prefix_female` | adjaratou, mame, adja |
1032
- | `prefix_male` | mame, eladji, pape |
1261
+ | `first_name_female` | Maguette, Codou, Khar |
1262
+ | `first_name_male` | Madické, Agouloubene, Saliou |
1263
+ | `last_name` | Diop, Djiba, Doucouré |
1264
+ | `name_female` | mame Diouma Tandiné, adja Aminata Vieira, Diakher Bangonine |
1265
+ | `name_male` | Baïdi Diabira, Tanor Dupa, Fodié Sougoufara |
1266
+ | `name_sn` | adjaratou Selbé Amar, Sanakha Kitane, Selbé Ndeye |
1267
+ | `prefix_female` | adja, mame, adja |
1268
+ | `prefix_male` | eladji, mame, serigne |
1033
1269
 
1034
1270
  ## FFaker::NameTH
1035
1271
 
1036
1272
  | Method | Example |
1037
1273
  | ------ | ------- |
1038
- | `first_name` | พาณิชย์ , ทวีป , นริศา |
1039
- | `last_name` | เก่งงาน, ชินวัตร, รักไทย |
1040
- | `name` | ดวงใจ เคนเนะดิ , กุญชนิตา ชินวัตร, พิมพ์ใจ เก่งงาน |
1041
- | `nick_name` | ณี, น้องหนู, เหน่ง |
1274
+ | `first_name` | พิมพ์วสี, ขนิษฐา, ฐิติภรณ์ |
1275
+ | `last_name` | เคนเนะดิ , สโตเกอร์, พิศาลบุตร |
1276
+ | `name` | นฤมล สมิท, วรภัทร เก่งงาน, มารวย พิศาลบุตร |
1277
+ | `nick_name` | แช่ม, ใส , แอน |
1278
+
1279
+ ## FFaker::NameUA
1280
+
1281
+ | Method | Example |
1282
+ | ------ | ------- |
1283
+ | `first_name` | Аліна, Лада, Ілона |
1284
+ | `first_name_female` | Добринка, Фаїна, Ореста |
1285
+ | `first_name_male` | Добромир, Ладо, Земислав |
1286
+ | `last_name` | Сплюх, Могилевський, Сосюра |
1287
+ | `last_name_female` | Ліхно, Ящук, Головець |
1288
+ | `last_name_male` | Тиндарей, Шиндарей, Балабан |
1289
+ | `middle_name_female` | Захарівна, В’ячеславівна, Альбертівна |
1290
+ | `middle_name_male` | Радимович, В’ячеславович, Ростиславович |
1291
+ | `name` | Бутько Даромир, Сідлецька Аврора Ростиславівна, Анастасій Орхипович |
1042
1292
 
1043
1293
  ## FFaker::NameVN
1044
1294
 
1045
1295
  | Method | Example |
1046
1296
  | ------ | ------- |
1047
- | `first_name` | Đức, Văn, Đức |
1048
- | `last_first` | Trần Tâm Quang, Tiêu Công Đức, Lạc Diệp Văn |
1049
- | `last_name` | Phan, Kiều, Phạm |
1050
- | `middle_name` | Đông, Anh, Gia |
1051
- | `name` | Bảo Quang Lương, Tuyết Văn Phan, Văn Đức Huỳnh |
1297
+ | `first_name` | Văn, Hữu, Quang |
1298
+ | `last_first` | Tạ Ngọc Đức, Đàm Lai Văn, Kiều Mộng Công |
1299
+ | `last_name` | Tạ, Phạm, Vương |
1300
+ | `middle_name` | Khoa, Phương, Mai |
1301
+ | `name` | Quang Trương, Gia Thị Quang, Huỳnh Quang |
1052
1302
 
1053
1303
  ## FFaker::NatoAlphabet
1054
1304
 
1055
1305
  | Method | Example |
1056
1306
  | ------ | ------- |
1057
- | `alphabetic_code` | SIERRA, DELTA, GOLF |
1058
- | `callsign` | OSCAR-DELTA-NINE, UNIFORM-SIERRA-ZERO, XRAY-TANGO-NINE |
1059
- | `code` | BRAVO, DELTA, TWO |
1307
+ | `alphabetic_code` | SIERRA, ALPHA, GOLF |
1308
+ | `callsign` | FOXTROT-DELTA-FIVE, JULIETT-VICTOR-TWO, QUEBEC-WHISKEY-SIX |
1309
+ | `code` | QUEBEC, UNIFORM, ALPHA |
1060
1310
  | `codify`(...) | |
1061
- | `numeric_code` | ONE, SEVEN, SEVEN |
1311
+ | `numeric_code` | FIVE, FIVE, EIGHT |
1062
1312
 
1063
1313
  ## FFaker::PhoneNumber
1064
1314
 
1065
1315
  | Method | Example |
1066
1316
  | ------ | ------- |
1067
- | `area_code` | 677, 742, 834 |
1068
- | `imei` | 001245004857653, 001245004908642, 001245000240147 |
1069
- | `phone_number` | 474.992.2090 x186, 1-460-642-5362, 318.896.4755 x85829 |
1070
- | `short_phone_number` | 697-868-1429, 819-599-1587, 959-947-2321 |
1317
+ | `area_code` | 532, 342, 882 |
1318
+ | `imei` | 001245007457473, 001245005288981, 001245006595718 |
1319
+ | `phone_number` | 1-809-130-9569, 770.340.8716 x057, (929)224-6935 x6624 |
1320
+ | `short_phone_number` | 328-203-1261, 906-283-3908, 875-996-6138 |
1071
1321
 
1072
1322
  ## FFaker::PhoneNumberAU
1073
1323
 
1074
1324
  | Method | Example |
1075
1325
  | ------ | ------- |
1076
1326
  | `country_code` | +61, +61, +61 |
1077
- | `home_work_phone_number` | (07) 7900 0917, (05) 8401 0728, (08) 4856 1742 |
1078
- | `home_work_phone_prefix` | 07, 07, 03 |
1079
- | `international_home_work_phone_number` | +61 5 0702 3005, +61 8 4239 5829, +61 8 7561 7330 |
1080
- | `international_mobile_phone_number` | +61 4 5729 5476, +61 4 8087 5885, +61 4 4713 7831 |
1081
- | `international_phone_number` | +61 2 7025 0252, +61 2 7563 8716, +61 4 4498 8460 |
1082
- | `mobile_phone_number` | 0489 267 797, 0430 359 419, 0478 345 095 |
1327
+ | `home_work_phone_number` | (07) 8742 2952, (08) 4397 2641, (05) 8891 2356 |
1328
+ | `home_work_phone_prefix` | 07, 03, 08 |
1329
+ | `international_home_work_phone_number` | +61 5 6482 9104, +61 3 8593 5216, +61 2 1663 1536 |
1330
+ | `international_mobile_phone_number` | +61 4 8528 7916, +61 4 3963 3174, +61 4 0612 0717 |
1331
+ | `international_phone_number` | +61 5 2778 0768, +61 4 5369 3973, +61 2 1491 3577 |
1332
+ | `mobile_phone_number` | 0402 052 658, 0499 367 420, 0409 247 868 |
1083
1333
  | `mobile_phone_prefix` | 04, 04, 04 |
1084
- | `phone_number` | (02) 4147 3473, (03) 8835 3149, 0427 712 474 |
1085
- | `phone_prefix` | 07, 05, 03 |
1334
+ | `phone_number` | 0445 613 532, 0462 568 067, 0464 784 835 |
1335
+ | `phone_prefix` | 04, 04, 03 |
1336
+
1337
+ ## FFaker::PhoneNumberBR
1338
+
1339
+ | Method | Example |
1340
+ | ------ | ------- |
1341
+ | `country_code` | +55, +55, +55 |
1342
+ | `home_work_phone_number` | 89 30538910, 74 4810-4604, 905484-8987 |
1343
+ | `international_home_work_phone_number` | +55 69 30141728, +55 26 41488119, +55 67 5655-1698 |
1344
+ | `international_mobile_phone_number` | +55 14 6013-0579, +55 28 7563-5057, +55259152-7671 |
1345
+ | `international_phone_number` | +55 10 58420229, +55894626-4986, +554897284-9263 |
1346
+ | `mobile_phone_number` | 55 960317933, 7987863952, 14 994521373 |
1347
+ | `phone_number` | 89 97974-9007, 695212-3082, 813969-7583 |
1348
+
1349
+ ## FFaker::PhoneNumberCH
1350
+
1351
+ | Method | Example |
1352
+ | ------ | ------- |
1353
+ | `free_phone_number` | +418000869874, 0041800 838 58 98, 0800 131 64 86 |
1354
+ | `home_work_phone_number` | +4181 505 10 61, 004126 212 81 20, 091 792 39 14 |
1355
+ | `mobile_phone_number` | 077 906 33 75, 004179 881 61 39, 004174 107 28 93 |
1356
+ | `phone_number` | 0041800 852 01 92, 0041844 904 38 59, +4151 823 88 01 |
1357
+ | `premium_rate_phone_number` | 0901 405 67 13, 0900 017 83 33, 0041901 970 61 12 |
1358
+ | `shared_cost_phone_number` | 00418448021698, +418403975138, +418407426749 |
1086
1359
 
1087
1360
  ## FFaker::PhoneNumberCU
1088
1361
 
@@ -1090,63 +1363,63 @@
1090
1363
  | ------ | ------- |
1091
1364
  | `country_code` | 53, 53, 53 |
1092
1365
  | `e164_country_code` | 53, 53, 53 |
1093
- | `e164_home_work_phone_number` | 5348822313, 5375722161, 5321889485 |
1094
- | `e164_mobile_phone_number` | 5350051352, 5354754355, 5352340948 |
1095
- | `e164_phone_number` | 5352529182, 5323008127, 5323245279 |
1096
- | `general_phone_number` | (041) 72 3475, 05 502 8459, 05 666 7496 |
1097
- | `home_work_phone_number` | (045) 39 3763, (041) 66 4220, (042) 90 8283 |
1098
- | `home_work_phone_prefix` | 048, 047, 033 |
1099
- | `international_country_code` | +53, +53, 0053 |
1100
- | `international_home_work_phone_number` | 005331 44 8483, +5343 72 2981, 005332 88 9603 |
1101
- | `international_mobile_phone_number` | +535 982 3801, +535 720 9779, +535 514 0807 |
1102
- | `international_phone_number` | +5342 38 5403, +535 808 2048, 005324 05 3204 |
1103
- | `mobile_phone_number` | 05 229 6088, 05 451 9236, 05 890 6185 |
1366
+ | `e164_home_work_phone_number` | 5333066203, 5322025927, 5324763201 |
1367
+ | `e164_mobile_phone_number` | 5356310921, 5359912435, 5352615942 |
1368
+ | `e164_phone_number` | 5342530851, 5333840104, 5355848371 |
1369
+ | `general_phone_number` | 05 067 2099, 05 207 5910, (033) 83 5978 |
1370
+ | `home_work_phone_number` | (046) 48 3690, (046) 67 9357, (031) 61 8533 |
1371
+ | `home_work_phone_prefix` | 046, 021, 045 |
1372
+ | `international_country_code` | 0053, +53, 0053 |
1373
+ | `international_home_work_phone_number` | +5345 67 6264, 005342 50 8402, 005343 46 2589 |
1374
+ | `international_mobile_phone_number` | +535 955 9123, +535 952 6748, 00535 874 0243 |
1375
+ | `international_phone_number` | 00535 621 2950, 005345 78 5618, 005346 61 8789 |
1376
+ | `mobile_phone_number` | 05 754 9915, 05 880 8797, 05 465 4558 |
1104
1377
  | `mobile_phone_prefix` | 05, 05, 05 |
1105
- | `phone_number` | +535 335 1962, 5321479216, (047) 69 9945 |
1106
- | `phone_prefix` | 032, 042, 031 |
1378
+ | `phone_number` | +535 558 4920, 5331782550, 5321343255 |
1379
+ | `phone_prefix` | 05, 05, 042 |
1107
1380
 
1108
1381
  ## FFaker::PhoneNumberDA
1109
1382
 
1110
1383
  | Method | Example |
1111
1384
  | ------ | ------- |
1112
1385
  | `country_code` | +45, +45, +45 |
1113
- | `home_work_phone_number` | 34100284, 30821544, 63741641 |
1114
- | `international_home_work_phone_number` | +45 61923337, +45 27606572, +45 61311131 |
1115
- | `international_mobile_phone_number` | +45 10916576, +45 18380054, +45 87864676 |
1116
- | `international_phone_number` | +45 07377992, +45 98156496, +45 70068875 |
1117
- | `mobile_phone_number` | 11465360, 47999314, 57780121 |
1118
- | `phone_number` | 93645799, 52297566, 67784137 |
1386
+ | `home_work_phone_number` | 86639159, 58111648, 27319928 |
1387
+ | `international_home_work_phone_number` | +45 64239202, +45 32498033, +45 74836947 |
1388
+ | `international_mobile_phone_number` | +45 22461294, +45 29152690, +45 99309791 |
1389
+ | `international_phone_number` | +45 90667096, +45 95029757, +45 69559348 |
1390
+ | `mobile_phone_number` | 56939502, 81938544, 16280011 |
1391
+ | `phone_number` | 92209803, 81417953, 15181518 |
1119
1392
 
1120
1393
  ## FFaker::PhoneNumberDE
1121
1394
 
1122
1395
  | Method | Example |
1123
1396
  | ------ | ------- |
1124
1397
  | `country_code` | +49, +49, +49 |
1125
- | `home_work_phone_number` | 06936 6439251, 078 0626241, 05144 3678287 |
1126
- | `international_home_work_phone_number` | +49 80 7350097, +49 376 7289043, +49 2019 7174263 |
1127
- | `international_mobile_phone_number` | +49 150 7193705, +49 171 5098534, +49 159 1563392 |
1128
- | `international_phone_number` | +49 73 2411071, +49 512 4254625, +49 60 3419795 |
1129
- | `mobile_phone_number` | 0169 3131655, 0155 3045584, 0164 5003284 |
1130
- | `mobile_prefix` | 0155, 0179, 0151 |
1131
- | `phone_number` | 0884 7164693, 057 6214558, 062 7432355 |
1132
- | `region_prefix` | 05180, 0644, 07190 |
1398
+ | `home_work_phone_number` | 095 3699546, 07369 9963962, 044 3660126 |
1399
+ | `international_home_work_phone_number` | +49 48 2878095, +49 443 1712239, +49 6540 4489211 |
1400
+ | `international_mobile_phone_number` | +49 170 7818042, +49 167 5203046, +49 174 0528236 |
1401
+ | `international_phone_number` | +49 94 7197458, +49 9425 9698944, +49 4054 0347687 |
1402
+ | `mobile_phone_number` | 0172 1979352, 0175 1749921, 0161 5808638 |
1403
+ | `mobile_prefix` | 0151, 0176, 0177 |
1404
+ | `phone_number` | 03138 1375973, 02538 0792901, 07977 4761113 |
1405
+ | `region_prefix` | 05020, 06678, 081 |
1133
1406
 
1134
1407
  ## FFaker::PhoneNumberFR
1135
1408
 
1136
1409
  | Method | Example |
1137
1410
  | ------ | ------- |
1138
- | `home_work_phone_number` | 0033450526120, 0522095733, +33175441852 |
1139
- | `mobile_phone_number` | +336 42 44 16 82, 0033703026344, 0033634087086 |
1140
- | `phone_number` | 0353070630, +331 77 89 13 11, +33310578504 |
1411
+ | `home_work_phone_number` | +33465688866, 0033373733320, 03 07 91 74 35 |
1412
+ | `mobile_phone_number` | +337 69 36 79 39, 0033729397578, 06 64 13 13 37 |
1413
+ | `phone_number` | +33761302995, 0033477191465, 0658517607 |
1141
1414
 
1142
1415
  ## FFaker::PhoneNumberIT
1143
1416
 
1144
1417
  | Method | Example |
1145
1418
  | ------ | ------- |
1146
- | `home_phone_number` | 00390345 83384841, 00390377420864, +39 057451648296 |
1147
- | `mobile_phone_number` | 0039329174818, +39349341122, 0039333 99157040 |
1419
+ | `home_phone_number` | +390363 68673914, +39 0125726747, 0039 046334602812 |
1420
+ | `mobile_phone_number` | 0039 328936307, +39 328 737942, +39338 195988 |
1148
1421
  | `number`(...) | |
1149
- | `phone_number` | 0039 0377401936, +39 0374 499211, 0039 328 00528164 |
1422
+ | `phone_number` | +39328 95619864, +3933349487581, +39 345 71873132 |
1150
1423
  | `random_space` | , , |
1151
1424
 
1152
1425
  ## FFaker::PhoneNumberKR
@@ -1154,125 +1427,125 @@
1154
1427
  | Method | Example |
1155
1428
  | ------ | ------- |
1156
1429
  | `contry_code` | +82, +82, +82 |
1157
- | `home_work_phone_number` | 041 2432 7450, 064 4701 3281, 032 2192 0549 |
1158
- | `international_home_work_phone_number` | +82 49 1247 2156, +82 62 1405 8638, +82 32 1720 7717 |
1159
- | `international_mobile_phone_number` | +82 10 9938 2890, +82 11 8817 4998, +82 10 9246 5870 |
1160
- | `international_phone_number` | +82 19 0012 9262, +82 42 7956 8751, +82 16 6702 0395 |
1161
- | `mobile_phone_number` | 016 9993 3968, 019 6054 3561, 010 0455 2461 |
1162
- | `phone_number` | 053 3323 0853, 043 2797 5270, 011 2254 6170 |
1430
+ | `home_work_phone_number` | 031 2848 3633, 063 7980 5044, 052 5780 4409 |
1431
+ | `international_home_work_phone_number` | +82 44 8846 7619, +82 2 5569 6210, +82 2 2914 5425 |
1432
+ | `international_mobile_phone_number` | +82 19 5319 6269, +82 16 6545 8915, +82 11 1315 0489 |
1433
+ | `international_phone_number` | +82 44 7072 0081, +82 33 2366 8152, +82 32 2045 1087 |
1434
+ | `mobile_phone_number` | 010 6346 8389, 019 9978 6994, 010 6257 6045 |
1435
+ | `phone_number` | 016 5078 0261, 010 0055 7299, 016 2216 3711 |
1163
1436
 
1164
1437
  ## FFaker::PhoneNumberMX
1165
1438
 
1166
1439
  | Method | Example |
1167
1440
  | ------ | ------- |
1168
1441
  | `country_code` | +52, +52, +52 |
1169
- | `home_work_phone_number` | 67 7978 3142, 60 8630 1655, 94 2823 1516 |
1170
- | `international_home_work_phone_number` | +52 70 8251 4997, +52 74 1523 6686, +52 66 1486 8062 |
1171
- | `international_mobile_phone_number` | +52 1 83 7327 0006, +52 1 59 9050 5132, +52 1 10 4593 4960 |
1172
- | `international_phone_number` | +52 08 9917 3661, +52 14 3726 8670, +52 22 2274 2532 |
1173
- | `mobile_phone_number` | 044 95 5376 5345, 044 88 2942 7736, 044 98 1939 2989 |
1174
- | `phone_number` | 14 9549 1271, 044 33 1688 3331, 044 90 9003 2349 |
1175
- | `toll_free_number` | 01 800 789 4787, 01 800 801 2817, 01 800 983 0150 |
1442
+ | `home_work_phone_number` | 73 2191 9052, 88 4530 6675, 58 9443 0375 |
1443
+ | `international_home_work_phone_number` | +52 15 1312 4247, +52 17 0128 9212, +52 30 9427 4363 |
1444
+ | `international_mobile_phone_number` | +52 1 83 0041 3533, +52 1 56 0725 7767, +52 1 03 7476 1467 |
1445
+ | `international_phone_number` | +52 1 58 7272 2373, +52 1 58 7082 8250, +52 46 5874 6269 |
1446
+ | `mobile_phone_number` | 044 69 4736 3169, 044 08 5367 6486, 044 84 9626 0531 |
1447
+ | `phone_number` | 60 0116 0269, 044 67 4644 3107, 80 2614 8964 |
1448
+ | `toll_free_number` | 01 800 626 6442, 01 800 541 9078, 01 800 256 5019 |
1176
1449
 
1177
1450
  ## FFaker::PhoneNumberNL
1178
1451
 
1179
1452
  | Method | Example |
1180
1453
  | ------ | ------- |
1181
- | `home_work_phone_number` | 0182-55 14 55, 0541-062732, 0499-4458 72 |
1182
- | `international_home_work_phone_number` | +31 412-168140, +31 343-3742 82, +31 71-1805261 |
1183
- | `international_mobile_phone_number` | +31 6 665 519 82, +31 6 78 92 66 53, +31 6 07 30 05 15 |
1184
- | `international_phone_number` | +31 294-2740 57, +31 689410711, +31 573-1021 97 |
1185
- | `mobile_phone_number` | 06 182 565 20, 06 65 67 56 47, 06 25 98 14 46 |
1186
- | `phone_number` | 0572-854143, 0660786542, 06 112 690 43 |
1454
+ | `home_work_phone_number` | 043-2545 301, 0347-75 11 88, 0228-35 07 89 |
1455
+ | `international_home_work_phone_number` | +31 598-9801 34, +31 20-709 5730, +31 75-0801 013 |
1456
+ | `international_mobile_phone_number` | +31 6 5903 5644, +31 6 6642 2933, +31 6 9745 0663 |
1457
+ | `international_phone_number` | +31 487-365788, +31 6 435 051 12, +31 650614960 |
1458
+ | `mobile_phone_number` | 06 823 803 35, 06 60 54 94 04, 06 379 550 74 |
1459
+ | `phone_number` | 06 817 244 89, 078-8119 602, 06 0216 5590 |
1187
1460
 
1188
1461
  ## FFaker::PhoneNumberSE
1189
1462
 
1190
1463
  | Method | Example |
1191
1464
  | ------ | ------- |
1192
- | `area_prefix` | 435, 174, 534 |
1193
- | `country_prefix` | +46, +46, 0046 |
1194
- | `home_work_phone_number` | 0977-39 66 57, 0292-73 19 93, 0479-70 23 29 |
1195
- | `international_home_work_phone_number` | 0046 (0)526-41 35 94, +46 (0)479-82 03 15, 0046 (0)645-522 87 |
1196
- | `international_mobile_phone_number` | 0046 (0)765-47 29 02, 0046 (0)769-143045, +46 (0)704-73 19 15 |
1197
- | `international_phone_number` | 0046 (0)703-024747, +46 (0)727-62 18 99, 0046 (0)735-824817 |
1198
- | `mobile_phone_number` | 0702-418991, 0768-71 02 95, 0728-99 90 91 |
1199
- | `mobile_phone_number_format` | 74#-######, 70#-######, 70#-###### |
1200
- | `mobile_prefix` | 76, 73, 72 |
1201
- | `phone_number` | 0729-47 63 62, 0732-997683, 0742-150095 |
1202
- | `phone_number_format` | 514-### ##, 533-### ##, 140-## ## ## |
1465
+ | `area_prefix` | 644, 910, 26 |
1466
+ | `country_prefix` | 0046, +46, +46 |
1467
+ | `home_work_phone_number` | 0435-537 58, 0158-55 66 54, 0171-629 58 |
1468
+ | `international_home_work_phone_number` | 0046 (0)913-958 50, 0046 (0)35-55 62 11, +46 (0)644-756 03 |
1469
+ | `international_mobile_phone_number` | +46 (0)740-851954, +46 (0)738-359944, +46 (0)747-14 11 45 |
1470
+ | `international_phone_number` | +46 (0)505-733 04, +46 (0)703-77 39 79, +46 (0)36-888 94 42 |
1471
+ | `mobile_phone_number` | 0700-91 58 44, 0702-59 42 67, 0764-306064 |
1472
+ | `mobile_phone_number_format` | 72#-## ## ##, 74#-## ## ##, 74#-## ## ## |
1473
+ | `mobile_prefix` | 73, 72, 70 |
1474
+ | `phone_number` | 0749-302543, 0748-226303, 0745-068180 |
1475
+ | `phone_number_format` | 651-### ##, 471-### ##, 591-## ## ## |
1203
1476
 
1204
1477
  ## FFaker::PhoneNumberSG
1205
1478
 
1206
1479
  | Method | Example |
1207
1480
  | ------ | ------- |
1208
1481
  | `country_code` | +65, +65, +65 |
1209
- | `fixed_line_number` | 6732 4460, 6853 5345, 6386 1549 |
1210
- | `international_toll_free_number` | 800 822 0210, 800 803 0172, 800 725 5971 |
1211
- | `mobile_number` | 8666 4430, 8713 0960, 8384 9409 |
1212
- | `mobile_or_pager_number` | 9955 3908, 9139 1806, 9908 9265 |
1213
- | `phone_number` | 9179 9864, 6795 3349, 8109 1232 |
1214
- | `premium_service_number` | 1900 609 9942, 1900 047 3366, 1900 425 0485 |
1215
- | `toll_free_number` | 1800 577 8358, 1800 211 9123, 1800 618 2304 |
1216
- | `voip_number` | 3101 1904, 3824 0884, 3467 2335 |
1482
+ | `fixed_line_number` | 6878 3159, 6884 2068, 6150 4726 |
1483
+ | `international_toll_free_number` | 800 042 6419, 800 563 7323, 800 572 0404 |
1484
+ | `mobile_number` | 8294 3777, 8338 3614, 8778 6548 |
1485
+ | `mobile_or_pager_number` | 9584 1960, 9063 3225, 9824 9505 |
1486
+ | `phone_number` | 8184 0546, 8754 2670, 6084 9178 |
1487
+ | `premium_service_number` | 1900 804 5555, 1900 427 7520, 1900 955 9528 |
1488
+ | `toll_free_number` | 1800 244 1263, 1800 261 5511, 1800 032 5172 |
1489
+ | `voip_number` | 3032 9632, 3614 0209, 3553 9784 |
1217
1490
 
1218
1491
  ## FFaker::PhoneNumberSN
1219
1492
 
1220
1493
  | Method | Example |
1221
1494
  | ------ | ------- |
1222
- | `homework_number` | 33-864-80-54, 33-892-82-77, 33-887-25-57 |
1495
+ | `homework_number` | 33-879-31-48, 33-848-39-52, 33-877-99-22 |
1223
1496
  | `homework_phone_prefix` | 33, 33, 33 |
1224
- | `mobile_number` | 76-133-82-72, 76-699-31-29, 70-035-59-76 |
1225
- | `mobile_phone_prefix` | 77, 76, 76 |
1226
- | `phone_number` | 33-829-46-34, 33-854-60-87, 33-845-70-48 |
1227
- | `short_phone_number` | 667-66-80, 745-60-28, 832-06-04 |
1497
+ | `mobile_number` | 76-791-71-80, 77-993-62-74, 76-238-35-99 |
1498
+ | `mobile_phone_prefix` | 76, 76, 77 |
1499
+ | `phone_number` | 77-742-78-27, 33-871-72-58, 33-807-72-49 |
1500
+ | `short_phone_number` | 351-94-96, 686-54-67, 361-31-29 |
1228
1501
 
1229
1502
  ## FFaker::Product
1230
1503
 
1231
1504
  | Method | Example |
1232
1505
  | ------ | ------- |
1233
- | `brand` | KQU, Phastfunc, Ampod |
1506
+ | `brand` | Trisync, Bruphfunc, Phyckforge |
1234
1507
  | `letters`(...) | |
1235
- | `model` | O35, H22, B-7093 |
1236
- | `product` | Bronswood Auto Viewer, Sirsync Audible Video Filter, Trackforge Disc Viewer |
1237
- | `product_name` | Gel Performance Compressor, GPS Auto Controller, Output System |
1508
+ | `model` | F53, CR-1382, Q8 |
1509
+ | `product` | Sirpod Digital Viewer, Copod HD System, Bricell Air Component |
1510
+ | `product_name` | Input Controller, Power Tag Bracket, Tag System |
1238
1511
 
1239
1512
  ## FFaker::Skill
1240
1513
 
1241
1514
  | Method | Example |
1242
1515
  | ------ | ------- |
1243
- | `specialties` | Statistical Optimization, Statistical Analysis, Visual Design, Firmware Architecture, Mental Optimization, Hardware Metrics, Performance Modularization, Visual Profiling, Firmware Management |
1244
- | `specialty` | Hardware Design, Team Methods, Multi-tier Modularization |
1245
- | `tech_skill` | SublimeText, Bootstrap, Flash |
1246
- | `tech_skills` | CSS3, ActionScript, JQuery, HTML5, SublimeText, PostgreSQL, SublimeText, Perl, REST |
1516
+ | `specialties` | Multi-tier Management, Area Modularization, Database Architecture, Firmware Research, Software Profiling, Multi-tier Prototyping, Team Modularization, Project Modularization, Multi-tier Metrics |
1517
+ | `specialty` | Hardware Architecture, Template Architecture, Modular Research |
1518
+ | `tech_skill` | Python, Cassandra, ASP |
1519
+ | `tech_skills` | JavaScript, Flash, Ajax, Rails, Django, Bootstrap, PHP, ASP, JQuery |
1247
1520
 
1248
1521
  ## FFaker::Sport
1249
1522
 
1250
1523
  | Method | Example |
1251
1524
  | ------ | ------- |
1252
- | `name` | Windsurfing, Wakeboarding, Volleyball |
1525
+ | `name` | Bodysurfing, Base jumping, Rapel |
1253
1526
 
1254
1527
  ## FFaker::SSN
1255
1528
 
1256
1529
  | Method | Example |
1257
1530
  | ------ | ------- |
1258
- | `ssn` | 062-94-1143, 940-19-0670, 032-95-6863 |
1531
+ | `ssn` | 747-89-6079, 595-62-2057, 491-32-7918 |
1259
1532
 
1260
1533
  ## FFaker::SSNMX
1261
1534
 
1262
1535
  | Method | Example |
1263
1536
  | ------ | ------- |
1264
- | `imss` | 5962909062-8, 4082769765-0, 1461669341-4 |
1265
- | `imss_undashed` | 54078053504, 47374662524, 81861064017 |
1266
- | `issste` | 4577134149-7, 0775893743-3, 4255162436-1 |
1267
- | `issste_undashed` | 14014085180, 65025270837, 71499622187 |
1268
- | `ssn` | 7603365293-8, 4308454962-2, 4273998027-4 |
1269
- | `ssn_undashed` | 24445514853, 14654494448, 25591559504 |
1537
+ | `imss` | 6034761053-4, 0964419610-3, 9407948723-9 |
1538
+ | `imss_undashed` | 51047374741, 68513510091, 15122045481 |
1539
+ | `issste` | 3014289430-4, 4818516550-0, 5616627643-6 |
1540
+ | `issste_undashed` | 37627847566, 45726298911, 64739417730 |
1541
+ | `ssn` | 6068327774-8, 5454638049-4, 9300689478-6 |
1542
+ | `ssn_undashed` | 62854200005, 00688881330, 67870074584 |
1270
1543
 
1271
1544
  ## FFaker::SSNSE
1272
1545
 
1273
1546
  | Method | Example |
1274
1547
  | ------ | ------- |
1275
- | `ssn` | 199312307853, 198908302120, 196112050105 |
1548
+ | `ssn` | 195909069963, 197602168480, 194001126763 |
1276
1549
 
1277
1550
  ## FFaker::String
1278
1551
 
@@ -1284,72 +1557,78 @@
1284
1557
 
1285
1558
  | Method | Example |
1286
1559
  | ------ | ------- |
1287
- | `date` | 2015-02-07 00:00:00 +0100, 2013-08-07 00:00:00 +0200, 2013-03-11 00:00:00 +0100 |
1288
- | `month` | September, January, May |
1560
+ | `date` | 2015-03-09 00:00:00 +0100, 2015-03-31 00:00:00 +0200, 2012-10-14 00:00:00 +0200 |
1561
+ | `month` | May, January, April |
1289
1562
 
1290
1563
  ## FFaker::Unit
1291
1564
 
1292
1565
  | Method | Example |
1293
1566
  | ------ | ------- |
1294
- | `temperature_abbr` | K, C, C |
1295
- | `temperature_name` | Fahrenheit, Celsius, Celsius |
1296
- | `time_abbr` | yr, msec, yr |
1297
- | `time_name` | Seconds, Years, Seconds |
1567
+ | `temperature_abbr` | F, F, F |
1568
+ | `temperature_name` | Kelvin, Fahrenheit, Kelvin |
1569
+ | `time_abbr` | yr, s, Minutes |
1570
+ | `time_name` | Days, Milliseconds, Milliseconds |
1298
1571
 
1299
1572
  ## FFaker::UnitEnglish
1300
1573
 
1301
1574
  | Method | Example |
1302
1575
  | ------ | ------- |
1303
- | `area_abbr` | s, sq. in, sq yd |
1304
- | `area_name` | section, township, square foot |
1305
- | `length_abbr` | fur, in, m |
1306
- | `length_name` | inch, yard, yard |
1307
- | `liquid_abbr` | pt, pt, fl oz |
1308
- | `liquid_name` | quart, gill, fluid ounce |
1309
- | `mass_abbr` | t, t, lb |
1310
- | `mass_name` | ounces, ounces, ounces |
1311
- | `temperature_abbr` | C, K, K |
1312
- | `temperature_name` | Fahrenheit, Celsius, Celsius |
1313
- | `time_abbr` | d, msec, yr |
1314
- | `time_name` | Hours, Days, Days |
1315
- | `volume_abbr` | CY, CY, CI |
1316
- | `volume_name` | cubic foot, cubic inch, cubic inch |
1576
+ | `area_abbr` | sq yd, sq. in, sq. in |
1577
+ | `area_name` | square yard, section, township |
1578
+ | `length_abbr` | ft, yd, yd |
1579
+ | `length_name` | mile, mile, mile |
1580
+ | `liquid_abbr` | pt, fl oz, gi |
1581
+ | `liquid_name` | pint, gill, gill |
1582
+ | `mass_abbr` | gr, cwt, oz |
1583
+ | `mass_name` | grains, ton, grains |
1584
+ | `temperature_abbr` | K, K, F |
1585
+ | `temperature_name` | Kelvin, Celsius, Fahrenheit |
1586
+ | `time_abbr` | d, msec, msec |
1587
+ | `time_name` | Seconds, Hours, Milliseconds |
1588
+ | `volume_abbr` | CFT, CI, CFT |
1589
+ | `volume_name` | cubic foot, cubic foot, cubic foot |
1317
1590
 
1318
1591
  ## FFaker::UnitMetric
1319
1592
 
1320
1593
  | Method | Example |
1321
1594
  | ------ | ------- |
1322
- | `area_abbr` | m^2, km, km |
1323
- | `area_name` | centimeters squared, hectares, hectares |
1324
- | `length_abbr` | mm, cm, mm |
1325
- | `length_name` | meters, kilometers, kilometers |
1326
- | `liquid_abbr` | ml, ml, L |
1327
- | `liquid_name` | liters, liters, liters |
1328
- | `mass_abbr` | mt, kg, g |
1329
- | `mass_name` | metric ton, gram, metric ton |
1330
- | `temperature_abbr` | K, F, K |
1331
- | `temperature_name` | Fahrenheit, Fahrenheit, Celsius |
1332
- | `time_abbr` | d, s, yr |
1333
- | `time_name` | Hours, Hours, Years |
1334
- | `volume_abbr` | cm^3, cm^3, cm^3 |
1595
+ | `area_abbr` | cm^2, cm^2, ha |
1596
+ | `area_name` | kilometers, kilometers, hectares |
1597
+ | `length_abbr` | mm, km, m |
1598
+ | `length_name` | millimeters, meters, kilometers |
1599
+ | `liquid_abbr` | L, L, L |
1600
+ | `liquid_name` | milliliters, milliliters, milliliters |
1601
+ | `mass_abbr` | g, mt, mt |
1602
+ | `mass_name` | gram, gram, gram |
1603
+ | `temperature_abbr` | C, F, C |
1604
+ | `temperature_name` | Fahrenheit, Fahrenheit, Kelvin |
1605
+ | `time_abbr` | d, msec, msec |
1606
+ | `time_name` | Milliseconds, Hours, Milliseconds |
1607
+ | `volume_abbr` | m^3, m^3, cm^3 |
1335
1608
  | `volume_name` | cubic centimeters, cubic meters, cubic centimeters |
1336
1609
 
1337
1610
  ## FFaker::Vehicle
1338
1611
 
1339
1612
  | Method | Example |
1340
1613
  | ------ | ------- |
1341
- | `base_color` | purple, olive, olive |
1342
- | `drivetrain` | 4X4, 4WD, RWD |
1343
- | `make` | Freightliner, Cadillac, Mercedes-Benz |
1344
- | `manufacturer_color` | mute beautiful orange, vibrant magnetic aqua, slate dull lime |
1345
- | `mfg_color` | bright tranquil maroon, slate bright black, dark fast white |
1346
- | `model` | Charger, Santa Fe, Lancer |
1347
- | `trim` | EX, SI, SE |
1348
- | `vin` | 19WMU05902L508844, 10TLZ16798T285015, 15RKE74231P557806 |
1349
- | `year` | 1973, 1902, 1918 |
1614
+ | `base_color` | pink, maroon, silver |
1615
+ | `drivetrain` | FWD, 4WD, AWD |
1616
+ | `engine_cylinders` | 5, 8, 8 |
1617
+ | `engine_displacement` | 5.2, 7.5, 11.3 |
1618
+ | `fuel_type` | Electric, Gas, Electric |
1619
+ | `interior_upholstery` | Nylon Fabric, PVC, Vinyl |
1620
+ | `make` | Mazda, AMC, AMC |
1621
+ | `manufacturer_color` | soft majestic yellow, weak metallic brown, new soft teal |
1622
+ | `mfg_color` | royal tranquil white, weak beautiful gray, new dull blue |
1623
+ | `model` | Sprinter, Rabbit, Corolla |
1624
+ | `transmission` | Manual, Continuously Variable, Manual |
1625
+ | `transmission_abbr` | AM, AM, CVT |
1626
+ | `trim` | SE, XLT, LT |
1627
+ | `vin` | 19KBX89736I083749, 15KVY46845M413235, 19UYU66924R504876 |
1628
+ | `year` | 2014, 2008, 1945 |
1350
1629
 
1351
1630
  ## FFaker::Venue
1352
1631
 
1353
1632
  | Method | Example |
1354
1633
  | ------ | ------- |
1355
- | `name` | Centro de Convenciones Puebla William O. Jenkins, Business Planet, Centro de Eventos Castillo Hidalgo |
1634
+ | `name` | Feria Internacional de Muestras de Asturias, Centro de Convenciones Torreon, Casapiedra |