typefaster-cli 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. typefaster/__init__.py +3 -0
  2. typefaster/__main__.py +8 -0
  3. typefaster/assets/__init__.py +1 -0
  4. typefaster/assets/quotes.json +2642 -0
  5. typefaster/cli.py +196 -0
  6. typefaster/domain/__init__.py +1 -0
  7. typefaster/domain/anti_cheat.py +46 -0
  8. typefaster/domain/calculators.py +47 -0
  9. typefaster/domain/errors.py +19 -0
  10. typefaster/domain/ghost.py +61 -0
  11. typefaster/domain/models.py +186 -0
  12. typefaster/domain/typing_engine.py +150 -0
  13. typefaster/infra/__init__.py +1 -0
  14. typefaster/infra/clock.py +36 -0
  15. typefaster/infra/config.py +41 -0
  16. typefaster/infra/db.py +31 -0
  17. typefaster/infra/migrations.py +106 -0
  18. typefaster/infra/paths.py +35 -0
  19. typefaster/infra/quote_loader.py +53 -0
  20. typefaster/infra/replay_store.py +16 -0
  21. typefaster/infra/repository.py +63 -0
  22. typefaster/infra/sqlite_repository.py +360 -0
  23. typefaster/net/__init__.py +1 -0
  24. typefaster/net/api.py +103 -0
  25. typefaster/net/commands.py +188 -0
  26. typefaster/net/token_store.py +46 -0
  27. typefaster/services/__init__.py +1 -0
  28. typefaster/services/container.py +42 -0
  29. typefaster/services/daily_service.py +23 -0
  30. typefaster/services/ghost_service.py +50 -0
  31. typefaster/services/profile_service.py +18 -0
  32. typefaster/services/race_service.py +152 -0
  33. typefaster/services/stats_service.py +52 -0
  34. typefaster/ui/__init__.py +1 -0
  35. typefaster/ui/app.py +93 -0
  36. typefaster/ui/online_app.py +24 -0
  37. typefaster/ui/screens/__init__.py +1 -0
  38. typefaster/ui/screens/_base.py +30 -0
  39. typefaster/ui/screens/daily.py +64 -0
  40. typefaster/ui/screens/help.py +26 -0
  41. typefaster/ui/screens/history.py +34 -0
  42. typefaster/ui/screens/leaderboard.py +52 -0
  43. typefaster/ui/screens/main_menu.py +96 -0
  44. typefaster/ui/screens/online_race.py +241 -0
  45. typefaster/ui/screens/practice.py +57 -0
  46. typefaster/ui/screens/profile.py +28 -0
  47. typefaster/ui/screens/race.py +238 -0
  48. typefaster/ui/screens/results.py +89 -0
  49. typefaster/ui/screens/settings.py +81 -0
  50. typefaster/ui/screens/stats.py +65 -0
  51. typefaster/ui/theme.py +82 -0
  52. typefaster/ui/widgets/__init__.py +1 -0
  53. typefaster/ui/widgets/bigtext.py +39 -0
  54. typefaster/ui/widgets/live_stats.py +19 -0
  55. typefaster/ui/widgets/progress_bars.py +44 -0
  56. typefaster/ui/widgets/typing_field.py +28 -0
  57. typefaster_cli-0.1.0.dist-info/METADATA +168 -0
  58. typefaster_cli-0.1.0.dist-info/RECORD +61 -0
  59. typefaster_cli-0.1.0.dist-info/WHEEL +4 -0
  60. typefaster_cli-0.1.0.dist-info/entry_points.txt +2 -0
  61. typefaster_cli-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,2642 @@
