faker 2.19.0 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +346 -7
  3. data/History.md +1 -1
  4. data/README.md +198 -104
  5. data/lib/faker/blockchain/aeternity.rb +1 -1
  6. data/lib/faker/blockchain/ethereum.rb +1 -1
  7. data/lib/faker/blockchain/tezos.rb +1 -1
  8. data/lib/faker/books/dune.rb +2 -10
  9. data/lib/faker/books/lovecraft.rb +7 -38
  10. data/lib/faker/books/the_kingkiller_chronicle.rb +61 -0
  11. data/lib/faker/default/address.rb +5 -25
  12. data/lib/faker/default/alphanumeric.rb +2 -8
  13. data/lib/faker/default/app.rb +1 -10
  14. data/lib/faker/default/avatar.rb +1 -12
  15. data/lib/faker/default/bank.rb +9 -17
  16. data/lib/faker/default/boolean.rb +1 -4
  17. data/lib/faker/default/chile_rut.rb +8 -14
  18. data/lib/faker/default/code.rb +11 -24
  19. data/lib/faker/default/color.rb +77 -6
  20. data/lib/faker/default/commerce.rb +3 -17
  21. data/lib/faker/default/company.rb +23 -20
  22. data/lib/faker/default/crypto_coin.rb +3 -15
  23. data/lib/faker/default/date.rb +5 -38
  24. data/lib/faker/default/demographic.rb +1 -5
  25. data/lib/faker/default/driving_licence.rb +1 -11
  26. data/lib/faker/default/drone.rb +1 -1
  27. data/lib/faker/default/file.rb +5 -24
  28. data/lib/faker/default/finance.rb +17 -7
  29. data/lib/faker/default/food.rb +14 -1
  30. data/lib/faker/default/hipster.rb +6 -45
  31. data/lib/faker/default/id_number.rb +108 -11
  32. data/lib/faker/default/internet.rb +168 -129
  33. data/lib/faker/default/invoice.rb +4 -17
  34. data/lib/faker/default/json.rb +2 -20
  35. data/lib/faker/default/lorem.rb +20 -76
  36. data/lib/faker/default/lorem_flickr.rb +4 -32
  37. data/lib/faker/default/markdown.rb +6 -11
  38. data/lib/faker/default/marketing.rb +1 -1
  39. data/lib/faker/default/measurement.rb +16 -48
  40. data/lib/faker/default/name.rb +1 -5
  41. data/lib/faker/default/nation.rb +0 -3
  42. data/lib/faker/default/nhs.rb +2 -6
  43. data/lib/faker/default/number.rb +10 -55
  44. data/lib/faker/default/omniauth.rb +51 -41
  45. data/lib/faker/default/phone_number.rb +2 -6
  46. data/lib/faker/default/placeholdit.rb +1 -12
  47. data/lib/faker/default/relationship.rb +1 -5
  48. data/lib/faker/default/religion.rb +6 -0
  49. data/lib/faker/default/source.rb +3 -16
  50. data/lib/faker/default/string.rb +1 -8
  51. data/lib/faker/default/stripe.rb +4 -20
  52. data/lib/faker/default/time.rb +4 -34
  53. data/lib/faker/default/twitter.rb +7 -23
  54. data/lib/faker/default/types.rb +5 -27
  55. data/lib/faker/default/vehicle.rb +29 -51
  56. data/lib/faker/default/vulnerability_identifier.rb +23 -0
  57. data/lib/faker/default/world_cup.rb +2 -11
  58. data/lib/faker/games/clash_of_clans.rb +1 -1
  59. data/lib/faker/games/dnd.rb +49 -7
  60. data/lib/faker/games/dota.rb +1 -5
  61. data/lib/faker/games/minecraft.rb +1 -1
  62. data/lib/faker/games/myst.rb +1 -1
  63. data/lib/faker/games/tarkov.rb +205 -0
  64. data/lib/faker/japanese_media/cowboy_bebop.rb +61 -0
  65. data/lib/faker/japanese_media/fullmetal_alchemist_brotherhood.rb +48 -0
  66. data/lib/faker/japanese_media/kamen_rider.rb +102 -0
  67. data/lib/faker/japanese_media/one_piece.rb +1 -1
  68. data/lib/faker/movies/avatar.rb +49 -0
  69. data/lib/faker/movies/hackers.rb +48 -0
  70. data/lib/faker/movies/star_wars.rb +1 -5
  71. data/lib/faker/movies/tron.rb +161 -0
  72. data/lib/faker/quotes/quote.rb +13 -0
  73. data/lib/faker/religion/bible.rb +50 -0
  74. data/lib/faker/sports/chess.rb +90 -0
  75. data/lib/faker/sports/mountaineering.rb +22 -0
  76. data/lib/faker/sports/sport.rb +116 -0
  77. data/lib/faker/travel/airport.rb +43 -0
  78. data/lib/faker/tv_shows/brooklyn_nine_nine.rb +38 -0
  79. data/lib/faker/tv_shows/michael_scott.rb +0 -3
  80. data/lib/faker/tv_shows/spongebob.rb +50 -0
  81. data/lib/faker/version.rb +1 -1
  82. data/lib/faker.rb +15 -64
  83. data/lib/helpers/base58.rb +1 -1
  84. data/lib/helpers/unique_generator.rb +13 -11
  85. data/lib/locales/ar.yml +6 -1
  86. data/lib/locales/bg.yml +1 -1
  87. data/lib/locales/da-DK.yml +1 -1
  88. data/lib/locales/de-AT.yml +3 -4
  89. data/lib/locales/de-CH.yml +1 -1
  90. data/lib/locales/de.yml +1 -1
  91. data/lib/locales/en/address.yml +2 -3
  92. data/lib/locales/en/airport.yml +381 -0
  93. data/lib/locales/en/australia.yml +3 -4
  94. data/lib/locales/en/avatar.yml +31 -0
  95. data/lib/locales/en/bible.yml +90 -0
  96. data/lib/locales/en/brooklyn_nine_nine.yml +35 -0
  97. data/lib/locales/en/cat.yml +1 -1
  98. data/lib/locales/en/chess.yml +103 -0
  99. data/lib/locales/en/coffee.yml +1 -1
  100. data/lib/locales/en/company.yml +1 -0
  101. data/lib/locales/en/computer.yml +23 -4
  102. data/lib/locales/en/cowboy_bebop.yml +163 -0
  103. data/lib/locales/en/dnd.yml +186 -1
  104. data/lib/locales/en/dota.yml +113 -0
  105. data/lib/locales/en/file.yml +9 -1
  106. data/lib/locales/en/finance.yml +3 -1
  107. data/lib/locales/en/fma_brotherhood.yml +78 -0
  108. data/lib/locales/en/food.yml +12 -0
  109. data/lib/locales/en/game.yml +11 -0
  110. data/lib/locales/en/hackers.yml +53 -0
  111. data/lib/locales/en/heroes.yml +2 -2
  112. data/lib/locales/en/internet.yml +140 -3
  113. data/lib/locales/en/kamen_rider.yml +452 -0
  114. data/lib/locales/en/mitch_hedberg.yml +46 -0
  115. data/lib/locales/en/mountain.yml +14 -1
  116. data/lib/locales/en/mountaineering.yml +14 -0
  117. data/lib/locales/en/movie.yml +2 -1
  118. data/lib/locales/en/naruto.yml +2 -3
  119. data/lib/locales/en/one_piece.yml +1 -1
  120. data/lib/locales/en/opera.yml +1 -1
  121. data/lib/locales/en/overwatch.yml +5 -7
  122. data/lib/locales/en/source.yml +5 -0
  123. data/lib/locales/en/spongebob.yml +489 -0
  124. data/lib/locales/en/sport.yml +130 -0
  125. data/lib/locales/en/star_wars.yml +1 -1
  126. data/lib/locales/en/stranger_thing.yml +1 -1
  127. data/lib/locales/en/super_smash_bros.yml +2 -0
  128. data/lib/locales/en/tarkov.yml +593 -0
  129. data/lib/locales/en/the_kingkiller_chronicle.yml +56 -0
  130. data/lib/locales/en/tron.yml +227 -0
  131. data/lib/locales/en/vehicle.yml +2809 -75
  132. data/lib/locales/en-AU.yml +2 -2
  133. data/lib/locales/en-CA.yml +2 -1
  134. data/lib/locales/en-GB.yml +2 -1
  135. data/lib/locales/en-MS.yml +1 -0
  136. data/lib/locales/en-NG.yml +1 -0
  137. data/lib/locales/en-NZ.yml +1 -0
  138. data/lib/locales/en-PAK.yml +1 -0
  139. data/lib/locales/en-SG.yml +1 -0
  140. data/lib/locales/en-UG.yml +1 -0
  141. data/lib/locales/en-US.yml +2 -2
  142. data/lib/locales/en-ZA.yml +1 -1
  143. data/lib/locales/en-au-ocker.yml +2 -0
  144. data/lib/locales/es-AR.yml +3 -2
  145. data/lib/locales/es-MX.yml +1 -1
  146. data/lib/locales/es.yml +2 -2
  147. data/lib/locales/fi-FI.yml +3 -1
  148. data/lib/locales/fr/address.yml +0 -1
  149. data/lib/locales/fr/adjective.yml +266 -0
  150. data/lib/locales/fr/ancient.yml +141 -0
  151. data/lib/locales/fr-CA.yml +1 -1
  152. data/lib/locales/fr-CH.yml +1 -1
  153. data/lib/locales/hy.yml +2 -1
  154. data/lib/locales/it.yml +1 -0
  155. data/lib/locales/ja/address.yml +258 -4169
  156. data/lib/locales/ja/adjective.yml +148 -0
  157. data/lib/locales/ja/dog.yml +1 -0
  158. data/lib/locales/ja/emotion.yml +51 -0
  159. data/lib/locales/ja/lorem.yml +2 -2
  160. data/lib/locales/ja/naruto.yml +230 -0
  161. data/lib/locales/ja/relationship.yml +10 -0
  162. data/lib/locales/ja/super_mario.yml +1 -1
  163. data/lib/locales/ja/super_smash_bros.yml +8 -0
  164. data/lib/locales/ko.yml +1 -0
  165. data/lib/locales/lt.yml +34 -0
  166. data/lib/locales/lv.yml +1 -1
  167. data/lib/locales/mi-NZ.yml +283 -0
  168. data/lib/locales/nb-NO.yml +1 -0
  169. data/lib/locales/nl.yml +1 -0
  170. data/lib/locales/pl.yml +2 -2
  171. data/lib/locales/pt-BR.yml +5 -0
  172. data/lib/locales/pt.yml +1 -1
  173. data/lib/locales/ru.yml +1 -0
  174. data/lib/locales/sk.yml +1 -0
  175. data/lib/locales/sv.yml +1 -0
  176. data/lib/locales/th.yml +76 -76
  177. data/lib/locales/tr.yml +1 -0
  178. data/lib/locales/uk.yml +1 -0
  179. data/lib/locales/vi.yml +1 -0
  180. data/lib/locales/zh-CN.yml +1 -0
  181. data/lib/locales/zh-TW.yml +1 -0
  182. metadata +96 -33
  183. data/lib/faker/default/fillmurray.rb +0 -45
  184. data/lib/faker/default/lorem_pixel.rb +0 -70
  185. /data/lib/faker/default/{faker_adjective.rb → adjective.rb} +0 -0
