-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathu.json
16787 lines (16787 loc) · 492 KB
/
u.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": "Us",
"type": "pl. ",
"definition": "of I"
},
{
"word": "Uakari",
"type": "n.",
"definition": "Same as Ouakari."
},
{
"word": "Uberous",
"type": "a.",
"definition": "Fruitful; copious; abundant; plentiful."
},
{
"word": "Uberty",
"type": "n.",
"definition": "Fruitfulness; copiousness; abundance; plenty."
},
{
"word": "Ubication",
"type": "n.",
"definition": "Alt. of Ubiety"
},
{
"word": "Ubiety",
"type": "n.",
"definition": "The quality or state of being in a place; local relation;\n position or location; whereness."
},
{
"word": "Ubiquarian",
"type": "a.",
"definition": "Ubiquitous."
},
{
"word": "Ubiquitist",
"type": "n.",
"definition": "Alt. of Ubiquitarian"
},
{
"word": "Ubiquitarian",
"type": "n.",
"definition": "One of a school of Lutheran divines which held that\n the body of Christ is present everywhere, and especially in the\n eucharist, in virtue of his omnipresence. Called also ubiquitist, and\n ubiquitary."
},
{
"word": "Ubiquitariness",
"type": "n.",
"definition": "Quality or state of being ubiquitary, or\n ubiquitous."
},
{
"word": "Ubiquitary",
"type": "a.",
"definition": "Ubiquitous."
},
{
"word": "Ubiquitaries",
"type": "pl. ",
"definition": "of Ubiquitary"
},
{
"word": "Ubiquitary",
"type": "n.",
"definition": "One who exists everywhere."
},
{
"word": "Ubiquitary",
"type": "n.",
"definition": "A ubiquist."
},
{
"word": "Ubiquitist",
"type": "n.",
"definition": "Same as Ubiquist."
},
{
"word": "Ubiquitous",
"type": "a.",
"definition": "Existing or being everywhere, or in all places, at the\n same time; omnipresent."
},
{
"word": "Ubiquity",
"type": "n.",
"definition": "Existence everywhere, or in places, at the same time;\n omnipresence; as, the ubiquity of God is not disputed by those who\n admit his existence."
},
{
"word": "Ubiquity",
"type": "n.",
"definition": "The doctrine, as formulated by Luther, that Christ's\n glorified body is omnipresent."
},
{
"word": "Uchees",
"type": "n. pl.",
"definition": "A tribe of North American Indians belonging to the\n Creek confederation."
},
{
"word": "Uckewallist",
"type": "n.",
"definition": "One of a sect of rigid Anabaptists, which originated\n in 1637, and whose tenets were essentially the same as those of the\n Mennonists. In addition, however, they held that Judas and the\n murderers of Christ were saved. So called from the founder of the sect,\n Ucke Wallis, a native of Friesland."
},
{
"word": "Udal",
"type": "n.",
"definition": "In Shetland and Orkney, a freehold; property held by udal, or\n allodial, right."
},
{
"word": "Udal",
"type": "a.",
"definition": "Allodial; -- a term used in Finland, Shetland, and Orkney.\n See Allodial."
},
{
"word": "Udaler",
"type": "n.",
"definition": "Alt. of Udalman"
},
{
"word": "Udalman",
"type": "n.",
"definition": "In the Shetland and Orkney Islands, one who holds property\n by udal, or allodial, right."
},
{
"word": "Udder",
"type": "n.",
"definition": "The glandular organ in which milk is secreted and stored; --\n popularly called the bag in cows and other quadrupeds. See Mamma."
},
{
"word": "Udder",
"type": "n.",
"definition": "One of the breasts of a woman."
},
{
"word": "Uddered",
"type": "a.",
"definition": "Having an udder or udders."
},
{
"word": "Udderless",
"type": "a.",
"definition": "Destitute or deprived of an udder."
},
{
"word": "Udderless",
"type": "a.",
"definition": "Hence, without mother's milk; motherless; as, udderless\n lambs."
},
{
"word": "Udometer",
"type": "n.",
"definition": "A rain gauge."
},
{
"word": "Ugh",
"type": "interj.",
"definition": "An exclamation expressive of disgust, horror, or recoil.\n Its utterance is usually accompanied by a shudder."
},
{
"word": "Uglesome",
"type": "a.",
"definition": "Ugly."
},
{
"word": "Uglify",
"type": "v. t.",
"definition": "To disfigure; to make ugly."
},
{
"word": "Uglily",
"type": "adv.",
"definition": "In an ugly manner; with deformity."
},
{
"word": "Ugliness",
"type": "n.",
"definition": "The quality or state of being ugly."
},
{
"word": "Ugly",
"type": "superl.",
"definition": "Offensive to the sight; contrary to beauty; being of\n disagreeable or loathsome aspect; unsightly; repulsive; deformed."
},
{
"word": "Ugly",
"type": "superl.",
"definition": "Ill-natured; crossgrained; quarrelsome; as, an ugly\n temper; to feel ugly."
},
{
"word": "Ugly",
"type": "superl.",
"definition": "Unpleasant; disagreeable; likely to cause trouble or\n loss; as, an ugly rumor; an ugly customer."
},
{
"word": "Ugly",
"type": "n.",
"definition": "A shade for the face, projecting from the bonnet."
},
{
"word": "Ugly",
"type": "v. t.",
"definition": "To make ugly."
},
{
"word": "Ugrian",
"type": "n. pl.",
"definition": "A Mongolian race, ancestors of the Finns."
},
{
"word": "Ugsome",
"type": "a.",
"definition": "Ugly; offensive; loathsome."
},
{
"word": "Uhlan",
"type": "n.",
"definition": "One of a certain description of militia among the Tartars."
},
{
"word": "Uhlan",
"type": "n.",
"definition": "One of a kind of light cavalry of Tartaric origin, first\n introduced into European armies in Poland. They are armed with lances,\n pistols, and sabers, and are employed chiefly as skirmishers."
},
{
"word": "Uintatherium",
"type": "n.",
"definition": "An extinct genus of large Eocene ungulates allied to\n Dinoceras. This name is sometimes used for nearly all the known species\n of the group. See Dinoceras."
},
{
"word": "Ukase",
"type": "n.",
"definition": "In Russia, a published proclamation or imperial order,\n having the force of law."
},
{
"word": "Ulan",
"type": "n.",
"definition": "See Uhlan."
},
{
"word": "Ularburong",
"type": "n.",
"definition": "A large East Indian nocturnal tree snake (Dipsas\n dendrophila). It is not venomous."
},
{
"word": "Ulcer",
"type": "n.",
"definition": "A solution of continuity in any of the soft parts of the\n body, discharging purulent matter, found on a surface, especially one\n of the natural surfaces of the body, and originating generally in a\n constitutional disorder; a sore discharging pus. It is distinguished\n from an abscess, which has its beginning, at least, in the depth of the\n tissues."
},
{
"word": "Ulcer",
"type": "n.",
"definition": "Fig.: Anything that festers and corrupts like an open sore;\n a vice in character."
},
{
"word": "Ulcer",
"type": "v. t.",
"definition": "To ulcerate."
},
{
"word": "Ulcerable",
"type": "a.",
"definition": "Capable of ulcerating."
},
{
"word": "Ulcerated",
"type": "imp. & p. p.",
"definition": "of Ulcerate"
},
{
"word": "Ulcerating",
"type": "p. pr. & vb. n.",
"definition": "of Ulcerate"
},
{
"word": "Ulcerate",
"type": "v. i.",
"definition": "To be formed into an ulcer; to become ulcerous."
},
{
"word": "Ulcerate",
"type": "v. t.",
"definition": "To affect with, or as with, an ulcer or ulcers."
},
{
"word": "Ulcerated",
"type": "a.",
"definition": "Affected with, or as with, an ulcer or ulcers; as, an\n ulcerated sore throat."
},
{
"word": "Ulceration",
"type": "n.",
"definition": "The process of forming an ulcer, or of becoming\n ulcerous; the state of being ulcerated; also, an ulcer."
},
{
"word": "Ulcerative",
"type": "a.",
"definition": "Of or pertaining to ulcers; as, an ulcerative process."
},
{
"word": "Ulcered",
"type": "a.",
"definition": "Ulcerous; ulcerated."
},
{
"word": "Ulcerous",
"type": "a.",
"definition": "Having the nature or character of an ulcer; discharging\n purulent or other matter."
},
{
"word": "Ulcerous",
"type": "a.",
"definition": "Affected with an ulcer or ulcers; ulcerated."
},
{
"word": "Ulcuscle",
"type": "n.",
"definition": "Alt. of Ulcuscule"
},
{
"word": "Ulcuscule",
"type": "n.",
"definition": "A little ulcer."
},
{
"word": "Ule",
"type": "n.",
"definition": "A Mexican and Central American tree (Castilloa elastica and C.\n Markhamiana) related to the breadfruit tree. Its milky juice contains\n caoutchouc. Called also ule tree."
},
{
"word": "Ulema",
"type": "n.",
"definition": "A college or corporation in Turkey composed of the\n hierarchy, namely, the imams, or ministers of religion, the muftis, or\n doctors of law, and the cadis, or administrators of justice."
},
{
"word": "Ulexite",
"type": "n.",
"definition": "A mineral occurring in white rounded crystalline masses.\n It is a hydrous borate of lime and soda."
},
{
"word": "Uliginose",
"type": "a.",
"definition": "Alt. of Uliginous"
},
{
"word": "Uliginous",
"type": "a.",
"definition": "Muddy; oozy; slimy; also, growing in muddy places."
},
{
"word": "Ullage",
"type": "n.",
"definition": "The amount which a vessel, as a cask, of liquor lacks of\n being full; wantage; deficiency."
},
{
"word": "Ullet",
"type": "n.",
"definition": "A European owl (Syrnium aluco) of a tawny color; -- called\n also uluia."
},
{
"word": "Ullmannite",
"type": "n.",
"definition": "A brittle mineral of a steel-gray color and metallic\n luster, containing antimony, arsenic, sulphur, and nickel."
},
{
"word": "Ulluco",
"type": "n.",
"definition": "See Melluc\/o."
},
{
"word": "Ulmaceous",
"type": "a.",
"definition": "Of or pertaining to a suborder of urticaceous plants, of\n which the elm is the type."
},
{
"word": "Ulmate",
"type": "n.",
"definition": "A salt of ulmic acid."
},
{
"word": "Ulmic",
"type": "a.",
"definition": "Pertaining to ulmin; designating an acid obtained from\n ulmin."
},
{
"word": "Ulmin",
"type": "n.",
"definition": "A brown amorphous substance found in decaying vegetation.\n Cf. Humin."
},
{
"word": "Ulmus",
"type": "n.",
"definition": "A genus of trees including the elm."
},
{
"word": "Ulna",
"type": "n.",
"definition": "The postaxial bone of the forearm, or branchium,\n corresponding to the fibula of the hind limb. See Radius."
},
{
"word": "Ulna",
"type": "n.",
"definition": "An ell; also, a yard."
},
{
"word": "Ulnage",
"type": "n.",
"definition": "Measurement by the ell; alnage."
},
{
"word": "Ulnar",
"type": "a.",
"definition": "Of or pertaining to the ulna, or the elbow; as, the ulnar\n nerve."
},
{
"word": "Ulnaria",
"type": "pl. ",
"definition": "of Ulnare"
},
{
"word": "Ulnare",
"type": "n.",
"definition": "One of the bones or cartilages of the carpus, which\n articulates with the ulna and corresponds to the cuneiform in man."
},
{
"word": "Ulodendron",
"type": "n.",
"definition": "A genus of fossil trees."
},
{
"word": "Ulonata",
"type": "n. pl.",
"definition": "A division of insects nearly equivalent to the true\n Orthoptera."
},
{
"word": "Ulotrichan",
"type": "a.",
"definition": "Of or pertaining to the Ulotrichi."
},
{
"word": "Ulotrichan",
"type": "n.",
"definition": "One of the Ulotrichi."
},
{
"word": "Ulotrichi",
"type": "n. pl.",
"definition": "The division of mankind which embraces the races\n having woolly or crispy hair. Cf. Leiotrichi."
},
{
"word": "Ulotrichous",
"type": "a.",
"definition": "Having woolly or crispy hair; -- opposed to\n leiotrichous."
},
{
"word": "Ulster",
"type": "n.",
"definition": "A long, loose overcoat, worn by men and women, originally\n made of frieze from Ulster, Ireland."
},
{
"word": "Ulterior",
"type": "a.",
"definition": "Situated beyond, or on the farther side; thither; --\n correlative with hither."
},
{
"word": "Ulterior",
"type": "a.",
"definition": "Further; remoter; more distant; succeeding; as, ulterior\n demands or propositions; ulterior views; what ulterior measures will be\n adopted is uncertain."
},
{
"word": "Ulterior",
"type": "n.",
"definition": "Ulterior side or part."
},
{
"word": "Ulteriorly",
"type": "adv.",
"definition": "More distantly or remotely."
},
{
"word": "Ultima",
"type": "a.",
"definition": "Most remote; furthest; final; last."
},
{
"word": "Ultima",
"type": "n.",
"definition": "The last syllable of a word."
},
{
"word": "Ultimate",
"type": "a.",
"definition": "Farthest; most remote in space or time; extreme; last;\n final."
},
{
"word": "Ultimate",
"type": "a.",
"definition": "Last in a train of progression or consequences; tended\n toward by all that precedes; arrived at, as the last result; final."
},
{
"word": "Ultimate",
"type": "a.",
"definition": "Incapable of further analysis; incapable of further\n division or separation; constituent; elemental; as, an ultimate\n constituent of matter."
},
{
"word": "Ultimated",
"type": "imp. & p. p.",
"definition": "of Ultimate"
},
{
"word": "Ultimating",
"type": "p. pr. & vb. n.",
"definition": "of Ultimate"
},
{
"word": "Ultimate",
"type": "v. t. & i.",
"definition": "To come or bring to an end; to eventuate; to end."
},
{
"word": "Ultimate",
"type": "v. t. & i.",
"definition": "To come or bring into use or practice."
},
{
"word": "Ultimately",
"type": "adv.",
"definition": "As a final consequence; at last; in the end; as,\n afflictions often tend to correct immoral habits, and ultimately prove\n blessings."
},
{
"word": "Ultimation",
"type": "n.",
"definition": "State of being ultimate; that which is ultimate, or\n final; ultimatum."
},
{
"word": "Ultimatums",
"type": "pl. ",
"definition": "of Ultimatum"
},
{
"word": "Ultimata",
"type": "pl. ",
"definition": "of Ultimatum"
},
{
"word": "Ultimatum",
"type": "n.",
"definition": "A final proposition, concession, or condition;\n especially, the final propositions, conditions, or terms, offered by\n either of the parties in a diplomatic negotiation; the most favorable\n terms a negotiator can offer, the rejection of which usually puts an\n end to the hesitation."
},
{
"word": "Ultime",
"type": "a.",
"definition": "Ultimate; final."
},
{
"word": "Ultimity",
"type": "n.",
"definition": "The last stage or consequence; finality."
},
{
"word": "Ultimo",
"type": "",
"definition": "In the month immediately preceding the present; as, on the\n 1st ultimo; -- usually abbreviated to ult. Cf. Proximo."
},
{
"word": "Ultion",
"type": "n.",
"definition": "The act of taking vengeance; revenge."
},
{
"word": "Ultra-",
"type": "a.",
"definition": "A prefix from the Latin ultra beyond (see Ulterior), having\n in composition the signification beyond, on the other side, chiefly\n when joined with words expressing relations of place; as, ultramarine,\n ultramontane, ultramundane, ultratropical, etc. In other relations it\n has the sense of excessively, exceedingly, beyond what is common,\n natural, right, or proper; as, ultraconservative; ultrademocratic,\n ultradespotic, ultraliberal, ultraradical, etc."
},
{
"word": "Ultra",
"type": "a.",
"definition": "Going beyond others, or beyond due limit; extreme;\n fanatical; uncompromising; as, an ultra reformer; ultra measures."
},
{
"word": "Ultra",
"type": "n.",
"definition": "One who advocates extreme measures; an ultraist; an\n extremist; a radical."
},
{
"word": "Ultrage",
"type": "n.",
"definition": "Outrage."
},
{
"word": "Ultraism",
"type": "n.",
"definition": "The principles of those who advocate extreme measures, as\n radical reform, and the like."
},
{
"word": "Ultraist",
"type": "n.",
"definition": "One who pushes a principle or measure to extremes; an\n extremist; a radical; an ultra."
},
{
"word": "Ultramarine",
"type": "a.",
"definition": "Situated or being beyond the sea."
},
{
"word": "Ultramarine",
"type": "n.",
"definition": "A blue pigment formerly obtained by powdering lapis\n lazuli, but now produced in large quantities by fusing together silica,\n alumina, soda, and sulphur, thus forming a glass, colored blue by the\n sodium polysulphides made in the fusion. Also used adjectively."
},
{
"word": "Ultramontane",
"type": "",
"definition": "Being beyond the mountains; specifically, being beyond\n the Alps, in respect to the one who speaks."
},
{
"word": "Ultramontane",
"type": "n.",
"definition": "One who resides beyond the mountains, especially\n beyond the Alps; a foreigner."
},
{
"word": "Ultramontane",
"type": "n.",
"definition": "One who maintains extreme views favoring the pope's\n supremacy. See Ultramontanism."
},
{
"word": "Ultramontanism",
"type": "n.",
"definition": "The principles of those within the Roman Catholic\n Church who maintain extreme views favoring the pope's supremacy; -- so\n used by those living north of the Alps in reference to the Italians; --\n rarely used in an opposite sense, as referring to the views of those\n living north of the Alps and opposed to the papal claims. Cf.\n Gallicanism."
},
{
"word": "Ultramontanist",
"type": "n.",
"definition": "One who upholds ultramontanism."
},
{
"word": "Ultramundane",
"type": "a.",
"definition": "Being beyond the world, or beyond the limits of our\n system."
},
{
"word": "Ultrared",
"type": "a.",
"definition": "Situated beyond or below the red rays; as, the ultrated\n rays of the spectrum, which are less refrangible than the red."
},
{
"word": "Ultratropical",
"type": "a.",
"definition": "Situated beyond, or outside of, the tropics;\n extratropical; also, having an excessively tropical temperature; warmer\n than the tropics."
},
{
"word": "Ultraviolet",
"type": "a.",
"definition": "Lying outside the visible spectrum at its violet end;\n -- said of rays more refrangible than the extreme violet rays of the\n spectrum."
},
{
"word": "Ultra vires",
"type": "",
"definition": "Beyond power; transcending authority; -- a phrase used\n frequently in relation to acts or enactments by corporations in excess\n of their chartered or statutory rights."
},
{
"word": "Ultrazodiacal",
"type": "a.",
"definition": "Outside the zodiac; being in that part of the\n heavens that is more than eight degrees from the ecliptic; as,\n ultrazodiacal planets, that is, those planets which in part of their\n orbits go beyond the zodiac."
},
{
"word": "Ultroneous",
"type": "a.",
"definition": "Spontaneous; voluntary."
},
{
"word": "Ulula",
"type": "n.",
"definition": "A genus of owls including the great gray owl (Ulula cinerea)\n of Arctic America, and other similar species. See Illust. of Owl."
},
{
"word": "Ululant",
"type": "a.",
"definition": "Howling; wailing."
},
{
"word": "Ululated",
"type": "imp. & p. p.",
"definition": "of Ululate"
},
{
"word": "Ululating",
"type": "p. pr. & vb. n.",
"definition": "of Ululate"
},
{
"word": "Ululate",
"type": "v. i.",
"definition": "To howl, as a dog or a wolf; to wail; as, ululating\n jackals."
},
{
"word": "Ululation",
"type": "n.",
"definition": "A howling, as of a dog or wolf; a wailing."
},
{
"word": "Ulva",
"type": "n.",
"definition": "A genus of thin papery bright green seaweeds including the\n kinds called sea lettuce."
},
{
"word": "Umbe",
"type": "prep.",
"definition": "About."
},
{
"word": "Umbecast",
"type": "v. i.",
"definition": "To cast about; to consider; to ponder."
},
{
"word": "Umbel",
"type": "n.",
"definition": "A kind of flower cluster in which the flower stalks radiate\n from a common point, as in the carrot and milkweed. It is simple or\n compound; in the latter case, each peduncle bears another little umbel,\n called umbellet, or umbellule."
},
{
"word": "Umbellar",
"type": "a.",
"definition": "Of or pertaining to an umbel; having the form of an\n umbel."
},
{
"word": "Umbellate",
"type": "a.",
"definition": "Alt. of Umbellated"
},
{
"word": "Umbellated",
"type": "a.",
"definition": "Bearing umbels; pertaining to an umbel; umbel-like; as,\n umbellate plants or flowers."
},
{
"word": "Umbellet",
"type": "n.",
"definition": "A small or partial umbel; an umbellule."
},
{
"word": "Umbellic",
"type": "a.",
"definition": "Pertaining to, or obtained from, certain umbelliferous\n plants; as, umbellic acid."
},
{
"word": "Umbellifer",
"type": "n.",
"definition": "A plant producing an umbel or umbels."
},
{
"word": "Umbelliferone",
"type": "n.",
"definition": "A tasteless white crystalline substance, C9H6O3,\n found in the bark of a certain plant (Daphne Mezereum), and also\n obtained by the distillation of certain gums from the Umbelliferae, as\n galbanum, asafetida, etc. It is analogous to coumarin. Called also\n hydroxy-coumarin."
},
{
"word": "Umbelliferous",
"type": "a.",
"definition": "Producing umbels."
},
{
"word": "Umbelliferous",
"type": "a.",
"definition": "Of or pertaining to a natural order (Umbelliferae)\n of plants, of which the parsley, carrot, parsnip, and fennel are\n well-known examples."
},
{
"word": "Umbellularia",
"type": "n.",
"definition": "A genus of deep-sea alcyonaria consisting of a\n cluster of large flowerlike polyps situated at the summit of a long,\n slender stem which stands upright in the mud, supported by a bulbous\n base."
},
{
"word": "Umbellule",
"type": "n.",
"definition": "An umbellet."
},
{
"word": "Umber",
"type": "n.",
"definition": "A brown or reddish pigment used in both oil and water\n colors, obtained from certain natural clays variously colored by the\n oxides of iron and manganese. It is commonly heated or burned before\n being used, and is then called burnt umber; when not heated, it is\n called raw umber. See Burnt umber, below."
},
{
"word": "Umber",
"type": "n.",
"definition": "An umbrere."
},
{
"word": "Umber",
"type": "n.",
"definition": "See Grayling, 1."
},
{
"word": "Umber",
"type": "n.",
"definition": "An African wading bird (Scopus umbretta) allied to the\n storks and herons. It is dull dusky brown, and has a large occipital\n crest. Called also umbrette, umbre, and umber bird."
},
{
"word": "Umber",
"type": "a.",
"definition": "Of or pertaining to umber; resembling umber; olive-brown;\n dark brown; dark; dusky."
},
{
"word": "Umber",
"type": "v. t.",
"definition": "To color with umber; to shade or darken; as, to umber\n over one's face."
},
{
"word": "Umbery",
"type": "a.",
"definition": "Of or pertaining to umber; like umber; as, umbery gold."
},
{
"word": "Umbilic",
"type": "n.",
"definition": "The navel; the center."
},
{
"word": "Umbilic",
"type": "n.",
"definition": "An umbilicus. See Umbilicus, 5 (b)."
},
{
"word": "Umbilic",
"type": "a.",
"definition": "See Umbilical, 1."
},
{
"word": "Umbilical",
"type": "n.",
"definition": "Of or pertaining to an umbilicus, or umbilical cord;\n umbilic."
},
{
"word": "Umbilical",
"type": "n.",
"definition": "Pertaining to the center; central."
},
{
"word": "Umbilicate",
"type": "a.",
"definition": "Alt. of Umbilicated"
},
{
"word": "Umbilicated",
"type": "a.",
"definition": "Depressed in the middle, like a navel, as a flower,\n fruit, or leaf; navel-shaped; having an umbilicus; as, an umbilicated\n smallpox vesicle."
},
{
"word": "Umbilicated",
"type": "a.",
"definition": "Supported by a stalk at the central point."
},
{
"word": "Umbilication",
"type": "n.",
"definition": "A slight, navel-like depression, or dimpling, of the\n center of a rounded body; as, the umbilication of a smallpox vesicle;\n also, the condition of being umbilicated."
},
{
"word": "Umbilicus",
"type": "n.",
"definition": "The depression, or mark, in the median line of the\n abdomen, which indicates the point where the umbilical cord separated\n from the fetus; the navel."
},
{
"word": "Umbilicus",
"type": "n.",
"definition": "An ornamented or painted ball or boss fastened at each\n end of the stick on which manuscripts were rolled."
},
{
"word": "Umbilicus",
"type": "n.",
"definition": "The hilum."
},
{
"word": "Umbilicus",
"type": "n.",
"definition": "A depression or opening in the center of the base of\n many spiral shells."
},
{
"word": "Umbilicus",
"type": "n.",
"definition": "Either one of the two apertures in the calamus of a\n feather."
},
{
"word": "Umbilicus",
"type": "n.",
"definition": "One of foci of an ellipse, or other curve."
},
{
"word": "Umbilicus",
"type": "n.",
"definition": "A point of a surface at which the curvatures of the\n normal sections are all equal to each other. A sphere may be osculatory\n to the surface in every direction at an umbilicus. Called also umbilic."
},
{
"word": "Umble pie",
"type": "",
"definition": "A pie made of umbles. See To eat humble pie, under Humble."
},
{
"word": "Umbles",
"type": "n. pl.",
"definition": "The entrails and coarser parts of a deer; hence,\n sometimes, entrails, in general."
},
{
"word": "Umbones",
"type": "pl. ",
"definition": "of Umbo"
},
{
"word": "Umbos",
"type": "pl. ",
"definition": "of Umbo"
},
{
"word": "Umbo",
"type": "n.",
"definition": "The boss of a shield, at or near the middle, and usually\n projecting, sometimes in a sharp spike."
},
{
"word": "Umbo",
"type": "n.",
"definition": "A boss, or rounded elevation, or a corresponding depression,\n in a palate, disk, or membrane; as, the umbo in the integument of the\n larvae of echinoderms or in the tympanic membrane of the ear."
},
{
"word": "Umbo",
"type": "n.",
"definition": "One of the lateral prominence just above the hinge of a\n bivalve shell."
},
{
"word": "Umbonate",
"type": "a.",
"definition": "Alt. of Umbonated"
},
{
"word": "Umbonated",
"type": "a.",
"definition": "Having a conical or rounded projection or protuberance,\n like a boss."
},
{
"word": "Umbrae",
"type": "pl. ",
"definition": "of Umbra"
},
{
"word": "Umbra",
"type": "n.",
"definition": "The conical shadow projected from a planet or satellite, on\n the side opposite to the sun, within which a spectator could see no\n portion of the sun's disk; -- used in contradistinction from penumbra.\n See Penumbra."
},
{
"word": "Umbra",
"type": "n.",
"definition": "The central dark portion, or nucleus, of a sun spot."
},
{
"word": "Umbra",
"type": "n.",
"definition": "The fainter part of a sun spot; -- now more commonly called\n penumbra."
},
{
"word": "Umbra",
"type": "n.",
"definition": "Any one of several species of sciaenoid food fishes of the\n genus Umbrina, especially the Mediterranean species (U. cirrhosa),\n which is highly esteemed as a market fish; -- called also ombre, and\n umbrine."
},
{
"word": "Umbraculiferous",
"type": "a.",
"definition": "Bearing something like an open umbrella."
},
{
"word": "Umbraculiform",
"type": "a.",
"definition": "Having the form of anything that serves to shade, as\n a tree top, an umbrella, and the like; specifically (Bot.), having the\n form of an umbrella; umbrella-shaped."
},
{
"word": "Umbrage",
"type": "n.",
"definition": "Shade; shadow; obscurity; hence, that which affords a\n shade, as a screen of trees or foliage."
},
{
"word": "Umbrage",
"type": "n.",
"definition": "Shadowy resemblance; shadow."
},
{
"word": "Umbrage",
"type": "n.",
"definition": "The feeling of being overshadowed; jealousy of another, as\n standing in one's light or way; hence, suspicion of injury or wrong;\n offense; resentment."
},
{
"word": "Umbrageous",
"type": "a.",
"definition": "Forming or affording a shade; shady; shaded; as,\n umbrageous trees or foliage."
},
{
"word": "Umbrageous",
"type": "a.",
"definition": "Not easily perceived, as if from being darkened or\n shaded; obscure."
},
{
"word": "Umbrageous",
"type": "a.",
"definition": "Feeling jealousy or umbrage; taking, or disposed to\n take, umbrage; suspicious."
},
{
"word": "Umbrate",
"type": "v. t.",
"definition": "To shade; to shadow; to foreshadow."