1
+ [
2
+ {
3
+ "id": "q0001",
4
+ "text": "The only thing we have to fear is fear itself.",
5
+ "source": "Franklin D. Roosevelt"
6
+ },
7
+ {
8
+ "id": "q0002",
9
+ "text": "In the middle of difficulty lies opportunity.",
10
+ "source": "Albert Einstein"
11
+ },
12
+ {
13
+ "id": "q0003",
14
+ "text": "That which does not kill us makes us stronger.",
15
+ "source": "Friedrich Nietzsche"
16
+ },
17
+ {
18
+ "id": "q0004",
19
+ "text": "The unexamined life is not worth living.",
20
+ "source": "Socrates"
21
+ },
22
+ {
23
+ "id": "q0005",
24
+ "text": "I think, therefore I am.",
25
+ "source": "Rene Descartes"
26
+ },
27
+ {
28
+ "id": "q0006",
29
+ "text": "Knowledge is power.",
30
+ "source": "Francis Bacon"
31
+ },
32
+ {
33
+ "id": "q0007",
34
+ "text": "Veni, vidi, vici. I came, I saw, I conquered.",
35
+ "source": "Julius Caesar"
36
+ },
37
+ {
38
+ "id": "q0008",
39
+ "text": "The pen is mightier than the sword.",
40
+ "source": "Edward Bulwer-Lytton"
41
+ },
42
+ {
43
+ "id": "q0009",
44
+ "text": "To be, or not to be, that is the question.",
45
+ "source": "William Shakespeare"
46
+ },
47
+ {
48
+ "id": "q0010",
49
+ "text": "All the world's a stage, and all the men and women merely players.",
50
+ "source": "William Shakespeare"
51
+ },
52
+ {
53
+ "id": "q0011",
54
+ "text": "We are such stuff as dreams are made on.",
55
+ "source": "William Shakespeare"
56
+ },
57
+ {
58
+ "id": "q0012",
59
+ "text": "Cowards die many times before their deaths.",
60
+ "source": "William Shakespeare"
61
+ },
62
+ {
63
+ "id": "q0013",
64
+ "text": "The fault, dear Brutus, is not in our stars, but in ourselves.",
65
+ "source": "William Shakespeare"
66
+ },
67
+ {
68
+ "id": "q0014",
69
+ "text": "Some are born great, some achieve greatness.",
70
+ "source": "William Shakespeare"
71
+ },
72
+ {
73
+ "id": "q0015",
74
+ "text": "Better three hours too soon than a minute too late.",
75
+ "source": "William Shakespeare"
76
+ },
77
+ {
78
+ "id": "q0016",
79
+ "text": "It is a far, far better thing that I do, than I have ever done.",
80
+ "source": "Charles Dickens"
81
+ },
82
+ {
83
+ "id": "q0017",
84
+ "text": "It was the best of times, it was the worst of times.",
85
+ "source": "Charles Dickens"
86
+ },
87
+ {
88
+ "id": "q0018",
89
+ "text": "Please, sir, I want some more.",
90
+ "source": "Charles Dickens"
91
+ },
92
+ {
93
+ "id": "q0019",
94
+ "text": "It is a truth universally acknowledged that a single man in possession of a good fortune must be in want of a wife.",
95
+ "source": "Jane Austen"
96
+ },
97
+ {
98
+ "id": "q0020",
99
+ "text": "There is no charm equal to tenderness of heart.",
100
+ "source": "Jane Austen"
101
+ },
102
+ {
103
+ "id": "q0021",
104
+ "text": "Call me Ishmael.",
105
+ "source": "Herman Melville"
106
+ },
107
+ {
108
+ "id": "q0022",
109
+ "text": "It is not down on any map; true places never are.",
110
+ "source": "Herman Melville"
111
+ },
112
+ {
113
+ "id": "q0023",
114
+ "text": "All animals are equal, but some are more equal than others.",
115
+ "source": "George Orwell"
116
+ },
117
+ {
118
+ "id": "q0024",
119
+ "text": "Whatever is begun in anger ends in shame.",
120
+ "source": "Benjamin Franklin"
121
+ },
122
+ {
123
+ "id": "q0025",
124
+ "text": "An investment in knowledge pays the best interest.",
125
+ "source": "Benjamin Franklin"
126
+ },
127
+ {
128
+ "id": "q0026",
129
+ "text": "Well done is better than well said.",
130
+ "source": "Benjamin Franklin"
131
+ },
132
+ {
133
+ "id": "q0027",
134
+ "text": "By failing to prepare, you are preparing to fail.",
135
+ "source": "Benjamin Franklin"
136
+ },
137
+ {
138
+ "id": "q0028",
139
+ "text": "Lost time is never found again.",
140
+ "source": "Benjamin Franklin"
141
+ },
142
+ {
143
+ "id": "q0029",
144
+ "text": "Either write something worth reading or do something worth writing.",
145
+ "source": "Benjamin Franklin"
146
+ },
147
+ {
148
+ "id": "q0030",
149
+ "text": "Tell me and I forget. Teach me and I remember. Involve me and I learn.",
150
+ "source": "Benjamin Franklin"
151
+ },
152
+ {
153
+ "id": "q0031",
154
+ "text": "Genius is one percent inspiration and ninety-nine percent perspiration.",
155
+ "source": "Thomas Edison"
156
+ },
157
+ {
158
+ "id": "q0032",
159
+ "text": "I have not failed. I've just found ten thousand ways that won't work.",
160
+ "source": "Thomas Edison"
161
+ },
162
+ {
163
+ "id": "q0033",
164
+ "text": "Our greatest weakness lies in giving up.",
165
+ "source": "Thomas Edison"
166
+ },
167
+ {
168
+ "id": "q0034",
169
+ "text": "Imagination is more important than knowledge.",
170
+ "source": "Albert Einstein"
171
+ },
172
+ {
173
+ "id": "q0035",
174
+ "text": "Life is like riding a bicycle. To keep your balance you must keep moving.",
175
+ "source": "Albert Einstein"
176
+ },
177
+ {
178
+ "id": "q0036",
179
+ "text": "A person who never made a mistake never tried anything new.",
180
+ "source": "Albert Einstein"
181
+ },
182
+ {
183
+ "id": "q0037",
184
+ "text": "Strive not to be a success, but rather to be of value.",
185
+ "source": "Albert Einstein"
186
+ },
187
+ {
188
+ "id": "q0038",
189
+ "text": "Logic will get you from A to B. Imagination will take you everywhere.",
190
+ "source": "Albert Einstein"
191
+ },
192
+ {
193
+ "id": "q0039",
194
+ "text": "The important thing is not to stop questioning.",
195
+ "source": "Albert Einstein"
196
+ },
197
+ {
198
+ "id": "q0040",
199
+ "text": "Eighty percent of success is showing up.",
200
+ "source": "Woody Allen"
201
+ },
202
+ {
203
+ "id": "q0041",
204
+ "text": "The journey of a thousand miles begins with a single step.",
205
+ "source": "Lao Tzu"
206
+ },
207
+ {
208
+ "id": "q0042",
209
+ "text": "When I let go of what I am, I become what I might be.",
210
+ "source": "Lao Tzu"
211
+ },
212
+ {
213
+ "id": "q0043",
214
+ "text": "He who knows that enough is enough will always have enough.",
215
+ "source": "Lao Tzu"
216
+ },
217
+ {
218
+ "id": "q0044",
219
+ "text": "Nature does not hurry, yet everything is accomplished.",
220
+ "source": "Lao Tzu"
221
+ },
222
+ {
223
+ "id": "q0045",
224
+ "text": "Knowing others is wisdom, knowing yourself is enlightenment.",
225
+ "source": "Lao Tzu"
226
+ },
227
+ {
228
+ "id": "q0046",
229
+ "text": "It does not matter how slowly you go as long as you do not stop.",
230
+ "source": "Confucius"
231
+ },
232
+ {
233
+ "id": "q0047",
234
+ "text": "Our greatest glory is not in never falling, but in rising every time we fall.",
235
+ "source": "Confucius"
236
+ },
237
+ {
238
+ "id": "q0048",
239
+ "text": "Everything has beauty, but not everyone sees it.",
240
+ "source": "Confucius"
241
+ },
242
+ {
243
+ "id": "q0049",
244
+ "text": "Real knowledge is to know the extent of one's ignorance.",
245
+ "source": "Confucius"
246
+ },
247
+ {
248
+ "id": "q0050",
249
+ "text": "The man who moves a mountain begins by carrying away small stones.",
250
+ "source": "Confucius"
251
+ },
252
+ {
253
+ "id": "q0051",
254
+ "text": "Wheresoever you go, go with all your heart.",
255
+ "source": "Confucius"
256
+ },
257
+ {
258
+ "id": "q0052",
259
+ "text": "Life is really simple, but we insist on making it complicated.",
260
+ "source": "Confucius"
261
+ },
262
+ {
263
+ "id": "q0053",
264
+ "text": "I cannot teach anybody anything. I can only make them think.",
265
+ "source": "Socrates"
266
+ },
267
+ {
268
+ "id": "q0054",
269
+ "text": "The only true wisdom is in knowing you know nothing.",
270
+ "source": "Socrates"
271
+ },
272
+ {
273
+ "id": "q0055",
274
+ "text": "Wonder is the beginning of wisdom.",
275
+ "source": "Socrates"
276
+ },
277
+ {
278
+ "id": "q0056",
279
+ "text": "Be kind, for everyone you meet is fighting a hard battle.",
280
+ "source": "Plato"
281
+ },
282
+ {
283
+ "id": "q0057",
284
+ "text": "The beginning is the most important part of the work.",
285
+ "source": "Plato"
286
+ },
287
+ {
288
+ "id": "q0058",
289
+ "text": "Necessity is the mother of invention.",
290
+ "source": "Plato"
291
+ },
292
+ {
293
+ "id": "q0059",
294
+ "text": "We are what we repeatedly do. Excellence, then, is not an act, but a habit.",
295
+ "source": "Aristotle"
296
+ },
297
+ {
298
+ "id": "q0060",
299
+ "text": "Knowing yourself is the beginning of all wisdom.",
300
+ "source": "Aristotle"
301
+ },
302
+ {
303
+ "id": "q0061",
304
+ "text": "Patience is bitter, but its fruit is sweet.",
305
+ "source": "Aristotle"
306
+ },
307
+ {
308
+ "id": "q0062",
309
+ "text": "Quality is not an act, it is a habit.",
310
+ "source": "Aristotle"
311
+ },
312
+ {
313
+ "id": "q0063",
314
+ "text": "It is the mark of an educated mind to entertain a thought without accepting it.",
315
+ "source": "Aristotle"
316
+ },
317
+ {
318
+ "id": "q0064",
319
+ "text": "The whole is greater than the sum of its parts.",
320
+ "source": "Aristotle"
321
+ },
322
+ {
323
+ "id": "q0065",
324
+ "text": "Happiness depends upon ourselves.",
325
+ "source": "Aristotle"
326
+ },
327
+ {
328
+ "id": "q0066",
329
+ "text": "Float like a butterfly, sting like a bee.",
330
+ "source": "Muhammad Ali"
331
+ },
332
+ {
333
+ "id": "q0067",
334
+ "text": "Two roads diverged in a wood, and I took the one less traveled by.",
335
+ "source": "Robert Frost"
336
+ },
337
+ {
338
+ "id": "q0068",
339
+ "text": "In three words I can sum up everything I've learned about life: it goes on.",
340
+ "source": "Robert Frost"
341
+ },
342
+ {
343
+ "id": "q0069",
344
+ "text": "The woods are lovely, dark and deep, but I have promises to keep.",
345
+ "source": "Robert Frost"
346
+ },
347
+ {
348
+ "id": "q0070",
349
+ "text": "Hope is the thing with feathers that perches in the soul.",
350
+ "source": "Emily Dickinson"
351
+ },
352
+ {
353
+ "id": "q0071",
354
+ "text": "Tell all the truth but tell it slant.",
355
+ "source": "Emily Dickinson"
356
+ },
357
+ {
358
+ "id": "q0072",
359
+ "text": "That it will never come again is what makes life so sweet.",
360
+ "source": "Emily Dickinson"
361
+ },
362
+ {
363
+ "id": "q0073",
364
+ "text": "Do I dare disturb the universe?",
365
+ "source": "T. S. Eliot"
366
+ },
367
+ {
368
+ "id": "q0074",
369
+ "text": "Not with a bang but a whimper.",
370
+ "source": "T. S. Eliot"
371
+ },
372
+ {
373
+ "id": "q0075",
374
+ "text": "I have measured out my life with coffee spoons.",
375
+ "source": "T. S. Eliot"
376
+ },
377
+ {
378
+ "id": "q0076",
379
+ "text": "Do not go gentle into that good night.",
380
+ "source": "Dylan Thomas"
381
+ },
382
+ {
383
+ "id": "q0077",
384
+ "text": "I wandered lonely as a cloud that floats on high.",
385
+ "source": "William Wordsworth"
386
+ },
387
+ {
388
+ "id": "q0078",
389
+ "text": "The child is father of the man.",
390
+ "source": "William Wordsworth"
391
+ },
392
+ {
393
+ "id": "q0079",
394
+ "text": "Beauty is truth, truth beauty, that is all ye know on earth.",
395
+ "source": "John Keats"
396
+ },
397
+ {
398
+ "id": "q0080",
399
+ "text": "A thing of beauty is a joy for ever.",
400
+ "source": "John Keats"
401
+ },
402
+ {
403
+ "id": "q0081",
404
+ "text": "If winter comes, can spring be far behind?",
405
+ "source": "Percy Bysshe Shelley"
406
+ },
407
+ {
408
+ "id": "q0082",
409
+ "text": "She walks in beauty, like the night.",
410
+ "source": "Lord Byron"
411
+ },
412
+ {
413
+ "id": "q0083",
414
+ "text": "A little learning is a dangerous thing.",
415
+ "source": "Alexander Pope"
416
+ },
417
+ {
418
+ "id": "q0084",
419
+ "text": "To err is human, to forgive divine.",
420
+ "source": "Alexander Pope"
421
+ },
422
+ {
423
+ "id": "q0085",
424
+ "text": "Hope springs eternal in the human breast.",
425
+ "source": "Alexander Pope"
426
+ },
427
+ {
428
+ "id": "q0086",
429
+ "text": "No man is an island entire of itself.",
430
+ "source": "John Donne"
431
+ },
432
+ {
433
+ "id": "q0087",
434
+ "text": "Never send to know for whom the bell tolls; it tolls for thee.",
435
+ "source": "John Donne"
436
+ },
437
+ {
438
+ "id": "q0088",
439
+ "text": "Had we but world enough and time.",
440
+ "source": "Andrew Marvell"
441
+ },
442
+ {
443
+ "id": "q0089",
444
+ "text": "They also serve who only stand and wait.",
445
+ "source": "John Milton"
446
+ },
447
+ {
448
+ "id": "q0090",
449
+ "text": "The mind is its own place, and in itself can make a heaven of hell.",
450
+ "source": "John Milton"
451
+ },
452
+ {
453
+ "id": "q0091",
454
+ "text": "Better to reign in hell than serve in heaven.",
455
+ "source": "John Milton"
456
+ },
457
+ {
458
+ "id": "q0092",
459
+ "text": "All that glitters is not gold.",
460
+ "source": "William Shakespeare"
461
+ },
462
+ {
463
+ "id": "q0093",
464
+ "text": "Brevity is the soul of wit.",
465
+ "source": "William Shakespeare"
466
+ },
467
+ {
468
+ "id": "q0094",
469
+ "text": "Give every man thy ear, but few thy voice.",
470
+ "source": "William Shakespeare"
471
+ },
472
+ {
473
+ "id": "q0095",
474
+ "text": "This above all: to thine own self be true.",
475
+ "source": "William Shakespeare"
476
+ },
477
+ {
478
+ "id": "q0096",
479
+ "text": "Nothing will come of nothing.",
480
+ "source": "William Shakespeare"
481
+ },
482
+ {
483
+ "id": "q0097",
484
+ "text": "The course of true love never did run smooth.",
485
+ "source": "William Shakespeare"
486
+ },
487
+ {
488
+ "id": "q0098",
489
+ "text": "Now is the winter of our discontent.",
490
+ "source": "William Shakespeare"
491
+ },
492
+ {
493
+ "id": "q0099",
494
+ "text": "If music be the food of love, play on.",
495
+ "source": "William Shakespeare"
496
+ },
497
+ {
498
+ "id": "q0100",
499
+ "text": "What's done cannot be undone.",
500
+ "source": "William Shakespeare"
501
+ },
502
+ {
503
+ "id": "q0101",
504
+ "text": "There is nothing either good or bad, but thinking makes it so.",
505
+ "source": "William Shakespeare"
506
+ },
507
+ {
508
+ "id": "q0102",
509
+ "text": "The lady doth protest too much, methinks.",
510
+ "source": "William Shakespeare"
511
+ },
512
+ {
513
+ "id": "q0103",
514
+ "text": "We know what we are, but know not what we may be.",
515
+ "source": "William Shakespeare"
516
+ },
517
+ {
518
+ "id": "q0104",
519
+ "text": "Action is eloquence.",
520
+ "source": "William Shakespeare"
521
+ },
522
+ {
523
+ "id": "q0105",
524
+ "text": "How far that little candle throws his beams.",
525
+ "source": "William Shakespeare"
526
+ },
527
+ {
528
+ "id": "q0106",
529
+ "text": "Reading is to the mind what exercise is to the body.",
530
+ "source": "Joseph Addison"
531
+ },
532
+ {
533
+ "id": "q0107",
534
+ "text": "A man should never be ashamed to own he has been in the wrong.",
535
+ "source": "Alexander Pope"
536
+ },
537
+ {
538
+ "id": "q0108",
539
+ "text": "The proper study of mankind is man.",
540
+ "source": "Alexander Pope"
541
+ },
542
+ {
543
+ "id": "q0109",
544
+ "text": "History is the version of past events that people have decided to agree upon.",
545
+ "source": "Napoleon Bonaparte"
546
+ },
547
+ {
548
+ "id": "q0110",
549
+ "text": "Never interrupt your enemy when he is making a mistake.",
550
+ "source": "Napoleon Bonaparte"
551
+ },
552
+ {
553
+ "id": "q0111",
554
+ "text": "Impossible is a word found only in the dictionary of fools.",
555
+ "source": "Napoleon Bonaparte"
556
+ },
557
+ {
558
+ "id": "q0112",
559
+ "text": "Give me six hours to chop down a tree and I will spend the first four sharpening the axe.",
560
+ "source": "Abraham Lincoln"
561
+ },
562
+ {
563
+ "id": "q0113",
564
+ "text": "Whatever you are, be a good one.",
565
+ "source": "Abraham Lincoln"
566
+ },
567
+ {
568
+ "id": "q0114",
569
+ "text": "Nearly all men can stand adversity, but if you want to test a man's character, give him power.",
570
+ "source": "Abraham Lincoln"
571
+ },
572
+ {
573
+ "id": "q0115",
574
+ "text": "The best way to predict your future is to create it.",
575
+ "source": "Abraham Lincoln"
576
+ },
577
+ {
578
+ "id": "q0116",
579
+ "text": "Folks are usually about as happy as they make their minds up to be.",
580
+ "source": "Abraham Lincoln"
581
+ },
582
+ {
583
+ "id": "q0117",
584
+ "text": "Government of the people, by the people, for the people, shall not perish from the earth.",
585
+ "source": "Abraham Lincoln"
586
+ },
587
+ {
588
+ "id": "q0118",
589
+ "text": "Ask not what your country can do for you.",
590
+ "source": "John F. Kennedy"
591
+ },
592
+ {
593
+ "id": "q0119",
594
+ "text": "A rose by any other name would smell as sweet.",
595
+ "source": "William Shakespeare"
596
+ },
597
+ {
598
+ "id": "q0120",
599
+ "text": "Discretion is the better part of valor.",
600
+ "source": "William Shakespeare"
601
+ },
602
+ {
603
+ "id": "q0121",
604
+ "text": "Twenty years from now you will be more disappointed by the things you did not do.",
605
+ "source": "Mark Twain"
606
+ },
607
+ {
608
+ "id": "q0122",
609
+ "text": "The secret of getting ahead is getting started.",
610
+ "source": "Mark Twain"
611
+ },
612
+ {
613
+ "id": "q0123",
614
+ "text": "Whenever you find yourself on the side of the majority, it is time to pause and reflect.",
615
+ "source": "Mark Twain"
616
+ },
617
+ {
618
+ "id": "q0124",
619
+ "text": "Kindness is the language which the deaf can hear and the blind can see.",
620
+ "source": "Mark Twain"
621
+ },
622
+ {
623
+ "id": "q0125",
624
+ "text": "Courage is resistance to fear, mastery of fear, not absence of fear.",
625
+ "source": "Mark Twain"
626
+ },
627
+ {
628
+ "id": "q0126",
629
+ "text": "The two most important days in your life are the day you are born and the day you find out why.",
630
+ "source": "Mark Twain"
631
+ },
632
+ {
633
+ "id": "q0127",
634
+ "text": "Get your facts first, then you can distort them as you please.",
635
+ "source": "Mark Twain"
636
+ },
637
+ {
638
+ "id": "q0128",
639
+ "text": "Good friends, good books, and a sleepy conscience: this is the ideal life.",
640
+ "source": "Mark Twain"
641
+ },
642
+ {
643
+ "id": "q0129",
644
+ "text": "It is not the size of the dog in the fight, it is the size of the fight in the dog.",
645
+ "source": "Mark Twain"
646
+ },
647
+ {
648
+ "id": "q0130",
649
+ "text": "Be yourself; everyone else is already taken.",
650
+ "source": "Oscar Wilde"
651
+ },
652
+ {
653
+ "id": "q0131",
654
+ "text": "We are all in the gutter, but some of us are looking at the stars.",
655
+ "source": "Oscar Wilde"
656
+ },
657
+ {
658
+ "id": "q0132",
659
+ "text": "To live is the rarest thing in the world; most people exist, that is all.",
660
+ "source": "Oscar Wilde"
661
+ },
662
+ {
663
+ "id": "q0133",
664
+ "text": "Always forgive your enemies; nothing annoys them so much.",
665
+ "source": "Oscar Wilde"
666
+ },
667
+ {
668
+ "id": "q0134",
669
+ "text": "Experience is simply the name we give our mistakes.",
670
+ "source": "Oscar Wilde"
671
+ },
672
+ {
673
+ "id": "q0135",
674
+ "text": "The truth is rarely pure and never simple.",
675
+ "source": "Oscar Wilde"
676
+ },
677
+ {
678
+ "id": "q0136",
679
+ "text": "I can resist everything except temptation.",
680
+ "source": "Oscar Wilde"
681
+ },
682
+ {
683
+ "id": "q0137",
684
+ "text": "A cynic is a man who knows the price of everything and the value of nothing.",
685
+ "source": "Oscar Wilde"
686
+ },
687
+ {
688
+ "id": "q0138",
689
+ "text": "It is better to be looked over than overlooked.",
690
+ "source": "Mae West"
691
+ },
692
+ {
693
+ "id": "q0139",
694
+ "text": "When written in Chinese, the word crisis is composed of two characters.",
695
+ "source": "John F. Kennedy"
696
+ },
697
+ {
698
+ "id": "q0140",
699
+ "text": "Do not wait to strike till the iron is hot, but make it hot by striking.",
700
+ "source": "William Butler Yeats"
701
+ },
702
+ {
703
+ "id": "q0141",
704
+ "text": "Education is not the filling of a pail, but the lighting of a fire.",
705
+ "source": "William Butler Yeats"
706
+ },
707
+ {
708
+ "id": "q0142",
709
+ "text": "Think where man's glory most begins and ends.",
710
+ "source": "William Butler Yeats"
711
+ },
712
+ {
713
+ "id": "q0143",
714
+ "text": "The best lack all conviction, while the worst are full of passionate intensity.",
715
+ "source": "William Butler Yeats"
716
+ },
717
+ {
718
+ "id": "q0144",
719
+ "text": "There is no greatness where there is no simplicity, goodness, and truth.",
720
+ "source": "Leo Tolstoy"
721
+ },
722
+ {
723
+ "id": "q0145",
724
+ "text": "Everyone thinks of changing the world, but no one thinks of changing himself.",
725
+ "source": "Leo Tolstoy"
726
+ },
727
+ {
728
+ "id": "q0146",
729
+ "text": "All happy families are alike; each unhappy family is unhappy in its own way.",
730
+ "source": "Leo Tolstoy"
731
+ },
732
+ {
733
+ "id": "q0147",
734
+ "text": "The two most powerful warriors are patience and time.",
735
+ "source": "Leo Tolstoy"
736
+ },
737
+ {
738
+ "id": "q0148",
739
+ "text": "Beauty will save the world.",
740
+ "source": "Fyodor Dostoevsky"
741
+ },
742
+ {
743
+ "id": "q0149",
744
+ "text": "The mystery of human existence lies not in just staying alive, but in finding something to live for.",
745
+ "source": "Fyodor Dostoevsky"
746
+ },
747
+ {
748
+ "id": "q0150",
749
+ "text": "Pain and suffering are always inevitable for a large intelligence and a deep heart.",
750
+ "source": "Fyodor Dostoevsky"
751
+ },
752
+ {
753
+ "id": "q0151",
754
+ "text": "To go wrong in one's own way is better than to go right in someone else's.",
755
+ "source": "Fyodor Dostoevsky"
756
+ },
757
+ {
758
+ "id": "q0152",
759
+ "text": "Man is what he believes.",
760
+ "source": "Anton Chekhov"
761
+ },
762
+ {
763
+ "id": "q0153",
764
+ "text": "Knowledge is of no value unless you put it into practice.",
765
+ "source": "Anton Chekhov"
766
+ },
767
+ {
768
+ "id": "q0154",
769
+ "text": "Don't tell me the moon is shining; show me the glint of light on broken glass.",
770
+ "source": "Anton Chekhov"
771
+ },
772
+ {
773
+ "id": "q0155",
774
+ "text": "Not all those who wander are lost.",
775
+ "source": "J. R. R. Tolkien"
776
+ },
777
+ {
778
+ "id": "q0156",
779
+ "text": "Even the smallest person can change the course of the future.",
780
+ "source": "J. R. R. Tolkien"
781
+ },
782
+ {
783
+ "id": "q0157",
784
+ "text": "Little by little, one travels far.",
785
+ "source": "J. R. R. Tolkien"
786
+ },
787
+ {
788
+ "id": "q0158",
789
+ "text": "All we have to decide is what to do with the time that is given us.",
790
+ "source": "J. R. R. Tolkien"
791
+ },
792
+ {
793
+ "id": "q0159",
794
+ "text": "Courage is found in unlikely places.",
795
+ "source": "J. R. R. Tolkien"
796
+ },
797
+ {
798
+ "id": "q0160",
799
+ "text": "It's the job that's never started as takes longest to finish.",
800
+ "source": "J. R. R. Tolkien"
801
+ },
802
+ {
803
+ "id": "q0161",
804
+ "text": "A single dream is more powerful than a thousand realities.",
805
+ "source": "J. R. R. Tolkien"
806
+ },
807
+ {
808
+ "id": "q0162",
809
+ "text": "The longest journey begins beneath one's own feet.",
810
+ "source": "Old Proverb"
811
+ },
812
+ {
813
+ "id": "q0163",
814
+ "text": "Actions speak louder than words.",
815
+ "source": "Proverb"
816
+ },
817
+ {
818
+ "id": "q0164",
819
+ "text": "A picture is worth a thousand words.",
820
+ "source": "Proverb"
821
+ },
822
+ {
823
+ "id": "q0165",
824
+ "text": "The early bird catches the worm.",
825
+ "source": "Proverb"
826
+ },
827
+ {
828
+ "id": "q0166",
829
+ "text": "Honesty is the best policy.",
830
+ "source": "Proverb"
831
+ },
832
+ {
833
+ "id": "q0167",
834
+ "text": "Practice makes perfect.",
835
+ "source": "Proverb"
836
+ },
837
+ {
838
+ "id": "q0168",
839
+ "text": "Where there is a will, there is a way.",
840
+ "source": "Proverb"
841
+ },
842
+ {
843
+ "id": "q0169",
844
+ "text": "Better late than never.",
845
+ "source": "Proverb"
846
+ },
847
+ {
848
+ "id": "q0170",
849
+ "text": "Birds of a feather flock together.",
850
+ "source": "Proverb"
851
+ },
852
+ {
853
+ "id": "q0171",
854
+ "text": "Don't count your chickens before they hatch.",
855
+ "source": "Proverb"
856
+ },
857
+ {
858
+ "id": "q0172",
859
+ "text": "Every cloud has a silver lining.",
860
+ "source": "Proverb"
861
+ },
862
+ {
863
+ "id": "q0173",
864
+ "text": "Fortune favors the bold.",
865
+ "source": "Proverb"
866
+ },
867
+ {
868
+ "id": "q0174",
869
+ "text": "Great minds think alike.",
870
+ "source": "Proverb"
871
+ },
872
+ {
873
+ "id": "q0175",
874
+ "text": "If it ain't broke, don't fix it.",
875
+ "source": "Proverb"
876
+ },
877
+ {
878
+ "id": "q0176",
879
+ "text": "Look before you leap.",
880
+ "source": "Proverb"
881
+ },
882
+ {
883
+ "id": "q0177",
884
+ "text": "Out of sight, out of mind.",
885
+ "source": "Proverb"
886
+ },
887
+ {
888
+ "id": "q0178",
889
+ "text": "Rome was not built in a day.",
890
+ "source": "Proverb"
891
+ },
892
+ {
893
+ "id": "q0179",
894
+ "text": "The grass is always greener on the other side.",
895
+ "source": "Proverb"
896
+ },
897
+ {
898
+ "id": "q0180",
899
+ "text": "When in Rome, do as the Romans do.",
900
+ "source": "Proverb"
901
+ },
902
+ {
903
+ "id": "q0181",
904
+ "text": "You can't judge a book by its cover.",
905
+ "source": "Proverb"
906
+ },
907
+ {
908
+ "id": "q0182",
909
+ "text": "A chain is only as strong as its weakest link.",
910
+ "source": "Proverb"
911
+ },
912
+ {
913
+ "id": "q0183",
914
+ "text": "A friend in need is a friend indeed.",
915
+ "source": "Proverb"
916
+ },
917
+ {
918
+ "id": "q0184",
919
+ "text": "All good things must come to an end.",
920
+ "source": "Proverb"
921
+ },
922
+ {
923
+ "id": "q0185",
924
+ "text": "An apple a day keeps the doctor away.",
925
+ "source": "Proverb"
926
+ },
927
+ {
928
+ "id": "q0186",
929
+ "text": "Beggars can't be choosers.",
930
+ "source": "Proverb"
931
+ },
932
+ {
933
+ "id": "q0187",
934
+ "text": "Curiosity killed the cat.",
935
+ "source": "Proverb"
936
+ },
937
+ {
938
+ "id": "q0188",
939
+ "text": "Don't bite the hand that feeds you.",
940
+ "source": "Proverb"
941
+ },
942
+ {
943
+ "id": "q0189",
944
+ "text": "Don't put all your eggs in one basket.",
945
+ "source": "Proverb"
946
+ },
947
+ {
948
+ "id": "q0190",
949
+ "text": "Easy come, easy go.",
950
+ "source": "Proverb"
951
+ },
952
+ {
953
+ "id": "q0191",
954
+ "text": "Familiarity breeds contempt.",
955
+ "source": "Proverb"
956
+ },
957
+ {
958
+ "id": "q0192",
959
+ "text": "Good things come to those who wait.",
960
+ "source": "Proverb"
961
+ },
962
+ {
963
+ "id": "q0193",
964
+ "text": "Hope for the best, prepare for the worst.",
965
+ "source": "Proverb"
966
+ },
967
+ {
968
+ "id": "q0194",
969
+ "text": "If you can't beat them, join them.",
970
+ "source": "Proverb"
971
+ },
972
+ {
973
+ "id": "q0195",
974
+ "text": "Keep your friends close and your enemies closer.",
975
+ "source": "Proverb"
976
+ },
977
+ {
978
+ "id": "q0196",
979
+ "text": "Laughter is the best medicine.",
980
+ "source": "Proverb"
981
+ },
982
+ {
983
+ "id": "q0197",
984
+ "text": "Many hands make light work.",
985
+ "source": "Proverb"
986
+ },
987
+ {
988
+ "id": "q0198",
989
+ "text": "No news is good news.",
990
+ "source": "Proverb"
991
+ },
992
+ {
993
+ "id": "q0199",
994
+ "text": "Once bitten, twice shy.",
995
+ "source": "Proverb"
996
+ },
997
+ {
998
+ "id": "q0200",
999
+ "text": "People who live in glass houses shouldn't throw stones.",
1000
+ "source": "Proverb"
1001
+ },
1002
+ {
1003
+ "id": "q0201",
1004
+ "text": "Slow and steady wins the race.",
1005
+ "source": "Proverb"
1006
+ },
1007
+ {
1008
+ "id": "q0202",
1009
+ "text": "The squeaky wheel gets the grease.",
1010
+ "source": "Proverb"
1011
+ },
1012
+ {
1013
+ "id": "q0203",
1014
+ "text": "There's no place like home.",
1015
+ "source": "Proverb"
1016
+ },
1017
+ {
1018
+ "id": "q0204",
1019
+ "text": "Two heads are better than one.",
1020
+ "source": "Proverb"
1021
+ },
1022
+ {
1023
+ "id": "q0205",
1024
+ "text": "When the going gets tough, the tough get going.",
1025
+ "source": "Proverb"
1026
+ },
1027
+ {
1028
+ "id": "q0206",
1029
+ "text": "You reap what you sow.",
1030
+ "source": "Proverb"
1031
+ },
1032
+ {
1033
+ "id": "q0207",
1034
+ "text": "A journey of self-discovery starts with a single honest question.",
1035
+ "source": "Proverb"
1036
+ },
1037
+ {
1038
+ "id": "q0208",
1039
+ "text": "Measure twice and cut once.",
1040
+ "source": "Proverb"
1041
+ },
1042
+ {
1043
+ "id": "q0209",
1044
+ "text": "Strike while the iron is hot.",
1045
+ "source": "Proverb"
1046
+ },
1047
+ {
1048
+ "id": "q0210",
1049
+ "text": "The apple never falls far from the tree.",
1050
+ "source": "Proverb"
1051
+ },
1052
+ {
1053
+ "id": "q0211",
1054
+ "text": "Time and tide wait for no one.",
1055
+ "source": "Proverb"
1056
+ },
1057
+ {
1058
+ "id": "q0212",
1059
+ "text": "A watched pot never boils.",
1060
+ "source": "Proverb"
1061
+ },
1062
+ {
1063
+ "id": "q0213",
1064
+ "text": "Don't cross the bridge until you come to it.",
1065
+ "source": "Proverb"
1066
+ },
1067
+ {
1068
+ "id": "q0214",
1069
+ "text": "Absence makes the heart grow fonder.",
1070
+ "source": "Proverb"
1071
+ },
1072
+ {
1073
+ "id": "q0215",
1074
+ "text": "Beauty is in the eye of the beholder.",
1075
+ "source": "Proverb"
1076
+ },
1077
+ {
1078
+ "id": "q0216",
1079
+ "text": "Blood is thicker than water.",
1080
+ "source": "Proverb"
1081
+ },
1082
+ {
1083
+ "id": "q0217",
1084
+ "text": "Cleanliness is next to godliness.",
1085
+ "source": "Proverb"
1086
+ },
1087
+ {
1088
+ "id": "q0218",
1089
+ "text": "Every dog has its day.",
1090
+ "source": "Proverb"
1091
+ },
1092
+ {
1093
+ "id": "q0219",
1094
+ "text": "Give credit where credit is due.",
1095
+ "source": "Proverb"
1096
+ },
1097
+ {
1098
+ "id": "q0220",
1099
+ "text": "Half a loaf is better than none.",
1100
+ "source": "Proverb"
1101
+ },
1102
+ {
1103
+ "id": "q0221",
1104
+ "text": "Ignorance is bliss.",
1105
+ "source": "Proverb"
1106
+ },
1107
+ {
1108
+ "id": "q0222",
1109
+ "text": "It takes two to tango.",
1110
+ "source": "Proverb"
1111
+ },
1112
+ {
1113
+ "id": "q0223",
1114
+ "text": "Jack of all trades, master of none.",
1115
+ "source": "Proverb"
1116
+ },
1117
+ {
1118
+ "id": "q0224",
1119
+ "text": "Knowledge speaks, but wisdom listens.",
1120
+ "source": "Proverb"
1121
+ },
1122
+ {
1123
+ "id": "q0225",
1124
+ "text": "Let sleeping dogs lie.",
1125
+ "source": "Proverb"
1126
+ },
1127
+ {
1128
+ "id": "q0226",
1129
+ "text": "Make hay while the sun shines.",
1130
+ "source": "Proverb"
1131
+ },
1132
+ {
1133
+ "id": "q0227",
1134
+ "text": "Never look a gift horse in the mouth.",
1135
+ "source": "Proverb"
1136
+ },
1137
+ {
1138
+ "id": "q0228",
1139
+ "text": "Opportunity seldom knocks twice.",
1140
+ "source": "Proverb"
1141
+ },
1142
+ {
1143
+ "id": "q0229",
1144
+ "text": "Patience is a virtue worth cultivating.",
1145
+ "source": "Proverb"
1146
+ },
1147
+ {
1148
+ "id": "q0230",
1149
+ "text": "Still waters run deep.",
1150
+ "source": "Proverb"
1151
+ },
1152
+ {
1153
+ "id": "q0231",
1154
+ "text": "The pen leaves a longer shadow than the sword.",
1155
+ "source": "Proverb"
1156
+ },
1157
+ {
1158
+ "id": "q0232",
1159
+ "text": "A humble farmer circled back against the wind beneath a sky of stars long after the others had given up.",
1160
+ "source": "Typing Practice"
1161
+ },
1162
+ {
1163
+ "id": "q0233",
1164
+ "text": "A humble farmer climbed against the wind down the narrow lane as the lanterns flickered in the dark.",
1165
+ "source": "Typing Practice"
1166
+ },
1167
+ {
1168
+ "id": "q0234",
1169
+ "text": "A humble farmer climbed under a pale moon down the narrow lane long after the others had given up.",
1170
+ "source": "Typing Practice"
1171
+ },
1172
+ {
1173
+ "id": "q0235",
1174
+ "text": "A humble farmer drifted before sunrise around the ancient ruins though the path ahead remained unclear.",
1175
+ "source": "Typing Practice"
1176
+ },
1177
+ {
1178
+ "id": "q0236",
1179
+ "text": "A humble farmer drifted into the unknown into the heart of the forest and found a stillness it had long forgotten.",
1180
+ "source": "Typing Practice"
1181
+ },
1182
+ {
1183
+ "id": "q0237",
1184
+ "text": "A humble farmer drifted swiftly into the heart of the forest while the world slowly woke around it.",
1185
+ "source": "Typing Practice"
1186
+ },
1187
+ {
1188
+ "id": "q0238",
1189
+ "text": "A humble farmer drifted through the valley below the rolling clouds though the path ahead remained unclear.",
1190
+ "source": "Typing Practice"
1191
+ },
1192
+ {
1193
+ "id": "q0239",
1194
+ "text": "A humble farmer glided across the open plain into the heart of the forest though the path ahead remained unclear.",
1195
+ "source": "Typing Practice"
1196
+ },
1197
+ {
1198
+ "id": "q0240",
1199
+ "text": "A humble farmer glided before sunrise along the winding coast and found a stillness it had long forgotten.",
1200
+ "source": "Typing Practice"
1201
+ },
1202
+ {
1203
+ "id": "q0241",
1204
+ "text": "A humble farmer marched across the open plain around the ancient ruins and found a stillness it had long forgotten.",
1205
+ "source": "Typing Practice"
1206
+ },
1207
+ {
1208
+ "id": "q0242",
1209
+ "text": "A humble farmer pressed onward step by step into the heart of the forest as the lanterns flickered in the dark.",
1210
+ "source": "Typing Practice"
1211
+ },
1212
+ {
1213
+ "id": "q0243",
1214
+ "text": "A humble farmer pressed onward under a pale moon along the winding coast as the lanterns flickered in the dark.",
1215
+ "source": "Typing Practice"
1216
+ },
1217
+ {
1218
+ "id": "q0244",
1219
+ "text": "A humble farmer pressed onward without hesitation through the crowded market while the world slowly woke around it.",
1220
+ "source": "Typing Practice"
1221
+ },
1222
+ {
1223
+ "id": "q0245",
1224
+ "text": "A humble farmer raced beyond the old gate below the rolling clouds and found a stillness it had long forgotten.",
1225
+ "source": "Typing Practice"
1226
+ },
1227
+ {
1228
+ "id": "q0246",
1229
+ "text": "A humble farmer raced under a pale moon past the sleeping village while the world slowly woke around it.",
1230
+ "source": "Typing Practice"
1231
+ },
1232
+ {
1233
+ "id": "q0247",
1234
+ "text": "A humble farmer raced without hesitation around the ancient ruins and found a stillness it had long forgotten.",
1235
+ "source": "Typing Practice"
1236
+ },
1237
+ {
1238
+ "id": "q0248",
1239
+ "text": "A humble farmer soared against the wind into the heart of the forest while the world slowly woke around it.",
1240
+ "source": "Typing Practice"
1241
+ },
1242
+ {
1243
+ "id": "q0249",
1244
+ "text": "A humble farmer stumbled quietly toward the distant hills though the path ahead remained unclear.",
1245
+ "source": "Typing Practice"
1246
+ },
1247
+ {
1248
+ "id": "q0250",
1249
+ "text": "A humble farmer stumbled without hesitation through the crowded market though the path ahead remained unclear.",
1250
+ "source": "Typing Practice"
1251
+ },
1252
+ {
1253
+ "id": "q0251",
1254
+ "text": "A humble farmer wound its way swiftly toward the distant hills with a quiet confidence that surprised everyone.",
1255
+ "source": "Typing Practice"
1256
+ },
1257
+ {
1258
+ "id": "q0252",
1259
+ "text": "A humble farmer wound its way with great care into the heart of the forest and carried a small hope along the way.",
1260
+ "source": "Typing Practice"
1261
+ },
1262
+ {
1263
+ "id": "q0253",
1264
+ "text": "A quiet engineer circled back before sunrise across the silent desert while the world slowly woke around it.",
1265
+ "source": "Typing Practice"
1266
+ },
1267
+ {
1268
+ "id": "q0254",
1269
+ "text": "A quiet engineer climbed against the wind beneath a sky of stars and carried a small hope along the way.",
1270
+ "source": "Typing Practice"
1271
+ },
1272
+ {
1273
+ "id": "q0255",
1274
+ "text": "A quiet engineer climbed without hesitation along the winding coast and found a stillness it had long forgotten.",
1275
+ "source": "Typing Practice"
1276
+ },
1277
+ {
1278
+ "id": "q0256",
1279
+ "text": "A quiet engineer glided against the wind past the sleeping village and found a stillness it had long forgotten.",
1280
+ "source": "Typing Practice"
1281
+ },
1282
+ {
1283
+ "id": "q0257",
1284
+ "text": "A quiet engineer glided beyond the old gate into the heart of the forest as the lanterns flickered in the dark.",
1285
+ "source": "Typing Practice"
1286
+ },
1287
+ {
1288
+ "id": "q0258",
1289
+ "text": "A quiet engineer marched without hesitation around the ancient ruins and never once looked back.",
1290
+ "source": "Typing Practice"
1291
+ },
1292
+ {
1293
+ "id": "q0259",
1294
+ "text": "A quiet engineer soared into the unknown along the winding coast while the world slowly woke around it.",
1295
+ "source": "Typing Practice"
1296
+ },
1297
+ {
1298
+ "id": "q0260",
1299
+ "text": "A quiet engineer soared through the valley across the silent desert until the first light touched the ground.",
1300
+ "source": "Typing Practice"
1301
+ },
1302
+ {
1303
+ "id": "q0261",
1304
+ "text": "A quiet engineer soared through the valley through the crowded market as if the whole journey had been planned.",
1305
+ "source": "Typing Practice"
1306
+ },
1307
+ {
1308
+ "id": "q0262",
1309
+ "text": "A quiet engineer soared under a pale moon below the rolling clouds and never once looked back.",
1310
+ "source": "Typing Practice"
1311
+ },
1312
+ {
1313
+ "id": "q0263",
1314
+ "text": "A quiet engineer stumbled before sunrise through the crowded market as the lanterns flickered in the dark.",
1315
+ "source": "Typing Practice"
1316
+ },
1317
+ {
1318
+ "id": "q0264",
1319
+ "text": "A quiet engineer stumbled through the valley between the tall pines and found a stillness it had long forgotten.",
1320
+ "source": "Typing Practice"
1321
+ },
1322
+ {
1323
+ "id": "q0265",
1324
+ "text": "A quiet engineer wandered across the open plain down the narrow lane and never once looked back.",
1325
+ "source": "Typing Practice"
1326
+ },
1327
+ {
1328
+ "id": "q0266",
1329
+ "text": "A quiet engineer wandered across the open plain down the narrow lane while the world slowly woke around it.",
1330
+ "source": "Typing Practice"
1331
+ },
1332
+ {
1333
+ "id": "q0267",
1334
+ "text": "A quiet engineer wandered step by step across the silent desert and found a stillness it had long forgotten.",
1335
+ "source": "Typing Practice"
1336
+ },
1337
+ {
1338
+ "id": "q0268",
1339
+ "text": "A restless wanderer circled back before sunrise between the tall pines and carried a small hope along the way.",
1340
+ "source": "Typing Practice"
1341
+ },
1342
+ {
1343
+ "id": "q0269",
1344
+ "text": "A restless wanderer circled back swiftly over the frozen lake and found a stillness it had long forgotten.",
1345
+ "source": "Typing Practice"
1346
+ },
1347
+ {
1348
+ "id": "q0270",
1349
+ "text": "A restless wanderer climbed before sunrise over the frozen lake and carried a small hope along the way.",
1350
+ "source": "Typing Practice"
1351
+ },
1352
+ {
1353
+ "id": "q0271",
1354
+ "text": "A restless wanderer drifted without hesitation around the ancient ruins and found a stillness it had long forgotten.",
1355
+ "source": "Typing Practice"
1356
+ },
1357
+ {
1358
+ "id": "q0272",
1359
+ "text": "A restless wanderer glided quietly along the winding coast and carried a small hope along the way.",
1360
+ "source": "Typing Practice"
1361
+ },
1362
+ {
1363
+ "id": "q0273",
1364
+ "text": "A restless wanderer glided through the valley into the heart of the forest and never once looked back.",
1365
+ "source": "Typing Practice"
1366
+ },
1367
+ {
1368
+ "id": "q0274",
1369
+ "text": "A restless wanderer marched through the valley over the frozen lake and never once looked back.",
1370
+ "source": "Typing Practice"
1371
+ },
1372
+ {
1373
+ "id": "q0275",
1374
+ "text": "A restless wanderer pressed onward before sunrise through the crowded market as if the whole journey had been planned.",
1375
+ "source": "Typing Practice"
1376
+ },
1377
+ {
1378
+ "id": "q0276",
1379
+ "text": "A restless wanderer pressed onward swiftly between the tall pines though the path ahead remained unclear.",
1380
+ "source": "Typing Practice"
1381
+ },
1382
+ {
1383
+ "id": "q0277",
1384
+ "text": "A restless wanderer pressed onward without hesitation across the silent desert with a quiet confidence that surprised everyone.",
1385
+ "source": "Typing Practice"
1386
+ },
1387
+ {
1388
+ "id": "q0278",
1389
+ "text": "A restless wanderer raced through the valley through the crowded market though the path ahead remained unclear.",
1390
+ "source": "Typing Practice"
1391
+ },
1392
+ {
1393
+ "id": "q0279",
1394
+ "text": "A restless wanderer raced under a pale moon into the heart of the forest while the world slowly woke around it.",
1395
+ "source": "Typing Practice"
1396
+ },
1397
+ {
1398
+ "id": "q0280",
1399
+ "text": "A restless wanderer soared through the valley through the crowded market and found a stillness it had long forgotten.",
1400
+ "source": "Typing Practice"
1401
+ },
1402
+ {
1403
+ "id": "q0281",
1404
+ "text": "A restless wanderer stumbled beyond the old gate past the sleeping village and never once looked back.",
1405
+ "source": "Typing Practice"
1406
+ },
1407
+ {
1408
+ "id": "q0282",
1409
+ "text": "A restless wanderer wandered before sunrise around the ancient ruins long after the others had given up.",
1410
+ "source": "Typing Practice"
1411
+ },
1412
+ {
1413
+ "id": "q0283",
1414
+ "text": "A restless wanderer wandered with great care into the heart of the forest with a quiet confidence that surprised everyone.",
1415
+ "source": "Typing Practice"
1416
+ },
1417
+ {
1418
+ "id": "q0284",
1419
+ "text": "A restless wanderer wound its way before sunrise over the frozen lake as if the whole journey had been planned.",
1420
+ "source": "Typing Practice"
1421
+ },
1422
+ {
1423
+ "id": "q0285",
1424
+ "text": "A restless wanderer wound its way into the unknown along the winding coast and found a stillness it had long forgotten.",
1425
+ "source": "Typing Practice"
1426
+ },
1427
+ {
1428
+ "id": "q0286",
1429
+ "text": "A restless wanderer wound its way into the unknown around the ancient ruins with a quiet confidence that surprised everyone.",
1430
+ "source": "Typing Practice"
1431
+ },
1432
+ {
1433
+ "id": "q0287",
1434
+ "text": "A single candle climbed under a pale moon across the silent desert as the lanterns flickered in the dark.",
1435
+ "source": "Typing Practice"
1436
+ },
1437
+ {
1438
+ "id": "q0288",
1439
+ "text": "A single candle drifted without hesitation below the rolling clouds and carried a small hope along the way.",
1440
+ "source": "Typing Practice"
1441
+ },
1442
+ {
1443
+ "id": "q0289",
1444
+ "text": "A single candle glided quietly below the rolling clouds until the first light touched the ground.",
1445
+ "source": "Typing Practice"
1446
+ },
1447
+ {
1448
+ "id": "q0290",
1449
+ "text": "A single candle marched against the wind across the silent desert long after the others had given up.",
1450
+ "source": "Typing Practice"
1451
+ },
1452
+ {
1453
+ "id": "q0291",
1454
+ "text": "A single candle marched under a pale moon over the frozen lake and never once looked back.",
1455
+ "source": "Typing Practice"
1456
+ },
1457
+ {
1458
+ "id": "q0292",
1459
+ "text": "A single candle pressed onward into the unknown beneath a sky of stars and found a stillness it had long forgotten.",
1460
+ "source": "Typing Practice"
1461
+ },
1462
+ {
1463
+ "id": "q0293",
1464
+ "text": "A single candle pressed onward quietly beneath a sky of stars as the lanterns flickered in the dark.",
1465
+ "source": "Typing Practice"
1466
+ },
1467
+ {
1468
+ "id": "q0294",
1469
+ "text": "A single candle settled quietly across the silent desert as if the whole journey had been planned.",
1470
+ "source": "Typing Practice"
1471
+ },
1472
+ {
1473
+ "id": "q0295",
1474
+ "text": "A single candle soared before sunrise between the tall pines though the path ahead remained unclear.",
1475
+ "source": "Typing Practice"
1476
+ },
1477
+ {
1478
+ "id": "q0296",
1479
+ "text": "A single candle stumbled into the unknown beneath a sky of stars while the world slowly woke around it.",
1480
+ "source": "Typing Practice"
1481
+ },
1482
+ {
1483
+ "id": "q0297",
1484
+ "text": "A single candle wandered against the wind along the winding coast until the first light touched the ground.",
1485
+ "source": "Typing Practice"
1486
+ },
1487
+ {
1488
+ "id": "q0298",
1489
+ "text": "A single candle wandered swiftly down the narrow lane long after the others had given up.",
1490
+ "source": "Typing Practice"
1491
+ },
1492
+ {
1493
+ "id": "q0299",
1494
+ "text": "A single candle wound its way into the unknown through the crowded market as if the whole journey had been planned.",
1495
+ "source": "Typing Practice"
1496
+ },
1497
+ {
1498
+ "id": "q0300",
1499
+ "text": "A single candle wound its way quietly between the tall pines long after the others had given up.",
1500
+ "source": "Typing Practice"
1501
+ },
1502
+ {
1503
+ "id": "q0301",
1504
+ "text": "A weathered sailor circled back before sunrise over the frozen lake though the path ahead remained unclear.",
1505
+ "source": "Typing Practice"
1506
+ },
1507
+ {
1508
+ "id": "q0302",
1509
+ "text": "A weathered sailor circled back through the valley past the sleeping village and carried a small hope along the way.",
1510
+ "source": "Typing Practice"
1511
+ },
1512
+ {
1513
+ "id": "q0303",
1514
+ "text": "A weathered sailor circled back with great care below the rolling clouds as if the whole journey had been planned.",
1515
+ "source": "Typing Practice"
1516
+ },
1517
+ {
1518
+ "id": "q0304",
1519
+ "text": "A weathered sailor climbed before sunrise around the ancient ruins and carried a small hope along the way.",
1520
+ "source": "Typing Practice"
1521
+ },
1522
+ {
1523
+ "id": "q0305",
1524
+ "text": "A weathered sailor climbed without hesitation between the tall pines with a quiet confidence that surprised everyone.",
1525
+ "source": "Typing Practice"
1526
+ },
1527
+ {
1528
+ "id": "q0306",
1529
+ "text": "A weathered sailor drifted through the valley past the sleeping village while the world slowly woke around it.",
1530
+ "source": "Typing Practice"
1531
+ },
1532
+ {
1533
+ "id": "q0307",
1534
+ "text": "A weathered sailor drifted without hesitation around the ancient ruins and found a stillness it had long forgotten.",
1535
+ "source": "Typing Practice"
1536
+ },
1537
+ {
1538
+ "id": "q0308",
1539
+ "text": "A weathered sailor raced across the open plain over the frozen lake though the path ahead remained unclear.",
1540
+ "source": "Typing Practice"
1541
+ },
1542
+ {
1543
+ "id": "q0309",
1544
+ "text": "A weathered sailor raced step by step through the crowded market and never once looked back.",
1545
+ "source": "Typing Practice"
1546
+ },
1547
+ {
1548
+ "id": "q0310",
1549
+ "text": "A weathered sailor soared against the wind below the rolling clouds as if the whole journey had been planned.",
1550
+ "source": "Typing Practice"
1551
+ },
1552
+ {
1553
+ "id": "q0311",
1554
+ "text": "A weathered sailor stumbled beyond the old gate below the rolling clouds as the lanterns flickered in the dark.",
1555
+ "source": "Typing Practice"
1556
+ },
1557
+ {
1558
+ "id": "q0312",
1559
+ "text": "A weathered sailor wandered before sunrise between the tall pines as the lanterns flickered in the dark.",
1560
+ "source": "Typing Practice"
1561
+ },
1562
+ {
1563
+ "id": "q0313",
1564
+ "text": "A weathered sailor wandered beyond the old gate below the rolling clouds while the world slowly woke around it.",
1565
+ "source": "Typing Practice"
1566
+ },
1567
+ {
1568
+ "id": "q0314",
1569
+ "text": "An honest merchant climbed through the valley between the tall pines until the first light touched the ground.",
1570
+ "source": "Typing Practice"
1571
+ },
1572
+ {
1573
+ "id": "q0315",
1574
+ "text": "An honest merchant climbed through the valley over the frozen lake with a quiet confidence that surprised everyone.",
1575
+ "source": "Typing Practice"
1576
+ },
1577
+ {
1578
+ "id": "q0316",
1579
+ "text": "An honest merchant drifted with great care through the crowded market while the world slowly woke around it.",
1580
+ "source": "Typing Practice"
1581
+ },
1582
+ {
1583
+ "id": "q0317",
1584
+ "text": "An honest merchant pressed onward swiftly down the narrow lane and never once looked back.",
1585
+ "source": "Typing Practice"
1586
+ },
1587
+ {
1588
+ "id": "q0318",
1589
+ "text": "An honest merchant raced before sunrise into the heart of the forest and never once looked back.",
1590
+ "source": "Typing Practice"
1591
+ },
1592
+ {
1593
+ "id": "q0319",
1594
+ "text": "An honest merchant settled swiftly around the ancient ruins and carried a small hope along the way.",
1595
+ "source": "Typing Practice"
1596
+ },
1597
+ {
1598
+ "id": "q0320",
1599
+ "text": "An honest merchant settled swiftly past the sleeping village as if the whole journey had been planned.",
1600
+ "source": "Typing Practice"
1601
+ },
1602
+ {
1603
+ "id": "q0321",
1604
+ "text": "An honest merchant soared across the open plain around the ancient ruins until the first light touched the ground.",
1605
+ "source": "Typing Practice"
1606
+ },
1607
+ {
1608
+ "id": "q0322",
1609
+ "text": "An honest merchant stumbled against the wind down the narrow lane and found a stillness it had long forgotten.",
1610
+ "source": "Typing Practice"
1611
+ },
1612
+ {
1613
+ "id": "q0323",
1614
+ "text": "An honest merchant stumbled swiftly across the silent desert though the path ahead remained unclear.",
1615
+ "source": "Typing Practice"
1616
+ },
1617
+ {
1618
+ "id": "q0324",
1619
+ "text": "An honest merchant wandered swiftly across the silent desert as the lanterns flickered in the dark.",
1620
+ "source": "Typing Practice"
1621
+ },
1622
+ {
1623
+ "id": "q0325",
1624
+ "text": "An old lighthouse circled back across the open plain down the narrow lane though the path ahead remained unclear.",
1625
+ "source": "Typing Practice"
1626
+ },
1627
+ {
1628
+ "id": "q0326",
1629
+ "text": "An old lighthouse circled back against the wind toward the distant hills until the first light touched the ground.",
1630
+ "source": "Typing Practice"
1631
+ },
1632
+ {
1633
+ "id": "q0327",
1634
+ "text": "An old lighthouse circled back through the valley through the crowded market long after the others had given up.",
1635
+ "source": "Typing Practice"
1636
+ },
1637
+ {
1638
+ "id": "q0328",
1639
+ "text": "An old lighthouse drifted beyond the old gate past the sleeping village with a quiet confidence that surprised everyone.",
1640
+ "source": "Typing Practice"
1641
+ },
1642
+ {
1643
+ "id": "q0329",
1644
+ "text": "An old lighthouse glided across the open plain across the silent desert long after the others had given up.",
1645
+ "source": "Typing Practice"
1646
+ },
1647
+ {
1648
+ "id": "q0330",
1649
+ "text": "An old lighthouse glided with great care down the narrow lane though the path ahead remained unclear.",
1650
+ "source": "Typing Practice"
1651
+ },
1652
+ {
1653
+ "id": "q0331",
1654
+ "text": "An old lighthouse glided with great care into the heart of the forest until the first light touched the ground.",
1655
+ "source": "Typing Practice"
1656
+ },
1657
+ {
1658
+ "id": "q0332",
1659
+ "text": "An old lighthouse marched into the unknown toward the distant hills until the first light touched the ground.",
1660
+ "source": "Typing Practice"
1661
+ },
1662
+ {
1663
+ "id": "q0333",
1664
+ "text": "An old lighthouse marched under a pale moon between the tall pines long after the others had given up.",
1665
+ "source": "Typing Practice"
1666
+ },
1667
+ {
1668
+ "id": "q0334",
1669
+ "text": "An old lighthouse pressed onward across the open plain between the tall pines until the first light touched the ground.",
1670
+ "source": "Typing Practice"
1671
+ },
1672
+ {
1673
+ "id": "q0335",
1674
+ "text": "An old lighthouse pressed onward across the open plain between the tall pines while the world slowly woke around it.",
1675
+ "source": "Typing Practice"
1676
+ },
1677
+ {
1678
+ "id": "q0336",
1679
+ "text": "An old lighthouse raced through the valley around the ancient ruins while the world slowly woke around it.",
1680
+ "source": "Typing Practice"
1681
+ },
1682
+ {
1683
+ "id": "q0337",
1684
+ "text": "An old lighthouse raced through the valley down the narrow lane and found a stillness it had long forgotten.",
1685
+ "source": "Typing Practice"
1686
+ },
1687
+ {
1688
+ "id": "q0338",
1689
+ "text": "An old lighthouse settled through the valley into the heart of the forest and never once looked back.",
1690
+ "source": "Typing Practice"
1691
+ },
1692
+ {
1693
+ "id": "q0339",
1694
+ "text": "An old lighthouse stumbled across the open plain along the winding coast and never once looked back.",
1695
+ "source": "Typing Practice"
1696
+ },
1697
+ {
1698
+ "id": "q0340",
1699
+ "text": "An old lighthouse stumbled across the open plain over the frozen lake and never once looked back.",
1700
+ "source": "Typing Practice"
1701
+ },
1702
+ {
1703
+ "id": "q0341",
1704
+ "text": "An old lighthouse stumbled into the unknown through the crowded market as the lanterns flickered in the dark.",
1705
+ "source": "Typing Practice"
1706
+ },
1707
+ {
1708
+ "id": "q0342",
1709
+ "text": "An old lighthouse stumbled under a pale moon past the sleeping village though the path ahead remained unclear.",
1710
+ "source": "Typing Practice"
1711
+ },
1712
+ {
1713
+ "id": "q0343",
1714
+ "text": "The autumn wind circled back into the unknown toward the distant hills with a quiet confidence that surprised everyone.",
1715
+ "source": "Typing Practice"
1716
+ },
1717
+ {
1718
+ "id": "q0344",
1719
+ "text": "The autumn wind circled back quietly between the tall pines as if the whole journey had been planned.",
1720
+ "source": "Typing Practice"
1721
+ },
1722
+ {
1723
+ "id": "q0345",
1724
+ "text": "The autumn wind climbed without hesitation through the crowded market long after the others had given up.",
1725
+ "source": "Typing Practice"
1726
+ },
1727
+ {
1728
+ "id": "q0346",
1729
+ "text": "The autumn wind glided into the unknown along the winding coast as the lanterns flickered in the dark.",
1730
+ "source": "Typing Practice"
1731
+ },
1732
+ {
1733
+ "id": "q0347",
1734
+ "text": "The autumn wind glided under a pale moon into the heart of the forest and carried a small hope along the way.",
1735
+ "source": "Typing Practice"
1736
+ },
1737
+ {
1738
+ "id": "q0348",
1739
+ "text": "The autumn wind marched against the wind toward the distant hills with a quiet confidence that surprised everyone.",
1740
+ "source": "Typing Practice"
1741
+ },
1742
+ {
1743
+ "id": "q0349",
1744
+ "text": "The autumn wind marched before sunrise between the tall pines and never once looked back.",
1745
+ "source": "Typing Practice"
1746
+ },
1747
+ {
1748
+ "id": "q0350",
1749
+ "text": "The autumn wind marched through the valley below the rolling clouds as if the whole journey had been planned.",
1750
+ "source": "Typing Practice"
1751
+ },
1752
+ {
1753
+ "id": "q0351",
1754
+ "text": "The autumn wind pressed onward quietly between the tall pines while the world slowly woke around it.",
1755
+ "source": "Typing Practice"
1756
+ },
1757
+ {
1758
+ "id": "q0352",
1759
+ "text": "The autumn wind pressed onward without hesitation below the rolling clouds though the path ahead remained unclear.",
1760
+ "source": "Typing Practice"
1761
+ },
1762
+ {
1763
+ "id": "q0353",
1764
+ "text": "The autumn wind settled swiftly around the ancient ruins though the path ahead remained unclear.",
1765
+ "source": "Typing Practice"
1766
+ },
1767
+ {
1768
+ "id": "q0354",
1769
+ "text": "The autumn wind soared into the unknown over the frozen lake while the world slowly woke around it.",
1770
+ "source": "Typing Practice"
1771
+ },
1772
+ {
1773
+ "id": "q0355",
1774
+ "text": "The autumn wind stumbled into the unknown along the winding coast and never once looked back.",
1775
+ "source": "Typing Practice"
1776
+ },
1777
+ {
1778
+ "id": "q0356",
1779
+ "text": "The autumn wind stumbled through the valley into the heart of the forest while the world slowly woke around it.",
1780
+ "source": "Typing Practice"
1781
+ },
1782
+ {
1783
+ "id": "q0357",
1784
+ "text": "The bright comet circled back before sunrise past the sleeping village until the first light touched the ground.",
1785
+ "source": "Typing Practice"
1786
+ },
1787
+ {
1788
+ "id": "q0358",
1789
+ "text": "The bright comet circled back under a pale moon between the tall pines and never once looked back.",
1790
+ "source": "Typing Practice"
1791
+ },
1792
+ {
1793
+ "id": "q0359",
1794
+ "text": "The bright comet circled back under a pale moon toward the distant hills though the path ahead remained unclear.",
1795
+ "source": "Typing Practice"
1796
+ },
1797
+ {
1798
+ "id": "q0360",
1799
+ "text": "The bright comet climbed before sunrise over the frozen lake though the path ahead remained unclear.",
1800
+ "source": "Typing Practice"
1801
+ },
1802
+ {
1803
+ "id": "q0361",
1804
+ "text": "The bright comet drifted quietly between the tall pines long after the others had given up.",
1805
+ "source": "Typing Practice"
1806
+ },
1807
+ {
1808
+ "id": "q0362",
1809
+ "text": "The bright comet drifted quietly through the crowded market and found a stillness it had long forgotten.",
1810
+ "source": "Typing Practice"
1811
+ },
1812
+ {
1813
+ "id": "q0363",
1814
+ "text": "The bright comet marched with great care beneath a sky of stars and carried a small hope along the way.",
1815
+ "source": "Typing Practice"
1816
+ },
1817
+ {
1818
+ "id": "q0364",
1819
+ "text": "The bright comet pressed onward quietly below the rolling clouds though the path ahead remained unclear.",
1820
+ "source": "Typing Practice"
1821
+ },
1822
+ {
1823
+ "id": "q0365",
1824
+ "text": "The bright comet pressed onward through the valley down the narrow lane long after the others had given up.",
1825
+ "source": "Typing Practice"
1826
+ },
1827
+ {
1828
+ "id": "q0366",
1829
+ "text": "The bright comet raced before sunrise down the narrow lane long after the others had given up.",
1830
+ "source": "Typing Practice"
1831
+ },
1832
+ {
1833
+ "id": "q0367",
1834
+ "text": "The bright comet settled with great care past the sleeping village while the world slowly woke around it.",
1835
+ "source": "Typing Practice"
1836
+ },
1837
+ {
1838
+ "id": "q0368",
1839
+ "text": "The bright comet soared under a pale moon between the tall pines and found a stillness it had long forgotten.",
1840
+ "source": "Typing Practice"
1841
+ },
1842
+ {
1843
+ "id": "q0369",
1844
+ "text": "The bright comet stumbled beyond the old gate through the crowded market as the lanterns flickered in the dark.",
1845
+ "source": "Typing Practice"
1846
+ },
1847
+ {
1848
+ "id": "q0370",
1849
+ "text": "The bright comet stumbled with great care beneath a sky of stars though the path ahead remained unclear.",
1850
+ "source": "Typing Practice"
1851
+ },
1852
+ {
1853
+ "id": "q0371",
1854
+ "text": "The bright comet wandered beyond the old gate below the rolling clouds with a quiet confidence that surprised everyone.",
1855
+ "source": "Typing Practice"
1856
+ },
1857
+ {
1858
+ "id": "q0372",
1859
+ "text": "The bright comet wound its way into the unknown over the frozen lake while the world slowly woke around it.",
1860
+ "source": "Typing Practice"
1861
+ },
1862
+ {
1863
+ "id": "q0373",
1864
+ "text": "The bright comet wound its way without hesitation beneath a sky of stars long after the others had given up.",
1865
+ "source": "Typing Practice"
1866
+ },
1867
+ {
1868
+ "id": "q0374",
1869
+ "text": "The city at dawn circled back against the wind past the sleeping village and found a stillness it had long forgotten.",
1870
+ "source": "Typing Practice"
1871
+ },
1872
+ {
1873
+ "id": "q0375",
1874
+ "text": "The city at dawn drifted against the wind along the winding coast and never once looked back.",
1875
+ "source": "Typing Practice"
1876
+ },
1877
+ {
1878
+ "id": "q0376",
1879
+ "text": "The city at dawn marched across the open plain around the ancient ruins while the world slowly woke around it.",
1880
+ "source": "Typing Practice"
1881
+ },
1882
+ {
1883
+ "id": "q0377",
1884
+ "text": "The city at dawn marched quietly beneath a sky of stars as if the whole journey had been planned.",
1885
+ "source": "Typing Practice"
1886
+ },
1887
+ {
1888
+ "id": "q0378",
1889
+ "text": "The city at dawn pressed onward swiftly beneath a sky of stars as the lanterns flickered in the dark.",
1890
+ "source": "Typing Practice"
1891
+ },
1892
+ {
1893
+ "id": "q0379",
1894
+ "text": "The city at dawn pressed onward with great care down the narrow lane as if the whole journey had been planned.",
1895
+ "source": "Typing Practice"
1896
+ },
1897
+ {
1898
+ "id": "q0380",
1899
+ "text": "The city at dawn raced under a pale moon across the silent desert with a quiet confidence that surprised everyone.",
1900
+ "source": "Typing Practice"
1901
+ },
1902
+ {
1903
+ "id": "q0381",
1904
+ "text": "The city at dawn raced without hesitation through the crowded market long after the others had given up.",
1905
+ "source": "Typing Practice"
1906
+ },
1907
+ {
1908
+ "id": "q0382",
1909
+ "text": "The city at dawn soared before sunrise over the frozen lake long after the others had given up.",
1910
+ "source": "Typing Practice"
1911
+ },
1912
+ {
1913
+ "id": "q0383",
1914
+ "text": "The city at dawn soared without hesitation toward the distant hills while the world slowly woke around it.",
1915
+ "source": "Typing Practice"
1916
+ },
1917
+ {
1918
+ "id": "q0384",
1919
+ "text": "The city at dawn stumbled step by step down the narrow lane and never once looked back.",
1920
+ "source": "Typing Practice"
1921
+ },
1922
+ {
1923
+ "id": "q0385",
1924
+ "text": "The city at dawn wandered before sunrise beneath a sky of stars until the first light touched the ground.",
1925
+ "source": "Typing Practice"
1926
+ },
1927
+ {
1928
+ "id": "q0386",
1929
+ "text": "The city at dawn wandered under a pale moon through the crowded market and found a stillness it had long forgotten.",
1930
+ "source": "Typing Practice"
1931
+ },
1932
+ {
1933
+ "id": "q0387",
1934
+ "text": "The city at dawn wound its way quietly into the heart of the forest with a quiet confidence that surprised everyone.",
1935
+ "source": "Typing Practice"
1936
+ },
1937
+ {
1938
+ "id": "q0388",
1939
+ "text": "The clever inventor circled back quietly below the rolling clouds as the lanterns flickered in the dark.",
1940
+ "source": "Typing Practice"
1941
+ },
1942
+ {
1943
+ "id": "q0389",
1944
+ "text": "The clever inventor circled back under a pale moon below the rolling clouds while the world slowly woke around it.",
1945
+ "source": "Typing Practice"
1946
+ },
1947
+ {
1948
+ "id": "q0390",
1949
+ "text": "The clever inventor climbed across the open plain into the heart of the forest though the path ahead remained unclear.",
1950
+ "source": "Typing Practice"
1951
+ },
1952
+ {
1953
+ "id": "q0391",
1954
+ "text": "The clever inventor drifted against the wind across the silent desert and found a stillness it had long forgotten.",
1955
+ "source": "Typing Practice"
1956
+ },
1957
+ {
1958
+ "id": "q0392",
1959
+ "text": "The clever inventor drifted under a pale moon over the frozen lake long after the others had given up.",
1960
+ "source": "Typing Practice"
1961
+ },
1962
+ {
1963
+ "id": "q0393",
1964
+ "text": "The clever inventor drifted with great care into the heart of the forest as the lanterns flickered in the dark.",
1965
+ "source": "Typing Practice"
1966
+ },
1967
+ {
1968
+ "id": "q0394",
1969
+ "text": "The clever inventor glided against the wind between the tall pines and carried a small hope along the way.",
1970
+ "source": "Typing Practice"
1971
+ },
1972
+ {
1973
+ "id": "q0395",
1974
+ "text": "The clever inventor glided step by step through the crowded market while the world slowly woke around it.",
1975
+ "source": "Typing Practice"
1976
+ },
1977
+ {
1978
+ "id": "q0396",
1979
+ "text": "The clever inventor soared beyond the old gate over the frozen lake and found a stillness it had long forgotten.",
1980
+ "source": "Typing Practice"
1981
+ },
1982
+ {
1983
+ "id": "q0397",
1984
+ "text": "The clever inventor soared quietly past the sleeping village with a quiet confidence that surprised everyone.",
1985
+ "source": "Typing Practice"
1986
+ },
1987
+ {
1988
+ "id": "q0398",
1989
+ "text": "The clever inventor stumbled into the unknown around the ancient ruins and carried a small hope along the way.",
1990
+ "source": "Typing Practice"
1991
+ },
1992
+ {
1993
+ "id": "q0399",
1994
+ "text": "The clever inventor wound its way step by step down the narrow lane while the world slowly woke around it.",
1995
+ "source": "Typing Practice"
1996
+ },
1997
+ {
1998
+ "id": "q0400",
1999
+ "text": "The curious traveler circled back with great care along the winding coast though the path ahead remained unclear.",
2000
+ "source": "Typing Practice"
2001
+ },
2002
+ {
2003
+ "id": "q0401",
2004
+ "text": "The curious traveler climbed into the unknown across the silent desert and never once looked back.",
2005
+ "source": "Typing Practice"
2006
+ },
2007
+ {
2008
+ "id": "q0402",
2009
+ "text": "The curious traveler climbed through the valley below the rolling clouds with a quiet confidence that surprised everyone.",
2010
+ "source": "Typing Practice"
2011
+ },
2012
+ {
2013
+ "id": "q0403",
2014
+ "text": "The curious traveler drifted step by step past the sleeping village as the lanterns flickered in the dark.",
2015
+ "source": "Typing Practice"
2016
+ },
2017
+ {
2018
+ "id": "q0404",
2019
+ "text": "The curious traveler drifted under a pale moon over the frozen lake though the path ahead remained unclear.",
2020
+ "source": "Typing Practice"
2021
+ },
2022
+ {
2023
+ "id": "q0405",
2024
+ "text": "The curious traveler glided into the unknown into the heart of the forest and never once looked back.",
2025
+ "source": "Typing Practice"
2026
+ },
2027
+ {
2028
+ "id": "q0406",
2029
+ "text": "The curious traveler marched under a pale moon down the narrow lane and found a stillness it had long forgotten.",
2030
+ "source": "Typing Practice"
2031
+ },
2032
+ {
2033
+ "id": "q0407",
2034
+ "text": "The curious traveler marched without hesitation below the rolling clouds though the path ahead remained unclear.",
2035
+ "source": "Typing Practice"
2036
+ },
2037
+ {
2038
+ "id": "q0408",
2039
+ "text": "The curious traveler pressed onward against the wind down the narrow lane with a quiet confidence that surprised everyone.",
2040
+ "source": "Typing Practice"
2041
+ },
2042
+ {
2043
+ "id": "q0409",
2044
+ "text": "The curious traveler pressed onward into the unknown around the ancient ruins while the world slowly woke around it.",
2045
+ "source": "Typing Practice"
2046
+ },
2047
+ {
2048
+ "id": "q0410",
2049
+ "text": "The curious traveler raced against the wind into the heart of the forest while the world slowly woke around it.",
2050
+ "source": "Typing Practice"
2051
+ },
2052
+ {
2053
+ "id": "q0411",
2054
+ "text": "The curious traveler raced with great care around the ancient ruins and carried a small hope along the way.",
2055
+ "source": "Typing Practice"
2056
+ },
2057
+ {
2058
+ "id": "q0412",
2059
+ "text": "The curious traveler settled step by step along the winding coast with a quiet confidence that surprised everyone.",
2060
+ "source": "Typing Practice"
2061
+ },
2062
+ {
2063
+ "id": "q0413",
2064
+ "text": "The curious traveler soared against the wind below the rolling clouds and carried a small hope along the way.",
2065
+ "source": "Typing Practice"
2066
+ },
2067
+ {
2068
+ "id": "q0414",
2069
+ "text": "The curious traveler soared quietly through the crowded market long after the others had given up.",
2070
+ "source": "Typing Practice"
2071
+ },
2072
+ {
2073
+ "id": "q0415",
2074
+ "text": "The curious traveler stumbled with great care past the sleeping village long after the others had given up.",
2075
+ "source": "Typing Practice"
2076
+ },
2077
+ {
2078
+ "id": "q0416",
2079
+ "text": "The curious traveler wound its way before sunrise into the heart of the forest though the path ahead remained unclear.",
2080
+ "source": "Typing Practice"
2081
+ },
2082
+ {
2083
+ "id": "q0417",
2084
+ "text": "The distant mountain circled back beyond the old gate through the crowded market and carried a small hope along the way.",
2085
+ "source": "Typing Practice"
2086
+ },
2087
+ {
2088
+ "id": "q0418",
2089
+ "text": "The distant mountain climbed step by step between the tall pines and never once looked back.",
2090
+ "source": "Typing Practice"
2091
+ },
2092
+ {
2093
+ "id": "q0419",
2094
+ "text": "The distant mountain climbed swiftly into the heart of the forest with a quiet confidence that surprised everyone.",
2095
+ "source": "Typing Practice"
2096
+ },
2097
+ {
2098
+ "id": "q0420",
2099
+ "text": "The distant mountain raced under a pale moon down the narrow lane and found a stillness it had long forgotten.",
2100
+ "source": "Typing Practice"
2101
+ },
2102
+ {
2103
+ "id": "q0421",
2104
+ "text": "The distant mountain soared quietly over the frozen lake until the first light touched the ground.",
2105
+ "source": "Typing Practice"
2106
+ },
2107
+ {
2108
+ "id": "q0422",
2109
+ "text": "The distant mountain soared swiftly around the ancient ruins though the path ahead remained unclear.",
2110
+ "source": "Typing Practice"
2111
+ },
2112
+ {
2113
+ "id": "q0423",
2114
+ "text": "The distant mountain wandered beyond the old gate around the ancient ruins until the first light touched the ground.",
2115
+ "source": "Typing Practice"
2116
+ },
2117
+ {
2118
+ "id": "q0424",
2119
+ "text": "The distant mountain wandered with great care beneath a sky of stars long after the others had given up.",
2120
+ "source": "Typing Practice"
2121
+ },
2122
+ {
2123
+ "id": "q0425",
2124
+ "text": "The gentle tide climbed quietly beneath a sky of stars while the world slowly woke around it.",
2125
+ "source": "Typing Practice"
2126
+ },
2127
+ {
2128
+ "id": "q0426",
2129
+ "text": "The gentle tide drifted quietly through the crowded market and found a stillness it had long forgotten.",
2130
+ "source": "Typing Practice"
2131
+ },
2132
+ {
2133
+ "id": "q0427",
2134
+ "text": "The gentle tide glided quietly along the winding coast as if the whole journey had been planned.",
2135
+ "source": "Typing Practice"
2136
+ },
2137
+ {
2138
+ "id": "q0428",
2139
+ "text": "The gentle tide glided with great care past the sleeping village and carried a small hope along the way.",
2140
+ "source": "Typing Practice"
2141
+ },
2142
+ {
2143
+ "id": "q0429",
2144
+ "text": "The gentle tide marched against the wind over the frozen lake and never once looked back.",
2145
+ "source": "Typing Practice"
2146
+ },
2147
+ {
2148
+ "id": "q0430",
2149
+ "text": "The gentle tide raced swiftly into the heart of the forest until the first light touched the ground.",
2150
+ "source": "Typing Practice"
2151
+ },
2152
+ {
2153
+ "id": "q0431",
2154
+ "text": "The gentle tide settled across the open plain below the rolling clouds until the first light touched the ground.",
2155
+ "source": "Typing Practice"
2156
+ },
2157
+ {
2158
+ "id": "q0432",
2159
+ "text": "The gentle tide soared across the open plain toward the distant hills though the path ahead remained unclear.",
2160
+ "source": "Typing Practice"
2161
+ },
2162
+ {
2163
+ "id": "q0433",
2164
+ "text": "The gentle tide soared quietly around the ancient ruins and never once looked back.",
2165
+ "source": "Typing Practice"
2166
+ },
2167
+ {
2168
+ "id": "q0434",
2169
+ "text": "The gentle tide stumbled through the valley between the tall pines while the world slowly woke around it.",
2170
+ "source": "Typing Practice"
2171
+ },
2172
+ {
2173
+ "id": "q0435",
2174
+ "text": "The gentle tide wandered into the unknown through the crowded market as if the whole journey had been planned.",
2175
+ "source": "Typing Practice"
2176
+ },
2177
+ {
2178
+ "id": "q0436",
2179
+ "text": "The gentle tide wandered swiftly below the rolling clouds while the world slowly woke around it.",
2180
+ "source": "Typing Practice"
2181
+ },
2182
+ {
2183
+ "id": "q0437",
2184
+ "text": "The morning river circled back without hesitation beneath a sky of stars as the lanterns flickered in the dark.",
2185
+ "source": "Typing Practice"
2186
+ },
2187
+ {
2188
+ "id": "q0438",
2189
+ "text": "The morning river drifted into the unknown toward the distant hills with a quiet confidence that surprised everyone.",
2190
+ "source": "Typing Practice"
2191
+ },
2192
+ {
2193
+ "id": "q0439",
2194
+ "text": "The morning river glided across the open plain along the winding coast and found a stillness it had long forgotten.",
2195
+ "source": "Typing Practice"
2196
+ },
2197
+ {
2198
+ "id": "q0440",
2199
+ "text": "The morning river glided across the open plain into the heart of the forest until the first light touched the ground.",
2200
+ "source": "Typing Practice"
2201
+ },
2202
+ {
2203
+ "id": "q0441",
2204
+ "text": "The morning river glided quietly toward the distant hills as the lanterns flickered in the dark.",
2205
+ "source": "Typing Practice"
2206
+ },
2207
+ {
2208
+ "id": "q0442",
2209
+ "text": "The morning river glided swiftly past the sleeping village as if the whole journey had been planned.",
2210
+ "source": "Typing Practice"
2211
+ },
2212
+ {
2213
+ "id": "q0443",
2214
+ "text": "The morning river glided with great care past the sleeping village as the lanterns flickered in the dark.",
2215
+ "source": "Typing Practice"
2216
+ },
2217
+ {
2218
+ "id": "q0444",
2219
+ "text": "The morning river glided without hesitation along the winding coast as if the whole journey had been planned.",
2220
+ "source": "Typing Practice"
2221
+ },
2222
+ {
2223
+ "id": "q0445",
2224
+ "text": "The morning river pressed onward beyond the old gate beneath a sky of stars while the world slowly woke around it.",
2225
+ "source": "Typing Practice"
2226
+ },
2227
+ {
2228
+ "id": "q0446",
2229
+ "text": "The morning river pressed onward beyond the old gate over the frozen lake as if the whole journey had been planned.",
2230
+ "source": "Typing Practice"
2231
+ },
2232
+ {
2233
+ "id": "q0447",
2234
+ "text": "The morning river raced beyond the old gate down the narrow lane until the first light touched the ground.",
2235
+ "source": "Typing Practice"
2236
+ },
2237
+ {
2238
+ "id": "q0448",
2239
+ "text": "The morning river settled into the unknown past the sleeping village though the path ahead remained unclear.",
2240
+ "source": "Typing Practice"
2241
+ },
2242
+ {
2243
+ "id": "q0449",
2244
+ "text": "The morning river settled step by step below the rolling clouds as if the whole journey had been planned.",
2245
+ "source": "Typing Practice"
2246
+ },
2247
+ {
2248
+ "id": "q0450",
2249
+ "text": "The morning river wandered quietly over the frozen lake while the world slowly woke around it.",
2250
+ "source": "Typing Practice"
2251
+ },
2252
+ {
2253
+ "id": "q0451",
2254
+ "text": "The morning river wandered with great care toward the distant hills with a quiet confidence that surprised everyone.",
2255
+ "source": "Typing Practice"
2256
+ },
2257
+ {
2258
+ "id": "q0452",
2259
+ "text": "The morning river wound its way step by step through the crowded market and found a stillness it had long forgotten.",
2260
+ "source": "Typing Practice"
2261
+ },
2262
+ {
2263
+ "id": "q0453",
2264
+ "text": "The morning river wound its way without hesitation into the heart of the forest as if the whole journey had been planned.",
2265
+ "source": "Typing Practice"
2266
+ },
2267
+ {
2268
+ "id": "q0454",
2269
+ "text": "The patient gardener circled back quietly into the heart of the forest while the world slowly woke around it.",
2270
+ "source": "Typing Practice"
2271
+ },
2272
+ {
2273
+ "id": "q0455",
2274
+ "text": "The patient gardener circled back swiftly through the crowded market long after the others had given up.",
2275
+ "source": "Typing Practice"
2276
+ },
2277
+ {
2278
+ "id": "q0456",
2279
+ "text": "The patient gardener climbed under a pale moon into the heart of the forest and found a stillness it had long forgotten.",
2280
+ "source": "Typing Practice"
2281
+ },
2282
+ {
2283
+ "id": "q0457",
2284
+ "text": "The patient gardener marched against the wind toward the distant hills and found a stillness it had long forgotten.",
2285
+ "source": "Typing Practice"
2286
+ },
2287
+ {
2288
+ "id": "q0458",
2289
+ "text": "The patient gardener marched swiftly between the tall pines and never once looked back.",
2290
+ "source": "Typing Practice"
2291
+ },
2292
+ {
2293
+ "id": "q0459",
2294
+ "text": "The patient gardener marched through the valley into the heart of the forest until the first light touched the ground.",
2295
+ "source": "Typing Practice"
2296
+ },
2297
+ {
2298
+ "id": "q0460",
2299
+ "text": "The patient gardener marched without hesitation around the ancient ruins long after the others had given up.",
2300
+ "source": "Typing Practice"
2301
+ },
2302
+ {
2303
+ "id": "q0461",
2304
+ "text": "The patient gardener raced against the wind down the narrow lane as if the whole journey had been planned.",
2305
+ "source": "Typing Practice"
2306
+ },
2307
+ {
2308
+ "id": "q0462",
2309
+ "text": "The patient gardener settled against the wind into the heart of the forest as the lanterns flickered in the dark.",
2310
+ "source": "Typing Practice"
2311
+ },
2312
+ {
2313
+ "id": "q0463",
2314
+ "text": "The patient gardener settled through the valley through the crowded market as if the whole journey had been planned.",
2315
+ "source": "Typing Practice"
2316
+ },
2317
+ {
2318
+ "id": "q0464",
2319
+ "text": "The patient gardener settled under a pale moon below the rolling clouds and found a stillness it had long forgotten.",
2320
+ "source": "Typing Practice"
2321
+ },
2322
+ {
2323
+ "id": "q0465",
2324
+ "text": "The patient gardener settled without hesitation past the sleeping village long after the others had given up.",
2325
+ "source": "Typing Practice"
2326
+ },
2327
+ {
2328
+ "id": "q0466",
2329
+ "text": "The patient gardener soared swiftly past the sleeping village as if the whole journey had been planned.",
2330
+ "source": "Typing Practice"
2331
+ },
2332
+ {
2333
+ "id": "q0467",
2334
+ "text": "The patient gardener wound its way step by step beneath a sky of stars as if the whole journey had been planned.",
2335
+ "source": "Typing Practice"
2336
+ },
2337
+ {
2338
+ "id": "q0468",
2339
+ "text": "The silver fox circled back into the unknown through the crowded market as the lanterns flickered in the dark.",
2340
+ "source": "Typing Practice"
2341
+ },
2342
+ {
2343
+ "id": "q0469",
2344
+ "text": "The silver fox circled back swiftly into the heart of the forest as the lanterns flickered in the dark.",
2345
+ "source": "Typing Practice"
2346
+ },
2347
+ {
2348
+ "id": "q0470",
2349
+ "text": "The silver fox drifted before sunrise beneath a sky of stars though the path ahead remained unclear.",
2350
+ "source": "Typing Practice"
2351
+ },
2352
+ {
2353
+ "id": "q0471",
2354
+ "text": "The silver fox drifted without hesitation over the frozen lake though the path ahead remained unclear.",
2355
+ "source": "Typing Practice"
2356
+ },
2357
+ {
2358
+ "id": "q0472",
2359
+ "text": "The silver fox marched through the valley down the narrow lane and found a stillness it had long forgotten.",
2360
+ "source": "Typing Practice"
2361
+ },
2362
+ {
2363
+ "id": "q0473",
2364
+ "text": "The silver fox pressed onward against the wind along the winding coast though the path ahead remained unclear.",
2365
+ "source": "Typing Practice"
2366
+ },
2367
+ {
2368
+ "id": "q0474",
2369
+ "text": "The silver fox pressed onward through the valley beneath a sky of stars and found a stillness it had long forgotten.",
2370
+ "source": "Typing Practice"
2371
+ },
2372
+ {
2373
+ "id": "q0475",
2374
+ "text": "The silver fox raced quietly down the narrow lane though the path ahead remained unclear.",
2375
+ "source": "Typing Practice"
2376
+ },
2377
+ {
2378
+ "id": "q0476",
2379
+ "text": "The silver fox raced step by step below the rolling clouds until the first light touched the ground.",
2380
+ "source": "Typing Practice"
2381
+ },
2382
+ {
2383
+ "id": "q0477",
2384
+ "text": "The silver fox raced with great care between the tall pines and never once looked back.",
2385
+ "source": "Typing Practice"
2386
+ },
2387
+ {
2388
+ "id": "q0478",
2389
+ "text": "The silver fox raced with great care through the crowded market and never once looked back.",
2390
+ "source": "Typing Practice"
2391
+ },
2392
+ {
2393
+ "id": "q0479",
2394
+ "text": "The silver fox settled against the wind along the winding coast as the lanterns flickered in the dark.",
2395
+ "source": "Typing Practice"
2396
+ },
2397
+ {
2398
+ "id": "q0480",
2399
+ "text": "The silver fox soared into the unknown below the rolling clouds as if the whole journey had been planned.",
2400
+ "source": "Typing Practice"
2401
+ },
2402
+ {
2403
+ "id": "q0481",
2404
+ "text": "The silver fox stumbled against the wind below the rolling clouds as if the whole journey had been planned.",
2405
+ "source": "Typing Practice"
2406
+ },
2407
+ {
2408
+ "id": "q0482",
2409
+ "text": "The silver fox stumbled swiftly through the crowded market while the world slowly woke around it.",
2410
+ "source": "Typing Practice"
2411
+ },
2412
+ {
2413
+ "id": "q0483",
2414
+ "text": "The silver fox wandered against the wind beneath a sky of stars and never once looked back.",
2415
+ "source": "Typing Practice"
2416
+ },
2417
+ {
2418
+ "id": "q0484",
2419
+ "text": "The silver fox wandered into the unknown below the rolling clouds as the lanterns flickered in the dark.",
2420
+ "source": "Typing Practice"
2421
+ },
2422
+ {
2423
+ "id": "q0485",
2424
+ "text": "The silver fox wandered quietly below the rolling clouds and found a stillness it had long forgotten.",
2425
+ "source": "Typing Practice"
2426
+ },
2427
+ {
2428
+ "id": "q0486",
2429
+ "text": "The silver fox wandered with great care toward the distant hills as if the whole journey had been planned.",
2430
+ "source": "Typing Practice"
2431
+ },
2432
+ {
2433
+ "id": "q0487",
2434
+ "text": "The silver fox wound its way across the open plain beneath a sky of stars as if the whole journey had been planned.",
2435
+ "source": "Typing Practice"
2436
+ },
2437
+ {
2438
+ "id": "q0488",
2439
+ "text": "The silver fox wound its way before sunrise over the frozen lake long after the others had given up.",
2440
+ "source": "Typing Practice"
2441
+ },
2442
+ {
2443
+ "id": "q0489",
2444
+ "text": "The steady climber circled back against the wind beneath a sky of stars and found a stillness it had long forgotten.",
2445
+ "source": "Typing Practice"
2446
+ },
2447
+ {
2448
+ "id": "q0490",
2449
+ "text": "The steady climber circled back before sunrise between the tall pines though the path ahead remained unclear.",
2450
+ "source": "Typing Practice"
2451
+ },
2452
+ {
2453
+ "id": "q0491",
2454
+ "text": "The steady climber circled back through the valley beneath a sky of stars and never once looked back.",
2455
+ "source": "Typing Practice"
2456
+ },
2457
+ {
2458
+ "id": "q0492",
2459
+ "text": "The steady climber circled back through the valley between the tall pines and found a stillness it had long forgotten.",
2460
+ "source": "Typing Practice"
2461
+ },
2462
+ {
2463
+ "id": "q0493",
2464
+ "text": "The steady climber drifted without hesitation past the sleeping village while the world slowly woke around it.",
2465
+ "source": "Typing Practice"
2466
+ },
2467
+ {
2468
+ "id": "q0494",
2469
+ "text": "The steady climber glided against the wind around the ancient ruins and never once looked back.",
2470
+ "source": "Typing Practice"
2471
+ },
2472
+ {
2473
+ "id": "q0495",
2474
+ "text": "The steady climber glided beyond the old gate down the narrow lane and found a stillness it had long forgotten.",
2475
+ "source": "Typing Practice"
2476
+ },
2477
+ {
2478
+ "id": "q0496",
2479
+ "text": "The steady climber raced quietly through the crowded market while the world slowly woke around it.",
2480
+ "source": "Typing Practice"
2481
+ },
2482
+ {
2483
+ "id": "q0497",
2484
+ "text": "The steady climber raced through the valley down the narrow lane until the first light touched the ground.",
2485
+ "source": "Typing Practice"
2486
+ },
2487
+ {
2488
+ "id": "q0498",
2489
+ "text": "The steady climber settled into the unknown around the ancient ruins until the first light touched the ground.",
2490
+ "source": "Typing Practice"
2491
+ },
2492
+ {
2493
+ "id": "q0499",
2494
+ "text": "The steady climber settled with great care through the crowded market and carried a small hope along the way.",
2495
+ "source": "Typing Practice"
2496
+ },
2497
+ {
2498
+ "id": "q0500",
2499
+ "text": "The steady climber settled without hesitation between the tall pines and found a stillness it had long forgotten.",
2500
+ "source": "Typing Practice"
2501
+ },
2502
+ {
2503
+ "id": "q0501",
2504
+ "text": "The steady climber wandered quietly between the tall pines and never once looked back.",
2505
+ "source": "Typing Practice"
2506
+ },
2507
+ {
2508
+ "id": "q0502",
2509
+ "text": "The steady climber wandered swiftly between the tall pines and carried a small hope along the way.",
2510
+ "source": "Typing Practice"
2511
+ },
2512
+ {
2513
+ "id": "q0503",
2514
+ "text": "The steady climber wound its way before sunrise past the sleeping village and found a stillness it had long forgotten.",
2515
+ "source": "Typing Practice"
2516
+ },
2517
+ {
2518
+ "id": "q0504",
2519
+ "text": "The wandering scholar circled back through the valley along the winding coast while the world slowly woke around it.",
2520
+ "source": "Typing Practice"
2521
+ },
2522
+ {
2523
+ "id": "q0505",
2524
+ "text": "The wandering scholar circled back under a pale moon across the silent desert and never once looked back.",
2525
+ "source": "Typing Practice"
2526
+ },
2527
+ {
2528
+ "id": "q0506",
2529
+ "text": "The wandering scholar drifted against the wind through the crowded market though the path ahead remained unclear.",
2530
+ "source": "Typing Practice"
2531
+ },
2532
+ {
2533
+ "id": "q0507",
2534
+ "text": "The wandering scholar glided into the unknown below the rolling clouds as if the whole journey had been planned.",
2535
+ "source": "Typing Practice"
2536
+ },
2537
+ {
2538
+ "id": "q0508",
2539
+ "text": "The wandering scholar marched across the open plain between the tall pines as if the whole journey had been planned.",
2540
+ "source": "Typing Practice"
2541
+ },
2542
+ {
2543
+ "id": "q0509",
2544
+ "text": "The wandering scholar pressed onward before sunrise through the crowded market long after the others had given up.",
2545
+ "source": "Typing Practice"
2546
+ },
2547
+ {
2548
+ "id": "q0510",
2549
+ "text": "The wandering scholar raced beyond the old gate around the ancient ruins as the lanterns flickered in the dark.",
2550
+ "source": "Typing Practice"
2551
+ },
2552
+ {
2553
+ "id": "q0511",
2554
+ "text": "The wandering scholar settled under a pale moon around the ancient ruins as if the whole journey had been planned.",
2555
+ "source": "Typing Practice"
2556
+ },
2557
+ {
2558
+ "id": "q0512",
2559
+ "text": "The wandering scholar settled with great care over the frozen lake though the path ahead remained unclear.",
2560
+ "source": "Typing Practice"
2561
+ },
2562
+ {
2563
+ "id": "q0513",
2564
+ "text": "The wandering scholar soared against the wind through the crowded market though the path ahead remained unclear.",
2565
+ "source": "Typing Practice"
2566
+ },
2567
+ {
2568
+ "id": "q0514",
2569
+ "text": "The wandering scholar soared beyond the old gate through the crowded market though the path ahead remained unclear.",
2570
+ "source": "Typing Practice"
2571
+ },
2572
+ {
2573
+ "id": "q0515",
2574
+ "text": "The wandering scholar wandered step by step around the ancient ruins until the first light touched the ground.",
2575
+ "source": "Typing Practice"
2576
+ },
2577
+ {
2578
+ "id": "q0516",
2579
+ "text": "The wandering scholar wound its way quietly past the sleeping village and found a stillness it had long forgotten.",
2580
+ "source": "Typing Practice"
2581
+ },
2582
+ {
2583
+ "id": "q0517",
2584
+ "text": "The wandering scholar wound its way without hesitation across the silent desert though the path ahead remained unclear.",
2585
+ "source": "Typing Practice"
2586
+ },
2587
+ {
2588
+ "id": "q0518",
2589
+ "text": "The young apprentice climbed with great care into the heart of the forest as if the whole journey had been planned.",
2590
+ "source": "Typing Practice"
2591
+ },
2592
+ {
2593
+ "id": "q0519",
2594
+ "text": "The young apprentice drifted against the wind below the rolling clouds long after the others had given up.",
2595
+ "source": "Typing Practice"
2596
+ },
2597
+ {
2598
+ "id": "q0520",
2599
+ "text": "The young apprentice drifted beyond the old gate around the ancient ruins with a quiet confidence that surprised everyone.",
2600
+ "source": "Typing Practice"
2601
+ },
2602
+ {
2603
+ "id": "q0521",
2604
+ "text": "The young apprentice pressed onward across the open plain past the sleeping village as if the whole journey had been planned.",
2605
+ "source": "Typing Practice"
2606
+ },
2607
+ {
2608
+ "id": "q0522",
2609
+ "text": "The young apprentice pressed onward into the unknown into the heart of the forest though the path ahead remained unclear.",
2610
+ "source": "Typing Practice"
2611
+ },
2612
+ {
2613
+ "id": "q0523",
2614
+ "text": "The young apprentice raced across the open plain below the rolling clouds as if the whole journey had been planned.",
2615
+ "source": "Typing Practice"
2616
+ },
2617
+ {
2618
+ "id": "q0524",
2619
+ "text": "The young apprentice raced into the unknown past the sleeping village with a quiet confidence that surprised everyone.",
2620
+ "source": "Typing Practice"
2621
+ },
2622
+ {
2623
+ "id": "q0525",
2624
+ "text": "The young apprentice raced under a pale moon below the rolling clouds though the path ahead remained unclear.",
2625
+ "source": "Typing Practice"
2626
+ },
2627
+ {
2628
+ "id": "q0526",
2629
+ "text": "The young apprentice raced with great care over the frozen lake with a quiet confidence that surprised everyone.",
2630
+ "source": "Typing Practice"
2631
+ },
2632
+ {
2633
+ "id": "q0527",
2634
+ "text": "The young apprentice stumbled across the open plain beneath a sky of stars though the path ahead remained unclear.",
2635
+ "source": "Typing Practice"
2636
+ },
2637
+ {
2638
+ "id": "q0528",
2639
+ "text": "The young apprentice wandered across the open plain toward the distant hills and found a stillness it had long forgotten.",
2640
+ "source": "Typing Practice"
2641
+ }
2642
+ ]