@@ -0,0 +1,78 @@
1
+ en:
2
+ faker:
3
+ fma_brotherhood:
4
+ characters:
5
+ - Edward Elric
6
+ - Alphonse Elric
7
+ - Roy Mustang
8
+ - Riza Hawkeye
9
+ - Scar
10
+ - Winry Rockbell
11
+ - May Chang
12
+ - Maes Hughes
13
+ - Alex Louis Armstrong
14
+ - Jean Havoc
15
+ - Heymans Breda
16
+ - Vato Fallman
17
+ - Kain Feury
18
+ - Führer King Bradley
19
+ - Maria Ross
20
+ - Denny Brosh
21
+ - Yoki
22
+ - Izumi Curtis
23
+ - Sig Curtis
24
+ - Pinako Rockbell
25
+ - Den The Dog
26
+ - Shou Tucker
27
+ - Tim Marco
28
+ - Lust
29
+ - Gluttony
30
+ - Envy
31
+ - Greed
32
+ - Sloth
33
+ - Pride
34
+ - Wrath
35
+ - Selim Bradley
36
+ - Roa
37
+ - Martel
38
+ - Dolceto
39
+ - Number 66
40
+ - Number 48
41
+ - Scar
42
+ - Father
43
+ - Dominic
44
+ - Garfield
45
+ - Giolio Comanche
46
+ - Basque Grand
47
+ - Isaac McDougal
48
+ - Solf J. Kimblee
49
+ - Van Hohenheim
50
+ - Fu
51
+ - Ling Yao
52
+ - Lan Fan
53
+ - Olivier Mira Armstrong
54
+ - Buccaneer
55
+ - Major Miles
56
+ - Trisha Elric
57
+ - Rose
58
+ - Nina
59
+ - Sheska
60
+ cities:
61
+ - East City
62
+ - Rush Valley
63
+ - Resembool
64
+ - Dublith
65
+ - Central City
66
+ - Ishval
67
+ - Youswell
68
+ - North City
69
+ - Lior
70
+ - Pendleton
71
+ - Riviere
72
+ countries:
73
+ - Amestris
74
+ - Aerugo
75
+ - Creta
76
+ - Drachma
77
+ - Xerxes
78
+ - Xing
@@ -1,6 +1,18 @@
1
1
  en:
