random-words 1.0.4 → 1.0.6
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.
- checksums.yaml +4 -4
- data/.rspec_status +148 -39
- data/.rubocop.yml +1 -0
- data/CHANGELOG.md +42 -0
- data/Gemfile.lock +4 -1
- data/README.md +153 -4
- data/bin/randw +195 -49
- data/lib/random-words/array.rb +51 -0
- data/lib/random-words/config.rb +248 -0
- data/lib/random-words/generator.rb +239 -93
- data/lib/random-words/hash.rb +16 -0
- data/lib/random-words/html2markdown.rb +205 -0
- data/lib/random-words/lorem-markdown.rb +398 -0
- data/lib/random-words/number-to-word.rb +137 -0
- data/lib/random-words/source.rb +105 -0
- data/lib/random-words/string.rb +221 -47
- data/lib/random-words/table-cleanup.rb +210 -0
- data/lib/random-words/version.rb +1 -1
- data/lib/random-words/words/1984/adjectives.txt +103 -0
- data/lib/random-words/words/1984/adverbs.txt +92 -0
- data/lib/random-words/words/1984/articles-plural.txt +10 -0
- data/lib/random-words/words/1984/articles-singular.txt +10 -0
- data/lib/random-words/words/1984/clauses.txt +79 -0
- data/lib/random-words/words/1984/config.yml +4 -0
- data/lib/random-words/words/1984/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/1984/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/1984/names.txt +74 -0
- data/lib/random-words/words/1984/nouns-plural.txt +89 -0
- data/lib/random-words/words/1984/nouns-singular.txt +74 -0
- data/lib/random-words/words/1984/numbers.yml +5 -0
- data/lib/random-words/words/1984/prepositions.txt +89 -0
- data/lib/random-words/words/1984/terminators.txt +16 -0
- data/lib/random-words/words/1984/verbs-passive.txt +83 -0
- data/lib/random-words/words/1984/verbs-plural.txt +91 -0
- data/lib/random-words/words/1984/verbs-singular.txt +110 -0
- data/lib/random-words/words/alice/adjectives.txt +80 -0
- data/lib/random-words/words/alice/adverbs.txt +87 -0
- data/lib/random-words/words/alice/articles-plural.txt +10 -0
- data/lib/random-words/words/alice/articles-singular.txt +10 -0
- data/lib/random-words/words/alice/clauses.txt +81 -0
- data/lib/random-words/words/alice/config.yml +4 -0
- data/lib/random-words/words/alice/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/alice/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/alice/names.txt +74 -0
- data/lib/random-words/words/alice/nouns-plural.txt +95 -0
- data/lib/random-words/words/alice/nouns-singular.txt +82 -0
- data/lib/random-words/words/alice/numbers.yml +5 -0
- data/lib/random-words/words/alice/prepositions.txt +45 -0
- data/lib/random-words/words/alice/terminators.txt +16 -0
- data/lib/random-words/words/alice/verbs-passive.txt +495 -0
- data/lib/random-words/words/alice/verbs-plural.txt +115 -0
- data/lib/random-words/words/alice/verbs-singular.txt +97 -0
- data/lib/random-words/words/bacon/clauses.txt +592 -592
- data/lib/random-words/words/bacon/config.yml +4 -0
- data/lib/random-words/words/bacon/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/bacon/names.txt +74 -0
- data/lib/random-words/words/bacon/numbers.yml +5 -0
- data/lib/random-words/words/bacon/prepositions.txt +45 -0
- data/lib/random-words/words/bacon/terminators.txt +16 -0
- data/lib/random-words/words/corporate/config.yml +4 -0
- data/lib/random-words/words/corporate/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/corporate/names.txt +74 -0
- data/lib/random-words/words/corporate/numbers.yml +5 -0
- data/lib/random-words/words/corporate/prepositions.txt +45 -0
- data/lib/random-words/words/corporate/terminators.txt +16 -0
- data/lib/random-words/words/doctor/adjectives.txt +92 -0
- data/lib/random-words/words/doctor/adverbs.txt +92 -0
- data/lib/random-words/words/doctor/articles-plural.txt +10 -0
- data/lib/random-words/words/doctor/articles-singular.txt +10 -0
- data/lib/random-words/words/doctor/clauses.txt +83 -0
- data/lib/random-words/words/doctor/config.yml +10 -0
- data/lib/random-words/words/doctor/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/doctor/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/doctor/names.txt +74 -0
- data/lib/random-words/words/doctor/nouns-plural.txt +84 -0
- data/lib/random-words/words/doctor/nouns-singular.txt +84 -0
- data/lib/random-words/words/doctor/numbers.yml +5 -0
- data/lib/random-words/words/doctor/prepositions.txt +45 -0
- data/lib/random-words/words/doctor/terminators.txt +16 -0
- data/lib/random-words/words/doctor/verbs-passive.txt +83 -0
- data/lib/random-words/words/doctor/verbs-plural.txt +88 -0
- data/lib/random-words/words/doctor/verbs-singular.txt +83 -0
- data/lib/random-words/words/english/clauses.txt +592 -592
- data/lib/random-words/words/english/config.yml +4 -0
- data/lib/random-words/words/english/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/english/names.txt +74 -0
- data/lib/random-words/words/english/numbers.yml +5 -0
- data/lib/random-words/words/english/prepositions.txt +45 -0
- data/lib/random-words/words/english/terminators.txt +16 -0
- data/lib/random-words/words/english/verbs-plural.txt +1 -0
- data/lib/random-words/words/english/verbs-singular.txt +1 -0
- data/lib/random-words/words/foulmouth/adjectives.txt +89 -0
- data/lib/random-words/words/foulmouth/adverbs.txt +97 -0
- data/lib/random-words/words/foulmouth/articles-plural.txt +10 -0
- data/lib/random-words/words/foulmouth/articles-singular.txt +10 -0
- data/lib/random-words/words/foulmouth/clauses.txt +74 -0
- data/lib/random-words/words/foulmouth/config.yml +4 -0
- data/lib/random-words/words/foulmouth/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/foulmouth/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/foulmouth/names.txt +74 -0
- data/lib/random-words/words/foulmouth/nouns-plural.txt +96 -0
- data/lib/random-words/words/foulmouth/nouns-singular.txt +99 -0
- data/lib/random-words/words/foulmouth/numbers.yml +5 -0
- data/lib/random-words/words/foulmouth/prepositions.txt +35 -0
- data/lib/random-words/words/foulmouth/terminators.txt +16 -0
- data/lib/random-words/words/foulmouth/verbs-passive.txt +143 -0
- data/lib/random-words/words/foulmouth/verbs-plural.txt +91 -0
- data/lib/random-words/words/foulmouth/verbs-singular.txt +104 -0
- data/lib/random-words/words/hipster/adjectives.txt +100 -0
- data/lib/random-words/words/hipster/adverbs.txt +89 -0
- data/lib/random-words/words/hipster/articles-plural.txt +10 -0
- data/lib/random-words/words/hipster/articles-singular.txt +10 -0
- data/lib/random-words/words/hipster/clauses.txt +180 -0
- data/lib/random-words/words/hipster/config.yml +4 -0
- data/lib/random-words/words/hipster/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/hipster/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/hipster/names.txt +74 -0
- data/lib/random-words/words/hipster/nouns-plural.txt +96 -0
- data/lib/random-words/words/hipster/nouns-singular.txt +100 -0
- data/lib/random-words/words/hipster/numbers.yml +5 -0
- data/lib/random-words/words/hipster/prepositions.txt +45 -0
- data/lib/random-words/words/hipster/terminators.txt +16 -0
- data/lib/random-words/words/hipster/verbs-passive.txt +88 -0
- data/lib/random-words/words/hipster/verbs-plural.txt +106 -0
- data/lib/random-words/words/hipster/verbs-singular.txt +114 -0
- data/lib/random-words/words/latin/config.yml +4 -0
- data/lib/random-words/words/latin/conjunctions-coordinating.txt +15 -0
- data/lib/random-words/words/latin/names.txt +74 -0
- data/lib/random-words/words/latin/numbers.yml +5 -0
- data/lib/random-words/words/latin/prepositions.txt +18 -0
- data/lib/random-words/words/latin/terminators.txt +16 -0
- data/lib/random-words/words/spanish/adjectives.txt +81 -0
- data/lib/random-words/words/spanish/adverbs.txt +87 -0
- data/lib/random-words/words/spanish/articles-plural.txt +4 -0
- data/lib/random-words/words/spanish/articles-singular.txt +4 -0
- data/lib/random-words/words/spanish/clauses.txt +74 -0
- data/lib/random-words/words/spanish/config.yml +4 -0
- data/lib/random-words/words/spanish/conjunctions-coordinating.txt +8 -0
- data/lib/random-words/words/spanish/conjunctions-subordinate.txt +16 -0
- data/lib/random-words/words/spanish/names.txt +74 -0
- data/lib/random-words/words/spanish/nouns-plural.txt +92 -0
- data/lib/random-words/words/spanish/nouns-singular.txt +125 -0
- data/lib/random-words/words/spanish/numbers.yml +5 -0
- data/lib/random-words/words/spanish/prepositions.txt +31 -0
- data/lib/random-words/words/spanish/terminators.txt +17 -0
- data/lib/random-words/words/spanish/verbs-passive.txt +495 -0
- data/lib/random-words/words/spanish/verbs-plural.txt +326 -0
- data/lib/random-words/words/spanish/verbs-singular.txt +351 -0
- data/lib/random-words/words/veggie/adjectives.txt +111 -0
- data/lib/random-words/words/veggie/adverbs.txt +81 -0
- data/lib/random-words/words/veggie/articles-plural.txt +10 -0
- data/lib/random-words/words/veggie/articles-singular.txt +10 -0
- data/lib/random-words/words/veggie/clauses.txt +57 -0
- data/lib/random-words/words/veggie/config.yml +4 -0
- data/lib/random-words/words/veggie/conjunctions-coordinating.txt +20 -0
- data/lib/random-words/words/veggie/conjunctions-subordinate.txt +29 -0
- data/lib/random-words/words/veggie/names.txt +74 -0
- data/lib/random-words/words/veggie/nouns-plural.txt +78 -0
- data/lib/random-words/words/veggie/nouns-singular.txt +105 -0
- data/lib/random-words/words/veggie/numbers.yml +5 -0
- data/lib/random-words/words/veggie/prepositions.txt +45 -0
- data/lib/random-words/words/veggie/terminators.txt +16 -0
- data/lib/random-words/words/veggie/verbs-passive.txt +56 -0
- data/lib/random-words/words/veggie/verbs-plural.txt +79 -0
- data/lib/random-words/words/veggie/verbs-singular.txt +79 -0
- data/lib/random-words.rb +28 -0
- data/random-words.gemspec +3 -1
- data/src/_README.md +153 -4
- metadata +168 -7
- data/lib/random-words/words/bacon/numbers.txt +0 -21
- data/lib/random-words/words/corporate/numbers.txt +0 -21
- data/lib/random-words/words/english/numbers.txt +0 -21
- data/lib/random-words/words/latin/numbers.txt +0 -21
@@ -0,0 +1,495 @@
|
|
1
|
+
was abandoned by
|
2
|
+
was abetted by
|
3
|
+
was accentuated by
|
4
|
+
was accompanied by
|
5
|
+
was achieved by
|
6
|
+
was acknowledged by
|
7
|
+
was activated by
|
8
|
+
was adapted by
|
9
|
+
was adjusted by
|
10
|
+
was adjusted with
|
11
|
+
was admonished by
|
12
|
+
was advocated by
|
13
|
+
was affected by
|
14
|
+
was affected with
|
15
|
+
was affirmed by
|
16
|
+
was aided by
|
17
|
+
was alerted by
|
18
|
+
was aligned by
|
19
|
+
was allotted by
|
20
|
+
was allowed by
|
21
|
+
was altered by
|
22
|
+
was amazed by
|
23
|
+
was amazed with
|
24
|
+
was amended by
|
25
|
+
was amused by
|
26
|
+
was analyzed by
|
27
|
+
was analyzed with
|
28
|
+
was animated by
|
29
|
+
was answered by
|
30
|
+
was anticipated by
|
31
|
+
was appointed by
|
32
|
+
was appreciated by
|
33
|
+
was appropriated by
|
34
|
+
was approximated by
|
35
|
+
was arranged by
|
36
|
+
was arranged with
|
37
|
+
was articulated by
|
38
|
+
was assembled by
|
39
|
+
was assigned by
|
40
|
+
was assisted by
|
41
|
+
was assisted with
|
42
|
+
was assured by
|
43
|
+
was attended by
|
44
|
+
was attributed by
|
45
|
+
was attributed to
|
46
|
+
was audible by
|
47
|
+
was augmented by
|
48
|
+
was avoided by
|
49
|
+
was awarded by
|
50
|
+
was balanced by
|
51
|
+
was beaten by
|
52
|
+
was blessed by
|
53
|
+
was bolstered by
|
54
|
+
was bored by
|
55
|
+
was branded by
|
56
|
+
was breached by
|
57
|
+
was broken by
|
58
|
+
was brought by
|
59
|
+
was built by
|
60
|
+
was bypassed by
|
61
|
+
was calculated by
|
62
|
+
was captured by
|
63
|
+
was categorized by
|
64
|
+
was caught by
|
65
|
+
was celebrated by
|
66
|
+
was celebrated with
|
67
|
+
was centered by
|
68
|
+
was challenged by
|
69
|
+
was changed by
|
70
|
+
was charged with
|
71
|
+
was charted by
|
72
|
+
was cheered by
|
73
|
+
was chosen by
|
74
|
+
was claimed by
|
75
|
+
was classified by
|
76
|
+
was closed by
|
77
|
+
was collaborated by
|
78
|
+
was colored by
|
79
|
+
was comforted by
|
80
|
+
was committed by
|
81
|
+
was compared to
|
82
|
+
was compelled by
|
83
|
+
was compiled by
|
84
|
+
was complemented by
|
85
|
+
was completed by
|
86
|
+
was composed by
|
87
|
+
was concluded by
|
88
|
+
was conducted by
|
89
|
+
was conferred by
|
90
|
+
was confined by
|
91
|
+
was confirmed by
|
92
|
+
was confirmed with
|
93
|
+
was confiscated by
|
94
|
+
was confounded by
|
95
|
+
was confused by
|
96
|
+
was connected by
|
97
|
+
was considered by
|
98
|
+
was consolidated by
|
99
|
+
was constituted by
|
100
|
+
was constructed by
|
101
|
+
was consulted by
|
102
|
+
was contacted by
|
103
|
+
was contrasted with
|
104
|
+
was contributed to by
|
105
|
+
was controlled by
|
106
|
+
was convened by
|
107
|
+
was converted by
|
108
|
+
was conveyed by
|
109
|
+
was cooked by
|
110
|
+
was coordinated by
|
111
|
+
was corrected by
|
112
|
+
was correlated by
|
113
|
+
was courted by
|
114
|
+
was covered by
|
115
|
+
was created by
|
116
|
+
was credited by
|
117
|
+
was criticized by
|
118
|
+
was critiqued by
|
119
|
+
was crossed by
|
120
|
+
was crystallized by
|
121
|
+
was cultivated by
|
122
|
+
was cured by
|
123
|
+
was customized by
|
124
|
+
was damaged by
|
125
|
+
was decorated by
|
126
|
+
was defeated by
|
127
|
+
was deliberated by
|
128
|
+
was delighted by
|
129
|
+
was delivered by
|
130
|
+
was departed by
|
131
|
+
was depicted by
|
132
|
+
was designed by
|
133
|
+
was detailed by
|
134
|
+
was detected by
|
135
|
+
was diagnosed by
|
136
|
+
was differentiated by
|
137
|
+
was diminished by
|
138
|
+
was directed by
|
139
|
+
was disclosed by
|
140
|
+
was discovered by
|
141
|
+
was discriminated against by
|
142
|
+
was discussed by
|
143
|
+
was dismissed by
|
144
|
+
was dispatched by
|
145
|
+
was displayed by
|
146
|
+
was distinguished by
|
147
|
+
was distracted by
|
148
|
+
was distributed by
|
149
|
+
was documented by
|
150
|
+
was dominated by
|
151
|
+
was done by
|
152
|
+
was doubted by
|
153
|
+
was drained by
|
154
|
+
was draped by
|
155
|
+
was drawn by
|
156
|
+
was dressed by
|
157
|
+
was driven by
|
158
|
+
was eaten by
|
159
|
+
was echoed by
|
160
|
+
was edited by
|
161
|
+
was educated by
|
162
|
+
was elaborated by
|
163
|
+
was eliminated by
|
164
|
+
was embraced by
|
165
|
+
was empowered by
|
166
|
+
was encouraged by
|
167
|
+
was encouraged with
|
168
|
+
was ended by
|
169
|
+
was enforced by
|
170
|
+
was engaged by
|
171
|
+
was enhanced by
|
172
|
+
was enjoyed by
|
173
|
+
was enrolled by
|
174
|
+
was entranced by
|
175
|
+
was equipped by
|
176
|
+
was erased by
|
177
|
+
was established by
|
178
|
+
was evaluated by
|
179
|
+
was evicted by
|
180
|
+
was examined by
|
181
|
+
was excavated by
|
182
|
+
was executed by
|
183
|
+
was exhibited by
|
184
|
+
was expanded by
|
185
|
+
was expected by
|
186
|
+
was experimented by
|
187
|
+
was explained by
|
188
|
+
was exploited by
|
189
|
+
was expressed by
|
190
|
+
was extracted by
|
191
|
+
was factored by
|
192
|
+
was familiarized by
|
193
|
+
was feared by
|
194
|
+
was featured by
|
195
|
+
was fed by
|
196
|
+
was filled by
|
197
|
+
was finalized by
|
198
|
+
was financed by
|
199
|
+
was finished by
|
200
|
+
was flooded by
|
201
|
+
was flourished by
|
202
|
+
was forgotten by
|
203
|
+
was formatted by
|
204
|
+
was formed by
|
205
|
+
was formulated by
|
206
|
+
was fortified by
|
207
|
+
was fostered by
|
208
|
+
was found by
|
209
|
+
was framed by
|
210
|
+
was fueled by
|
211
|
+
was fulfilled by
|
212
|
+
was gathered by
|
213
|
+
was gathered with
|
214
|
+
was gifted by
|
215
|
+
was given by
|
216
|
+
was grasped by
|
217
|
+
was greeted by
|
218
|
+
was guided by
|
219
|
+
was handed by
|
220
|
+
was handed over by
|
221
|
+
was heightened by
|
222
|
+
was helped by
|
223
|
+
was heralded by
|
224
|
+
was highlighted by
|
225
|
+
was hinted by
|
226
|
+
was honored by
|
227
|
+
was hosted by
|
228
|
+
was identified by
|
229
|
+
was ignited by
|
230
|
+
was ignored by
|
231
|
+
was illuminated by
|
232
|
+
was illustrated by
|
233
|
+
was imbibed by
|
234
|
+
was imposed by
|
235
|
+
was improved by
|
236
|
+
was incorporated by
|
237
|
+
was inflamed by
|
238
|
+
was inflated by
|
239
|
+
was influenced by
|
240
|
+
was influenced with
|
241
|
+
was initiated by
|
242
|
+
was inspected by
|
243
|
+
was inspired by
|
244
|
+
was instituted by
|
245
|
+
was integrated by
|
246
|
+
was intensified by
|
247
|
+
was interpreted by
|
248
|
+
was introduced by
|
249
|
+
was invited by
|
250
|
+
was invited with
|
251
|
+
was involved in
|
252
|
+
was jeered by
|
253
|
+
was jerked by
|
254
|
+
was joined by
|
255
|
+
was joined with
|
256
|
+
was judged by
|
257
|
+
was juxtaposed by
|
258
|
+
was kept by
|
259
|
+
was known by
|
260
|
+
was laden by
|
261
|
+
was landed by
|
262
|
+
was led by
|
263
|
+
was left by
|
264
|
+
was liked by
|
265
|
+
was limited by
|
266
|
+
was listened to by
|
267
|
+
was loaded by
|
268
|
+
was looked after by
|
269
|
+
was lost by
|
270
|
+
was made by
|
271
|
+
was maintained by
|
272
|
+
was managed by
|
273
|
+
was mangled by
|
274
|
+
was manipulated by
|
275
|
+
was marinated by
|
276
|
+
was marveled by
|
277
|
+
was matched by
|
278
|
+
was measured by
|
279
|
+
was measured with
|
280
|
+
was mediated by
|
281
|
+
was met by
|
282
|
+
was mingled with
|
283
|
+
was mobilized by
|
284
|
+
was modified by
|
285
|
+
was molded by
|
286
|
+
was monitored by
|
287
|
+
was motivated by
|
288
|
+
was moved by
|
289
|
+
was narrated by
|
290
|
+
was navigated by
|
291
|
+
was neglected by
|
292
|
+
was nurtured by
|
293
|
+
was observed by
|
294
|
+
was occupied by
|
295
|
+
was offered by
|
296
|
+
was opened by
|
297
|
+
was orchestrated by
|
298
|
+
was organized by
|
299
|
+
was oriented by
|
300
|
+
was outlined by
|
301
|
+
was overcome by
|
302
|
+
was overloaded by
|
303
|
+
was overlooked by
|
304
|
+
was overridden by
|
305
|
+
was paced by
|
306
|
+
was paid by
|
307
|
+
was painted by
|
308
|
+
was pardoned by
|
309
|
+
was parted by
|
310
|
+
was participated by
|
311
|
+
was patented by
|
312
|
+
was peered by
|
313
|
+
was penetrated by
|
314
|
+
was perceived by
|
315
|
+
was placed by
|
316
|
+
was planned by
|
317
|
+
was played by
|
318
|
+
was pocketed by
|
319
|
+
was portrayed by
|
320
|
+
was positioned by
|
321
|
+
was postponed by
|
322
|
+
was praised by
|
323
|
+
was preferred by
|
324
|
+
was prepared by
|
325
|
+
was prescribed by
|
326
|
+
was presented by
|
327
|
+
was preserved by
|
328
|
+
was pressed by
|
329
|
+
was pressed with
|
330
|
+
was prevented by
|
331
|
+
was processed by
|
332
|
+
was processed with
|
333
|
+
was proclaimed by
|
334
|
+
was produced by
|
335
|
+
was professed by
|
336
|
+
was projected by
|
337
|
+
was promised by
|
338
|
+
was promoted by
|
339
|
+
was prompted by
|
340
|
+
was propagated by
|
341
|
+
was proposed by
|
342
|
+
was protected by
|
343
|
+
was protected with
|
344
|
+
was protested by
|
345
|
+
was proved by
|
346
|
+
was published by
|
347
|
+
was pursued by
|
348
|
+
was pushed by
|
349
|
+
was questioned by
|
350
|
+
was raised by
|
351
|
+
was rallied by
|
352
|
+
was rattled by
|
353
|
+
was reacted to by
|
354
|
+
was realized by
|
355
|
+
was rebounded by
|
356
|
+
was recognized by
|
357
|
+
was recollected by
|
358
|
+
was recommended by
|
359
|
+
was recorded by
|
360
|
+
was recovered by
|
361
|
+
was recruited by
|
362
|
+
was redesigned by
|
363
|
+
was referred to by
|
364
|
+
was refined by
|
365
|
+
was reflected by
|
366
|
+
was refrained by
|
367
|
+
was regulated by
|
368
|
+
was rehearsed by
|
369
|
+
was reinforced by
|
370
|
+
was relayed by
|
371
|
+
was released by
|
372
|
+
was relocated by
|
373
|
+
was remembered by
|
374
|
+
was removed by
|
375
|
+
was repaired by
|
376
|
+
was repeated by
|
377
|
+
was reported by
|
378
|
+
was represented by
|
379
|
+
was requested by
|
380
|
+
was rescued by
|
381
|
+
was rescued with
|
382
|
+
was resonated by
|
383
|
+
was respected by
|
384
|
+
was responded to by
|
385
|
+
was rested by
|
386
|
+
was restrained by
|
387
|
+
was restricted by
|
388
|
+
was returned by
|
389
|
+
was revealed by
|
390
|
+
was rewarded by
|
391
|
+
was ridiculed by
|
392
|
+
was rounded by
|
393
|
+
was ruined by
|
394
|
+
was sacrificed by
|
395
|
+
was safeguarded by
|
396
|
+
was salvaged by
|
397
|
+
was sanctioned by
|
398
|
+
was saved by
|
399
|
+
was scavenged by
|
400
|
+
was scheduled by
|
401
|
+
was scraped by
|
402
|
+
was screamed by
|
403
|
+
was scrubbed by
|
404
|
+
was scrutinized by
|
405
|
+
was sealed by
|
406
|
+
was searched by
|
407
|
+
was secured by
|
408
|
+
was seen by
|
409
|
+
was seized by
|
410
|
+
was selected by
|
411
|
+
was separated by
|
412
|
+
was separated from
|
413
|
+
was served by
|
414
|
+
was served with
|
415
|
+
was settled by
|
416
|
+
was shaped by
|
417
|
+
was shaped with
|
418
|
+
was shared by
|
419
|
+
was shown by
|
420
|
+
was signaled by
|
421
|
+
was signed by
|
422
|
+
was sold by
|
423
|
+
was solved by
|
424
|
+
was sorted by
|
425
|
+
was sorted with
|
426
|
+
was sought by
|
427
|
+
was sparked by
|
428
|
+
was speculated by
|
429
|
+
was spoken by
|
430
|
+
was spoken with
|
431
|
+
was sponsored by
|
432
|
+
was stabilized by
|
433
|
+
was stated by
|
434
|
+
was stewarded by
|
435
|
+
was stimulated by
|
436
|
+
was stirred by
|
437
|
+
was strategized by
|
438
|
+
was structured by
|
439
|
+
was suggested by
|
440
|
+
was summarized by
|
441
|
+
was sung by
|
442
|
+
was supervised by
|
443
|
+
was supported by
|
444
|
+
was surveyed by
|
445
|
+
was survived by
|
446
|
+
was sustained by
|
447
|
+
was swayed by
|
448
|
+
was synchronized by
|
449
|
+
was synthesized by
|
450
|
+
was taken by
|
451
|
+
was taken care of by
|
452
|
+
was talked about by
|
453
|
+
was talked to by
|
454
|
+
was targeted by
|
455
|
+
was taught by
|
456
|
+
was televised by
|
457
|
+
was tested by
|
458
|
+
was thanked by
|
459
|
+
was thought of by
|
460
|
+
was tied by
|
461
|
+
was tied with
|
462
|
+
was told by
|
463
|
+
was traced by
|
464
|
+
was transferred by
|
465
|
+
was transformed by
|
466
|
+
was translated by
|
467
|
+
was transmitted by
|
468
|
+
was transpired by
|
469
|
+
was transported by
|
470
|
+
was treated by
|
471
|
+
was treated with
|
472
|
+
was triggered by
|
473
|
+
was trusted by
|
474
|
+
was undergone by
|
475
|
+
was underlined by
|
476
|
+
was understood by
|
477
|
+
was unearthed by
|
478
|
+
was unveiled by
|
479
|
+
was uplifted by
|
480
|
+
was urged by
|
481
|
+
was utilized by
|
482
|
+
was validated by
|
483
|
+
was valued by
|
484
|
+
was verified by
|
485
|
+
was voted for by
|
486
|
+
was waited for by
|
487
|
+
was waited on by
|
488
|
+
was warned by
|
489
|
+
was warranted by
|
490
|
+
was washed by
|
491
|
+
was welcomed by
|
492
|
+
was willful by
|
493
|
+
was wrapped by
|
494
|
+
was written by
|
495
|
+
was yearned by
|