-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathy.json
2427 lines (2427 loc) · 71.8 KB
/
y.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"word": "Ycleped",
"type": "",
"definition": "of Clepe"
},
{
"word": "Y's",
"type": "pl. ",
"definition": "of Y"
},
{
"word": "Ys",
"type": "pl. ",
"definition": "of Y"
},
{
"word": "Y",
"type": "n.",
"definition": "Something shaped like the letter Y; a forked piece resembling in\n form the letter Y."
},
{
"word": "Y",
"type": "n.",
"definition": "One of the forked holders for supporting the telescope of a\n leveling instrument, or the axis of a theodolite; a wye."
},
{
"word": "Y",
"type": "n.",
"definition": "A forked or bifurcated pipe fitting."
},
{
"word": "Y",
"type": "n.",
"definition": "A portion of track consisting of two diverging tracks connected\n by a cross track."
},
{
"word": "Y",
"type": "pron.",
"definition": "I."
},
{
"word": "Y-",
"type": "",
"definition": "Alt. of I-"
},
{
"word": "Y-",
"type": "",
"definition": "A prefix of obscure meaning, originally used with verbs, adverbs,\n adjectives, nouns, and pronouns. In the Middle English period, it was\n little employed except with verbs, being chiefly used with past\n participles, though occasionally with the infinitive Ycleped, or\n yclept, is perhaps the only word not entirely obsolete which shows this\n use."
},
{
"word": "Ya",
"type": "adv.",
"definition": "Yea."
},
{
"word": "Yacare",
"type": "n.",
"definition": "A South American crocodilian (Jacare sclerops) resembling\n the alligator in size and habits. The eye orbits are connected\n together, and surrounded by prominent bony ridges. Called also\n spectacled alligator, and spectacled cayman."
},
{
"word": "Yacca",
"type": "n.",
"definition": "A West Indian name for two large timber trees (Podocarpus\n coriaceus, and P. Purdicanus) of the Yew family. The wood, which is\n much used, is pale brownish with darker streaks."
},
{
"word": "Yacht",
"type": "n.",
"definition": "A light and elegantly furnished vessel, used either for\n private parties of pleasure, or as a vessel of state to convey\n distinguished persons from one place to another; a seagoing vessel used\n only for pleasure trips, racing, etc."
},
{
"word": "Yacht",
"type": "v. i.",
"definition": "To manage a yacht; to voyage in a yacht."
},
{
"word": "Yachter",
"type": "n.",
"definition": "One engaged in sailing a jacht."
},
{
"word": "Yachting",
"type": "n.",
"definition": "Sailing for pleasure in a yacht."
},
{
"word": "Yachtman",
"type": "n.",
"definition": "See Yachtsman."
},
{
"word": "Yachtsmen",
"type": "pl. ",
"definition": "of Yachtsman"
},
{
"word": "Yachtsman",
"type": "n.",
"definition": "One who owns or sails a yacht; a yachter."
},
{
"word": "Yaf",
"type": "imp.",
"definition": "Gave. See Give."
},
{
"word": "Yaffingale",
"type": "n.",
"definition": "The yaffle."
},
{
"word": "Yaffle",
"type": "n.",
"definition": "The European green woodpecker (Picus, \/ Genius, viridis).\n It is noted for its loud laughlike note. Called also eccle, hewhole,\n highhoe, laughing bird, popinjay, rain bird, yaffil, yaffler,\n yaffingale, yappingale, yackel, and woodhack."
},
{
"word": "Yager",
"type": "n.",
"definition": "In the German army, one belonging to a body of light\n infantry armed with rifles, resembling the chasseur of the French army."
},
{
"word": "Yaguarundi",
"type": "n.",
"definition": "Same as Jaguarondi."
},
{
"word": "Yajur-Veda",
"type": "n.",
"definition": "See Veda."
},
{
"word": "Yak",
"type": "n.",
"definition": "A bovine mammal (Poephagus grunnies) native of the high plains\n of Central Asia. Its neck, the outer side of its legs, and its flanks,\n are covered with long, flowing, fine hair. Its tail is long and bushy,\n often white, and is valued as an ornament and for other purposes in\n India and China. There are several domesticated varieties, some of\n which lack the mane and the long hair on the flanks. Called also chauri\n gua, grunting cow, grunting ox, sarlac, sarlik, and sarluc."
},
{
"word": "Yakamilk",
"type": "n.",
"definition": "See Trumpeter, 3 (a)."
},
{
"word": "Yakare",
"type": "n.",
"definition": "Same as Yacare."
},
{
"word": "Yakin",
"type": "n.",
"definition": "A large Asiatic antelope (Budorcas taxicolor) native of the\n higher parts of the Himalayas and other lofty mountains. Its head and\n neck resemble those of the ox, and its tail is like that of the goat.\n Called also budorcas."
},
{
"word": "Yakoots",
"type": "n. pl.",
"definition": "(Ethnol.) A nomadic Mongolian tribe native of Northern\n Siberia, and supposed to be of Turkish stock. They are mainly pastoral\n in their habits."
},
{
"word": "Yaksha",
"type": "n.",
"definition": "A kind of demigod attendant on Kuvera, the god of wealth."
},
{
"word": "Yalah",
"type": "n.",
"definition": "The oil of the mahwa tree."
},
{
"word": "Yam",
"type": "n.",
"definition": "A large, esculent, farinaceous tuber of various climbing\n plants of the genus Dioscorea; also, the plants themselves. Mostly\n natives of warm climates. The plants have netted-veined, petioled\n leaves, and pods with three broad wings. The commonest species is D.\n sativa, but several others are cultivated."
},
{
"word": "Yama",
"type": "n.",
"definition": "The king of the infernal regions, corresponding to the Greek\n Pluto, and also the judge of departed souls. In later times he is more\n exclusively considered the dire judge of all, and the tormentor of the\n wicked. He is represented as of a green color, with red garments,\n having a crown on his head, his eyes inflamed, and sitting on a\n buffalo, with a club and noose in his hands."
},
{
"word": "Yamma",
"type": "n.",
"definition": "The llama."
},
{
"word": "Yamp",
"type": "n.",
"definition": "An umbelliferous plant (Carum Gairdneri); also, its small\n fleshy roots, which are eaten by the Indians from Idaho to California."
},
{
"word": "Yang",
"type": "n.",
"definition": "The cry of the wild goose; a honk."
},
{
"word": "Yang",
"type": "v. i.",
"definition": "To make the cry of the wild goose."
},
{
"word": "Yank",
"type": "n.",
"definition": "A jerk or twitch."
},
{
"word": "Yanked",
"type": "imp. & p. p.",
"definition": "of Yank"
},
{
"word": "Yanking",
"type": "p. pr. & vb. n.",
"definition": "of Yank"
},
{
"word": "Yank",
"type": "v. t.",
"definition": "To twitch; to jerk."
},
{
"word": "Yank",
"type": "n.",
"definition": "An abbreviation of Yankee."
},
{
"word": "Yankee",
"type": "n.",
"definition": "A nickname for a native or citizen of New England,\n especially one descended from old New England stock; by extension, an\n inhabitant of the Northern States as distinguished from a Southerner;\n also, applied sometimes by foreigners to any inhabitant of the United\n States."
},
{
"word": "Yankee",
"type": "a.",
"definition": "Of or pertaining to a Yankee; characteristic of the\n Yankees."
},
{
"word": "Yankee-Doodle",
"type": "n.",
"definition": "The name of a tune adopted popularly as one of the\n national airs of the United States."
},
{
"word": "Yankee-Doodle",
"type": "n.",
"definition": "Humorously, a Yankee."
},
{
"word": "Yankeeism",
"type": "n.",
"definition": "A Yankee idiom, word, custom, or the like."
},
{
"word": "Yaourt",
"type": "n.",
"definition": "A fermented drink, or milk beer, made by the Turks."
},
{
"word": "Yap",
"type": "v. i.",
"definition": "To bark; to yelp."
},
{
"word": "Yap",
"type": "n.",
"definition": "A bark; a yelp."
},
{
"word": "Yapock",
"type": "n.",
"definition": "A South American aquatic opossum (Chironectes variegatus)\n found in Guiana and Brazil. Its hind feet are webbed, and its fore feet\n do not have an opposable thumb for climbing. Called also water opossum."
},
{
"word": "Yapon",
"type": "n.",
"definition": "Same as Yaupon."
},
{
"word": "Yarage",
"type": "a.",
"definition": "The power of moving, or being managed, at sea; -- said with\n reference to a ship."
},
{
"word": "Yard",
"type": "v. i.",
"definition": "A rod; a stick; a staff."
},
{
"word": "Yard",
"type": "v. i.",
"definition": "A branch; a twig."
},
{
"word": "Yard",
"type": "v. i.",
"definition": "A long piece of timber, as a rafter, etc."
},
{
"word": "Yard",
"type": "v. i.",
"definition": "A measure of length, equaling three feet, or thirty-six\n inches, being the standard of English and American measure."
},
{
"word": "Yard",
"type": "v. i.",
"definition": "The penis."
},
{
"word": "Yard",
"type": "v. i.",
"definition": "A long piece of timber, nearly cylindrical, tapering\n toward the ends, and designed to support and extend a square sail. A\n yard is usually hung by the center to the mast. See Illust. of Ship."
},
{
"word": "Yard",
"type": "n.",
"definition": "An inclosure; usually, a small inclosed place in front of, or\n around, a house or barn; as, a courtyard; a cowyard; a barnyard."
},
{
"word": "Yard",
"type": "n.",
"definition": "An inclosure within which any work or business is carried on;\n as, a dockyard; a shipyard."
},
{
"word": "Yard",
"type": "v. t.",
"definition": "To confine (cattle) to the yard; to shut up, or keep, in a\n yard; as, to yard cows."
},
{
"word": "Yardarm",
"type": "n.",
"definition": "Either half of a square-rigged vessel's yard, from the\n center or mast to the end."
},
{
"word": "Yardfuls",
"type": "pl. ",
"definition": "of Yardful"
},
{
"word": "Yardful",
"type": "n.",
"definition": "As much as a yard will contain; enough to fill a yard."
},
{
"word": "Yardland",
"type": "n.",
"definition": "A measure of land of uncertain quantity, varying from\n fifteen to forty acres; a virgate."
},
{
"word": "Yardstick",
"type": "n.",
"definition": "A stick three feet, or a yard, in length, used as a\n measure of cloth, etc."
},
{
"word": "Yardwand",
"type": "n.",
"definition": "A yardstick."
},
{
"word": "Yare",
"type": "n.",
"definition": "Ready; dexterous; eager; lively; quick to move."
},
{
"word": "Yare",
"type": "adv.",
"definition": "Soon."
},
{
"word": "Yarely",
"type": "adv.",
"definition": "In a yare manner."
},
{
"word": "Yark",
"type": "v. t. & i.",
"definition": "To yerk."
},
{
"word": "Yarke",
"type": "n.",
"definition": "Same as Saki."
},
{
"word": "Yarn",
"type": "n.",
"definition": "Spun wool; woolen thread; also, thread of other material, as\n of cotton, flax, hemp, or silk; material spun and prepared for use in\n weaving, knitting, manufacturing sewing thread, or the like."
},
{
"word": "Yarn",
"type": "n.",
"definition": "One of the threads of which the strands of a rope are\n composed."
},
{
"word": "Yarn",
"type": "n.",
"definition": "A story told by a sailor for the amusement of his companions;\n a story or tale; as, to spin a yarn."
},
{
"word": "Yarnen",
"type": "a.",
"definition": "Made of yarn; consisting of yarn."
},
{
"word": "Yarnut",
"type": "n.",
"definition": "See Yernut."
},
{
"word": "Yarr",
"type": "v. i.",
"definition": "To growl or snarl as a dog."
},
{
"word": "Yarrish",
"type": "a.",
"definition": "Having a rough, dry taste."
},
{
"word": "Yarrow",
"type": "n.",
"definition": "An American and European composite plant (Achillea\n Millefolium) with very finely dissected leaves and small white corymbed\n flowers. It has a strong, and somewhat aromatic, odor and taste, and is\n sometimes used in making beer, or is dried for smoking. Called also\n milfoil, and nosebleed."
},
{
"word": "Yarwhip",
"type": "n.",
"definition": "The European bar-tailed godwit; -- called also yardkeep,\n and yarwhelp. See Godwit."
},
{
"word": "Yataghan",
"type": "n.",
"definition": "A long knife, or short saber, common among Mohammedan\n nations, usually having a double curve, sometimes nearly straight."
},
{
"word": "Yate",
"type": "n.",
"definition": "A gate. See 1st Gate."
},
{
"word": "Yaud",
"type": "n.",
"definition": "See Yawd."
},
{
"word": "Yaul",
"type": "n.",
"definition": "See Yawl."
},
{
"word": "Yaulp",
"type": "v. i.",
"definition": "To yaup."
},
{
"word": "Yaup",
"type": "v. i.",
"definition": "To cry out like a child; to yelp."
},
{
"word": "Yaup",
"type": "n.",
"definition": "A cry of distress, rage, or the like, as the cry of a sickly\n bird, or of a child in pain."
},
{
"word": "Yaup",
"type": "n.",
"definition": "The blue titmouse."
},
{
"word": "Yauper",
"type": "n.",
"definition": "One who, or that which, yaups."
},
{
"word": "Yaupon",
"type": "n.",
"definition": "A shrub (Ilex Cassine) of the Holly family, native from\n Virginia to Florida. The smooth elliptical leaves are used as a\n substitute for tea, and were formerly used in preparing the black drink\n of the Indians of North Carolina. Called also South-Sea tea."
},
{
"word": "Yawed",
"type": "imp. & p. p.",
"definition": "of Yaw"
},
{
"word": "Yawing",
"type": "p. pr. & vb. n.",
"definition": "of Yaw"
},
{
"word": "Yaw",
"type": "v. i.",
"definition": "To rise in blisters, breaking in white froth, as cane juice\n in the clarifiers in sugar works."
},
{
"word": "Yaw",
"type": "v. i. & t.",
"definition": "To steer wild, or out of the line of her course; to\n deviate from her course, as when struck by a heavy sea; -- said of a\n ship."
},
{
"word": "Yaw",
"type": "n.",
"definition": "A movement of a vessel by which she temporarily alters her\n course; a deviation from a straight course in steering."
},
{
"word": "Yawd",
"type": "n.",
"definition": "A jade; an old horse or mare."
},
{
"word": "Yawl",
"type": "n.",
"definition": "A small ship's boat, usually rowed by four or six oars."
},
{
"word": "Yawl",
"type": "v. i.",
"definition": "To cry out like a dog or cat; to howl; to yell."
},
{
"word": "Yawl-rigged",
"type": "a.",
"definition": "Having two masts with fore-and-aft sails, but\n differing from a schooner in that the after mast is very small, and\n stepped as far aft as possible. See Illustration in Appendix."
},
{
"word": "Yawned",
"type": "imp. & p. p.",
"definition": "of Yawn"
},
{
"word": "Yawning",
"type": "p. pr. & vb. n.",
"definition": "of Yawn"
},
{
"word": "Yawn",
"type": "v. i.",
"definition": "To open the mouth involuntarily through drowsiness,\n dullness, or fatigue; to gape; to oscitate."
},
{
"word": "Yawn",
"type": "v. i.",
"definition": "To open wide; to gape, as if to allow the entrance or exit\n of anything."
},
{
"word": "Yawn",
"type": "v. i.",
"definition": "To open the mouth, or to gape, through surprise or\n bewilderment."
},
{
"word": "Yawn",
"type": "v. i.",
"definition": "To be eager; to desire to swallow anything; to express\n desire by yawning; as, to yawn for fat livings."
},
{
"word": "Yawn",
"type": "n.",
"definition": "An involuntary act, excited by drowsiness, etc., consisting\n of a deep and long inspiration following several successive attempts at\n inspiration, the mouth, fauces, etc., being wide open."
},
{
"word": "Yawn",
"type": "n.",
"definition": "The act of opening wide, or of gaping."
},
{
"word": "Yawn",
"type": "n.",
"definition": "A chasm, mouth, or passageway."
},
{
"word": "Yawningly",
"type": "adv.",
"definition": "In a yawning manner."
},
{
"word": "Yawp",
"type": "v. & n.",
"definition": "See Yaup."
},
{
"word": "Yaws",
"type": "n.",
"definition": "A disease, occurring in the Antilles and in Africa,\n characterized by yellowish or reddish tumors, of a contagious\n character, which, in shape and appearance, often resemble currants,\n strawberries, or raspberries. There are several varieties of this\n disease, variously known as framboesia, pian, verrugas, and crab-yaws."
},
{
"word": "Yaw-weed",
"type": "n.",
"definition": "A low, shrubby, rubiaceous plant (Morinda Royoc) growing\n along the seacoast of the West Indies. It has small, white, odorous\n flowers."
},
{
"word": "Ybe",
"type": "p. p.",
"definition": "Been."
},
{
"word": "Ycleped",
"type": "p. p.",
"definition": "Called; named; -- obsolete, except in archaic or\n humorous writings."
},
{
"word": "Ydo",
"type": "p. p.",
"definition": "Done."
},
{
"word": "Ydrad",
"type": "p. p.",
"definition": "Dreaded."
},
{
"word": "Ye",
"type": "",
"definition": "Alt. of Ye"
},
{
"word": "Ye",
"type": "",
"definition": "an old method of printing the article the (AS. \/e), the \"y\" being\n used in place of the Anglo-Saxon thorn (\/). It is sometimes incorrectly\n pronounced ye. See The, and Thorn, n., 4."
},
{
"word": "Yen",
"type": "pl. ",
"definition": "of Ye"
},
{
"word": "Ye",
"type": "n.",
"definition": "An eye."
},
{
"word": "Ye",
"type": "pron.",
"definition": "The plural of the pronoun of the second person in the\n nominative case."
},
{
"word": "Ye",
"type": "adv.",
"definition": "Yea; yes."
},
{
"word": "Yea",
"type": "adv.",
"definition": "Yes; ay; a word expressing assent, or an affirmative, or an\n affirmative answer to a question, now superseded by yes. See Yes."
},
{
"word": "Yea",
"type": "adv.",
"definition": "More than this; not only so, but; -- used to mark the\n addition of a more specific or more emphatic clause. Cf. Nay, adv., 2."
},
{
"word": "Yea",
"type": "n.",
"definition": "An affirmative vote; one who votes in the affirmative; as, a\n vote by yeas and nays."
},
{
"word": "Yead",
"type": "v. i.",
"definition": "Properly, a variant of the defective imperfect yode, but\n sometimes mistaken for a present. See the Note under Yede."
},
{
"word": "Yeaned",
"type": "imp. & p. p.",
"definition": "of Yean"
},
{
"word": "Yeaning",
"type": "p. pr. & vb. n.",
"definition": "of Yean"
},
{
"word": "Yean",
"type": "v. t. & i.",
"definition": "To bring forth young, as a goat or a sheep; to ean."
},
{
"word": "Yeanling",
"type": "n.",
"definition": "A lamb or a kid; an eanling."
},
{
"word": "Year",
"type": "n.",
"definition": "The time of the apparent revolution of the sun trough the\n ecliptic; the period occupied by the earth in making its revolution\n around the sun, called the astronomical year; also, a period more or\n less nearly agreeing with this, adopted by various nations as a measure\n of time, and called the civil year; as, the common lunar year of 354\n days, still in use among the Mohammedans; the year of 360 days, etc. In\n common usage, the year consists of 365 days, and every fourth year\n (called bissextile, or leap year) of 366 days, a day being added to\n February on that year, on account of the excess above 365 days (see\n Bissextile)."
},
{
"word": "Year",
"type": "n.",
"definition": "The time in which any planet completes a revolution about the\n sun; as, the year of Jupiter or of Saturn."
},
{
"word": "Year",
"type": "n.",
"definition": "Age, or old age; as, a man in years."
},
{
"word": "Yeara",
"type": "n.",
"definition": "The California poison oak (Rhus diversiloba). See under\n Poison, a."
},
{
"word": "Yearbook",
"type": "n.",
"definition": "A book published yearly; any annual report or summary of\n the statistics or facts of a year, designed to be used as a reference\n book; as, the Congregational Yearbook."
},
{
"word": "Yearbook",
"type": "n.",
"definition": "A book containing annual reports of cases adjudged in the\n courts of England."
},
{
"word": "Yeared",
"type": "a.",
"definition": "Containing years; having existed or continued many years;\n aged."
},
{
"word": "Yearling",
"type": "n.",
"definition": "An animal one year old, or in the second year of its age;\n -- applied chiefly to cattle, sheep, and horses."
},
{
"word": "Yearling",
"type": "a.",
"definition": "Being a year old."
},
{
"word": "Yearly",
"type": "a.",
"definition": "Happening, accruing, or coming every year; annual; as, a\n yearly income; a yearly feast."
},
{
"word": "Yearly",
"type": "a.",
"definition": "Lasting a year; as, a yearly plant."
},
{
"word": "Yearly",
"type": "a.",
"definition": "Accomplished in a year; as, the yearly circuit, or\n revolution, of the earth."
},
{
"word": "Yearly",
"type": "adv.",
"definition": "Annually; once a year to year; as, blessings yearly\n bestowed."
},
{
"word": "Yearned",
"type": "imp. & p. p.",
"definition": "of Yearn"
},
{
"word": "Yearning",
"type": "p. pr. & vb. n.",
"definition": "of Yearn"
},
{
"word": "Yearn",
"type": "v. t.",
"definition": "To pain; to grieve; to vex."
},
{
"word": "Yearn",
"type": "v. i.",
"definition": "To be pained or distressed; to grieve; to mourn."
},
{
"word": "Yearn",
"type": "v. i. & t.",
"definition": "To curdle, as milk."
},
{
"word": "Yearn",
"type": "v. i.",
"definition": "To be filled with longing desire; to be harassed or\n rendered uneasy with longing, or feeling the want of a thing; to strain\n with emotions of affection or tenderness; to long; to be eager."
},
{
"word": "Yearnful",
"type": "a.",
"definition": "Desirous."
},
{
"word": "Yearningly",
"type": "adv.",
"definition": "With yearning."
},
{
"word": "Yearnings",
"type": "n. pl.",
"definition": "The maws, or stomachs, of young calves, used as a\n rennet for curdling milk."
},
{
"word": "Yearth",
"type": "n.",
"definition": "The earth."
},
{
"word": "Yeast",
"type": "n.",
"definition": "The foam, or troth (top yeast), or the sediment (bottom\n yeast), of beer or other in fermentation, which contains the yeast\n plant or its spores, and under certain conditions produces fermentation\n in saccharine or farinaceous substances; a preparation used for raising\n dough for bread or cakes, and making it light and puffy; barm; ferment."
},
{
"word": "Yeast",
"type": "n.",
"definition": "Spume, or foam, of water."
},
{
"word": "Yeast",
"type": "n.",
"definition": "A form of fungus which grows as indvidual rounded cells,\n rather than in a mycelium, and reproduces by budding; esp. members of\n the orders Endomycetales and Moniliales. Some fungi may grow both as a\n yeast or as a mycelium, depending on the conditions of growth."
},
{
"word": "Yeast-bitten",
"type": "a.",
"definition": "A term used of beer when the froth of the yeast has\n reentered the body of the beer."
},
{
"word": "Yeastiness",
"type": "n.",
"definition": "The quality or state of being yeasty, or frothy."
},
{
"word": "Yeasty",
"type": "a.",
"definition": "Frothy; foamy; spumy, like yeast."
},
{
"word": "Yedding",
"type": "n.",
"definition": "The song of a minstrel; hence, any song."
},
{
"word": "Yede",
"type": "imp.",
"definition": "Went. See Yode."
},
{
"word": "Yeel",
"type": "n.",
"definition": "An eel."
},
{
"word": "Yeldhall",
"type": "n.",
"definition": "Guildhall."
},
{
"word": "Yeldrin",
"type": "n.",
"definition": "Alt. of Yeldrine"
},
{
"word": "Yeldrine",
"type": "n.",
"definition": "The yellow-hammer; -- called also yeldrock, and yoldrin."
},
{
"word": "Yelk",
"type": "n.",
"definition": "Same as Yolk."
},
{
"word": "Yelled",
"type": "imp. & p. p.",
"definition": "of Yell"
},
{
"word": "Yelling",
"type": "p. pr. & vb. n.",
"definition": "of Yell"
},
{
"word": "Yell",
"type": "v. i.",
"definition": "To cry out, or shriek, with a hideous noise; to cry or\n scream as with agony or horror."
},
{
"word": "Yell",
"type": "v. t.",
"definition": "To utter or declare with a yell; to proclaim in a loud\n tone."
},
{
"word": "Yell",
"type": "n.",
"definition": "A sharp, loud, hideous outcry."
},
{
"word": "Yellow",
"type": "superl.",
"definition": "Being of a bright saffronlike color; of the color of\n gold or brass; having the hue of that part of the rainbow, or of the\n solar spectrum, which is between the orange and the green."
},
{
"word": "Yellow",
"type": "n.",
"definition": "A bright golden color, reflecting more light than any other\n except white; the color of that part of the spectrum which is between\n the orange and green."
},
{
"word": "Yellow",
"type": "n.",
"definition": "A yellow pigment."
},
{
"word": "Yellowed",
"type": "imp. & p. p.",
"definition": "of Yellow"
},
{
"word": "Yellowing",
"type": "p. pr. & vb. n.",
"definition": "of Yellow"
},
{
"word": "Yellow",
"type": "v. t.",
"definition": "To make yellow; to cause to have a yellow tinge or\n color; to dye yellow."
},
{
"word": "Yellow",
"type": "v. i.",
"definition": "To become yellow or yellower."
},
{
"word": "Yellowammer",
"type": "n.",
"definition": "See Yellow-hammer."
},
{
"word": "Yellowbill",
"type": "n.",
"definition": "The American scoter."
},
{
"word": "Yellowbird",
"type": "n.",
"definition": "The American goldfinch, or thistle bird. See Goldfinch."
},
{
"word": "Yellowbird",
"type": "n.",
"definition": "The common yellow warbler; -- called also summer\n yellowbird. See Illust. of Yellow warbler, under Yellow, a."
},
{
"word": "Yellow-covered",
"type": "a.",
"definition": "Covered or bound in yellow paper."
},
{
"word": "Yellow-eyed",
"type": "a.",
"definition": "Having yellow eyes."
},
{
"word": "Yellowfin",
"type": "n.",
"definition": "A large squeteague."
},
{
"word": "Yellowfish",
"type": "n.",
"definition": "A rock trout (Pleurogrammus monopterygius) found on the\n coast of Alaska; -- called also striped fish, and Atka mackerel."
},
{
"word": "Yellow-golds",
"type": "n.",
"definition": "A certain plant, probably the yellow oxeye."
},
{
"word": "Yellowhammer",
"type": "n.",
"definition": "A common European finch (Emberiza citrinella). The\n color of the male is bright yellow on the breast, neck, and sides of\n the head, with the back yellow and brown, and the top of the head and\n the tail quills blackish. Called also yellow bunting, scribbling lark,\n and writing lark."
},
{
"word": "Yellowhammer",
"type": "n.",
"definition": "The flicker."
},
{
"word": "Yellowing",
"type": "n.",
"definition": "The act or process of making yellow."
},
{
"word": "Yellowish",
"type": "a.",
"definition": "Somewhat yellow; as, amber is of a yellowish color."
},
{
"word": "Yellowlegs",
"type": "n.",
"definition": "Any one of several species of long-legged sandpipers of\n the genus Totanus, in which the legs are bright yellow; -- called also\n stone snipe, tattler, telltale, yellowshanks; and yellowshins. See\n Tattler, 2."
},
{
"word": "Yellowness",
"type": "n.",
"definition": "The quality or state of being yellow; as, the\n yellowness of an orange."
},
{
"word": "Yellowness",
"type": "n.",
"definition": "Jealousy."
},
{
"word": "Yellowroot",
"type": "n.",
"definition": "Any one of several plants with yellow roots."
},
{
"word": "Yellowroot",
"type": "n.",
"definition": "See Xanthorhiza."