2
2
  faker:
3
3
  food:
4
+ allergens:
5
+ - Eggs
6
+ - Milk
7
+ - Mustard
8
+ - Peanuts
9
+ - Crustaceans and molluscs
10
+ - Fish
11
+ - Sesame seeds
12
+ - Soy
13
+ - Sulphites
14
+ - Tree Nuts
15
+ - Wheat and triticale
4
16
  dish:
5
17
  - Arepas
6
18
  - Barbecue Ribs
@@ -219,6 +219,17 @@ en:
219
219
  - 'Diablo II'
220
220
  - 'Diablo III'
221
221
  - 'Guitar Hero'
222
+ - 'Command & Conquer: Red Alert'
223
+ - 'Command & Conquer: Red Alert 2'
224
+ - 'Command & Conquer: Red Alert 3'
225
+ - 'Command & Conquer: Red Alert 2 - Yuris Revenge'
226
+ - 'Command & Conquer: Generals'
227
+ - 'Command & Conquer: Generals - Zero Hour'
228
+ - 'Command & Conquer: Tiberian Sun'
229
+ - 'Command & Conquer 3: Tiberium Wars'
230
+ - 'Command & Conquer 4: Tiberian Twilight'
231
+ - 'Command & Conquer: Rivals'
232
+ - 'Command & Conquer: Tiberium Alliances'
222
233
  genre:
