├── .babelrc ├── .eslintrc ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── public └── index.html ├── src ├── components │ ├── Footer.svelte │ ├── Header.svelte │ ├── Search.svelte │ ├── Verb.svelte │ └── Verbs.svelte ├── container │ └── App.svelte ├── index.js └── initialState.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "@babel/preset-env" 4 | ], 5 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true, 4 | "es6": true 5 | }, 6 | "parserOptions": { 7 | "ecmaVersion": 2019, 8 | "sourceType": "module" 9 | }, 10 | "plugins": [ 11 | "svelte3" 12 | ], 13 | "extends": [ 14 | "eslint:recommended" 15 | ], 16 | "overrides": [ 17 | { 18 | "files": [ 19 | "**/*.svelte" 20 | ], 21 | "processor": "svelte3/svelte3" 22 | } 23 | ], 24 | "rules": { 25 | "no-unused-vars": 1 26 | }, 27 | "globals": { 28 | "window": true, 29 | "document": true, 30 | "localStorage": true, 31 | "FormData": true, 32 | "FileReader": true, 33 | "Blob": true, 34 | "navigator": true 35 | } 36 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2, 3 | "semi": false, 4 | "singleQuote": true, 5 | "trailingComma": "es5", 6 | "plugins": ["prettier-plugin-svelte"] 7 | "svelteSortOrder" : "styles-scripts-markup", 8 | "svelteStrictMode": true, 9 | "svelteBracketNewLine": true, 10 | "svelteAllowShorthand": false 11 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Oscar Barajas Tavares 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Most Common English Verbs 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "svelte-base", 3 | "version": "1.0.0", 4 | "description": "Simple Svelte Configuration", 5 | "main": "index.js", 6 | "scripts": { 7 | "build": "webpack --mode production", 8 | "start": "webpack-dev-server --open --mode development", 9 | "format": "npx prettier --write \"{,!(node_modules)/**/}*.{js,jsx}\"", 10 | "lint": "eslint src/ --fix" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "git+https://github.com/gndx/svelte-base.git" 15 | }, 16 | "keywords": [ 17 | "JavaScript", 18 | "Svelte" 19 | ], 20 | "author": "Oscar Barajas ", 21 | "license": "MIT", 22 | "bugs": { 23 | "url": "https://github.com/gndx/svelte-base/issues" 24 | }, 25 | "homepage": "https://github.com/gndx/svelte-base#readme", 26 | "dependencies": { 27 | "svelte": "^3.22.2" 28 | }, 29 | "devDependencies": { 30 | "@babel/core": "^7.9.6", 31 | "@babel/polyfill": "^7.8.7", 32 | "@babel/preset-env": "^7.9.6", 33 | "babel-loader": "^8.1.0", 34 | "eslint": "^6.8.0", 35 | "eslint-plugin-svelte3": "^2.7.3", 36 | "html-webpack-plugin": "^3.2.0", 37 | "prettier": "^1.19.1", 38 | "prettier-plugin-svelte": "^0.7.0", 39 | "svelte-loader": "^2.13.6", 40 | "webpack": "^4.43.0", 41 | "webpack-cli": "^3.3.11", 42 | "webpack-dev-server": "^3.11.0" 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Most Common English Verbs 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/components/Footer.svelte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Header.svelte: -------------------------------------------------------------------------------- 1 |
2 |

Most Common English Verbs

3 |
-------------------------------------------------------------------------------- /src/components/Search.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 18 | 19 | -------------------------------------------------------------------------------- /src/components/Verb.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 19 | 20 |
21 |
22 |
23 |

{verb.id}

24 |
25 |
26 |

{verb.type}

27 |
28 |
29 |

{verb.simpleForm}

30 |
31 |
32 |

{verb.thirdPerson}

33 |
34 |
35 |

{verb.simplePast}

36 |
37 |
38 |

{verb.pastParticiple}

39 |
40 |
41 |

{verb.gerund}

42 |
43 |
44 |

{verb.meaning}

45 |
46 |
47 |
-------------------------------------------------------------------------------- /src/components/Verbs.svelte: -------------------------------------------------------------------------------- 1 | 14 | 15 | 29 | 30 | 31 | 32 |
33 |
34 |
35 |

ID

36 |
37 |
38 |

Type

39 |
40 |
41 |

Simple Form

42 |
43 |
44 |

Third Person

45 |
46 |
47 |

Simple Past

48 |
49 |
50 |

Past Participle

51 |
52 |
53 |

Gerund

54 |
55 |
56 |

Meaning

57 |
58 |
59 |
60 | {#each searchVerbs as verb} 61 | 62 | {/each} 63 |
64 |
-------------------------------------------------------------------------------- /src/container/App.svelte: -------------------------------------------------------------------------------- 1 | 8 | 22 | 23 |
24 |
25 | {#if data} 26 | 27 | {/if} 28 |
30 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import App from './container/App.svelte'; 2 | 3 | const app = new App({ 4 | target: document.body, 5 | }); 6 | 7 | export default app; -------------------------------------------------------------------------------- /src/initialState.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "type": "I", 5 | "simpleForm": "ABIDE", 6 | "thirdPerson": "ABIDES", 7 | "simplePast": "ABODE", 8 | "pastParticiple": "ABODE", 9 | "gerund": "ABIDING", 10 | "meaning": "Morar Habitar Tolerar" 11 | }, 12 | { 13 | "id": 2, 14 | "type": "R", 15 | "simpleForm": "ABSORB", 16 | "thirdPerson": "ABSORBS", 17 | "simplePast": "ABSORBED", 18 | "pastParticiple": "ABSORBED", 19 | "gerund": "ABSORBING", 20 | "meaning": "Absorber" 21 | }, 22 | { 23 | "id": 3, 24 | "type": "R", 25 | "simpleForm": "ADD", 26 | "thirdPerson": "ADDS", 27 | "simplePast": "ADDED", 28 | "pastParticiple": "ADDED", 29 | "gerund": "ADDING", 30 | "meaning": "Añadir" 31 | }, 32 | { 33 | "id": 4, 34 | "type": "R", 35 | "simpleForm": "ADVANCE", 36 | "thirdPerson": "ADVANCES", 37 | "simplePast": "ADVANCED", 38 | "pastParticiple": "ADVANCED", 39 | "gerund": "ADVANCING", 40 | "meaning": "Avanzar" 41 | }, 42 | { 43 | "id": 5, 44 | "type": "R", 45 | "simpleForm": "AGREE", 46 | "thirdPerson": "AGREES", 47 | "simplePast": "AGREED", 48 | "pastParticiple": "AGREED", 49 | "gerund": "AGREEING", 50 | "meaning": "Acordar Estar De Acuerdo Acceder" 51 | }, 52 | { 53 | "id": 6, 54 | "type": "R", 55 | "simpleForm": "ANSWER", 56 | "thirdPerson": "ANSWERS", 57 | "simplePast": "ANSWERED", 58 | "pastParticiple": "ANSWERED", 59 | "gerund": "ANSWERING", 60 | "meaning": "Contestar-Responder" 61 | }, 62 | { 63 | "id": 7, 64 | "type": "R", 65 | "simpleForm": "APPEAR", 66 | "thirdPerson": "APPEARS", 67 | "simplePast": "APPEARED", 68 | "pastParticiple": "APPEARED", 69 | "gerund": "APPEARING", 70 | "meaning": "Aparecer" 71 | }, 72 | { 73 | "id": 8, 74 | "type": "I", 75 | "simpleForm": "ARISE", 76 | "thirdPerson": "ARISES", 77 | "simplePast": "AROSE", 78 | "pastParticiple": "ARISEN", 79 | "gerund": "ARISING", 80 | "meaning": "Sugir-Levantarse" 81 | }, 82 | { 83 | "id": 9, 84 | "type": "R", 85 | "simpleForm": "ARRIVE", 86 | "thirdPerson": "ARRIVES", 87 | "simplePast": "ARRIVED", 88 | "pastParticiple": "ARRIVED", 89 | "gerund": "ARRIVING", 90 | "meaning": "Llegar" 91 | }, 92 | { 93 | "id": 10, 94 | "type": "R", 95 | "simpleForm": "ASK", 96 | "thirdPerson": "ASKS", 97 | "simplePast": "ASKED", 98 | "pastParticiple": "ASKED", 99 | "gerund": "ASKING", 100 | "meaning": "Preguntar" 101 | }, 102 | { 103 | "id": 11, 104 | "type": "R", 105 | "simpleForm": "ASSIGN", 106 | "thirdPerson": "ASSIGNS", 107 | "simplePast": "ASSIGNED", 108 | "pastParticiple": "ASSIGNED", 109 | "gerund": "ASSIGNING", 110 | "meaning": "Asignar" 111 | }, 112 | { 113 | "id": 12, 114 | "type": "R", 115 | "simpleForm": "ASSIST", 116 | "thirdPerson": "ASSISTS", 117 | "simplePast": "ASSISTED", 118 | "pastParticiple": "ASSISTED", 119 | "gerund": "ASSISTING", 120 | "meaning": "Asistir" 121 | }, 122 | { 123 | "id": 13, 124 | "type": "R", 125 | "simpleForm": "ATTACH", 126 | "thirdPerson": "ATTACHES", 127 | "simplePast": "ATTACHED", 128 | "pastParticiple": "ATTACHED", 129 | "gerund": "ATTACHING", 130 | "meaning": "Unir-Juntar-Sujetar-Pegar" 131 | }, 132 | { 133 | "id": 14, 134 | "type": "R", 135 | "simpleForm": "ATTEND", 136 | "thirdPerson": "ATTENDS", 137 | "simplePast": "ATTENDED", 138 | "pastParticiple": "ATTENDED", 139 | "gerund": "ATTENDING", 140 | "meaning": "Atender" 141 | }, 142 | { 143 | "id": 15, 144 | "type": "I", 145 | "simpleForm": "AWAKE", 146 | "thirdPerson": "AWAKES", 147 | "simplePast": "AWOKE", 148 | "pastParticiple": "AWOKE", 149 | "gerund": "AWAKING", 150 | "meaning": "Despertar(Se)" 151 | }, 152 | { 153 | "id": 16, 154 | "type": "R", 155 | "simpleForm": "AWARD", 156 | "thirdPerson": "AWARDS", 157 | "simplePast": "AWARDED", 158 | "pastParticiple": "AWARDED", 159 | "gerund": "AWARDING", 160 | "meaning": "Otorgar" 161 | }, 162 | { 163 | "id": 17, 164 | "type": "R", 165 | "simpleForm": "BAKE", 166 | "thirdPerson": "BAKES", 167 | "simplePast": "BAKED", 168 | "pastParticiple": "BAKED", 169 | "gerund": "BAKING", 170 | "meaning": "Hornear" 171 | }, 172 | { 173 | "id": 18, 174 | "type": "R", 175 | "simpleForm": "BATHE", 176 | "thirdPerson": "BATHES", 177 | "simplePast": "BATHED", 178 | "pastParticiple": "BATHED", 179 | "gerund": "BATHING", 180 | "meaning": "Bañar" 181 | }, 182 | { 183 | "id": 19, 184 | "type": "I", 185 | "simpleForm": "BE", 186 | "thirdPerson": "IS", 187 | "simplePast": "WAS WERE", 188 | "pastParticiple": "BEEN", 189 | "gerund": "BEING", 190 | "meaning": "Ser-Estar" 191 | }, 192 | { 193 | "id": 20, 194 | "type": "I", 195 | "simpleForm": "BEAR", 196 | "thirdPerson": "BEARS", 197 | "simplePast": "BORE", 198 | "pastParticiple": "BORN", 199 | "gerund": "BEARING", 200 | "meaning": "Nacer" 201 | }, 202 | { 203 | "id": 21, 204 | "type": "I", 205 | "simpleForm": "BEAT", 206 | "thirdPerson": "BEATS", 207 | "simplePast": "BEAT", 208 | "pastParticiple": "BEATEN", 209 | "gerund": "BEATING", 210 | "meaning": "Vencer-Batir" 211 | }, 212 | { 213 | "id": 22, 214 | "type": "I", 215 | "simpleForm": "BECOME", 216 | "thirdPerson": "BECOMES", 217 | "simplePast": "BECAME", 218 | "pastParticiple": "BECOME", 219 | "gerund": "BECOMING", 220 | "meaning": "LlegarASer-Ponerse-Volverse" 221 | }, 222 | { 223 | "id": 23, 224 | "type": "I", 225 | "simpleForm": "BEFALL", 226 | "thirdPerson": "BEFALLS", 227 | "simplePast": "BEFELL", 228 | "pastParticiple": "BEFALLEN", 229 | "gerund": "BEFALLING", 230 | "meaning": "Suceder-Acontecer-Ocurrir" 231 | }, 232 | { 233 | "id": 24, 234 | "type": "I", 235 | "simpleForm": "BEGIN", 236 | "thirdPerson": "BEGINS", 237 | "simplePast": "BEGAN", 238 | "pastParticiple": "BEGUN", 239 | "gerund": "BEGINNING", 240 | "meaning": "Comenzar-Empezar" 241 | }, 242 | { 243 | "id": 25, 244 | "type": "I", 245 | "simpleForm": "BEHOLD", 246 | "thirdPerson": "BEHOLDS", 247 | "simplePast": "BEHELD", 248 | "pastParticiple": "BEHELD", 249 | "gerund": "BEHOLDING", 250 | "meaning": "Contemplar-Mirar" 251 | }, 252 | { 253 | "id": 26, 254 | "type": "R", 255 | "simpleForm": "BELIEVE", 256 | "thirdPerson": "BELIEVES", 257 | "simplePast": "BELIEVED", 258 | "pastParticiple": "BELIEVED", 259 | "gerund": "BELIEVING", 260 | "meaning": "Creer" 261 | }, 262 | { 263 | "id": 27, 264 | "type": "R", 265 | "simpleForm": "BELONG", 266 | "thirdPerson": "BELONGS", 267 | "simplePast": "BELONGED", 268 | "pastParticiple": "BELONGED", 269 | "gerund": "BELONGING", 270 | "meaning": "Pertenecer" 271 | }, 272 | { 273 | "id": 28, 274 | "type": "I", 275 | "simpleForm": "BEND", 276 | "thirdPerson": "BENDS", 277 | "simplePast": "BENT", 278 | "pastParticiple": "BENT", 279 | "gerund": "BENDING", 280 | "meaning": "Doblar(Se)-Encorvar(Se)" 281 | }, 282 | { 283 | "id": 29, 284 | "type": "I", 285 | "simpleForm": "BET", 286 | "thirdPerson": "BETS", 287 | "simplePast": "BET", 288 | "pastParticiple": "BET", 289 | "gerund": "BETTING", 290 | "meaning": "Apostar" 291 | }, 292 | { 293 | "id": 30, 294 | "type": "I", 295 | "simpleForm": "BID", 296 | "thirdPerson": "BIDS", 297 | "simplePast": "BID", 298 | "pastParticiple": "BID", 299 | "gerund": "BIDDING", 300 | "meaning": "Mandar Ordenar" 301 | }, 302 | { 303 | "id": 31, 304 | "type": "I", 305 | "simpleForm": "BIND", 306 | "thirdPerson": "BINDS", 307 | "simplePast": "BOUND", 308 | "pastParticiple": "BOUND", 309 | "gerund": "BINDING", 310 | "meaning": "Unir Ligar Atar Amarrar" 311 | }, 312 | { 313 | "id": 32, 314 | "type": "I", 315 | "simpleForm": "BITE", 316 | "thirdPerson": "BITES", 317 | "simplePast": "BIT", 318 | "pastParticiple": "BITTEN", 319 | "gerund": "BITTING", 320 | "meaning": "Morder Picar" 321 | }, 322 | { 323 | "id": 33, 324 | "type": "R", 325 | "simpleForm": "BLEED", 326 | "thirdPerson": "BLEEDS", 327 | "simplePast": "BLED", 328 | "pastParticiple": "BLED", 329 | "gerund": "BLEEDING", 330 | "meaning": "Sangrar" 331 | }, 332 | { 333 | "id": 34, 334 | "type": "I", 335 | "simpleForm": "BLOW", 336 | "thirdPerson": "BLOWS", 337 | "simplePast": "BLEW", 338 | "pastParticiple": "BLOWN", 339 | "gerund": "BLOWING", 340 | "meaning": "Soplar Ventear" 341 | }, 342 | { 343 | "id": 35, 344 | "type": "R", 345 | "simpleForm": "BLUSH", 346 | "thirdPerson": "BLUSHES", 347 | "simplePast": "BLUSHED", 348 | "pastParticiple": "BLUSHED", 349 | "gerund": "BLUSHING", 350 | "meaning": "Sonrojar" 351 | }, 352 | { 353 | "id": 36, 354 | "type": "R", 355 | "simpleForm": "BOIL", 356 | "thirdPerson": "BOILS", 357 | "simplePast": "BOILED", 358 | "pastParticiple": "BOILED", 359 | "gerund": "BOILING", 360 | "meaning": "Hervir" 361 | }, 362 | { 363 | "id": 37, 364 | "type": "R", 365 | "simpleForm": "BORROW", 366 | "thirdPerson": "BORROWS", 367 | "simplePast": "BORROWED", 368 | "pastParticiple": "BORROWED", 369 | "gerund": "BORROWING", 370 | "meaning": "Pedir prestado" 371 | }, 372 | { 373 | "id": 38, 374 | "type": "R", 375 | "simpleForm": "BOTHER", 376 | "thirdPerson": "BOTHERS", 377 | "simplePast": "BOTHERED", 378 | "pastParticiple": "BOTHERED", 379 | "gerund": "BOTHERING", 380 | "meaning": "Molestar" 381 | }, 382 | { 383 | "id": 39, 384 | "type": "I", 385 | "simpleForm": "BREAK", 386 | "thirdPerson": "BREAKS", 387 | "simplePast": "BROKE", 388 | "pastParticiple": "BROKEN", 389 | "gerund": "BREAKING", 390 | "meaning": "Quebrar Romper" 391 | }, 392 | { 393 | "id": 40, 394 | "type": "R", 395 | "simpleForm": "BREED", 396 | "thirdPerson": "BREEDS", 397 | "simplePast": "BRED", 398 | "pastParticiple": "BRED", 399 | "gerund": "BREEDING", 400 | "meaning": "Criar Educar" 401 | }, 402 | { 403 | "id": 41, 404 | "type": "I", 405 | "simpleForm": "BRING", 406 | "thirdPerson": "BRINGS", 407 | "simplePast": "BROUGHT", 408 | "pastParticiple": "BROUGHT", 409 | "gerund": "BRINGING", 410 | "meaning": "Traer Llevar" 411 | }, 412 | { 413 | "id": 42, 414 | "type": "I", 415 | "simpleForm": "BROADCAST", 416 | "thirdPerson": "BROADCASTS", 417 | "simplePast": "BROADCAST", 418 | "pastParticiple": "BROADCAST", 419 | "gerund": "BROADCASTING", 420 | "meaning": "Difundir Emitir" 421 | }, 422 | { 423 | "id": 43, 424 | "type": "R", 425 | "simpleForm": "BROIL", 426 | "thirdPerson": "BROILS", 427 | "simplePast": "BROILED", 428 | "pastParticiple": "BROILED", 429 | "gerund": "BROILING", 430 | "meaning": "Asar" 431 | }, 432 | { 433 | "id": 44, 434 | "type": "R", 435 | "simpleForm": "BROWN", 436 | "thirdPerson": "BROWNS", 437 | "simplePast": "BROWNED", 438 | "pastParticiple": "BROWNED", 439 | "gerund": "BROWNING", 440 | "meaning": "Tostar" 441 | }, 442 | { 443 | "id": 45, 444 | "type": "R", 445 | "simpleForm": "BRUSH", 446 | "thirdPerson": "BRUSHES", 447 | "simplePast": "BRUSHED", 448 | "pastParticiple": "BRUSHED", 449 | "gerund": "BRUSHING", 450 | "meaning": "Cepillar" 451 | }, 452 | { 453 | "id": 46, 454 | "type": "I", 455 | "simpleForm": "BUILD", 456 | "thirdPerson": "BUILDS", 457 | "simplePast": "BUILT", 458 | "pastParticiple": "BUILT", 459 | "gerund": "BUILDING", 460 | "meaning": "Construir Fundar Edificar" 461 | }, 462 | { 463 | "id": 47, 464 | "type": "R", 465 | "simpleForm": "BURN", 466 | "thirdPerson": "BURNS", 467 | "simplePast": "BURNT BURNED", 468 | "pastParticiple": "BURNT BURNED", 469 | "gerund": "BURNING", 470 | "meaning": "Quemar Incendiar" 471 | }, 472 | { 473 | "id": 48, 474 | "type": "I", 475 | "simpleForm": "BURST", 476 | "thirdPerson": "BURSTS", 477 | "simplePast": "BURST", 478 | "pastParticiple": "BURST", 479 | "gerund": "BURSTING", 480 | "meaning": "Estallar Reventar" 481 | }, 482 | { 483 | "id": 49, 484 | "type": "I", 485 | "simpleForm": "BUY", 486 | "thirdPerson": "BUYS", 487 | "simplePast": "BOUGHT", 488 | "pastParticiple": "BOUGHT", 489 | "gerund": "BUYING", 490 | "meaning": "Comprar Adquirir" 491 | }, 492 | { 493 | "id": 50, 494 | "type": "R", 495 | "simpleForm": "CALL", 496 | "thirdPerson": "CALLS", 497 | "simplePast": "CALLED", 498 | "pastParticiple": "CALLED", 499 | "gerund": "CALLING", 500 | "meaning": "Llamar" 501 | }, 502 | { 503 | "id": 51, 504 | "type": "R", 505 | "simpleForm": "CALM", 506 | "thirdPerson": "CALMS", 507 | "simplePast": "CALMED", 508 | "pastParticiple": "CALMED", 509 | "gerund": "CALMING", 510 | "meaning": "Calmar" 511 | }, 512 | { 513 | "id": 52, 514 | "type": "R", 515 | "simpleForm": "CAMP", 516 | "thirdPerson": "CAMPS", 517 | "simplePast": "CAMPED", 518 | "pastParticiple": "CAMPED", 519 | "gerund": "CAMPING", 520 | "meaning": "Acampar" 521 | }, 522 | { 523 | "id": 53, 524 | "type": "R", 525 | "simpleForm": "CANCEL", 526 | "thirdPerson": "CANCELS", 527 | "simplePast": "CANCELLED", 528 | "pastParticiple": "CANCELLED", 529 | "gerund": "CANCELING", 530 | "meaning": "Cancelar" 531 | }, 532 | { 533 | "id": 54, 534 | "type": "R", 535 | "simpleForm": "CARE", 536 | "thirdPerson": "CARES", 537 | "simplePast": "CARED", 538 | "pastParticiple": "CARED", 539 | "gerund": "CARING", 540 | "meaning": "Preocupar(So)Cuidar" 541 | }, 542 | { 543 | "id": 55, 544 | "type": "R", 545 | "simpleForm": "CARRY", 546 | "thirdPerson": "CARRIES", 547 | "simplePast": "CARRIED", 548 | "pastParticiple": "CARRIED", 549 | "gerund": "CARRYING", 550 | "meaning": "Llevar" 551 | }, 552 | { 553 | "id": 56, 554 | "type": "I", 555 | "simpleForm": "CAST", 556 | "thirdPerson": "CASTS", 557 | "simplePast": "CAST", 558 | "pastParticiple": "CAST", 559 | "gerund": "CASTING", 560 | "meaning": "Moldear Repartir Echar Tirar" 561 | }, 562 | { 563 | "id": 57, 564 | "type": "I", 565 | "simpleForm": "CATCH", 566 | "thirdPerson": "CATCHES", 567 | "simplePast": "CAUGHT", 568 | "pastParticiple": "CAUGHT", 569 | "gerund": "CATCHING", 570 | "meaning": "Coger Tomar Agarrar" 571 | }, 572 | { 573 | "id": 58, 574 | "type": "R", 575 | "simpleForm": "CELEBRATE", 576 | "thirdPerson": "CELEBRATES", 577 | "simplePast": "CELEBRATED", 578 | "pastParticiple": "CELEBRATED", 579 | "gerund": "CELEBRATING", 580 | "meaning": "Celebrar" 581 | }, 582 | { 583 | "id": 59, 584 | "type": "R", 585 | "simpleForm": "CHANGE", 586 | "thirdPerson": "CHANGES", 587 | "simplePast": "CHANGED", 588 | "pastParticiple": "CHANGED", 589 | "gerund": "CHANGING", 590 | "meaning": "Cambiar" 591 | }, 592 | { 593 | "id": 60, 594 | "type": "R", 595 | "simpleForm": "CHARGE", 596 | "thirdPerson": "CHARGES", 597 | "simplePast": "CHARGED", 598 | "pastParticiple": "CHARGED", 599 | "gerund": "CHARGING", 600 | "meaning": "Cargar" 601 | }, 602 | { 603 | "id": 61, 604 | "type": "R", 605 | "simpleForm": "CHEAT", 606 | "thirdPerson": "CHEATS", 607 | "simplePast": "CHEATED", 608 | "pastParticiple": "CHEATED", 609 | "gerund": "CHEATING", 610 | "meaning": "Engañar" 611 | }, 612 | { 613 | "id": 62, 614 | "type": "R", 615 | "simpleForm": "CHECK", 616 | "thirdPerson": "CHECKS", 617 | "simplePast": "CHECKED", 618 | "pastParticiple": "CHECKED", 619 | "gerund": "CHECKING", 620 | "meaning": "Comprobar Chequear Verificar" 621 | }, 622 | { 623 | "id": 63, 624 | "type": "R", 625 | "simpleForm": "CHEER", 626 | "thirdPerson": "CHEERS", 627 | "simplePast": "CHEERED", 628 | "pastParticiple": "CHEERED", 629 | "gerund": "CHEERING", 630 | "meaning": "Victorear Alegrar Animar Aplaudir" 631 | }, 632 | { 633 | "id": 64, 634 | "type": "R", 635 | "simpleForm": "CHEW", 636 | "thirdPerson": "CHEWS", 637 | "simplePast": "CHEWED", 638 | "pastParticiple": "CHEWED", 639 | "gerund": "CHEWING", 640 | "meaning": "Masticar" 641 | }, 642 | { 643 | "id": 65, 644 | "type": "R", 645 | "simpleForm": "CHILL", 646 | "thirdPerson": "CHILLS", 647 | "simplePast": "CHILLED", 648 | "pastParticiple": "CHILLED", 649 | "gerund": "CHILLING", 650 | "meaning": "Resfriar" 651 | }, 652 | { 653 | "id": 66, 654 | "type": "I", 655 | "simpleForm": "CHOOSE", 656 | "thirdPerson": "CHOOSES", 657 | "simplePast": "CHOSE", 658 | "pastParticiple": "CHOSEN", 659 | "gerund": "CHOOSING", 660 | "meaning": "Escoger Elegir Optar" 661 | }, 662 | { 663 | "id": 67, 664 | "type": "R", 665 | "simpleForm": "CIRCLE", 666 | "thirdPerson": "CIRCLES", 667 | "simplePast": "CIRCLED", 668 | "pastParticiple": "CIRCLED", 669 | "gerund": "CIRCLING", 670 | "meaning": "Rodear Hacer Un Circulo" 671 | }, 672 | { 673 | "id": 68, 674 | "type": "R", 675 | "simpleForm": "CLAP", 676 | "thirdPerson": "CLAPS", 677 | "simplePast": "CLAPPED", 678 | "pastParticiple": "CLAPPED", 679 | "gerund": "CLAPPING", 680 | "meaning": "Aplaudir" 681 | }, 682 | { 683 | "id": 69, 684 | "type": "R", 685 | "simpleForm": "CLEAN", 686 | "thirdPerson": "CLEANS", 687 | "simplePast": "CLEANED", 688 | "pastParticiple": "CLEANED", 689 | "gerund": "CLEANING", 690 | "meaning": "Limpiar" 691 | }, 692 | { 693 | "id": 70, 694 | "type": "R", 695 | "simpleForm": "CLIMB", 696 | "thirdPerson": "CLIMBS", 697 | "simplePast": "CLIMBED", 698 | "pastParticiple": "CLIMBED", 699 | "gerund": "CLIMBING", 700 | "meaning": "Subir" 701 | }, 702 | { 703 | "id": 71, 704 | "type": "I", 705 | "simpleForm": "CLING", 706 | "thirdPerson": "CLINGS", 707 | "simplePast": "CLUNG", 708 | "pastParticiple": "CLUNG", 709 | "gerund": "CLINGING", 710 | "meaning": "Agarrar Aferrarse Adherirse" 711 | }, 712 | { 713 | "id": 72, 714 | "type": "R", 715 | "simpleForm": "CLOSE", 716 | "thirdPerson": "CLOSES", 717 | "simplePast": "CLOSED", 718 | "pastParticiple": "CLOSED", 719 | "gerund": "CLOSING", 720 | "meaning": "Cerrar" 721 | }, 722 | { 723 | "id": 73, 724 | "type": "R", 725 | "simpleForm": "CLOTHE", 726 | "thirdPerson": "CLOTHES", 727 | "simplePast": "CLOTHED", 728 | "pastParticiple": "CLOTHED", 729 | "gerund": "CLOTHING", 730 | "meaning": "Vestir Arropar" 731 | }, 732 | { 733 | "id": 74, 734 | "type": "R", 735 | "simpleForm": "COLLECT", 736 | "thirdPerson": "COLLECTS", 737 | "simplePast": "COLLECTED", 738 | "pastParticiple": "COLLECTED", 739 | "gerund": "COLLECTING", 740 | "meaning": "Coleccionar" 741 | }, 742 | { 743 | "id": 75, 744 | "type": "I", 745 | "simpleForm": "COME", 746 | "thirdPerson": "COMES", 747 | "simplePast": "CAME", 748 | "pastParticiple": "COME", 749 | "gerund": "COMING", 750 | "meaning": "Venir" 751 | }, 752 | { 753 | "id": 76, 754 | "type": "R", 755 | "simpleForm": "COMMENT", 756 | "thirdPerson": "COMMENTS", 757 | "simplePast": "COMMENTED", 758 | "pastParticiple": "COMMENTED", 759 | "gerund": "COMMENTING", 760 | "meaning": "Comentar" 761 | }, 762 | { 763 | "id": 77, 764 | "type": "R", 765 | "simpleForm": "COMPLAIN", 766 | "thirdPerson": "COMPLAINS", 767 | "simplePast": "COMPLAINED", 768 | "pastParticiple": "COMPLAINED", 769 | "gerund": "COMPLAINING", 770 | "meaning": "Quejarse" 771 | }, 772 | { 773 | "id": 78, 774 | "type": "R", 775 | "simpleForm": "COMPLETE", 776 | "thirdPerson": "COMPLETES", 777 | "simplePast": "COMPLETED", 778 | "pastParticiple": "COMPLETED", 779 | "gerund": "COMPLETING", 780 | "meaning": "Completar" 781 | }, 782 | { 783 | "id": 79, 784 | "type": "R", 785 | "simpleForm": "CONTINUE", 786 | "thirdPerson": "CONTINUES", 787 | "simplePast": "CONTINUED", 788 | "pastParticiple": "CONTINUED", 789 | "gerund": "CONTINUING", 790 | "meaning": "Continuar" 791 | }, 792 | { 793 | "id": 80, 794 | "type": "R", 795 | "simpleForm": "CONVINCE", 796 | "thirdPerson": "CONVINCES", 797 | "simplePast": "CONVINCED", 798 | "pastParticiple": "CONVINCED", 799 | "gerund": "CONVINCING", 800 | "meaning": "Convencer" 801 | }, 802 | { 803 | "id": 81, 804 | "type": "R", 805 | "simpleForm": "COOK", 806 | "thirdPerson": "COOKS", 807 | "simplePast": "COOKED", 808 | "pastParticiple": "COOKED", 809 | "gerund": "COOKING", 810 | "meaning": "Cocinar" 811 | }, 812 | { 813 | "id": 82, 814 | "type": "R", 815 | "simpleForm": "COOL", 816 | "thirdPerson": "COOLS", 817 | "simplePast": "COOLED", 818 | "pastParticiple": "COOLED", 819 | "gerund": "COOLING", 820 | "meaning": "Enfriar Refrescar(Se) Calmar(Se)" 821 | }, 822 | { 823 | "id": 83, 824 | "type": "R", 825 | "simpleForm": "COPY", 826 | "thirdPerson": "COPIES", 827 | "simplePast": "COPIED", 828 | "pastParticiple": "COPIED", 829 | "gerund": "COPYING", 830 | "meaning": "Copiar" 831 | }, 832 | { 833 | "id": 84, 834 | "type": "I", 835 | "simpleForm": "COST", 836 | "thirdPerson": "COSTS", 837 | "simplePast": "COST", 838 | "pastParticiple": "COST", 839 | "gerund": "COSTING", 840 | "meaning": "Costar" 841 | }, 842 | { 843 | "id": 85, 844 | "type": "R", 845 | "simpleForm": "COUNT", 846 | "thirdPerson": "COUNTS", 847 | "simplePast": "COUNTED", 848 | "pastParticiple": "COUNTED", 849 | "gerund": "COUNTING", 850 | "meaning": "Contar" 851 | }, 852 | { 853 | "id": 86, 854 | "type": "R", 855 | "simpleForm": "COVER", 856 | "thirdPerson": "COVERS", 857 | "simplePast": "COVERED", 858 | "pastParticiple": "COVERED", 859 | "gerund": "COVERING", 860 | "meaning": "Cubrir" 861 | }, 862 | { 863 | "id": 87, 864 | "type": "I", 865 | "simpleForm": "CREEP", 866 | "thirdPerson": "CREEPS", 867 | "simplePast": "CREPT", 868 | "pastParticiple": "CREPT", 869 | "gerund": "CREEPING", 870 | "meaning": "Arrastrarse Deslizarse Gatear" 871 | }, 872 | { 873 | "id": 88, 874 | "type": "R", 875 | "simpleForm": "CROSS", 876 | "thirdPerson": "CROSSES", 877 | "simplePast": "CROSSED", 878 | "pastParticiple": "CROSSED", 879 | "gerund": "CROSSING", 880 | "meaning": "Cruzar Atravesar" 881 | }, 882 | { 883 | "id": 89, 884 | "type": "R", 885 | "simpleForm": "CRY", 886 | "thirdPerson": "CRIES", 887 | "simplePast": "CRIED", 888 | "pastParticiple": "CRIED", 889 | "gerund": "CRYING", 890 | "meaning": "Llorar Gritar" 891 | }, 892 | { 893 | "id": 90, 894 | "type": "I", 895 | "simpleForm": "CUT", 896 | "thirdPerson": "CUTS", 897 | "simplePast": "CUT", 898 | "pastParticiple": "CUT", 899 | "gerund": "CUTTING", 900 | "meaning": "Cortar Recortar" 901 | }, 902 | { 903 | "id": 91, 904 | "type": "R", 905 | "simpleForm": "DANCE", 906 | "thirdPerson": "DANCES", 907 | "simplePast": "DANCED", 908 | "pastParticiple": "DANCED", 909 | "gerund": "DANCING", 910 | "meaning": "Bailar" 911 | }, 912 | { 913 | "id": 92, 914 | "type": "I", 915 | "simpleForm": "DEAL", 916 | "thirdPerson": "DEALS", 917 | "simplePast": "DEALT", 918 | "pastParticiple": "DEALT", 919 | "gerund": "DEALING", 920 | "meaning": "Negociar Comerciar" 921 | }, 922 | { 923 | "id": 93, 924 | "type": "R", 925 | "simpleForm": "DECIDE", 926 | "thirdPerson": "DECIDES", 927 | "simplePast": "DECIDED", 928 | "pastParticiple": "DECIDED", 929 | "gerund": "DECIDING", 930 | "meaning": "Decidir" 931 | }, 932 | { 933 | "id": 94, 934 | "type": "R", 935 | "simpleForm": "DECLARE", 936 | "thirdPerson": "DECLARES", 937 | "simplePast": "DECLARED", 938 | "pastParticiple": "DECLARED", 939 | "gerund": "DECLARING", 940 | "meaning": "Declarar" 941 | }, 942 | { 943 | "id": 95, 944 | "type": "R", 945 | "simpleForm": "DECORATE", 946 | "thirdPerson": "DECORATES", 947 | "simplePast": "DECORATED", 948 | "pastParticiple": "DECORATED", 949 | "gerund": "DECORATING", 950 | "meaning": "Decorar" 951 | }, 952 | { 953 | "id": 96, 954 | "type": "R", 955 | "simpleForm": "DEFEND", 956 | "thirdPerson": "DEFENDS", 957 | "simplePast": "DEFENDED", 958 | "pastParticiple": "DEFENDED", 959 | "gerund": "DEFENDING", 960 | "meaning": "Defender" 961 | }, 962 | { 963 | "id": 97, 964 | "type": "R", 965 | "simpleForm": "DEMOSTRATE", 966 | "thirdPerson": "DEMOSTRATES", 967 | "simplePast": "DEMOSTRATED", 968 | "pastParticiple": "DEMOSTRATED", 969 | "gerund": "DEMOSTRATING", 970 | "meaning": "Demostrar" 971 | }, 972 | { 973 | "id": 98, 974 | "type": "R", 975 | "simpleForm": "DEPEND", 976 | "thirdPerson": "DEPENDS", 977 | "simplePast": "DEPENDED", 978 | "pastParticiple": "DEPENDED", 979 | "gerund": "DEPENDING", 980 | "meaning": "Depender" 981 | }, 982 | { 983 | "id": 99, 984 | "type": "R", 985 | "simpleForm": "DESCEND", 986 | "thirdPerson": "DESCENDES", 987 | "simplePast": "DESCENDED", 988 | "pastParticiple": "DESCENDED", 989 | "gerund": "DESCENDING", 990 | "meaning": "Descender Bajar" 991 | }, 992 | { 993 | "id": 100, 994 | "type": "R", 995 | "simpleForm": "DESCRIBE", 996 | "thirdPerson": "DESCRIBES", 997 | "simplePast": "DESCRIBED", 998 | "pastParticiple": "DESCRIBED", 999 | "gerund": "DESCRIBING", 1000 | "meaning": "Describir" 1001 | }, 1002 | { 1003 | "id": 101, 1004 | "type": "R", 1005 | "simpleForm": "DESTROY", 1006 | "thirdPerson": "DESTROYS", 1007 | "simplePast": "DESTROYED", 1008 | "pastParticiple": "DESTROYED", 1009 | "gerund": "DESTROYING", 1010 | "meaning": "Destruir" 1011 | }, 1012 | { 1013 | "id": 102, 1014 | "type": "R", 1015 | "simpleForm": "DICTATE", 1016 | "thirdPerson": "DICTATES", 1017 | "simplePast": "DICTATED", 1018 | "pastParticiple": "DICTATED", 1019 | "gerund": "DICTATING", 1020 | "meaning": "Dictar" 1021 | }, 1022 | { 1023 | "id": 103, 1024 | "type": "R", 1025 | "simpleForm": "DIE", 1026 | "thirdPerson": "DIES", 1027 | "simplePast": "DIED", 1028 | "pastParticiple": "DIED", 1029 | "gerund": "DYING", 1030 | "meaning": "Morir" 1031 | }, 1032 | { 1033 | "id": 104, 1034 | "type": "I", 1035 | "simpleForm": "DIG", 1036 | "thirdPerson": "DIGS", 1037 | "simplePast": "DUG", 1038 | "pastParticiple": "DUG", 1039 | "gerund": "DIGGING", 1040 | "meaning": "Cavar Excavar" 1041 | }, 1042 | { 1043 | "id": 105, 1044 | "type": "R", 1045 | "simpleForm": "DISAGREE", 1046 | "thirdPerson": "DISAGREES", 1047 | "simplePast": "DISAGREED", 1048 | "pastParticiple": "DISAGREED", 1049 | "gerund": "DISAGREEING", 1050 | "meaning": "Discrepar No Estar De Acuerdo" 1051 | }, 1052 | { 1053 | "id": 106, 1054 | "type": "R", 1055 | "simpleForm": "DISCOVER", 1056 | "thirdPerson": "DISCOVERS", 1057 | "simplePast": "DISCOVERED", 1058 | "pastParticiple": "DISCOVERED", 1059 | "gerund": "DISCOVERING", 1060 | "meaning": "Descubrir" 1061 | }, 1062 | { 1063 | "id": 107, 1064 | "type": "R", 1065 | "simpleForm": "DISCUSS", 1066 | "thirdPerson": "DISCUSSES", 1067 | "simplePast": "DISCUSSED", 1068 | "pastParticiple": "DISCUSSED", 1069 | "gerund": "DISCUSSING", 1070 | "meaning": "Discutir" 1071 | }, 1072 | { 1073 | "id": 108, 1074 | "type": "R", 1075 | "simpleForm": "DIVIDE", 1076 | "thirdPerson": "DIVIDES", 1077 | "simplePast": "DIVIDED", 1078 | "pastParticiple": "DIVIDED", 1079 | "gerund": "DIVIDING", 1080 | "meaning": "Dividir" 1081 | }, 1082 | { 1083 | "id": 109, 1084 | "type": "I", 1085 | "simpleForm": "DO", 1086 | "thirdPerson": "DOES", 1087 | "simplePast": "DID", 1088 | "pastParticiple": "DONE", 1089 | "gerund": "DOING", 1090 | "meaning": "Hacer" 1091 | }, 1092 | { 1093 | "id": 110, 1094 | "type": "R", 1095 | "simpleForm": "DRAIN", 1096 | "thirdPerson": "DRAINS", 1097 | "simplePast": "DRAINED", 1098 | "pastParticiple": "DRAINED", 1099 | "gerund": "DRAINING", 1100 | "meaning": "Agotar" 1101 | }, 1102 | { 1103 | "id": 111, 1104 | "type": "I", 1105 | "simpleForm": "DRAW", 1106 | "thirdPerson": "DRAWS", 1107 | "simplePast": "DREW", 1108 | "pastParticiple": "DRAWN", 1109 | "gerund": "DRAWING", 1110 | "meaning": "Dibujar Trazar" 1111 | }, 1112 | { 1113 | "id": 112, 1114 | "type": "R", 1115 | "simpleForm": "DREAM", 1116 | "thirdPerson": "DREAMS", 1117 | "simplePast": "DREAMED", 1118 | "pastParticiple": "DREAMT DREAMEDDREAMING", 1119 | "gerund": "Soñar", 1120 | "meaning": "" 1121 | }, 1122 | { 1123 | "id": 113, 1124 | "type": "R", 1125 | "simpleForm": "DRESS", 1126 | "thirdPerson": "DRESSES", 1127 | "simplePast": "DRESSED", 1128 | "pastParticiple": "DRESSED", 1129 | "gerund": "DRESSING", 1130 | "meaning": "Vestir" 1131 | }, 1132 | { 1133 | "id": 114, 1134 | "type": "I", 1135 | "simpleForm": "DRINK", 1136 | "thirdPerson": "DRINKS", 1137 | "simplePast": "DRANK", 1138 | "pastParticiple": "DRUNK", 1139 | "gerund": "DRINKING", 1140 | "meaning": "Beber Tomar" 1141 | }, 1142 | { 1143 | "id": 115, 1144 | "type": "I", 1145 | "simpleForm": "DRIVE", 1146 | "thirdPerson": "DRIVES", 1147 | "simplePast": "DROVE", 1148 | "pastParticiple": "DRIVEN", 1149 | "gerund": "DRIVING", 1150 | "meaning": "Manejar Conducir" 1151 | }, 1152 | { 1153 | "id": 116, 1154 | "type": "R", 1155 | "simpleForm": "DROP", 1156 | "thirdPerson": "DROPS", 1157 | "simplePast": "DROPPED", 1158 | "pastParticiple": "DROPPED", 1159 | "gerund": "DROPPING", 1160 | "meaning": "Bajar Soltar" 1161 | }, 1162 | { 1163 | "id": 117, 1164 | "type": "R", 1165 | "simpleForm": "DUST", 1166 | "thirdPerson": "DUSTS", 1167 | "simplePast": "DUSTED", 1168 | "pastParticiple": "DUSTED", 1169 | "gerund": "DUSTING", 1170 | "meaning": "Desempolvar" 1171 | }, 1172 | { 1173 | "id": 118, 1174 | "type": "I", 1175 | "simpleForm": "DWELL", 1176 | "thirdPerson": "DWELLS", 1177 | "simplePast": "DWELT", 1178 | "pastParticiple": "DWELT", 1179 | "gerund": "DWELLING", 1180 | "meaning": "Residir Morar Habitar" 1181 | }, 1182 | { 1183 | "id": 119, 1184 | "type": "I", 1185 | "simpleForm": "EAT", 1186 | "thirdPerson": "EATS", 1187 | "simplePast": "ATE", 1188 | "pastParticiple": "EATEN", 1189 | "gerund": "EATING", 1190 | "meaning": "Comer" 1191 | }, 1192 | { 1193 | "id": 120, 1194 | "type": "R", 1195 | "simpleForm": "EMPTY", 1196 | "thirdPerson": "EMPTIES", 1197 | "simplePast": "EMPTIED", 1198 | "pastParticiple": "EMPTIED", 1199 | "gerund": "EMPTYING", 1200 | "meaning": "Vaciar" 1201 | }, 1202 | { 1203 | "id": 121, 1204 | "type": "R", 1205 | "simpleForm": "END", 1206 | "thirdPerson": "ENDS", 1207 | "simplePast": "ENDED", 1208 | "pastParticiple": "ENDED", 1209 | "gerund": "ENDING", 1210 | "meaning": "Terminar" 1211 | }, 1212 | { 1213 | "id": 122, 1214 | "type": "R", 1215 | "simpleForm": "ENJOY", 1216 | "thirdPerson": "ENJOYES", 1217 | "simplePast": "ENJOYED", 1218 | "pastParticiple": "ENJOYED", 1219 | "gerund": "ENJOYING", 1220 | "meaning": "Gozar(De) Disfrutar" 1221 | }, 1222 | { 1223 | "id": 123, 1224 | "type": "R", 1225 | "simpleForm": "ENROLL", 1226 | "thirdPerson": "ENROLLS", 1227 | "simplePast": "ENROLLED", 1228 | "pastParticiple": "ENROLLED", 1229 | "gerund": "ENROLLING", 1230 | "meaning": "Matricular" 1231 | }, 1232 | { 1233 | "id": 124, 1234 | "type": "R", 1235 | "simpleForm": "ENTER", 1236 | "thirdPerson": "ENTERS", 1237 | "simplePast": "ENTERED", 1238 | "pastParticiple": "ENTERED", 1239 | "gerund": "ENTERING", 1240 | "meaning": "Entrar" 1241 | }, 1242 | { 1243 | "id": 125, 1244 | "type": "R", 1245 | "simpleForm": "ERASE", 1246 | "thirdPerson": "ERASES", 1247 | "simplePast": "ERASED", 1248 | "pastParticiple": "ERASED", 1249 | "gerund": "ERASING", 1250 | "meaning": "Borrar" 1251 | }, 1252 | { 1253 | "id": 126, 1254 | "type": "R", 1255 | "simpleForm": "EXCUSE", 1256 | "thirdPerson": "EXCUSES", 1257 | "simplePast": "EXCUSED", 1258 | "pastParticiple": "EXCUSED", 1259 | "gerund": "EXCUSING", 1260 | "meaning": "Excusar" 1261 | }, 1262 | { 1263 | "id": 127, 1264 | "type": "R", 1265 | "simpleForm": "EXERCISE", 1266 | "thirdPerson": "EXERCISES", 1267 | "simplePast": "EXERCISED", 1268 | "pastParticiple": "EXERCISED", 1269 | "gerund": "EXERCISING", 1270 | "meaning": "Ejercitar(Se)" 1271 | }, 1272 | { 1273 | "id": 128, 1274 | "type": "R", 1275 | "simpleForm": "EXPECT", 1276 | "thirdPerson": "EXPECTS", 1277 | "simplePast": "EXPECTED", 1278 | "pastParticiple": "EXPECTED", 1279 | "gerund": "EXPECTING", 1280 | "meaning": "Esperar" 1281 | }, 1282 | { 1283 | "id": 129, 1284 | "type": "R", 1285 | "simpleForm": "EXPLAIN", 1286 | "thirdPerson": "EXPLAINS", 1287 | "simplePast": "EXPLAINED", 1288 | "pastParticiple": "EXPLAINED", 1289 | "gerund": "EXPLAINING", 1290 | "meaning": "Explicar" 1291 | }, 1292 | { 1293 | "id": 130, 1294 | "type": "R", 1295 | "simpleForm": "FADE", 1296 | "thirdPerson": "FADES", 1297 | "simplePast": "FADED", 1298 | "pastParticiple": "FADED", 1299 | "gerund": "FADING", 1300 | "meaning": "Desteñir Desvanecer(se)" 1301 | }, 1302 | { 1303 | "id": 131, 1304 | "type": "R", 1305 | "simpleForm": "FAIL", 1306 | "thirdPerson": "FAILS", 1307 | "simplePast": "FAILED", 1308 | "pastParticiple": "FAILED", 1309 | "gerund": "FAILING", 1310 | "meaning": "Fallar Fracasar Perder" 1311 | }, 1312 | { 1313 | "id": 132, 1314 | "type": "I", 1315 | "simpleForm": "FALL", 1316 | "thirdPerson": "FALLS", 1317 | "simplePast": "FELL", 1318 | "pastParticiple": "FALLEN", 1319 | "gerund": "FALLING", 1320 | "meaning": "Caer(Se)" 1321 | }, 1322 | { 1323 | "id": 133, 1324 | "type": "R", 1325 | "simpleForm": "FASTEN", 1326 | "thirdPerson": "FASTENS", 1327 | "simplePast": "FASTENED", 1328 | "pastParticiple": "FASTENED", 1329 | "gerund": "FASTENING", 1330 | "meaning": "Abrochar" 1331 | }, 1332 | { 1333 | "id": 134, 1334 | "type": "R", 1335 | "simpleForm": "FEAR", 1336 | "thirdPerson": "FEARS", 1337 | "simplePast": "FEARED", 1338 | "pastParticiple": "FEARED", 1339 | "gerund": "FEARING", 1340 | "meaning": "Temer" 1341 | }, 1342 | { 1343 | "id": 135, 1344 | "type": "R", 1345 | "simpleForm": "FEED", 1346 | "thirdPerson": "FEEDS", 1347 | "simplePast": "FED", 1348 | "pastParticiple": "FED", 1349 | "gerund": "FEEDING", 1350 | "meaning": "Alimentar(Se)" 1351 | }, 1352 | { 1353 | "id": 136, 1354 | "type": "I", 1355 | "simpleForm": "FEEL", 1356 | "thirdPerson": "FEELS", 1357 | "simplePast": "FELT", 1358 | "pastParticiple": "FELT", 1359 | "gerund": "FEELING", 1360 | "meaning": "Sentir" 1361 | }, 1362 | { 1363 | "id": 137, 1364 | "type": "I", 1365 | "simpleForm": "FIGHT", 1366 | "thirdPerson": "FIGHTS", 1367 | "simplePast": "FOUGHT", 1368 | "pastParticiple": "FOUGHT", 1369 | "gerund": "FIGHTING", 1370 | "meaning": "Pelear Luchar" 1371 | }, 1372 | { 1373 | "id": 138, 1374 | "type": "R", 1375 | "simpleForm": "FILL", 1376 | "thirdPerson": "FILLS", 1377 | "simplePast": "FILLED", 1378 | "pastParticiple": "FILLED", 1379 | "gerund": "FILLINING", 1380 | "meaning": "Llenar Rellenar" 1381 | }, 1382 | { 1383 | "id": 139, 1384 | "type": "I", 1385 | "simpleForm": "FIND", 1386 | "thirdPerson": "FINDS", 1387 | "simplePast": "FOUND", 1388 | "pastParticiple": "FOUND", 1389 | "gerund": "FINDING", 1390 | "meaning": "Encontrar Hallar" 1391 | }, 1392 | { 1393 | "id": 140, 1394 | "type": "R", 1395 | "simpleForm": "FINISH", 1396 | "thirdPerson": "FINISHES", 1397 | "simplePast": "FINISHED", 1398 | "pastParticiple": "FINISHED", 1399 | "gerund": "FINISHING", 1400 | "meaning": "Acabar(Con) Terminar" 1401 | }, 1402 | { 1403 | "id": 141, 1404 | "type": "R", 1405 | "simpleForm": "FISH", 1406 | "thirdPerson": "FISHES", 1407 | "simplePast": "FISHED", 1408 | "pastParticiple": "FISHED", 1409 | "gerund": "FISHING", 1410 | "meaning": "Pescar" 1411 | }, 1412 | { 1413 | "id": 142, 1414 | "type": "R", 1415 | "simpleForm": "FIT", 1416 | "thirdPerson": "FITS", 1417 | "simplePast": "FITTED", 1418 | "pastParticiple": "FITTED", 1419 | "gerund": "FITTING", 1420 | "meaning": "Caber Encajar Ajustar" 1421 | }, 1422 | { 1423 | "id": 143, 1424 | "type": "R", 1425 | "simpleForm": "FIX", 1426 | "thirdPerson": "FIXES", 1427 | "simplePast": "FIXED", 1428 | "pastParticiple": "FIXED", 1429 | "gerund": "FIXING", 1430 | "meaning": "Arreglar" 1431 | }, 1432 | { 1433 | "id": 144, 1434 | "type": "R", 1435 | "simpleForm": "FLEE", 1436 | "thirdPerson": "FLEES", 1437 | "simplePast": "FLED", 1438 | "pastParticiple": "FLED", 1439 | "gerund": "FLEEING", 1440 | "meaning": "Evitar Huir De" 1441 | }, 1442 | { 1443 | "id": 145, 1444 | "type": "I", 1445 | "simpleForm": "FLING", 1446 | "thirdPerson": "FLINGS", 1447 | "simplePast": "FLUNG", 1448 | "pastParticiple": "FLUNG", 1449 | "gerund": "FLINGING", 1450 | "meaning": "Arrojar Lanzar Tirar" 1451 | }, 1452 | { 1453 | "id": 146, 1454 | "type": "R", 1455 | "simpleForm": "FLUNK", 1456 | "thirdPerson": "FLUNK", 1457 | "simplePast": "FLUNKED", 1458 | "pastParticiple": "FLUNKED", 1459 | "gerund": "FLUNKING", 1460 | "meaning": "Fracasar" 1461 | }, 1462 | { 1463 | "id": 147, 1464 | "type": "I", 1465 | "simpleForm": "FLY", 1466 | "thirdPerson": "FLIES", 1467 | "simplePast": "FLEW", 1468 | "pastParticiple": "FLOWN", 1469 | "gerund": "FLYING", 1470 | "meaning": "Volar Huir" 1471 | }, 1472 | { 1473 | "id": 148, 1474 | "type": "R", 1475 | "simpleForm": "FOLLOW", 1476 | "thirdPerson": "FOLLOWS", 1477 | "simplePast": "FOLLOWED", 1478 | "pastParticiple": "FOLLOWED", 1479 | "gerund": "FOLLOWING", 1480 | "meaning": "Seguir" 1481 | }, 1482 | { 1483 | "id": 149, 1484 | "type": "I", 1485 | "simpleForm": "FORBID", 1486 | "thirdPerson": "FORBIDS", 1487 | "simplePast": "FORBADE", 1488 | "pastParticiple": "FORBIDDEN", 1489 | "gerund": "FORBIDDING", 1490 | "meaning": "Prohibir Privar" 1491 | }, 1492 | { 1493 | "id": 150, 1494 | "type": "I", 1495 | "simpleForm": "FORECAST", 1496 | "thirdPerson": "FORECASTS", 1497 | "simplePast": "FORECAST", 1498 | "pastParticiple": "FORECAST", 1499 | "gerund": "FORECASTING", 1500 | "meaning": "Pronosticar" 1501 | }, 1502 | { 1503 | "id": 151, 1504 | "type": "I", 1505 | "simpleForm": "FORGET", 1506 | "thirdPerson": "FORGETS", 1507 | "simplePast": "FORGOT", 1508 | "pastParticiple": "FORGOTTEN", 1509 | "gerund": "FORGETING", 1510 | "meaning": "Olvidar" 1511 | }, 1512 | { 1513 | "id": 152, 1514 | "type": "I", 1515 | "simpleForm": "FORGIVE", 1516 | "thirdPerson": "FORGIVES", 1517 | "simplePast": "FORGAVE", 1518 | "pastParticiple": "FORGIVEN", 1519 | "gerund": "FORGIVING", 1520 | "meaning": "Perdonar" 1521 | }, 1522 | { 1523 | "id": 153, 1524 | "type": "I", 1525 | "simpleForm": "FORSAKE", 1526 | "thirdPerson": "FORSAKES", 1527 | "simplePast": "FORSOOK", 1528 | "pastParticiple": "FORSAKEN", 1529 | "gerund": "FORSAKING", 1530 | "meaning": "Abandonar Dejar" 1531 | }, 1532 | { 1533 | "id": 154, 1534 | "type": "I", 1535 | "simpleForm": "FREEZE", 1536 | "thirdPerson": "FREEZES", 1537 | "simplePast": "FROZE", 1538 | "pastParticiple": "FROZEN", 1539 | "gerund": "FREEZING", 1540 | "meaning": "Congelar Helar" 1541 | }, 1542 | { 1543 | "id": 155, 1544 | "type": "R", 1545 | "simpleForm": "FRY", 1546 | "thirdPerson": "FRIES", 1547 | "simplePast": "FRIED", 1548 | "pastParticiple": "FRIED", 1549 | "gerund": "FRYING", 1550 | "meaning": "Freir(Se)" 1551 | }, 1552 | { 1553 | "id": 156, 1554 | "type": "I", 1555 | "simpleForm": "GET", 1556 | "thirdPerson": "GETS", 1557 | "simplePast": "GOT", 1558 | "pastParticiple": "GOTTEN", 1559 | "gerund": "GETTING", 1560 | "meaning": "Conseguir Obtener" 1561 | }, 1562 | { 1563 | "id": 157, 1564 | "type": "I", 1565 | "simpleForm": "GIVE", 1566 | "thirdPerson": "GIVES", 1567 | "simplePast": "GAVE", 1568 | "pastParticiple": "GIVEN", 1569 | "gerund": "GIVING", 1570 | "meaning": "Dar Regalar" 1571 | }, 1572 | { 1573 | "id": 158, 1574 | "type": "I", 1575 | "simpleForm": "GO", 1576 | "thirdPerson": "GOES", 1577 | "simplePast": "WENT", 1578 | "pastParticiple": "GONE", 1579 | "gerund": "GOING", 1580 | "meaning": "Ir" 1581 | }, 1582 | { 1583 | "id": 159, 1584 | "type": "R", 1585 | "simpleForm": "GRADE", 1586 | "thirdPerson": "GRADES", 1587 | "simplePast": "GRADED", 1588 | "pastParticiple": "GRADED", 1589 | "gerund": "GRADING", 1590 | "meaning": "Graduar Calificar Clasificar" 1591 | }, 1592 | { 1593 | "id": 160, 1594 | "type": "R", 1595 | "simpleForm": "GRATE", 1596 | "thirdPerson": "GRATES", 1597 | "simplePast": "GRATED", 1598 | "pastParticiple": "GRATED", 1599 | "gerund": "GRATING", 1600 | "meaning": "Rallar Raspar" 1601 | }, 1602 | { 1603 | "id": 161, 1604 | "type": "R", 1605 | "simpleForm": "GRILL", 1606 | "thirdPerson": "GRILLS", 1607 | "simplePast": "GRILLED", 1608 | "pastParticiple": "GRILLED", 1609 | "gerund": "GRILLING", 1610 | "meaning": "Asar En Parrilla" 1611 | }, 1612 | { 1613 | "id": 162, 1614 | "type": "I", 1615 | "simpleForm": "GRIND", 1616 | "thirdPerson": "GRINDS", 1617 | "simplePast": "GROUND", 1618 | "pastParticiple": "GROUND", 1619 | "gerund": "GRINDING", 1620 | "meaning": "Moler Triturar" 1621 | }, 1622 | { 1623 | "id": 163, 1624 | "type": "I", 1625 | "simpleForm": "GROW", 1626 | "thirdPerson": "GROWS", 1627 | "simplePast": "GREW", 1628 | "pastParticiple": "GROWN", 1629 | "gerund": "GROWING", 1630 | "meaning": "Crecer Brotar" 1631 | }, 1632 | { 1633 | "id": 164, 1634 | "type": "I", 1635 | "simpleForm": "HAND IN", 1636 | "thirdPerson": "HANDS IN", 1637 | "simplePast": "HANDED IN", 1638 | "pastParticiple": "HANDED IN", 1639 | "gerund": "HANDING IN", 1640 | "meaning": "Entregar Presentar" 1641 | }, 1642 | { 1643 | "id": 165, 1644 | "type": "I", 1645 | "simpleForm": "HAND OUT", 1646 | "thirdPerson": "HANDS OUT", 1647 | "simplePast": "HANDED OUT", 1648 | "pastParticiple": "HANDED OUT", 1649 | "gerund": "HANDING OUT", 1650 | "meaning": "Dar Distribuir" 1651 | }, 1652 | { 1653 | "id": 166, 1654 | "type": "I", 1655 | "simpleForm": "HANG", 1656 | "thirdPerson": "HANGS", 1657 | "simplePast": "HUNG", 1658 | "pastParticiple": "HUNG", 1659 | "gerund": "HANGING", 1660 | "meaning": "Colgar Suspender" 1661 | }, 1662 | { 1663 | "id": 167, 1664 | "type": "R", 1665 | "simpleForm": "HAPPEN", 1666 | "thirdPerson": "HAPPENS", 1667 | "simplePast": "HAPPENED", 1668 | "pastParticiple": "HAPPENED", 1669 | "gerund": "HAPPENING", 1670 | "meaning": "Suceder Ocurrir Pasar" 1671 | }, 1672 | { 1673 | "id": 168, 1674 | "type": "R", 1675 | "simpleForm": "HATE", 1676 | "thirdPerson": "HATES", 1677 | "simplePast": "HATED", 1678 | "pastParticiple": "HATED", 1679 | "gerund": "HATING", 1680 | "meaning": "Odiar Aborrecer Detestar" 1681 | }, 1682 | { 1683 | "id": 169, 1684 | "type": "I", 1685 | "simpleForm": "HAVE", 1686 | "thirdPerson": "HAS", 1687 | "simplePast": "HAD", 1688 | "pastParticiple": "HAD", 1689 | "gerund": "HAVING", 1690 | "meaning": "Haber Tener" 1691 | }, 1692 | { 1693 | "id": 170, 1694 | "type": "I", 1695 | "simpleForm": "HEAR", 1696 | "thirdPerson": "HEARS", 1697 | "simplePast": "HEARD", 1698 | "pastParticiple": "HEARD", 1699 | "gerund": "HEARING", 1700 | "meaning": "Oir" 1701 | }, 1702 | { 1703 | "id": 171, 1704 | "type": "R", 1705 | "simpleForm": "HELP", 1706 | "thirdPerson": "HELPS", 1707 | "simplePast": "HELPED", 1708 | "pastParticiple": "HELPED", 1709 | "gerund": "HELPING", 1710 | "meaning": "Ayudar Socorrer" 1711 | }, 1712 | { 1713 | "id": 172, 1714 | "type": "I", 1715 | "simpleForm": "HIDE", 1716 | "thirdPerson": "HIDES", 1717 | "simplePast": "HID", 1718 | "pastParticiple": "HIDDEN", 1719 | "gerund": "HIDING", 1720 | "meaning": "Ocultar Esconder" 1721 | }, 1722 | { 1723 | "id": 173, 1724 | "type": "I", 1725 | "simpleForm": "HIT", 1726 | "thirdPerson": "HITS", 1727 | "simplePast": "HIT", 1728 | "pastParticiple": "HIT", 1729 | "gerund": "HITTING", 1730 | "meaning": "Golpear Pegar" 1731 | }, 1732 | { 1733 | "id": 174, 1734 | "type": "I", 1735 | "simpleForm": "HOLD", 1736 | "thirdPerson": "HOLDS", 1737 | "simplePast": "HELD", 1738 | "pastParticiple": "HELD", 1739 | "gerund": "HOLDING", 1740 | "meaning": "Sostener Retener" 1741 | }, 1742 | { 1743 | "id": 175, 1744 | "type": "R", 1745 | "simpleForm": "HURRY", 1746 | "thirdPerson": "HURRIES", 1747 | "simplePast": "HURRIED", 1748 | "pastParticiple": "HURRIED", 1749 | "gerund": "HURRYING", 1750 | "meaning": "Apresurar(Se)" 1751 | }, 1752 | { 1753 | "id": 176, 1754 | "type": "I", 1755 | "simpleForm": "HURT", 1756 | "thirdPerson": "HURTS", 1757 | "simplePast": "HURT", 1758 | "pastParticiple": "HURT", 1759 | "gerund": "HURTING", 1760 | "meaning": "Herir Lastimar" 1761 | }, 1762 | { 1763 | "id": 177, 1764 | "type": "R", 1765 | "simpleForm": "IDENTIFY", 1766 | "thirdPerson": "IDENTIFIES", 1767 | "simplePast": "IDENTIFIED", 1768 | "pastParticiple": "IDENTIFIED", 1769 | "gerund": "IDENTIFYING", 1770 | "meaning": "Identificar" 1771 | }, 1772 | { 1773 | "id": 178, 1774 | "type": "R", 1775 | "simpleForm": "IMAGINE", 1776 | "thirdPerson": "IMAGINES", 1777 | "simplePast": "IMAGINED", 1778 | "pastParticiple": "IMAGINED", 1779 | "gerund": "IMAGINING", 1780 | "meaning": "Imaginar" 1781 | }, 1782 | { 1783 | "id": 179, 1784 | "type": "R", 1785 | "simpleForm": "IMITATE", 1786 | "thirdPerson": "IMITATES", 1787 | "simplePast": "IMITATED", 1788 | "pastParticiple": "IMITATED", 1789 | "gerund": "IMITATING", 1790 | "meaning": "Imitar" 1791 | }, 1792 | { 1793 | "id": 180, 1794 | "type": "R", 1795 | "simpleForm": "INCLUDE", 1796 | "thirdPerson": "INCLUDES", 1797 | "simplePast": "INCLUDED", 1798 | "pastParticiple": "INCLUDED", 1799 | "gerund": "INCLUDING", 1800 | "meaning": "Incluir" 1801 | }, 1802 | { 1803 | "id": 181, 1804 | "type": "R", 1805 | "simpleForm": "INSPECT", 1806 | "thirdPerson": "INSPECTS", 1807 | "simplePast": "INSPECTED", 1808 | "pastParticiple": "INSPECTED", 1809 | "gerund": "INSPECTING", 1810 | "meaning": "Inspeccionar" 1811 | }, 1812 | { 1813 | "id": 182, 1814 | "type": "R", 1815 | "simpleForm": "INVITE", 1816 | "thirdPerson": "INVITES", 1817 | "simplePast": "INVITED", 1818 | "pastParticiple": "INVITED", 1819 | "gerund": "INVITING", 1820 | "meaning": "Invitar" 1821 | }, 1822 | { 1823 | "id": 183, 1824 | "type": "R", 1825 | "simpleForm": "JOG", 1826 | "thirdPerson": "JOGS", 1827 | "simplePast": "JOGGED", 1828 | "pastParticiple": "JOGGED", 1829 | "gerund": "JOGGING", 1830 | "meaning": "Trotar" 1831 | }, 1832 | { 1833 | "id": 184, 1834 | "type": "R", 1835 | "simpleForm": "JUMP", 1836 | "thirdPerson": "JUMPS", 1837 | "simplePast": "JUMPED", 1838 | "pastParticiple": "JUMPED", 1839 | "gerund": "JUMPING", 1840 | "meaning": "Saltar Brincar" 1841 | }, 1842 | { 1843 | "id": 185, 1844 | "type": "I", 1845 | "simpleForm": "KEEP", 1846 | "thirdPerson": "KEEPS", 1847 | "simplePast": "KEPT", 1848 | "pastParticiple": "KEPT", 1849 | "gerund": "KEEPING", 1850 | "meaning": "Guardar Mantener" 1851 | }, 1852 | { 1853 | "id": 186, 1854 | "type": "R", 1855 | "simpleForm": "KICK", 1856 | "thirdPerson": "KICKS", 1857 | "simplePast": "KICKED", 1858 | "pastParticiple": "KICKED", 1859 | "gerund": "KICKING", 1860 | "meaning": "Patear" 1861 | }, 1862 | { 1863 | "id": 187, 1864 | "type": "R", 1865 | "simpleForm": "KILL", 1866 | "thirdPerson": "KILLS", 1867 | "simplePast": "KILLED", 1868 | "pastParticiple": "KILLED", 1869 | "gerund": "KILLING", 1870 | "meaning": "Matar" 1871 | }, 1872 | { 1873 | "id": 188, 1874 | "type": "R", 1875 | "simpleForm": "KISS", 1876 | "thirdPerson": "KISSES", 1877 | "simplePast": "KISSED", 1878 | "pastParticiple": "KISSED", 1879 | "gerund": "KISSING", 1880 | "meaning": "Besar" 1881 | }, 1882 | { 1883 | "id": 189, 1884 | "type": "I", 1885 | "simpleForm": "KNOW", 1886 | "thirdPerson": "KNOWS", 1887 | "simplePast": "KNEW", 1888 | "pastParticiple": "KNOWN", 1889 | "gerund": "KNOWING", 1890 | "meaning": "Saber Conocer" 1891 | }, 1892 | { 1893 | "id": 190, 1894 | "type": "R", 1895 | "simpleForm": "LAND", 1896 | "thirdPerson": "LANDS", 1897 | "simplePast": "LANDED", 1898 | "pastParticiple": "LANDED", 1899 | "gerund": "LANDING", 1900 | "meaning": "Aterrizar Desembarcar" 1901 | }, 1902 | { 1903 | "id": 191, 1904 | "type": "R", 1905 | "simpleForm": "LAUGH", 1906 | "thirdPerson": "LAUGHS", 1907 | "simplePast": "LAUGHED", 1908 | "pastParticiple": "LAUGHED", 1909 | "gerund": "LAUGHING", 1910 | "meaning": "Reir(Se)" 1911 | }, 1912 | { 1913 | "id": 192, 1914 | "type": "I", 1915 | "simpleForm": "LAY", 1916 | "thirdPerson": "LAYS", 1917 | "simplePast": "LAID", 1918 | "pastParticiple": "LAID", 1919 | "gerund": "LAYING", 1920 | "meaning": "Poner Colocar Echar" 1921 | }, 1922 | { 1923 | "id": 193, 1924 | "type": "R", 1925 | "simpleForm": "LEAD", 1926 | "thirdPerson": "LEADS", 1927 | "simplePast": "LED", 1928 | "pastParticiple": "LED", 1929 | "gerund": "LEADING", 1930 | "meaning": "Conducir Liderar" 1931 | }, 1932 | { 1933 | "id": 194, 1934 | "type": "R", 1935 | "simpleForm": "LEARN", 1936 | "thirdPerson": "LEARNS", 1937 | "simplePast": "LEARNED", 1938 | "pastParticiple": "LEARNED", 1939 | "gerund": "LEARNING", 1940 | "meaning": "Aprender" 1941 | }, 1942 | { 1943 | "id": 195, 1944 | "type": "I", 1945 | "simpleForm": "LEAVE", 1946 | "thirdPerson": "LEAVES", 1947 | "simplePast": "LEFT", 1948 | "pastParticiple": "LEFT", 1949 | "gerund": "LEAVING", 1950 | "meaning": "Salir Abandonar" 1951 | }, 1952 | { 1953 | "id": 196, 1954 | "type": "I", 1955 | "simpleForm": "LEND", 1956 | "thirdPerson": "LENDS", 1957 | "simplePast": "LENT", 1958 | "pastParticiple": "LENT", 1959 | "gerund": "LENDING", 1960 | "meaning": "Prestar" 1961 | }, 1962 | { 1963 | "id": 197, 1964 | "type": "I", 1965 | "simpleForm": "LET", 1966 | "thirdPerson": "LETS", 1967 | "simplePast": "LET", 1968 | "pastParticiple": "LET", 1969 | "gerund": "LETTING", 1970 | "meaning": "Dejar Permitir" 1971 | }, 1972 | { 1973 | "id": 198, 1974 | "type": "R", 1975 | "simpleForm": "LICK", 1976 | "thirdPerson": "LICKS", 1977 | "simplePast": "LICKED", 1978 | "pastParticiple": "LICKED", 1979 | "gerund": "LICKING", 1980 | "meaning": "Lamer Adular" 1981 | }, 1982 | { 1983 | "id": 199, 1984 | "type": "I", 1985 | "simpleForm": "LIE", 1986 | "thirdPerson": "LIES", 1987 | "simplePast": "LAY", 1988 | "pastParticiple": "LAIN", 1989 | "gerund": "LYING", 1990 | "meaning": "Mentir" 1991 | }, 1992 | { 1993 | "id": 200, 1994 | "type": "I", 1995 | "simpleForm": "LIGHT", 1996 | "thirdPerson": "LIGHTS", 1997 | "simplePast": "LIT", 1998 | "pastParticiple": "LIT", 1999 | "gerund": "LIGHTING", 2000 | "meaning": "Encender Prender" 2001 | }, 2002 | { 2003 | "id": 201, 2004 | "type": "R", 2005 | "simpleForm": "LIKE", 2006 | "thirdPerson": "LIKES", 2007 | "simplePast": "LIKED", 2008 | "pastParticiple": "LIKED", 2009 | "gerund": "LIKING", 2010 | "meaning": "Gustar Querer" 2011 | }, 2012 | { 2013 | "id": 202, 2014 | "type": "R", 2015 | "simpleForm": "LISTEN TO", 2016 | "thirdPerson": "LISTENS TO", 2017 | "simplePast": "LISTENED TO", 2018 | "pastParticiple": "LISTENED TO", 2019 | "gerund": "LISTENING TO", 2020 | "meaning": "Escuchar" 2021 | }, 2022 | { 2023 | "id": 203, 2024 | "type": "R", 2025 | "simpleForm": "LIVE", 2026 | "thirdPerson": "LIVES", 2027 | "simplePast": "LIVED", 2028 | "pastParticiple": "LIVED", 2029 | "gerund": "LIVING", 2030 | "meaning": "Vivir" 2031 | }, 2032 | { 2033 | "id": 204, 2034 | "type": "R", 2035 | "simpleForm": "LOOK", 2036 | "thirdPerson": "LOOKS", 2037 | "simplePast": "LOOKED", 2038 | "pastParticiple": "LOOKED", 2039 | "gerund": "LOOKING", 2040 | "meaning": "Mirar" 2041 | }, 2042 | { 2043 | "id": 205, 2044 | "type": "I", 2045 | "simpleForm": "LOSE", 2046 | "thirdPerson": "LOSES", 2047 | "simplePast": "LOST", 2048 | "pastParticiple": "LOST", 2049 | "gerund": "LOSING", 2050 | "meaning": "Perder" 2051 | }, 2052 | { 2053 | "id": 206, 2054 | "type": "R", 2055 | "simpleForm": "LOVE", 2056 | "thirdPerson": "LOVES", 2057 | "simplePast": "LOVED", 2058 | "pastParticiple": "LOVED", 2059 | "gerund": "LOVING", 2060 | "meaning": "Amar Adorar Encantar" 2061 | }, 2062 | { 2063 | "id": 207, 2064 | "type": "R", 2065 | "simpleForm": "LOWER", 2066 | "thirdPerson": "LOWERS", 2067 | "simplePast": "LOWERED", 2068 | "pastParticiple": "LOWERED", 2069 | "gerund": "LOWERING", 2070 | "meaning": "Bajar Reducir Disminuir" 2071 | }, 2072 | { 2073 | "id": 208, 2074 | "type": "I", 2075 | "simpleForm": "MAKE", 2076 | "thirdPerson": "MAKES", 2077 | "simplePast": "MADE", 2078 | "pastParticiple": "MADE", 2079 | "gerund": "MAKING", 2080 | "meaning": "Hacer Fabricar" 2081 | }, 2082 | { 2083 | "id": 209, 2084 | "type": "R", 2085 | "simpleForm": "MANAGE", 2086 | "thirdPerson": "MANAGE", 2087 | "simplePast": "MANAGED", 2088 | "pastParticiple": "MANAGED", 2089 | "gerund": "MANAGING", 2090 | "meaning": "Manejar Dirigir Arreglárselas" 2091 | }, 2092 | { 2093 | "id": 210, 2094 | "type": "I", 2095 | "simpleForm": "MEAN", 2096 | "thirdPerson": "MEANS", 2097 | "simplePast": "MEANT", 2098 | "pastParticiple": "MEANT", 2099 | "gerund": "MEANING", 2100 | "meaning": "Significar Querer" 2101 | }, 2102 | { 2103 | "id": 211, 2104 | "type": "I", 2105 | "simpleForm": "MEET", 2106 | "thirdPerson": "MEETS", 2107 | "simplePast": "MET", 2108 | "pastParticiple": "MET", 2109 | "gerund": "MEETING", 2110 | "meaning": "Conocer Encontrar" 2111 | }, 2112 | { 2113 | "id": 212, 2114 | "type": "R", 2115 | "simpleForm": "MEMORIZE", 2116 | "thirdPerson": "MEMORIZES", 2117 | "simplePast": "MEMORIZED", 2118 | "pastParticiple": "MEMORIZED", 2119 | "gerund": "MEMORIZING", 2120 | "meaning": "Memorizar" 2121 | }, 2122 | { 2123 | "id": 213, 2124 | "type": "R", 2125 | "simpleForm": "MEND", 2126 | "thirdPerson": "MENDS", 2127 | "simplePast": "MENDED", 2128 | "pastParticiple": "MENDED", 2129 | "gerund": "MENDING", 2130 | "meaning": "Remendar Reparar" 2131 | }, 2132 | { 2133 | "id": 214, 2134 | "type": "R", 2135 | "simpleForm": "MIND", 2136 | "thirdPerson": "MINDS", 2137 | "simplePast": "MINDED", 2138 | "pastParticiple": "MINDED", 2139 | "gerund": "MINDING", 2140 | "meaning": "Agregar Importar Preocuparse" 2141 | }, 2142 | { 2143 | "id": 215, 2144 | "type": "R", 2145 | "simpleForm": "MISLAY", 2146 | "thirdPerson": "MISLAYS", 2147 | "simplePast": "MISLAYED", 2148 | "pastParticiple": "MISLAYED", 2149 | "gerund": "MISLAYING", 2150 | "meaning": "Extraviar Perder" 2151 | }, 2152 | { 2153 | "id": 216, 2154 | "type": "R", 2155 | "simpleForm": "MISS", 2156 | "thirdPerson": "MISSES", 2157 | "simplePast": "MISSED", 2158 | "pastParticiple": "MISSED", 2159 | "gerund": "MISSING", 2160 | "meaning": "Echar De Menos Perder" 2161 | }, 2162 | { 2163 | "id": 217, 2164 | "type": "I", 2165 | "simpleForm": "MISTAKE", 2166 | "thirdPerson": "MISTAKES", 2167 | "simplePast": "MISTOOK", 2168 | "pastParticiple": "MISTAKEN", 2169 | "gerund": "MISTAKING", 2170 | "meaning": "Errar Equivocarse" 2171 | }, 2172 | { 2173 | "id": 218, 2174 | "type": "R", 2175 | "simpleForm": "MIX", 2176 | "thirdPerson": "MIXES", 2177 | "simplePast": "MIXED", 2178 | "pastParticiple": "MIXED", 2179 | "gerund": "MIXING", 2180 | "meaning": "Mezclar Barajar" 2181 | }, 2182 | { 2183 | "id": 219, 2184 | "type": "R", 2185 | "simpleForm": "MOP", 2186 | "thirdPerson": "MOPS", 2187 | "simplePast": "MOPPED", 2188 | "pastParticiple": "MOPPED", 2189 | "gerund": "MOPPING", 2190 | "meaning": "Trapear Fregar" 2191 | }, 2192 | { 2193 | "id": 220, 2194 | "type": "R", 2195 | "simpleForm": "MOVE", 2196 | "thirdPerson": "MOVES", 2197 | "simplePast": "MOVED", 2198 | "pastParticiple": "MOVED", 2199 | "gerund": "MOVING", 2200 | "meaning": "Mover Trastear" 2201 | }, 2202 | { 2203 | "id": 221, 2204 | "type": "R", 2205 | "simpleForm": "MULTIPLY", 2206 | "thirdPerson": "MULTIPLIES", 2207 | "simplePast": "MULTIPLIED", 2208 | "pastParticiple": "MULTIPLIED", 2209 | "gerund": "MULTIPLYING", 2210 | "meaning": "Multiplicar" 2211 | }, 2212 | { 2213 | "id": 222, 2214 | "type": "R", 2215 | "simpleForm": "NAME", 2216 | "thirdPerson": "NAMES", 2217 | "simplePast": "NAMED", 2218 | "pastParticiple": "NAMED", 2219 | "gerund": "NAMING", 2220 | "meaning": "Nombrar Denominar" 2221 | }, 2222 | { 2223 | "id": 223, 2224 | "type": "R", 2225 | "simpleForm": "NEED", 2226 | "thirdPerson": "NEEDS", 2227 | "simplePast": "NEEDED", 2228 | "pastParticiple": "NEEDED", 2229 | "gerund": "NEEDING", 2230 | "meaning": "Necesitar Requerir" 2231 | }, 2232 | { 2233 | "id": 224, 2234 | "type": "R", 2235 | "simpleForm": "NOTICE", 2236 | "thirdPerson": "NOTICES", 2237 | "simplePast": "NOTICED", 2238 | "pastParticiple": "NOTICED", 2239 | "gerund": "NOTICING", 2240 | "meaning": "Notar Advertir" 2241 | }, 2242 | { 2243 | "id": 225, 2244 | "type": "R", 2245 | "simpleForm": "OCCUR", 2246 | "thirdPerson": "OCCURS", 2247 | "simplePast": "OCCURED", 2248 | "pastParticiple": "OCCURED", 2249 | "gerund": "OCCURRING", 2250 | "meaning": "Ocurrir Suceder" 2251 | }, 2252 | { 2253 | "id": 226, 2254 | "type": "R", 2255 | "simpleForm": "OFFER", 2256 | "thirdPerson": "OFFERS", 2257 | "simplePast": "OFFERED", 2258 | "pastParticiple": "OFFERED", 2259 | "gerund": "OFFERING", 2260 | "meaning": "Ofrecer" 2261 | }, 2262 | { 2263 | "id": 227, 2264 | "type": "R", 2265 | "simpleForm": "OMIT", 2266 | "thirdPerson": "OMITS", 2267 | "simplePast": "OMITTED", 2268 | "pastParticiple": "OMITTED", 2269 | "gerund": "OMITTING", 2270 | "meaning": "Omitir" 2271 | }, 2272 | { 2273 | "id": 228, 2274 | "type": "R", 2275 | "simpleForm": "OPEN", 2276 | "thirdPerson": "OPENS", 2277 | "simplePast": "OPENED", 2278 | "pastParticiple": "OPENED", 2279 | "gerund": "OPENING", 2280 | "meaning": "Abrir" 2281 | }, 2282 | { 2283 | "id": 229, 2284 | "type": "R", 2285 | "simpleForm": "ORDER", 2286 | "thirdPerson": "ORDERS", 2287 | "simplePast": "ORDERED", 2288 | "pastParticiple": "ORDERED", 2289 | "gerund": "ORDERING", 2290 | "meaning": "Ordenar Disponer" 2291 | }, 2292 | { 2293 | "id": 230, 2294 | "type": "I", 2295 | "simpleForm": "OVERCOME", 2296 | "thirdPerson": "OVERCOMES", 2297 | "simplePast": "OVERCAME", 2298 | "pastParticiple": "OVERCOME", 2299 | "gerund": "OVERCOMING", 2300 | "meaning": "Vencer Superar Triunfar" 2301 | }, 2302 | { 2303 | "id": 231, 2304 | "type": "R", 2305 | "simpleForm": "PACK", 2306 | "thirdPerson": "PACKS", 2307 | "simplePast": "PACKED", 2308 | "pastParticiple": "PACKED", 2309 | "gerund": "PACKING", 2310 | "meaning": "Empacar Envasar" 2311 | }, 2312 | { 2313 | "id": 232, 2314 | "type": "R", 2315 | "simpleForm": "PAINT", 2316 | "thirdPerson": "PAINTS", 2317 | "simplePast": "PAINTED", 2318 | "pastParticiple": "PAINTED", 2319 | "gerund": "PAINTING", 2320 | "meaning": "Pintar" 2321 | }, 2322 | { 2323 | "id": 233, 2324 | "type": "R", 2325 | "simpleForm": "PARK", 2326 | "thirdPerson": "PARKS", 2327 | "simplePast": "PARKED", 2328 | "pastParticiple": "PARKED", 2329 | "gerund": "PARKING", 2330 | "meaning": "Parquear Estacionar" 2331 | }, 2332 | { 2333 | "id": 234, 2334 | "type": "R", 2335 | "simpleForm": "PASS", 2336 | "thirdPerson": "PASSES", 2337 | "simplePast": "PASSED", 2338 | "pastParticiple": "PASSED", 2339 | "gerund": "PASSING", 2340 | "meaning": "Pasar Aprobar Superar" 2341 | }, 2342 | { 2343 | "id": 235, 2344 | "type": "I", 2345 | "simpleForm": "PAY", 2346 | "thirdPerson": "PAYS", 2347 | "simplePast": "PAID", 2348 | "pastParticiple": "PAID", 2349 | "gerund": "PAYING", 2350 | "meaning": "Pagar" 2351 | }, 2352 | { 2353 | "id": 236, 2354 | "type": "R", 2355 | "simpleForm": "PEEL", 2356 | "thirdPerson": "PEELS", 2357 | "simplePast": "PEELED", 2358 | "pastParticiple": "PEELED", 2359 | "gerund": "PEELING", 2360 | "meaning": "Pelar" 2361 | }, 2362 | { 2363 | "id": 237, 2364 | "type": "R", 2365 | "simpleForm": "PERMIT", 2366 | "thirdPerson": "PERMITS", 2367 | "simplePast": "PERMITTED", 2368 | "pastParticiple": "PERMITTED", 2369 | "gerund": "PERMITTING", 2370 | "meaning": "Permitir" 2371 | }, 2372 | { 2373 | "id": 238, 2374 | "type": "R", 2375 | "simpleForm": "PERSUADE", 2376 | "thirdPerson": "PERSUADES", 2377 | "simplePast": "PERSUADED", 2378 | "pastParticiple": "PERSUADED", 2379 | "gerund": "PERSUADING", 2380 | "meaning": "Persuadir Convencer" 2381 | }, 2382 | { 2383 | "id": 239, 2384 | "type": "R", 2385 | "simpleForm": "PICK UP", 2386 | "thirdPerson": "PICKS UP", 2387 | "simplePast": "PICKED UP", 2388 | "pastParticiple": "PICKED UP", 2389 | "gerund": "PICKING UP", 2390 | "meaning": "Recoger" 2391 | }, 2392 | { 2393 | "id": 240, 2394 | "type": "R", 2395 | "simpleForm": "PLACE", 2396 | "thirdPerson": "PLACES", 2397 | "simplePast": "PLACED", 2398 | "pastParticiple": "PLACED", 2399 | "gerund": "PLACING", 2400 | "meaning": "Poner Colocar Situar" 2401 | }, 2402 | { 2403 | "id": 241, 2404 | "type": "R", 2405 | "simpleForm": "PLAN", 2406 | "thirdPerson": "PLANS", 2407 | "simplePast": "PLANNED", 2408 | "pastParticiple": "PLANNED", 2409 | "gerund": "PLANNING", 2410 | "meaning": "Planear" 2411 | }, 2412 | { 2413 | "id": 242, 2414 | "type": "R", 2415 | "simpleForm": "PLANT", 2416 | "thirdPerson": "PLANTS", 2417 | "simplePast": "PLANTED", 2418 | "pastParticiple": "PLANTED", 2419 | "gerund": "PLANTING", 2420 | "meaning": "Plantar Sembrar" 2421 | }, 2422 | { 2423 | "id": 243, 2424 | "type": "R", 2425 | "simpleForm": "PLAY", 2426 | "thirdPerson": "PLAYS", 2427 | "simplePast": "PLAYED", 2428 | "pastParticiple": "PLAYED", 2429 | "gerund": "PLAYING", 2430 | "meaning": "Jugar Tocar Reproducir" 2431 | }, 2432 | { 2433 | "id": 244, 2434 | "type": "R", 2435 | "simpleForm": "POLISH", 2436 | "thirdPerson": "POLISHES", 2437 | "simplePast": "POLISHED", 2438 | "pastParticiple": "POLISHED", 2439 | "gerund": "POLISHING", 2440 | "meaning": "Pulir" 2441 | }, 2442 | { 2443 | "id": 245, 2444 | "type": "R", 2445 | "simpleForm": "PRACTICE", 2446 | "thirdPerson": "PRACTICES", 2447 | "simplePast": "PRACTICED", 2448 | "pastParticiple": "PRACTICED", 2449 | "gerund": "PRACTICING", 2450 | "meaning": "Practicar" 2451 | }, 2452 | { 2453 | "id": 246, 2454 | "type": "R", 2455 | "simpleForm": "PREFER", 2456 | "thirdPerson": "PREFERS", 2457 | "simplePast": "PREFERRED", 2458 | "pastParticiple": "PREFERRED", 2459 | "gerund": "PREFERRING", 2460 | "meaning": "Preferir" 2461 | }, 2462 | { 2463 | "id": 247, 2464 | "type": "R", 2465 | "simpleForm": "PREPARE", 2466 | "thirdPerson": "PREPARES", 2467 | "simplePast": "PREPARED", 2468 | "pastParticiple": "PREPARED", 2469 | "gerund": "PREPARING", 2470 | "meaning": "Preparar" 2471 | }, 2472 | { 2473 | "id": 248, 2474 | "type": "R", 2475 | "simpleForm": "PRINT", 2476 | "thirdPerson": "PRINTS", 2477 | "simplePast": "PRINTED", 2478 | "pastParticiple": "PRINTED", 2479 | "gerund": "PRINTING", 2480 | "meaning": "Imprimir" 2481 | }, 2482 | { 2483 | "id": 249, 2484 | "type": "R", 2485 | "simpleForm": "PROMISE", 2486 | "thirdPerson": "PROMISES", 2487 | "simplePast": "PROMISED", 2488 | "pastParticiple": "PROMISED", 2489 | "gerund": "PROMISING", 2490 | "meaning": "Prometer" 2491 | }, 2492 | { 2493 | "id": 250, 2494 | "type": "R", 2495 | "simpleForm": "PRONOUNCE", 2496 | "thirdPerson": "PRONOUNCES", 2497 | "simplePast": "PRONOUNCED", 2498 | "pastParticiple": "PRONOUNCED", 2499 | "gerund": "PRONOUNCING", 2500 | "meaning": "Pronunciar" 2501 | }, 2502 | { 2503 | "id": 251, 2504 | "type": "R", 2505 | "simpleForm": "PUBLISH", 2506 | "thirdPerson": "PUBLISHES", 2507 | "simplePast": "PUBLISHED", 2508 | "pastParticiple": "PUBLISHED", 2509 | "gerund": "PUBLISHING", 2510 | "meaning": "Publicar" 2511 | }, 2512 | { 2513 | "id": 252, 2514 | "type": "R", 2515 | "simpleForm": "PULL", 2516 | "thirdPerson": "PULLS", 2517 | "simplePast": "PULLED", 2518 | "pastParticiple": "PULLED", 2519 | "gerund": "PULLING", 2520 | "meaning": "Halar Tirar" 2521 | }, 2522 | { 2523 | "id": 253, 2524 | "type": "R", 2525 | "simpleForm": "PUNISH", 2526 | "thirdPerson": "PUNISHES", 2527 | "simplePast": "PUNISHED", 2528 | "pastParticiple": "PUNISHED", 2529 | "gerund": "PUNISHING", 2530 | "meaning": "Castigar" 2531 | }, 2532 | { 2533 | "id": 254, 2534 | "type": "R", 2535 | "simpleForm": "PUSH", 2536 | "thirdPerson": "PUSHES", 2537 | "simplePast": "PUSHED", 2538 | "pastParticiple": "PUSHED", 2539 | "gerund": "PUSHING", 2540 | "meaning": "Empujar" 2541 | }, 2542 | { 2543 | "id": 255, 2544 | "type": "I", 2545 | "simpleForm": "PUT", 2546 | "thirdPerson": "PUTS", 2547 | "simplePast": "PUT", 2548 | "pastParticiple": "PUT", 2549 | "gerund": "PUTTING", 2550 | "meaning": "Poner Colocar" 2551 | }, 2552 | { 2553 | "id": 256, 2554 | "type": "I", 2555 | "simpleForm": "QUIT", 2556 | "thirdPerson": "QUITS", 2557 | "simplePast": "QUIT", 2558 | "pastParticiple": "QUIT", 2559 | "gerund": "QUITING", 2560 | "meaning": "Omitir Rendirse" 2561 | }, 2562 | { 2563 | "id": 257, 2564 | "type": "R", 2565 | "simpleForm": "RAIN", 2566 | "thirdPerson": "RAINS", 2567 | "simplePast": "RAINED", 2568 | "pastParticiple": "RAINED", 2569 | "gerund": "RAINING", 2570 | "meaning": "Llover" 2571 | }, 2572 | { 2573 | "id": 258, 2574 | "type": "R", 2575 | "simpleForm": "REACH", 2576 | "thirdPerson": "REACHES", 2577 | "simplePast": "REACHED", 2578 | "pastParticiple": "REACHED", 2579 | "gerund": "REACHING", 2580 | "meaning": "Llegar Alcanzar" 2581 | }, 2582 | { 2583 | "id": 259, 2584 | "type": "I", 2585 | "simpleForm": "READ", 2586 | "thirdPerson": "READS", 2587 | "simplePast": "READ", 2588 | "pastParticiple": "READ", 2589 | "gerund": "READING", 2590 | "meaning": "Leer" 2591 | }, 2592 | { 2593 | "id": 260, 2594 | "type": "R", 2595 | "simpleForm": "RECEIVE", 2596 | "thirdPerson": "RECEIVES", 2597 | "simplePast": "RECEIVED", 2598 | "pastParticiple": "RECEIVED", 2599 | "gerund": "RECEIVING", 2600 | "meaning": "Recibir" 2601 | }, 2602 | { 2603 | "id": 261, 2604 | "type": "R", 2605 | "simpleForm": "RELAX", 2606 | "thirdPerson": "RELAXES", 2607 | "simplePast": "RELAXED", 2608 | "pastParticiple": "RELAXED", 2609 | "gerund": "RELAXING", 2610 | "meaning": "Relajar Mitigar" 2611 | }, 2612 | { 2613 | "id": 262, 2614 | "type": "R", 2615 | "simpleForm": "REMAIN", 2616 | "thirdPerson": "REMAINS", 2617 | "simplePast": "REMAINED", 2618 | "pastParticiple": "REMAINED", 2619 | "gerund": "REMAINING", 2620 | "meaning": "Permanecer Quedarse" 2621 | }, 2622 | { 2623 | "id": 263, 2624 | "type": "R", 2625 | "simpleForm": "REMEMBER", 2626 | "thirdPerson": "REMEMBERS", 2627 | "simplePast": "REMEMBERED", 2628 | "pastParticiple": "REMEMBERED", 2629 | "gerund": "REMEMBERING", 2630 | "meaning": "Recordar Acordarse" 2631 | }, 2632 | { 2633 | "id": 264, 2634 | "type": "R", 2635 | "simpleForm": "REPAIR", 2636 | "thirdPerson": "REPAIRS", 2637 | "simplePast": "REPAIRED", 2638 | "pastParticiple": "REPAIRED", 2639 | "gerund": "REPAIRING", 2640 | "meaning": "Reparar Arreglar" 2641 | }, 2642 | { 2643 | "id": 265, 2644 | "type": "R", 2645 | "simpleForm": "REPEAT", 2646 | "thirdPerson": "REPEATS", 2647 | "simplePast": "REPEATED", 2648 | "pastParticiple": "REPEATED", 2649 | "gerund": "REPEATING", 2650 | "meaning": "Repetir" 2651 | }, 2652 | { 2653 | "id": 266, 2654 | "type": "R", 2655 | "simpleForm": "REPRESENT", 2656 | "thirdPerson": "REPRESENTS", 2657 | "simplePast": "REPRESENTED", 2658 | "pastParticiple": "REPRESENTED", 2659 | "gerund": "REPRESENTING", 2660 | "meaning": "Representar" 2661 | }, 2662 | { 2663 | "id": 267, 2664 | "type": "R", 2665 | "simpleForm": "REST", 2666 | "thirdPerson": "REST", 2667 | "simplePast": "RESTED", 2668 | "pastParticiple": "RESTED", 2669 | "gerund": "RESTING", 2670 | "meaning": "Descansar Reposar" 2671 | }, 2672 | { 2673 | "id": 268, 2674 | "type": "I", 2675 | "simpleForm": "RID", 2676 | "thirdPerson": "RIDS", 2677 | "simplePast": "RID", 2678 | "pastParticiple": "RID", 2679 | "gerund": "RIDDING", 2680 | "meaning": "Librarse Deshacerse" 2681 | }, 2682 | { 2683 | "id": 269, 2684 | "type": "I", 2685 | "simpleForm": "RIDE", 2686 | "thirdPerson": "RIDES", 2687 | "simplePast": "RODE", 2688 | "pastParticiple": "RIDDEN", 2689 | "gerund": "RIDING", 2690 | "meaning": "Cabalgar Montar" 2691 | }, 2692 | { 2693 | "id": 270, 2694 | "type": "I", 2695 | "simpleForm": "RING", 2696 | "thirdPerson": "RINGS", 2697 | "simplePast": "RANG", 2698 | "pastParticiple": "RUNG", 2699 | "gerund": "RINGING", 2700 | "meaning": "Sonar Timbrar" 2701 | }, 2702 | { 2703 | "id": 271, 2704 | "type": "I", 2705 | "simpleForm": "RISE", 2706 | "thirdPerson": "RISES", 2707 | "simplePast": "ROSE", 2708 | "pastParticiple": "RISEN", 2709 | "gerund": "RISING", 2710 | "meaning": "Subir Ascender" 2711 | }, 2712 | { 2713 | "id": 272, 2714 | "type": "I", 2715 | "simpleForm": "RUN", 2716 | "thirdPerson": "RUNS", 2717 | "simplePast": "RAN", 2718 | "pastParticiple": "RUN", 2719 | "gerund": "RUNNING", 2720 | "meaning": "Correr" 2721 | }, 2722 | { 2723 | "id": 273, 2724 | "type": "R", 2725 | "simpleForm": "SAVE", 2726 | "thirdPerson": "SAVES", 2727 | "simplePast": "SAVED", 2728 | "pastParticiple": "SAVED", 2729 | "gerund": "SAVING", 2730 | "meaning": "Guardar Ahorrar Salvar" 2731 | }, 2732 | { 2733 | "id": 274, 2734 | "type": "I", 2735 | "simpleForm": "SAY", 2736 | "thirdPerson": "SAYS", 2737 | "simplePast": "SAID", 2738 | "pastParticiple": "SAID", 2739 | "gerund": "SAYING", 2740 | "meaning": "Decir" 2741 | }, 2742 | { 2743 | "id": 275, 2744 | "type": "R", 2745 | "simpleForm": "SCRUB", 2746 | "thirdPerson": "SCRUBS", 2747 | "simplePast": "SCRUBBED", 2748 | "pastParticiple": "SCRUBBED", 2749 | "gerund": "SCRUBBING", 2750 | "meaning": "Fregar Restregar" 2751 | }, 2752 | { 2753 | "id": 276, 2754 | "type": "R", 2755 | "simpleForm": "SEASON", 2756 | "thirdPerson": "SEASONS", 2757 | "simplePast": "SEASONED", 2758 | "pastParticiple": "SEASONED", 2759 | "gerund": "SEASONING", 2760 | "meaning": "Sazonar Aliñar" 2761 | }, 2762 | { 2763 | "id": 277, 2764 | "type": "I", 2765 | "simpleForm": "SEE", 2766 | "thirdPerson": "SEES", 2767 | "simplePast": "SAW", 2768 | "pastParticiple": "SEEN", 2769 | "gerund": "SEEING", 2770 | "meaning": "Ver" 2771 | }, 2772 | { 2773 | "id": 278, 2774 | "type": "I", 2775 | "simpleForm": "SEEK", 2776 | "thirdPerson": "SEEKS", 2777 | "simplePast": "SOUGHT", 2778 | "pastParticiple": "SOUGHT", 2779 | "gerund": "SEEKING", 2780 | "meaning": "Buscar Solicitar" 2781 | }, 2782 | { 2783 | "id": 279, 2784 | "type": "R", 2785 | "simpleForm": "SEEM", 2786 | "thirdPerson": "SEEMS", 2787 | "simplePast": "SEEMED", 2788 | "pastParticiple": "SEEMED", 2789 | "gerund": "SEEMING", 2790 | "meaning": "Parecer" 2791 | }, 2792 | { 2793 | "id": 280, 2794 | "type": "R", 2795 | "simpleForm": "SELECT", 2796 | "thirdPerson": "SELECTS", 2797 | "simplePast": "SELECTED", 2798 | "pastParticiple": "SELECTED", 2799 | "gerund": "SELECTING", 2800 | "meaning": "Seleccionar" 2801 | }, 2802 | { 2803 | "id": 281, 2804 | "type": "I", 2805 | "simpleForm": "SELL", 2806 | "thirdPerson": "SELLS", 2807 | "simplePast": "SOLD", 2808 | "pastParticiple": "SOLD", 2809 | "gerund": "SELLING", 2810 | "meaning": "Vender" 2811 | }, 2812 | { 2813 | "id": 282, 2814 | "type": "I", 2815 | "simpleForm": "SEND", 2816 | "thirdPerson": "SENDS", 2817 | "simplePast": "SENT", 2818 | "pastParticiple": "SENT", 2819 | "gerund": "SENDING", 2820 | "meaning": "Enviar Mandar" 2821 | }, 2822 | { 2823 | "id": 283, 2824 | "type": "I", 2825 | "simpleForm": "SET", 2826 | "thirdPerson": "SETS", 2827 | "simplePast": "SET", 2828 | "pastParticiple": "SET", 2829 | "gerund": "SETTING", 2830 | "meaning": "Establecer Poner Fijar" 2831 | }, 2832 | { 2833 | "id": 284, 2834 | "type": "R", 2835 | "simpleForm": "SETTLE", 2836 | "thirdPerson": "SETTLES", 2837 | "simplePast": "SETTLED", 2838 | "pastParticiple": "SETTLED", 2839 | "gerund": "SETTLING", 2840 | "meaning": "Colonizar Poblar" 2841 | }, 2842 | { 2843 | "id": 285, 2844 | "type": "R", 2845 | "simpleForm": "SEW", 2846 | "thirdPerson": "SEWS", 2847 | "simplePast": "SEWED", 2848 | "pastParticiple": "SEWED", 2849 | "gerund": "SEWING", 2850 | "meaning": "Coser" 2851 | }, 2852 | { 2853 | "id": 286, 2854 | "type": "I", 2855 | "simpleForm": "SHAKE", 2856 | "thirdPerson": "SHAKES", 2857 | "simplePast": "SHOOK", 2858 | "pastParticiple": "SHAKEN", 2859 | "gerund": "SHAKING", 2860 | "meaning": "Sacudir Menear" 2861 | }, 2862 | { 2863 | "id": 287, 2864 | "type": "R", 2865 | "simpleForm": "SHARE", 2866 | "thirdPerson": "SHARES", 2867 | "simplePast": "SHARED", 2868 | "pastParticiple": "SHARED", 2869 | "gerund": "SHARING", 2870 | "meaning": "Compartir" 2871 | }, 2872 | { 2873 | "id": 288, 2874 | "type": "R", 2875 | "simpleForm": "SHARPEN", 2876 | "thirdPerson": "SHARPENS", 2877 | "simplePast": "SHARPENED", 2878 | "pastParticiple": "SHARPENED", 2879 | "gerund": "SHARPENING", 2880 | "meaning": "Afilar Ampliar" 2881 | }, 2882 | { 2883 | "id": 289, 2884 | "type": "R", 2885 | "simpleForm": "SHED", 2886 | "thirdPerson": "SHEDS", 2887 | "simplePast": "SHED", 2888 | "pastParticiple": "SHED", 2889 | "gerund": "SHEEDDING", 2890 | "meaning": "Quitarse Despojarse" 2891 | }, 2892 | { 2893 | "id": 290, 2894 | "type": "I", 2895 | "simpleForm": "SHINE", 2896 | "thirdPerson": "SHINES", 2897 | "simplePast": "SHONE", 2898 | "pastParticiple": "SHONE", 2899 | "gerund": "SHINING", 2900 | "meaning": "Brillar Alumbrar" 2901 | }, 2902 | { 2903 | "id": 291, 2904 | "type": "I", 2905 | "simpleForm": "SHOOT", 2906 | "thirdPerson": "SHOOTS", 2907 | "simplePast": "SHOT", 2908 | "pastParticiple": "SHOT", 2909 | "gerund": "SHOOTING", 2910 | "meaning": "Tirar Disparar" 2911 | }, 2912 | { 2913 | "id": 292, 2914 | "type": "R", 2915 | "simpleForm": "SHOP", 2916 | "thirdPerson": "SHOPS", 2917 | "simplePast": "SHOPPED", 2918 | "pastParticiple": "SHOPPED", 2919 | "gerund": "SHOPPING", 2920 | "meaning": "Comprar" 2921 | }, 2922 | { 2923 | "id": 293, 2924 | "type": "R", 2925 | "simpleForm": "SHOUT", 2926 | "thirdPerson": "SHOUTS", 2927 | "simplePast": "SHOUTED", 2928 | "pastParticiple": "SHOUTED", 2929 | "gerund": "SHOUTING", 2930 | "meaning": "Gritar" 2931 | }, 2932 | { 2933 | "id": 294, 2934 | "type": "R", 2935 | "simpleForm": "SHOW", 2936 | "thirdPerson": "SHOWS", 2937 | "simplePast": "SHOWED", 2938 | "pastParticiple": "SHOWN", 2939 | "gerund": "SHOWING", 2940 | "meaning": "Mostrar Enseñar" 2941 | }, 2942 | { 2943 | "id": 295, 2944 | "type": "I", 2945 | "simpleForm": "SHRINK", 2946 | "thirdPerson": "SHRINKS", 2947 | "simplePast": "SHRANK", 2948 | "pastParticiple": "SHRUNK", 2949 | "gerund": "SHRINKING", 2950 | "meaning": "Encoger Contraer" 2951 | }, 2952 | { 2953 | "id": 296, 2954 | "type": "I", 2955 | "simpleForm": "SHUT", 2956 | "thirdPerson": "SHUTS", 2957 | "simplePast": "SHUT", 2958 | "pastParticiple": "SHUT", 2959 | "gerund": "SHUTTING", 2960 | "meaning": "Cerrar(Callar)" 2961 | }, 2962 | { 2963 | "id": 297, 2964 | "type": "R", 2965 | "simpleForm": "SIGH", 2966 | "thirdPerson": "SIGHS", 2967 | "simplePast": "SIGHED", 2968 | "pastParticiple": "SIGHED", 2969 | "gerund": "SIGHING", 2970 | "meaning": "Suspirar Susurrar" 2971 | }, 2972 | { 2973 | "id": 298, 2974 | "type": "R", 2975 | "simpleForm": "SIGN", 2976 | "thirdPerson": "SIGNS", 2977 | "simplePast": "SIGNED", 2978 | "pastParticiple": "SIGNED", 2979 | "gerund": "SIGNING", 2980 | "meaning": "Firmar" 2981 | }, 2982 | { 2983 | "id": 299, 2984 | "type": "R", 2985 | "simpleForm": "SIMMER", 2986 | "thirdPerson": "SIMMERS", 2987 | "simplePast": "SIMMERED", 2988 | "pastParticiple": "SIMMERED", 2989 | "gerund": "SIMMERING", 2990 | "meaning": "Cocer A Fuego Lento" 2991 | }, 2992 | { 2993 | "id": 300, 2994 | "type": "I", 2995 | "simpleForm": "SING", 2996 | "thirdPerson": "SINGS", 2997 | "simplePast": "SANG", 2998 | "pastParticiple": "SUNG", 2999 | "gerund": "SINGING", 3000 | "meaning": "Cantar" 3001 | }, 3002 | { 3003 | "id": 301, 3004 | "type": "I", 3005 | "simpleForm": "SINK", 3006 | "thirdPerson": "SINKS", 3007 | "simplePast": "SANK", 3008 | "pastParticiple": "SUNK", 3009 | "gerund": "SINKING", 3010 | "meaning": "Sumergir Hundir" 3011 | }, 3012 | { 3013 | "id": 302, 3014 | "type": "I", 3015 | "simpleForm": "SIT", 3016 | "thirdPerson": "SITS", 3017 | "simplePast": "SAT", 3018 | "pastParticiple": "SAT", 3019 | "gerund": "SITTING", 3020 | "meaning": "Sentarse" 3021 | }, 3022 | { 3023 | "id": 303, 3024 | "type": "R", 3025 | "simpleForm": "SKATE", 3026 | "thirdPerson": "SKATES", 3027 | "simplePast": "SKATED", 3028 | "pastParticiple": "SKATED", 3029 | "gerund": "SKATING", 3030 | "meaning": "Patinar" 3031 | }, 3032 | { 3033 | "id": 304, 3034 | "type": "R", 3035 | "simpleForm": "SKI", 3036 | "thirdPerson": "SKIS", 3037 | "simplePast": "SKIED", 3038 | "pastParticiple": "SKIED", 3039 | "gerund": "SKIING", 3040 | "meaning": "Esquiar" 3041 | }, 3042 | { 3043 | "id": 305, 3044 | "type": "I", 3045 | "simpleForm": "SLEEP", 3046 | "thirdPerson": "SLEEPS", 3047 | "simplePast": "SLEPT", 3048 | "pastParticiple": "SLEPT", 3049 | "gerund": "SLEEPING", 3050 | "meaning": "Dormir" 3051 | }, 3052 | { 3053 | "id": 306, 3054 | "type": "R", 3055 | "simpleForm": "SLICE", 3056 | "thirdPerson": "SLICES", 3057 | "simplePast": "SLICED", 3058 | "pastParticiple": "SLICED", 3059 | "gerund": "SLICING", 3060 | "meaning": "Rebanar" 3061 | }, 3062 | { 3063 | "id": 307, 3064 | "type": "I", 3065 | "simpleForm": "SLIDE", 3066 | "thirdPerson": "SLIDES", 3067 | "simplePast": "SLID", 3068 | "pastParticiple": "SLID", 3069 | "gerund": "SLIDING", 3070 | "meaning": "Resbalar(Se)" 3071 | }, 3072 | { 3073 | "id": 308, 3074 | "type": "R", 3075 | "simpleForm": "SMELL", 3076 | "thirdPerson": "SMELLS", 3077 | "simplePast": "SMELLED", 3078 | "pastParticiple": "SMELLED", 3079 | "gerund": "SMELLING", 3080 | "meaning": "Oler Husmear" 3081 | }, 3082 | { 3083 | "id": 309, 3084 | "type": "R", 3085 | "simpleForm": "SMILE", 3086 | "thirdPerson": "SMILES", 3087 | "simplePast": "SMILED", 3088 | "pastParticiple": "SMILED", 3089 | "gerund": "SMILING", 3090 | "meaning": "Sonreir" 3091 | }, 3092 | { 3093 | "id": 310, 3094 | "type": "R", 3095 | "simpleForm": "SMOKE", 3096 | "thirdPerson": "SMOKES", 3097 | "simplePast": "SMOKED", 3098 | "pastParticiple": "SMOKED", 3099 | "gerund": "SMOKING", 3100 | "meaning": "Fumar" 3101 | }, 3102 | { 3103 | "id": 311, 3104 | "type": "R", 3105 | "simpleForm": "SNEEZE", 3106 | "thirdPerson": "SNEEZES", 3107 | "simplePast": "SNEEZED", 3108 | "pastParticiple": "SNEEZED", 3109 | "gerund": "SNEEZING", 3110 | "meaning": "Estornudar" 3111 | }, 3112 | { 3113 | "id": 312, 3114 | "type": "R", 3115 | "simpleForm": "SOLVE", 3116 | "thirdPerson": "SOLVES", 3117 | "simplePast": "SOLVED", 3118 | "pastParticiple": "SOLVED", 3119 | "gerund": "SOLVING", 3120 | "meaning": "Resolver" 3121 | }, 3122 | { 3123 | "id": 313, 3124 | "type": "R", 3125 | "simpleForm": "SOUND", 3126 | "thirdPerson": "SOUNDS", 3127 | "simplePast": "SOUNDED", 3128 | "pastParticiple": "SOUNDED", 3129 | "gerund": "SOUNDING", 3130 | "meaning": "Sonar Tocar" 3131 | }, 3132 | { 3133 | "id": 314, 3134 | "type": "I", 3135 | "simpleForm": "SPEAK", 3136 | "thirdPerson": "SPEAKS", 3137 | "simplePast": "SPOKE", 3138 | "pastParticiple": "SPOKEN", 3139 | "gerund": "SPEAKING", 3140 | "meaning": "Hablar" 3141 | }, 3142 | { 3143 | "id": 315, 3144 | "type": "R", 3145 | "simpleForm": "SPEED", 3146 | "thirdPerson": "SPEEDS", 3147 | "simplePast": "SPED", 3148 | "pastParticiple": "SPED", 3149 | "gerund": "SPEEDING", 3150 | "meaning": "Acelerar" 3151 | }, 3152 | { 3153 | "id": 316, 3154 | "type": "R", 3155 | "simpleForm": "SPELL", 3156 | "thirdPerson": "SPELLS", 3157 | "simplePast": "SPELLED", 3158 | "pastParticiple": "SPELLED", 3159 | "gerund": "SPELLING", 3160 | "meaning": "Deletrear" 3161 | }, 3162 | { 3163 | "id": 317, 3164 | "type": "I", 3165 | "simpleForm": "SPEND", 3166 | "thirdPerson": "SPENDS", 3167 | "simplePast": "SPEND", 3168 | "pastParticiple": "SPENT", 3169 | "gerund": "SPENDING", 3170 | "meaning": "Gastar" 3171 | }, 3172 | { 3173 | "id": 318, 3174 | "type": "R", 3175 | "simpleForm": "SPILL", 3176 | "thirdPerson": "SPILLS", 3177 | "simplePast": "SPILLED", 3178 | "pastParticiple": "SPILLED", 3179 | "gerund": "SPILLING", 3180 | "meaning": "Derramar Regar" 3181 | }, 3182 | { 3183 | "id": 319, 3184 | "type": "I", 3185 | "simpleForm": "SPIN", 3186 | "thirdPerson": "SPINS", 3187 | "simplePast": "SPUN", 3188 | "pastParticiple": "SPUN", 3189 | "gerund": "SPINNING", 3190 | "meaning": "Hacer Girar" 3191 | }, 3192 | { 3193 | "id": 320, 3194 | "type": "I", 3195 | "simpleForm": "SPIT", 3196 | "thirdPerson": "SPITS", 3197 | "simplePast": "SPIT", 3198 | "pastParticiple": "SPIT", 3199 | "gerund": "SPITTING", 3200 | "meaning": "Escupir" 3201 | }, 3202 | { 3203 | "id": 321, 3204 | "type": "R", 3205 | "simpleForm": "SPLASH", 3206 | "thirdPerson": "SPLASHES", 3207 | "simplePast": "SPLASHED", 3208 | "pastParticiple": "SPLASHED", 3209 | "gerund": "SPLASHING", 3210 | "meaning": "Salpicar Rociar" 3211 | }, 3212 | { 3213 | "id": 322, 3214 | "type": "I", 3215 | "simpleForm": "SPLIT", 3216 | "thirdPerson": "SPLITS", 3217 | "simplePast": "SPLIT", 3218 | "pastParticiple": "SPLIT", 3219 | "gerund": "SPLITTING", 3220 | "meaning": "Agrietar Hender" 3221 | }, 3222 | { 3223 | "id": 323, 3224 | "type": "R", 3225 | "simpleForm": "SPOIL", 3226 | "thirdPerson": "SPOILS", 3227 | "simplePast": "SPOILED", 3228 | "pastParticiple": "SPOILED", 3229 | "gerund": "SPOILING", 3230 | "meaning": "Estropear" 3231 | }, 3232 | { 3233 | "id": 324, 3234 | "type": "I", 3235 | "simpleForm": "SPREAD", 3236 | "thirdPerson": "SPREADS", 3237 | "simplePast": "SPREAD", 3238 | "pastParticiple": "SPREAD", 3239 | "gerund": "SPREADING", 3240 | "meaning": "Extender Esparcir Untar" 3241 | }, 3242 | { 3243 | "id": 325, 3244 | "type": "I", 3245 | "simpleForm": "SPRING", 3246 | "thirdPerson": "SPRINGS", 3247 | "simplePast": "SPRANG", 3248 | "pastParticiple": "SPRUNG", 3249 | "gerund": "SPRINGING", 3250 | "meaning": "Saltar Brotar" 3251 | }, 3252 | { 3253 | "id": 326, 3254 | "type": "R", 3255 | "simpleForm": "SPRINKLE", 3256 | "thirdPerson": "SPRINKLES", 3257 | "simplePast": "SPRINKLED", 3258 | "pastParticiple": "SPRINKLED", 3259 | "gerund": "SPRINKING", 3260 | "meaning": "Rociar" 3261 | }, 3262 | { 3263 | "id": 327, 3264 | "type": "R", 3265 | "simpleForm": "SQUEEZE", 3266 | "thirdPerson": "SQUEEZES", 3267 | "simplePast": "SQUEEZED", 3268 | "pastParticiple": "SQUEEZED", 3269 | "gerund": "SQUEEZING", 3270 | "meaning": "Apretar" 3271 | }, 3272 | { 3273 | "id": 328, 3274 | "type": "I", 3275 | "simpleForm": "STAND", 3276 | "thirdPerson": "STANDS", 3277 | "simplePast": "STOOD", 3278 | "pastParticiple": "STOOD", 3279 | "gerund": "STANDING", 3280 | "meaning": "Pararse" 3281 | }, 3282 | { 3283 | "id": 329, 3284 | "type": "R", 3285 | "simpleForm": "START", 3286 | "thirdPerson": "STARTS", 3287 | "simplePast": "STARTED", 3288 | "pastParticiple": "STARTED", 3289 | "gerund": "STARTING", 3290 | "meaning": "Agregar Comenzar Empezar Iniciar" 3291 | }, 3292 | { 3293 | "id": 330, 3294 | "type": "R", 3295 | "simpleForm": "STAY", 3296 | "thirdPerson": "STAYS", 3297 | "simplePast": "STAYED", 3298 | "pastParticiple": "STAYED", 3299 | "gerund": "STAYING", 3300 | "meaning": "Permanecer Quedarse Durar" 3301 | }, 3302 | { 3303 | "id": 331, 3304 | "type": "I", 3305 | "simpleForm": "STEAL", 3306 | "thirdPerson": "STEALS", 3307 | "simplePast": "STOLE", 3308 | "pastParticiple": "STOLEN", 3309 | "gerund": "STEALING", 3310 | "meaning": "Robar Hurtar" 3311 | }, 3312 | { 3313 | "id": 332, 3314 | "type": "R", 3315 | "simpleForm": "STEAM", 3316 | "thirdPerson": "STEAMS", 3317 | "simplePast": "STEAMED", 3318 | "pastParticiple": "STEAMED", 3319 | "gerund": "STEAMING", 3320 | "meaning": "Cocer A Vapor" 3321 | }, 3322 | { 3323 | "id": 333, 3324 | "type": "I", 3325 | "simpleForm": "STICK", 3326 | "thirdPerson": "STICKS", 3327 | "simplePast": "STUCK", 3328 | "pastParticiple": "STUCK", 3329 | "gerund": "STICKING", 3330 | "meaning": "Pegar(se) Adherir(se)" 3331 | }, 3332 | { 3333 | "id": 334, 3334 | "type": "I", 3335 | "simpleForm": "STING", 3336 | "thirdPerson": "STINGS", 3337 | "simplePast": "STUNG", 3338 | "pastParticiple": "STUNG", 3339 | "gerund": "STINGING", 3340 | "meaning": "Picar Golpear" 3341 | }, 3342 | { 3343 | "id": 335, 3344 | "type": "I", 3345 | "simpleForm": "STINK", 3346 | "thirdPerson": "STINKS", 3347 | "simplePast": "STANK", 3348 | "pastParticiple": "STUNK", 3349 | "gerund": "STINKING", 3350 | "meaning": "Apestar" 3351 | }, 3352 | { 3353 | "id": 336, 3354 | "type": "R", 3355 | "simpleForm": "STIR", 3356 | "thirdPerson": "STIRS", 3357 | "simplePast": "STIRED", 3358 | "pastParticiple": "STIRED", 3359 | "gerund": "STIRRING", 3360 | "meaning": "Agregar Revolver" 3361 | }, 3362 | { 3363 | "id": 337, 3364 | "type": "R", 3365 | "simpleForm": "STOP", 3366 | "thirdPerson": "STOPS", 3367 | "simplePast": "STOPPED", 3368 | "pastParticiple": "STOPPED", 3369 | "gerund": "STOPPING", 3370 | "meaning": "Parar Detener" 3371 | }, 3372 | { 3373 | "id": 338, 3374 | "type": "I", 3375 | "simpleForm": "STRIKE", 3376 | "thirdPerson": "STIKES", 3377 | "simplePast": "STRUCK", 3378 | "pastParticiple": "STRUCK", 3379 | "gerund": "STRIKING", 3380 | "meaning": "Golpear Pegar" 3381 | }, 3382 | { 3383 | "id": 339, 3384 | "type": "I", 3385 | "simpleForm": "STRING", 3386 | "thirdPerson": "STRINGS", 3387 | "simplePast": "STRUNGS", 3388 | "pastParticiple": "STRUNG", 3389 | "gerund": "STRINGING", 3390 | "meaning": "Atar(Cordones)" 3391 | }, 3392 | { 3393 | "id": 340, 3394 | "type": "I", 3395 | "simpleForm": "STRIVE", 3396 | "thirdPerson": "STRIVES", 3397 | "simplePast": "STROVE", 3398 | "pastParticiple": "STRIVEN", 3399 | "gerund": "STRIVING", 3400 | "meaning": "Esforzarse" 3401 | }, 3402 | { 3403 | "id": 341, 3404 | "type": "R", 3405 | "simpleForm": "STUDY", 3406 | "thirdPerson": "STUDIES", 3407 | "simplePast": "STUDIED", 3408 | "pastParticiple": "STUDIED", 3409 | "gerund": "STUDYING", 3410 | "meaning": "Estudiar" 3411 | }, 3412 | { 3413 | "id": 342, 3414 | "type": "R", 3415 | "simpleForm": "STUFF", 3416 | "thirdPerson": "STUFFS", 3417 | "simplePast": "STUFFED", 3418 | "pastParticiple": "STUFFED", 3419 | "gerund": "STUFFING", 3420 | "meaning": "Rellenar" 3421 | }, 3422 | { 3423 | "id": 343, 3424 | "type": "R", 3425 | "simpleForm": "SUBSTRACT", 3426 | "thirdPerson": "SUBSTRACTS", 3427 | "simplePast": "SUBSTRACTED", 3428 | "pastParticiple": "SUBSTRACTED", 3429 | "gerund": "SUBSTRACTING", 3430 | "meaning": "Sustraer Restar" 3431 | }, 3432 | { 3433 | "id": 344, 3434 | "type": "R", 3435 | "simpleForm": "SUCK", 3436 | "thirdPerson": "SUCKS", 3437 | "simplePast": "SUCKED", 3438 | "pastParticiple": "SUCKED", 3439 | "gerund": "SUCKING", 3440 | "meaning": "Chupar" 3441 | }, 3442 | { 3443 | "id": 346, 3444 | "type": "R", 3445 | "simpleForm": "SUPPORT", 3446 | "thirdPerson": "SUPPORTS", 3447 | "simplePast": "SUPPORTED", 3448 | "pastParticiple": "SUPPORTED", 3449 | "gerund": "SUPPORTING", 3450 | "meaning": "Soportar" 3451 | }, 3452 | { 3453 | "id": 345, 3454 | "type": "R", 3455 | "simpleForm": "SUPPOSE", 3456 | "thirdPerson": "SUPPOSES", 3457 | "simplePast": "SUPPOSED", 3458 | "pastParticiple": "SUPPOSED", 3459 | "gerund": "SUPPOSING", 3460 | "meaning": "Suponer" 3461 | }, 3462 | { 3463 | "id": 347, 3464 | "type": "R", 3465 | "simpleForm": "SURROUND", 3466 | "thirdPerson": "SURROUNDS", 3467 | "simplePast": "SURROUNDED", 3468 | "pastParticiple": "SURROUNDED", 3469 | "gerund": "SORROUNDING", 3470 | "meaning": "Rodear" 3471 | }, 3472 | { 3473 | "id": 348, 3474 | "type": "I", 3475 | "simpleForm": "SWEAR", 3476 | "thirdPerson": "SWEARS", 3477 | "simplePast": "SWORE", 3478 | "pastParticiple": "SWORN", 3479 | "gerund": "SWEARING", 3480 | "meaning": "Jurar" 3481 | }, 3482 | { 3483 | "id": 349, 3484 | "type": "I", 3485 | "simpleForm": "SWEEP", 3486 | "thirdPerson": "SWEEPS", 3487 | "simplePast": "SWEPT", 3488 | "pastParticiple": "SWEPT", 3489 | "gerund": "SWEEPING", 3490 | "meaning": "Barrer" 3491 | }, 3492 | { 3493 | "id": 350, 3494 | "type": "I", 3495 | "simpleForm": "SWIM", 3496 | "thirdPerson": "SWIMS", 3497 | "simplePast": "SWAM", 3498 | "pastParticiple": "SWUM", 3499 | "gerund": "SWIMMING", 3500 | "meaning": "Nadar" 3501 | }, 3502 | { 3503 | "id": 351, 3504 | "type": "I", 3505 | "simpleForm": "SWING", 3506 | "thirdPerson": "SWINGS", 3507 | "simplePast": "SWUNG", 3508 | "pastParticiple": "SWUNG", 3509 | "gerund": "SWINGING", 3510 | "meaning": "Balancearse Girar Columpiarse" 3511 | }, 3512 | { 3513 | "id": 352, 3514 | "type": "I", 3515 | "simpleForm": "TAKE", 3516 | "thirdPerson": "TAKES", 3517 | "simplePast": "TOOK", 3518 | "pastParticiple": "TAKEN", 3519 | "gerund": "TAKING", 3520 | "meaning": "Tomar Agarrar Coger" 3521 | }, 3522 | { 3523 | "id": 353, 3524 | "type": "R", 3525 | "simpleForm": "TALK", 3526 | "thirdPerson": "TALKS", 3527 | "simplePast": "TALKED", 3528 | "pastParticiple": "TALKED", 3529 | "gerund": "TALKING", 3530 | "meaning": "Hablar Conversar" 3531 | }, 3532 | { 3533 | "id": 354, 3534 | "type": "R", 3535 | "simpleForm": "TASTE", 3536 | "thirdPerson": "TASTES", 3537 | "simplePast": "TASTED", 3538 | "pastParticiple": "TASTED", 3539 | "gerund": "TASTING", 3540 | "meaning": "Saborear Catar Probar" 3541 | }, 3542 | { 3543 | "id": 355, 3544 | "type": "I", 3545 | "simpleForm": "TEACH", 3546 | "thirdPerson": "TEACHES", 3547 | "simplePast": "TAUGHT", 3548 | "pastParticiple": "TAUGHT", 3549 | "gerund": "TEACHING", 3550 | "meaning": "Enseñar" 3551 | }, 3552 | { 3553 | "id": 356, 3554 | "type": "I", 3555 | "simpleForm": "TEAR", 3556 | "thirdPerson": "TEARS", 3557 | "simplePast": "TORE", 3558 | "pastParticiple": "TORN", 3559 | "gerund": "TEARING", 3560 | "meaning": "Rasgar Desgarrar Arrancar" 3561 | }, 3562 | { 3563 | "id": 357, 3564 | "type": "I", 3565 | "simpleForm": "TELL", 3566 | "thirdPerson": "TELLS", 3567 | "simplePast": "TOLD", 3568 | "pastParticiple": "TOLD", 3569 | "gerund": "TELLING", 3570 | "meaning": "Decir Contar" 3571 | }, 3572 | { 3573 | "id": 358, 3574 | "type": "I", 3575 | "simpleForm": "THINK", 3576 | "thirdPerson": "THINKS", 3577 | "simplePast": "THOUGHT", 3578 | "pastParticiple": "THOUGHT", 3579 | "gerund": "THINKING", 3580 | "meaning": "Pensar Creer" 3581 | }, 3582 | { 3583 | "id": 359, 3584 | "type": "I", 3585 | "simpleForm": "THROW", 3586 | "thirdPerson": "THROWS", 3587 | "simplePast": "THREW", 3588 | "pastParticiple": "THROWN", 3589 | "gerund": "THROWING", 3590 | "meaning": "Lanzar Arrojar" 3591 | }, 3592 | { 3593 | "id": 360, 3594 | "type": "I", 3595 | "simpleForm": "THRUST", 3596 | "thirdPerson": "THRUST", 3597 | "simplePast": "THRUST", 3598 | "pastParticiple": "THRUST", 3599 | "gerund": "THRUSTING", 3600 | "meaning": "Clavar Empujar" 3601 | }, 3602 | { 3603 | "id": 361, 3604 | "type": "R", 3605 | "simpleForm": "TOUCH", 3606 | "thirdPerson": "TOUCHES", 3607 | "simplePast": "TOUCHED", 3608 | "pastParticiple": "TOUCHED", 3609 | "gerund": "TOUCHING", 3610 | "meaning": "Tocar Rozar" 3611 | }, 3612 | { 3613 | "id": 362, 3614 | "type": "I", 3615 | "simpleForm": "TRANSLATE", 3616 | "thirdPerson": "TRANSLATES", 3617 | "simplePast": "TRANSLATED", 3618 | "pastParticiple": "TRANSLATED", 3619 | "gerund": "TRANSLATING", 3620 | "meaning": "Traducir" 3621 | }, 3622 | { 3623 | "id": 363, 3624 | "type": "R", 3625 | "simpleForm": "TRAVEL", 3626 | "thirdPerson": "TRAVELS", 3627 | "simplePast": "TRAVELED", 3628 | "pastParticiple": "TRAVELED", 3629 | "gerund": "TRAVELING", 3630 | "meaning": "Viajar Andar Recorrer" 3631 | }, 3632 | { 3633 | "id": 364, 3634 | "type": "R", 3635 | "simpleForm": "TRUST", 3636 | "thirdPerson": "TRUSTS", 3637 | "simplePast": "TRUSTED", 3638 | "pastParticiple": "TRUSTED", 3639 | "gerund": "TRUSTING", 3640 | "meaning": "Confiar Creer" 3641 | }, 3642 | { 3643 | "id": 365, 3644 | "type": "R", 3645 | "simpleForm": "TRY", 3646 | "thirdPerson": "TRIES", 3647 | "simplePast": "TRIED", 3648 | "pastParticiple": "TRIED", 3649 | "gerund": "TRYING", 3650 | "meaning": "Probar Intentar Ensayar Tratar" 3651 | }, 3652 | { 3653 | "id": 366, 3654 | "type": "R", 3655 | "simpleForm": "TURN", 3656 | "thirdPerson": "TURNS", 3657 | "simplePast": "TURNED", 3658 | "pastParticiple": "TURNED", 3659 | "gerund": "TURNING", 3660 | "meaning": "Girar" 3661 | }, 3662 | { 3663 | "id": 367, 3664 | "type": "R", 3665 | "simpleForm": "TYPE", 3666 | "thirdPerson": "TYPES", 3667 | "simplePast": "TYPED", 3668 | "pastParticiple": "TYPED", 3669 | "gerund": "TYPING", 3670 | "meaning": "Mecanografiar Digitar" 3671 | }, 3672 | { 3673 | "id": 368, 3674 | "type": "R", 3675 | "simpleForm": "UNDERLINE", 3676 | "thirdPerson": "UNDERLINES", 3677 | "simplePast": "UNDERLINED", 3678 | "pastParticiple": "UNDERLINED", 3679 | "gerund": "UNDERLINING", 3680 | "meaning": "Subrayar" 3681 | }, 3682 | { 3683 | "id": 369, 3684 | "type": "I", 3685 | "simpleForm": "UNDERSTAND", 3686 | "thirdPerson": "UNDERSTANDS", 3687 | "simplePast": "UNDERSTOOD", 3688 | "pastParticiple": "UNDERSTOOD", 3689 | "gerund": "UNDERSTANDING", 3690 | "meaning": "Entender Comprender" 3691 | }, 3692 | { 3693 | "id": 370, 3694 | "type": "I", 3695 | "simpleForm": "UNDERTAKE", 3696 | "thirdPerson": "UNDERTAKES", 3697 | "simplePast": "UNDERTOOK", 3698 | "pastParticiple": "UNDERTAKEN", 3699 | "gerund": "UNDERTAKING", 3700 | "meaning": "Encargarse Emprender" 3701 | }, 3702 | { 3703 | "id": 371, 3704 | "type": "I", 3705 | "simpleForm": "UPSET", 3706 | "thirdPerson": "UPSETS", 3707 | "simplePast": "UPSET", 3708 | "pastParticiple": "UPSET", 3709 | "gerund": "UPSETTING", 3710 | "meaning": "Volcar Trasntornar" 3711 | }, 3712 | { 3713 | "id": 372, 3714 | "type": "R", 3715 | "simpleForm": "USE", 3716 | "thirdPerson": "USES", 3717 | "simplePast": "USED", 3718 | "pastParticiple": "USED", 3719 | "gerund": "USING", 3720 | "meaning": "Usar" 3721 | }, 3722 | { 3723 | "id": 373, 3724 | "type": "R", 3725 | "simpleForm": "VACUUM", 3726 | "thirdPerson": "VACUUMS", 3727 | "simplePast": "VACUUMED", 3728 | "pastParticiple": "VACUUMED", 3729 | "gerund": "VACCUMING", 3730 | "meaning": "Aspirar" 3731 | }, 3732 | { 3733 | "id": 374, 3734 | "type": "R", 3735 | "simpleForm": "VANISH", 3736 | "thirdPerson": "VANISHES", 3737 | "simplePast": "VANISHED", 3738 | "pastParticiple": "VANISHED", 3739 | "gerund": "VANISHING", 3740 | "meaning": "Desvanecer(se) Desaparecer" 3741 | }, 3742 | { 3743 | "id": 375, 3744 | "type": "R", 3745 | "simpleForm": "VISIT", 3746 | "thirdPerson": "VISITS", 3747 | "simplePast": "VISITED", 3748 | "pastParticiple": "VISITED", 3749 | "gerund": "VISITING", 3750 | "meaning": "Visitar" 3751 | }, 3752 | { 3753 | "id": 376, 3754 | "type": "R", 3755 | "simpleForm": "WAIT", 3756 | "thirdPerson": "WAITS", 3757 | "simplePast": "WAITED", 3758 | "pastParticiple": "WAITED", 3759 | "gerund": "WAITING", 3760 | "meaning": "Esperar" 3761 | }, 3762 | { 3763 | "id": 377, 3764 | "type": "I", 3765 | "simpleForm": "WAKE", 3766 | "thirdPerson": "WAKES", 3767 | "simplePast": "WOKE", 3768 | "pastParticiple": "WOKEN", 3769 | "gerund": "WAKING", 3770 | "meaning": "Despertar(se)" 3771 | }, 3772 | { 3773 | "id": 378, 3774 | "type": "R", 3775 | "simpleForm": "WALK", 3776 | "thirdPerson": "WALKS", 3777 | "simplePast": "WALKED", 3778 | "pastParticiple": "WALKED", 3779 | "gerund": "WALKING", 3780 | "meaning": "Caminar Andar Pasear Andar" 3781 | }, 3782 | { 3783 | "id": 379, 3784 | "type": "R", 3785 | "simpleForm": "WANT", 3786 | "thirdPerson": "WANTS", 3787 | "simplePast": "WANTED", 3788 | "pastParticiple": "WANTED", 3789 | "gerund": "WANTING", 3790 | "meaning": "Querer Desear Necesitar" 3791 | }, 3792 | { 3793 | "id": 380, 3794 | "type": "R", 3795 | "simpleForm": "WARM", 3796 | "thirdPerson": "WARMS", 3797 | "simplePast": "WARMED", 3798 | "pastParticiple": "WARMED", 3799 | "gerund": "WARMING", 3800 | "meaning": "Calentar(Se) Recalentar" 3801 | }, 3802 | { 3803 | "id": 381, 3804 | "type": "R", 3805 | "simpleForm": "WASH", 3806 | "thirdPerson": "WASHES", 3807 | "simplePast": "WASHED", 3808 | "pastParticiple": "WASHED", 3809 | "gerund": "WASHING", 3810 | "meaning": "Lavar Fregar Mojar" 3811 | }, 3812 | { 3813 | "id": 382, 3814 | "type": "R", 3815 | "simpleForm": "WATCH", 3816 | "thirdPerson": "WATCHES", 3817 | "simplePast": "WATCHED", 3818 | "pastParticiple": "WATCHED", 3819 | "gerund": "WATCHING", 3820 | "meaning": "Mirar Velar Vigilar" 3821 | }, 3822 | { 3823 | "id": 383, 3824 | "type": "R", 3825 | "simpleForm": "WAVE", 3826 | "thirdPerson": "WAVES", 3827 | "simplePast": "WAVED", 3828 | "pastParticiple": "WAVED", 3829 | "gerund": "WAVING", 3830 | "meaning": "Agitar Ondear" 3831 | }, 3832 | { 3833 | "id": 384, 3834 | "type": "I", 3835 | "simpleForm": "WEAR", 3836 | "thirdPerson": "WEARS", 3837 | "simplePast": "WORE", 3838 | "pastParticiple": "WORN", 3839 | "gerund": "WEARING", 3840 | "meaning": "Usar" 3841 | }, 3842 | { 3843 | "id": 385, 3844 | "type": "I", 3845 | "simpleForm": "WEAVE", 3846 | "thirdPerson": "WEAVES", 3847 | "simplePast": "WOVE", 3848 | "pastParticiple": "WOVEN", 3849 | "gerund": "WEAVING", 3850 | "meaning": "Tejer" 3851 | }, 3852 | { 3853 | "id": 386, 3854 | "type": "R", 3855 | "simpleForm": "WED", 3856 | "thirdPerson": "WEDS", 3857 | "simplePast": "WED", 3858 | "pastParticiple": "WED", 3859 | "gerund": "WEDDING", 3860 | "meaning": "Casar(se)" 3861 | }, 3862 | { 3863 | "id": 387, 3864 | "type": "I", 3865 | "simpleForm": "WEEP", 3866 | "thirdPerson": "WEEPS", 3867 | "simplePast": "WEPT", 3868 | "pastParticiple": "WEPT", 3869 | "gerund": "WEEPING", 3870 | "meaning": "Lamentarse Llorar" 3871 | }, 3872 | { 3873 | "id": 388, 3874 | "type": "R", 3875 | "simpleForm": "WEIGH", 3876 | "thirdPerson": "WEIGHS", 3877 | "simplePast": "WEIGHED", 3878 | "pastParticiple": "WEIGHED", 3879 | "gerund": "WEIGHING", 3880 | "meaning": "Pesar" 3881 | }, 3882 | { 3883 | "id": 389, 3884 | "type": "R", 3885 | "simpleForm": "WHISTLE", 3886 | "thirdPerson": "WHISTLES", 3887 | "simplePast": "WHISTLED", 3888 | "pastParticiple": "WHISTLED", 3889 | "gerund": "WHISTLING", 3890 | "meaning": "Silbar" 3891 | }, 3892 | { 3893 | "id": 390, 3894 | "type": "I", 3895 | "simpleForm": "WIN", 3896 | "thirdPerson": "WINS", 3897 | "simplePast": "WON", 3898 | "pastParticiple": "WON", 3899 | "gerund": "WINNING", 3900 | "meaning": "Ganar" 3901 | }, 3902 | { 3903 | "id": 391, 3904 | "type": "I", 3905 | "simpleForm": "WIND", 3906 | "thirdPerson": "WINDS", 3907 | "simplePast": "WOUND", 3908 | "pastParticiple": "WOUND", 3909 | "gerund": "WINDING", 3910 | "meaning": "Dejar" 3911 | }, 3912 | { 3913 | "id": 392, 3914 | "type": "R", 3915 | "simpleForm": "WISH", 3916 | "thirdPerson": "WISHES", 3917 | "simplePast": "WISHED", 3918 | "pastParticiple": "WISHED", 3919 | "gerund": "WISHING", 3920 | "meaning": "Desear" 3921 | }, 3922 | { 3923 | "id": 393, 3924 | "type": "I", 3925 | "simpleForm": "WITHDRAW", 3926 | "thirdPerson": "WITHDRAWS", 3927 | "simplePast": "WITHDREW", 3928 | "pastParticiple": "WITHDRAWN", 3929 | "gerund": "WITHDRAWING", 3930 | "meaning": "Quitar Apartar Retirar" 3931 | }, 3932 | { 3933 | "id": 394, 3934 | "type": "R", 3935 | "simpleForm": "WONDER", 3936 | "thirdPerson": "WONDERS", 3937 | "simplePast": "WONDERED", 3938 | "pastParticiple": "WONDERED", 3939 | "gerund": "WONDERING", 3940 | "meaning": "Maravillarse Asombrarse Preguntarse" 3941 | }, 3942 | { 3943 | "id": 395, 3944 | "type": "R", 3945 | "simpleForm": "WORK", 3946 | "thirdPerson": "WORKS", 3947 | "simplePast": "WORKED", 3948 | "pastParticiple": "WORKED", 3949 | "gerund": "WORKING", 3950 | "meaning": "Trabajar Funcionar" 3951 | }, 3952 | { 3953 | "id": 396, 3954 | "type": "R", 3955 | "simpleForm": "WORRY", 3956 | "thirdPerson": "WORRIES", 3957 | "simplePast": "WORRIED", 3958 | "pastParticiple": "WORRIED", 3959 | "gerund": "WORRYING", 3960 | "meaning": "Preocupar" 3961 | }, 3962 | { 3963 | "id": 397, 3964 | "type": "R", 3965 | "simpleForm": "WRAP", 3966 | "thirdPerson": "WRAPS", 3967 | "simplePast": "WRAPPED", 3968 | "pastParticiple": "WRAPPED", 3969 | "gerund": "WRAPPING", 3970 | "meaning": "Empacar Envolver" 3971 | }, 3972 | { 3973 | "id": 398, 3974 | "type": "I", 3975 | "simpleForm": "WRING", 3976 | "thirdPerson": "WRINGS", 3977 | "simplePast": "WRUNG", 3978 | "pastParticiple": "WRUNG", 3979 | "gerund": "WRINGING", 3980 | "meaning": "Escurrir Retorcer" 3981 | }, 3982 | { 3983 | "id": 399, 3984 | "type": "I", 3985 | "simpleForm": "WRITE", 3986 | "thirdPerson": "WRITES", 3987 | "simplePast": "WROTE", 3988 | "pastParticiple": "WRITTEN", 3989 | "gerund": "WRITING", 3990 | "meaning": "Escribir Redactar" 3991 | }, 3992 | { 3993 | "id": 400, 3994 | "type": "R", 3995 | "simpleForm": "YAWN", 3996 | "thirdPerson": "YAWNS", 3997 | "simplePast": "YAWNED", 3998 | "pastParticiple": "YAWNED", 3999 | "gerund": "YAWNING", 4000 | "meaning": "Bostezar" 4001 | } 4002 | ] -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const HtmlWebpackPlugin = require('html-webpack-plugin') 3 | 4 | module.exports = { 5 | entry: './src/index.js', 6 | output: { 7 | path: path.resolve(__dirname, 'dist'), 8 | filename: 'bundle.js', 9 | }, 10 | resolve: { 11 | extensions: ['*', '.mjs', '.js', '.svelte'], 12 | }, 13 | module: { 14 | rules: [ 15 | { 16 | test: /\.js?$/, 17 | exclude: /node_modules/, 18 | use: { 19 | loader: 'babel-loader', 20 | }, 21 | }, 22 | { 23 | test: /\.svelte$/, 24 | exclude: /node_modules/, 25 | use: { 26 | loader: 'svelte-loader', 27 | }, 28 | }, 29 | ], 30 | }, 31 | plugins: [ 32 | new HtmlWebpackPlugin({ 33 | inject: true, 34 | template: './public/index.html', 35 | filename: './index.html', 36 | }), 37 | ], 38 | } 39 | --------------------------------------------------------------------------------