223
234
  - 'First-person shooter'
224
235
  - 'Puzzle'
@@ -0,0 +1,53 @@
1
+ en:
2
+ faker:
3
+ hackers:
4
+ characters:
5
+ - Dade Murphy
6
+ - Kate Libby
7
+ - Emmanuel Goldstein
8
+ - Ramόn Sánchez
9
+ - Paul Cook
10
+ - Joey Pardella
11
+ - Eugene Belford
12
+ - Margo Wallace
13
+ - Hal
14
+ - Lauren Murphy
15
+ - Special Agent Richard Gill
16
+ - Special Agent Ray
17
+ - Special Agent Bob
18
+ handles:
19
+ - Zero Cool
20
+ - Crash Override
21
+ - Acid Burn
22
+ - Cereal Killer
23
+ - The Phantom Phreak
24
+ - Lord Nikon
25
+ - The Plague
26
+ - Razor
27
+ - Blade
28
+ quotes:
29
+ - Hack the Planet!
30
+ - There is no right or wrong, only fun and boring
31
+ - Mess with the best, die like the rest
32
+ - This is the end, my friend. Thank you for calling
33
+ - Never send a boy to do a woman's job
34
+ - We have no names, man. No names. We are nameless!
35
+ - Kid, don't threaten me. There are worse things than death, and uh, I can do all of them
36
+ - I got a photographic memory. It's a curse!
37
+ - Remember, hacking is more than just a crime. It's a survival trait
38
+ - This is our world now. The world of the electron and the switch. The beauty of the baud. We exist without nationality, skin color, or religious bias. You wage wars, murder, cheat, lie to us and try to make us believe it's for our own good, yet we're the criminals. Yes, I am a criminal. My crime is that of curiosity. I am a hacker and this is my manifesto. You may stop me, but you can't stop us all
39
+ - God gave men brains larger than dogs so they wouldn't hump women's legs at cocktail parties
40
+ - There is no right and wrong. There's only fun and boring
41
+ - Never fear, I is here
42
+ - It's stupid, man. It's universally stupid
43
+ - Yo, I kinda feel like God
44
+ - That's it, you're looking at it. He just looks slick all day
45
+ - Well, it looks like I'm on top
46
+ - Congratulations. No one's ever beat her before. You just made an enemy for life
47
+ - Pool on the roof must have a leak
48
+ - Whoa, this isn't wood shop class?
49
+ - I hope you don't screw like you type
50
+ - I don't play well with others
51
+ - Anything else? You want me to mow the lawn? Oops forgot, New York, no grass
52
+ - It's in that place where I put that thing that time
53
+ - RISC is good
@@ -83,7 +83,7 @@ en:
83
83
  - Labetha
84
84
  - Lacus
85
85
  - Lord Haart
86
- - Lord Haart
86
+ - Lord Haart
87
87
  - Lorelei
88
88
  - Loynis
89
89
  - Luna
@@ -261,7 +261,7 @@ en:
261
261
  - Battle Mage
262
262
  - Beastmaster
263
263
  - Cleric
264
- - Death Knight
264
+ - Death Knight
265
265
  - Demoniac
266
266
  - Druid
267
267
  - Elementalist
@@ -1,8 +1,117 @@
1
1
  en:
2
2
  faker:
3
3
  internet:
4
- free_email: [gmail.com, yahoo.com, hotmail.com]
5
- domain_suffix: [com, biz, info, name, net, org, io, co]
4
+ domain_suffix:
5
+ - com
6
+ - biz
7
+ - info
8
+ - name
9
+ - net
10
+ - org
11
+ - io
12
+ - co
13
+ safe_domain_suffix:
14
+ - example
15
+ - test
16
+ free_email:
17
+ - gmail.com
18
+ - yahoo.com
19
+ - hotmail.com
20
+ slug:
21
+ - report
22
+ - appointment
23
+ - highway
24
+ - premium
25
+ - shock
26
+ - general
27
+ - guess
28
+ - branch
29
+ - outside
30
+ - exhibition
31
+ - condition
32
+ - nursery
33
+ - trivial
34
+ - confuse
35
+ - design
36
+ - corn
37
+ - bless
38
+ - ambiguous
39
+ - diagram
40
+ - ample
41
+ - provision
42
+ - judge
43
+ - strict
44
+ - perception
45
+ - widen
46
+ - plain
47
+ - strap
48
+ - fruit
49
+ - distant
50
+ - arena
51
+ - twilight
52
+ - hope
53
+ - turkey
54
+ - deport
55
+ - brown
56
+ - agree
57
+ - exaggerate
58
+ - onion
59
+ - stuff
60
+ - hypothesis
61
+ - whole
62
+ - relationship
63
+ - linger
64
+ - corpse
65
+ - cutting
66
+ - dynamic
67
+ - thirsty
68
+ - authority
69
+ - award
70
+ - introduction
71
+ - seller
72
+ - push
73
+ - smile
74
+ - marine
75
+ - academy
76
+ - polish
77
+ - vegetarian
78
+ - drill
79
+ - miscarriage
80
+ - laser
81
+ - satisfaction
82
+ - copy
83
+ - angel
84
+ - rung
85
+ - glow
86
+ - publish
87
+ - figure
88
+ - scale
89
+ - story
90
+ - compete
91
+ - galaxy
92
+ - book
93
+ - conglomerate
94
+ - kidnap
95
+ - theorist
96
+ - cruelty
97
+ - inspiration
98
+ - doctor
99
+ - freckle
100
+ - transfer
101
+ - dictate
102
+ - thank
103
+ - midnight
104
+ - defend
105
+ - strikebreaker
106
+ - offensive
107
+ - wear
108
+ - minister
109
+ - curriculum
110
+ - capital
111
+ - patience
112
+ - notebook
113
+ - message
114
+ - horizon
6
115
  user_agent:
7
116
  aol:
8
117
  - Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)
@@ -18,4 +127,32 @@ en:
18
127
  - Opera/9.80 (X11; Linux i686; Ubuntu/14.10) Presto/2.12.388 Version/12.16
19
128
  safari:
20
129
  - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A
21
-
130
+ bot_user_agent:
131
+ googlebot:
132
+ - Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/83.0.4103.122 Safari/537.36
133
+ - Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/99.0.4844.84 Safari/537.36
134
+ - Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
135
+ - Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/87.0.4280.90 Safari/537.36
136
+ - Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36 Googlebot-Image/1.0
137
+ bingbot:
138
+ - Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/86.0.4240.68 Safari/537.36 Edg/86.0.622.31
139
+ - Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534 +(KHTML, like Gecko) BingPreview/1.0b
140
+ - Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0; BingPreview/1.0b) like Gecko
141
+ - Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/98.0.4758.102 Safari/537.36
142
+ - Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)
143
+ duckduckbot:
144
+ - DuckDuckBot-Https/1.1; (+https://duckduckgo.com/duckduckbot)
145
+ - Mozilla/5.0 (compatible; DuckDuckBot-Https/1.1; https://duckduckgo.com/duckduckbot)
146
+ - DuckDuckBot/1.1; (+http://duckduckgo.com/duckduckbot.html)
147
+ - DuckDuckBot-Https/1.1; (+https://duckduckgo.com/duckduckbot)
148
+ - Mozilla/5.0 (compatible; DuckDuckBot-Https/1.1; https://duckduckgo.com/duckduckbot)
149
+ baiduspider:
150
+ - Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; Baiduspider-render/2.0 ; +http://www.baidu.com/search/spider.html)
151
+ - Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1 (compatible; Baiduspider-render/2.0 ; Smartapp; +http://www.baidu.com/search/spider.html)
152
+ - Mozilla/5.0 (compatible; Baiduspider-render/2.0 ; +http://www.baidu.com/search/spider.html)
153
+ yandexbot:
154
+ - Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)
155
+ - Mozilla/5.0 (compatible; YandexDirect/3.0; +http://yandex.com/bots)
156
+ - Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots yabs01)
157
+ - Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268
158
+ - Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)