-
Notifications
You must be signed in to change notification settings - Fork 2
/
o.json
22217 lines (22217 loc) · 667 KB
/
o.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": "Our",
"type": "pl. ",
"definition": "of I"
},
{
"word": "Ours",
"type": "pl. ",
"definition": "of I"
},
{
"word": "Ourselves",
"type": "pl. ",
"definition": "of Myself"
},
{
"word": "O",
"type": "",
"definition": "Among the ancients, O was a mark of triple time, from the notion\n that the ternary, or number 3, is the most perfect of numbers, and\n properly expressed by a circle, the most perfect figure."
},
{
"word": "O's",
"type": "pl. ",
"definition": "of O"
},
{
"word": "Oes",
"type": "pl. ",
"definition": "of O"
},
{
"word": "O",
"type": "n.",
"definition": "The letter O, or its sound."
},
{
"word": "O",
"type": "n.",
"definition": "Something shaped like the letter O; a circle or oval."
},
{
"word": "O",
"type": "n.",
"definition": "A cipher; zero."
},
{
"word": "O'",
"type": "",
"definition": "A prefix to Irish family names, which signifies grandson or\n descendant of, and is a character of dignity; as, O'Neil, O'Carrol."
},
{
"word": "O'",
"type": "prep.",
"definition": "A shortened form of of or on."
},
{
"word": "O",
"type": "a.",
"definition": "One."
},
{
"word": "O",
"type": "interj.",
"definition": "An exclamation used in calling or directly addressing a\n person or personified object; also, as an emotional or impassioned\n exclamation expressing pain, grief, surprise, desire, fear, etc."
},
{
"word": "Oad",
"type": "n.",
"definition": "See Woad."
},
{
"word": "Oaf",
"type": "n.",
"definition": "Originally, an elf's child; a changeling left by fairies or\n goblins; hence, a deformed or foolish child; a simpleton; an idiot."
},
{
"word": "Oafish",
"type": "a.",
"definition": "Like an oaf; simple."
},
{
"word": "Oak",
"type": "n.",
"definition": "Any tree or shrub of the genus Quercus. The oaks have\n alternate leaves, often variously lobed, and staminate flowers in\n catkins. The fruit is a smooth nut, called an acorn, which is more or\n less inclosed in a scaly involucre called the cup or cupule. There are\n now recognized about three hundred species, of which nearly fifty occur\n in the United States, the rest in Europe, Asia, and the other parts of\n North America, a very few barely reaching the northern parts of South\n America and Africa. Many of the oaks form forest trees of grand\n proportions and live many centuries. The wood is usually hard and\n tough, and provided with conspicuous medullary rays, forming the silver\n grain."
},
{
"word": "Oak",
"type": "n.",
"definition": "The strong wood or timber of the oak."
},
{
"word": "Oaken",
"type": "a.",
"definition": "Made or consisting of oaks or of the wood of oaks."
},
{
"word": "Oaker",
"type": "n.",
"definition": "See Ocher."
},
{
"word": "Oakling",
"type": "n.",
"definition": "A young oak."
},
{
"word": "Oakum",
"type": "n.",
"definition": "The material obtained by untwisting and picking into loose\n fiber old hemp ropes; -- used for calking the seams of ships, stopping\n leaks, etc."
},
{
"word": "Oakum",
"type": "n.",
"definition": "The coarse portion separated from flax or hemp in nackling."
},
{
"word": "Oaky",
"type": "n.",
"definition": "Resembling oak; strong."
},
{
"word": "Oar",
"type": "n",
"definition": "An implement for impelling a boat, being a slender piece of\n timber, usually ash or spruce, with a grip or handle at one end and a\n broad blade at the other. The part which rests in the rowlock is called\n the loom."
},
{
"word": "Oar",
"type": "n",
"definition": "An oarsman; a rower; as, he is a good oar."
},
{
"word": "Oar",
"type": "n",
"definition": "An oarlike swimming organ of various invertebrates."
},
{
"word": "Oared",
"type": "imp. & p. p.",
"definition": "of Oar"
},
{
"word": "Oaring",
"type": "p. pr. & vb. n.",
"definition": "of Oar"
},
{
"word": "Oar",
"type": "v. t. & i.",
"definition": "To row."
},
{
"word": "Oared",
"type": "a.",
"definition": "Furnished with oars; -- chiefly used in composition; as, a\n four-oared boat."
},
{
"word": "Oared",
"type": "a.",
"definition": "Having feet adapted for swimming."
},
{
"word": "Oared",
"type": "a.",
"definition": "Totipalmate; -- said of the feet of certain birds. See\n Illust. of Aves."
},
{
"word": "Oarfish",
"type": "n.",
"definition": "The ribbon fish."
},
{
"word": "Oarfoot",
"type": "n.",
"definition": "Any crustacean of the genus Remipes."
},
{
"word": "Oar-footed",
"type": "a.",
"definition": "Having feet adapted for swimming."
},
{
"word": "Oarless",
"type": "a.",
"definition": "Without oars."
},
{
"word": "Oarlock",
"type": "n.",
"definition": "The notch, fork, or other device on the gunwale of a boat,\n in which the oar rests in rowing. See Rowlock."
},
{
"word": "Oarsmen",
"type": "pl. ",
"definition": "of Oarsman"
},
{
"word": "Oarsman",
"type": "n.",
"definition": "One who uses, or is skilled in the use of, an oar; a\n rower."
},
{
"word": "Oarsweed",
"type": "n.",
"definition": "Any large seaweed of the genus Laminaria; tangle; kelp.\n See Kelp."
},
{
"word": "Oary",
"type": "a.",
"definition": "Having the form or the use of an oar; as, the swan's oary\n feet."
},
{
"word": "Oases",
"type": "pl. ",
"definition": "of Oasis"
},
{
"word": "Oasis",
"type": "n.",
"definition": "A fertile or green spot in a waste or desert, esp. in a\n sandy desert."
},
{
"word": "Oast",
"type": "n.",
"definition": "A kiln to dry hops or malt; a cockle."
},
{
"word": "Oats",
"type": "pl. ",
"definition": "of Oat"
},
{
"word": "Oat",
"type": "n.",
"definition": "A well-known cereal grass (Avena sativa), and its edible\n grain; -- commonly used in the plural and in a collective sense."
},
{
"word": "Oat",
"type": "n.",
"definition": "A musical pipe made of oat straw."
},
{
"word": "Oatcake",
"type": "n.",
"definition": "A cake made of oatmeal."
},
{
"word": "Oaten",
"type": "a.",
"definition": "Consisting of an oat straw or stem; as, an oaten pipe."
},
{
"word": "Oaten",
"type": "a.",
"definition": "Made of oatmeal; as, oaten cakes."
},
{
"word": "Oaths",
"type": "pl. ",
"definition": "of Oath"
},
{
"word": "Oath",
"type": "n.",
"definition": "A solemn affirmation or declaration, made with a reverent\n appeal to God for the truth of what is affirmed."
},
{
"word": "Oath",
"type": "n.",
"definition": "A solemn affirmation, connected with a sacred object, or one\n regarded as sacred, as the temple, the altar, the blood of Abel, the\n Bible, the Koran, etc."
},
{
"word": "Oath",
"type": "n.",
"definition": "An appeal (in verification of a statement made) to a superior\n sanction, in such a form as exposes the party making the appeal to an\n indictment for perjury if the statement be false."
},
{
"word": "Oath",
"type": "n.",
"definition": "A careless and blasphemous use of the name of the divine\n Being, or anything divine or sacred, by way of appeal or as a profane\n exclamation or ejaculation; an expression of profane swearing."
},
{
"word": "Oathable",
"type": "a.",
"definition": "Capable of having an oath administered to."
},
{
"word": "Oathbreaking",
"type": "n.",
"definition": "The violation of an oath; perjury."
},
{
"word": "Oatmeal",
"type": "n.",
"definition": "Meal made of oats."
},
{
"word": "Oatmeal",
"type": "n.",
"definition": "A plant of the genus Panicum; panic grass."
},
{
"word": "Ob-",
"type": "",
"definition": "A prefix signifying to, toward, before, against, reversely,\n etc.; also, as a simple intensive; as in oblige, to bind to; obstacle,\n something standing before; object, lit., to throw against; obovate,\n reversely, ovate. Ob- is commonly assimilated before c, f, g, and p, to\n oc-, of-, og-, and op-."
},
{
"word": "Obcompressed",
"type": "a.",
"definition": "Compressed or flattened antero-posteriorly, or in a\n way opposite to the usual one."
},
{
"word": "Obconic",
"type": "a.",
"definition": "Alt. of Obconical"
},
{
"word": "Obconical",
"type": "a.",
"definition": "Conical, but having the apex downward; inversely\n conical."
},
{
"word": "Obcordate",
"type": "a.",
"definition": "Heart-shaped, with the attachment at the pointed end;\n inversely cordate: as, an obcordate petal or leaf."
},
{
"word": "Obdiplostemonous",
"type": "a.",
"definition": "Having twice as many stamens as petals, those of\n the outer set being opposite the petals; -- said of flowers."
},
{
"word": "Obdiplostemony",
"type": "n.",
"definition": "The condition of being obdiplostemonous."
},
{
"word": "Obdormition",
"type": "n.",
"definition": "Sleep."
},
{
"word": "Obduce",
"type": "v. t.",
"definition": "To draw over, as a covering."
},
{
"word": "Obduct",
"type": "v. t.",
"definition": "To draw over; to cover."
},
{
"word": "Obduction",
"type": "n.",
"definition": "The act of drawing or laying over, as a covering."
},
{
"word": "Obduracy",
"type": "n.",
"definition": "The duality or state of being obdurate; invincible\n hardness of heart; obstinacy."
},
{
"word": "Obdurate",
"type": "a.",
"definition": "Hardened in feelings, esp. against moral or mollifying\n influences; unyielding; hard-hearted; stubbornly wicked."
},
{
"word": "Obdurate",
"type": "a.",
"definition": "Hard; harsh; rugged; rough; intractable."
},
{
"word": "Obdurate",
"type": "v. t.",
"definition": "To harden."
},
{
"word": "Obduration",
"type": "n.",
"definition": "A hardening of the heart; hardness of heart."
},
{
"word": "Obdure",
"type": "v. t.",
"definition": "To harden."
},
{
"word": "Obdure",
"type": "a.",
"definition": "Alt. of Obdured"
},
{
"word": "Obdured",
"type": "a.",
"definition": "Obdurate; hard."
},
{
"word": "Obdureness",
"type": "n.",
"definition": "Alt. of Obduredness"
},
{
"word": "Obduredness",
"type": "n.",
"definition": "Hardness."
},
{
"word": "Obbe",
"type": "n.",
"definition": "See Obi."
},
{
"word": "Obeah",
"type": "n.",
"definition": "Same as Obi."
},
{
"word": "Obeah",
"type": "a.",
"definition": "Of or pertaining to obi; as, the obeah man."
},
{
"word": "Obedible",
"type": "a.",
"definition": "Obedient."
},
{
"word": "Obedience",
"type": "n.",
"definition": "The act of obeying, or the state of being obedient;\n compliance with that which is required by authority; subjection to\n rightful restraint or control."
},
{
"word": "Obedience",
"type": "n.",
"definition": "Words or actions denoting submission to authority;\n dutifulness."
},
{
"word": "Obedience",
"type": "n.",
"definition": "A following; a body of adherents; as, the Roman Catholic\n obedience, or the whole body of persons who submit to the authority of\n the pope."
},
{
"word": "Obedience",
"type": "n.",
"definition": "A cell (or offshoot of a larger monastery) governed by a\n prior."
},
{
"word": "Obedience",
"type": "n.",
"definition": "One of the three monastic vows."
},
{
"word": "Obedience",
"type": "n.",
"definition": "The written precept of a superior in a religious order\n or congregation to a subject."
},
{
"word": "Obedienciary",
"type": "n.",
"definition": "One yielding obedience."
},
{
"word": "Obedient",
"type": "a.",
"definition": "Subject in will or act to authority; willing to obey;\n submissive to restraint, control, or command."
},
{
"word": "Obediential",
"type": "a.",
"definition": "According to the rule of obedience."
},
{
"word": "Obediently",
"type": "adv.",
"definition": "In an obedient manner; with obedience."
},
{
"word": "Obeisance",
"type": "n.",
"definition": "Obedience."
},
{
"word": "Obeisance",
"type": "n.",
"definition": "A manifestation of obedience; an expression of\n difference or respect; homage; a bow; a courtesy."
},
{
"word": "Obeisancy",
"type": "n.",
"definition": "See Obeisance."
},
{
"word": "Obeisant",
"type": "a.",
"definition": "Ready to obey; reverent; differential; also, servilely\n submissive."
},
{
"word": "Obelion",
"type": "n.",
"definition": "The region of the skull between the two parietal foramina\n where the closure of the sagittal suture usually begins."
},
{
"word": "Obeliscal",
"type": "a.",
"definition": "Formed like an obelisk."
},
{
"word": "Obelisk",
"type": "n.",
"definition": "An upright, four-sided pillar, gradually tapering as it\n rises, and terminating in a pyramid called pyramidion. It is ordinarily\n monolithic. Egyptian obelisks are commonly covered with hieroglyphic\n writing from top to bottom."
},
{
"word": "Obelisk",
"type": "n.",
"definition": "A mark of reference; -- called also dagger [\/]. See\n Dagger, n., 2."
},
{
"word": "Obelisked",
"type": "imp. & p. p.",
"definition": "of Obelisk"
},
{
"word": "Obelisking",
"type": "p. pr. & vb. n.",
"definition": "of Obelisk"
},
{
"word": "Obelisk",
"type": "v. t.",
"definition": "To mark or designate with an obelisk."
},
{
"word": "Obelized",
"type": "imp. & p. p.",
"definition": "of Obelize"
},
{
"word": "Obelizing",
"type": "p. pr. & vb. n.",
"definition": "of Obelize"
},
{
"word": "Obelize",
"type": "v. t.",
"definition": "To designate with an obelus; to mark as doubtful or\n spirituous."
},
{
"word": "Obeli",
"type": "pl. ",
"definition": "of Obelus"
},
{
"word": "Obelus",
"type": "n.",
"definition": "A mark [thus \/, or \u00d6 ]; -- so called as resembling a\n needle. In old MSS. or editions of the classics, it marks suspected\n passages or readings."
},
{
"word": "Obequitate",
"type": "v. i.",
"definition": "To ride about."
},
{
"word": "Oberon",
"type": "n.",
"definition": "The king of the fairies, and husband of Titania or Queen\n Mab."
},
{
"word": "Oberration",
"type": "n.",
"definition": "A wandering about."
},
{
"word": "Obese",
"type": "a.",
"definition": "Excessively corpulent; fat; fleshy."
},
{
"word": "Obeseness",
"type": "n.",
"definition": "Quality of being obese; obesity."
},
{
"word": "Obesity",
"type": "n.",
"definition": "The state or quality of being obese; incumbrance of flesh."
},
{
"word": "Obeyed",
"type": "imp. & p. p.",
"definition": "of Obey"
},
{
"word": "Obeying",
"type": "p. pr. & vb. n.",
"definition": "of Obey"
},
{
"word": "Obey",
"type": "v. t.",
"definition": "To give ear to; to execute the commands of; to yield\n submission to; to comply with the orders of."
},
{
"word": "Obey",
"type": "v. t.",
"definition": "To submit to the authority of; to be ruled by."
},
{
"word": "Obey",
"type": "v. t.",
"definition": "To yield to the impulse, power, or operation of; as, a\n ship obeys her helm."
},
{
"word": "Obey",
"type": "v. i.",
"definition": "To give obedience."
},
{
"word": "Obeyer",
"type": "n.",
"definition": "One who yields obedience."
},
{
"word": "Obeyingly",
"type": "adv.",
"definition": "Obediently; submissively."
},
{
"word": "Obfirm",
"type": "v. t.",
"definition": "Alt. of Obfirmate"
},
{
"word": "Obfirmate",
"type": "v. t.",
"definition": "To make firm; to harden in resolution."
},
{
"word": "Obfirmation",
"type": "n.",
"definition": "Hardness of heart; obduracy."
},
{
"word": "Obfuscate",
"type": "a.",
"definition": "Obfuscated; darkened; obscured."
},
{
"word": "Obfuscated",
"type": "imp. & p. p.",
"definition": "of Obfuscate"
},
{
"word": "Obfuscating",
"type": "p. pr. & vb. n.",
"definition": "of Obfuscate"
},
{
"word": "Obfuscate",
"type": "v. t.",
"definition": "To darken; to obscure; to becloud; hence, to confuse;\n to bewilder."
},
{
"word": "Obfuscation",
"type": "n.",
"definition": "The act of darkening or bewildering; the state of\n being darkened."
},
{
"word": "Obi",
"type": "n.",
"definition": "A species of sorcery, probably of African origin, practiced\n among the negroes of the West Indies."
},
{
"word": "Obi",
"type": "n.",
"definition": "A charm or fetich."
},
{
"word": "Obimbricate",
"type": "a.",
"definition": "Imbricated, with the overlapping ends directed\n downward."
},
{
"word": "Obit",
"type": "n.",
"definition": "Death; decease; the date of one's death."
},
{
"word": "Obit",
"type": "n.",
"definition": "A funeral solemnity or office; obsequies."
},
{
"word": "Obit",
"type": "n.",
"definition": "A service for the soul of a deceased person on the\n anniversary of the day of his death."
},
{
"word": "Obiter",
"type": "adv.",
"definition": "In passing; incidentally; by the way."
},
{
"word": "Obitual",
"type": "a.",
"definition": "Of or pertaining to obits, or days when obits are\n celebrated; as, obitual days."
},
{
"word": "Obituarily",
"type": "adv.",
"definition": "In the manner of an obituary."
},
{
"word": "Obiyuary",
"type": "a.",
"definition": "Of or pertaining to the death of a person or persons; as,\n an obituary notice; obituary poetry."
},
{
"word": "Obituaries",
"type": "pl. ",
"definition": "of Obituary"
},
{
"word": "Obituary",
"type": "n.",
"definition": "That which pertains to, or is called forth by, the obit\n or death of a person; esp., an account of a deceased person; a notice\n of the death of a person, accompanied by a biographical sketch."
},
{
"word": "Obituary",
"type": "n.",
"definition": "A list of the dead, or a register of anniversary days\n when service is performed for the dead."
},
{
"word": "Objected",
"type": "imp. & p. p.",
"definition": "of Object"
},
{
"word": "Objecting",
"type": "p. pr. & vb. n.",
"definition": "of Object"
},
{
"word": "Object",
"type": "v. t.",
"definition": "To set before or against; to bring into opposition; to\n oppose."
},
{
"word": "Object",
"type": "v. t.",
"definition": "To offer in opposition as a criminal charge or by way of\n accusation or reproach; to adduce as an objection or adverse reason."
},
{
"word": "Object",
"type": "v. i.",
"definition": "To make opposition in words or argument; -- usually\n followed by to."
},
{
"word": "Object",
"type": "v. t.",
"definition": "That which is put, or which may be regarded as put, in\n the way of some of the senses; something visible or tangible; as, he\n observed an object in the distance; all the objects in sight; he\n touched a strange object in the dark."
},
{
"word": "Object",
"type": "v. t.",
"definition": "That which is set, or which may be regarded as set,\n before the mind so as to be apprehended or known; that of which the\n mind by any of its activities takes cognizance, whether a thing\n external in space or a conception formed by the mind itself; as, an\n object of knowledge, wonder, fear, thought, study, etc."
},
{
"word": "Object",
"type": "v. t.",
"definition": "That by which the mind, or any of its activities, is\n directed; that on which the purpose are fixed as the end of action or\n effort; that which is sought for; end; aim; motive; final cause."
},
{
"word": "Object",
"type": "v. t.",
"definition": "Sight; show; appearance; aspect."
},
{
"word": "Object",
"type": "v. t.",
"definition": "A word, phrase, or clause toward which an action is\n directed, or is considered to be directed; as, the object of a\n transitive verb."
},
{
"word": "Object",
"type": "a.",
"definition": "Opposed; presented in opposition; also, exposed."
},
{
"word": "Objectable",
"type": "a.",
"definition": "Such as can be presented in opposition; that may be put\n forward as an objection."
},
{
"word": "Objectify",
"type": "v. t.",
"definition": "To cause to become an object; to cause to assume the\n character of an object; to render objective."
},
{
"word": "Objection",
"type": "n.",
"definition": "The act of objecting; as, to prevent agreement, or\n action, by objection."
},
{
"word": "Objection",
"type": "n.",
"definition": "That which is, or may be, presented in opposition; an\n adverse reason or argument; a reason for objecting; obstacle;\n impediment; as, I have no objection to going; unreasonable objections."
},
{
"word": "Objection",
"type": "n.",
"definition": "Cause of trouble; sorrow."
},
{
"word": "Objectionable",
"type": "a.",
"definition": "Liable to objection; likely to be objected to or\n disapproved of; offensive; as, objectionable words."
},
{
"word": "Objectist",
"type": "n.",
"definition": "One who adheres to, or is skilled in, the objective\n philosophy."
},
{
"word": "Objectivate",
"type": "v. t.",
"definition": "To objectify."
},
{
"word": "Objectivation",
"type": "n.",
"definition": "Converting into an object."
},
{
"word": "Objective",
"type": "a.",
"definition": "Of or pertaining to an object."
},
{
"word": "Objective",
"type": "a.",
"definition": "Of or pertaining to an object; contained in, or having\n the nature or position of, an object; outward; external; extrinsic; --\n an epithet applied to whatever ir exterior to the mind, or which is\n simply an object of thought or feeling, and opposed to subjective."
},
{
"word": "Objective",
"type": "a.",
"definition": "Pertaining to, or designating, the case which follows a\n transitive verb or a preposition, being that case in which the direct\n object of the verb is placed. See Accusative, n."
},
{
"word": "Objective",
"type": "n.",
"definition": "The objective case."
},
{
"word": "Objective",
"type": "n.",
"definition": "An object glass. See under Object, n."
},
{
"word": "Objective",
"type": "n.",
"definition": "Same as Objective point, under Objective, a."
},
{
"word": "Objectively",
"type": "adv.",
"definition": "In the manner or state of an object; as, a\n determinate idea objectively in the mind."
},
{
"word": "Objectiveness",
"type": "n.",
"definition": "Objectivity."
},
{
"word": "Objectivity",
"type": "n.",
"definition": "The state, quality, or relation of being objective;\n character of the object or of the objective."
},
{
"word": "Obectize",
"type": "v. t.",
"definition": "To make an object of; to regard as an object; to place\n in the position of an object."
},
{
"word": "Objectless",
"type": "a.",
"definition": "Having no object; purposeless."
},
{
"word": "Objector",
"type": "n.",
"definition": "One who objects; one who offers objections to a\n proposition or measure."
},
{
"word": "Objibways",
"type": "n.pl.",
"definition": "See Chippeways."
},
{
"word": "Objicient",
"type": "n.",
"definition": "One who makes objection; an objector."
},
{
"word": "Objuration",
"type": "n.",
"definition": "A binding by oath."
},
{
"word": "Objurgated",
"type": "imp. & p. p.",
"definition": "of Objurgate"
},
{
"word": "Objurgating",
"type": "p. pr. & vb. n.",
"definition": "of Objurgate"
},
{
"word": "Objurgate",
"type": "v. t.",
"definition": "To chide; to reprove."
},
{
"word": "Objurgation",
"type": "n.",
"definition": "The act of objurgating; reproof."
},
{
"word": "Objurgatory",
"type": "a.",
"definition": "Designed to objurgate or chide; containing or\n expressing reproof; culpatory."
},
{
"word": "Oblanceolate",
"type": "a.",
"definition": "Lanceolate in the reversed order, that is, narrowing\n toward the point of attachment more than toward the apex."
},
{
"word": "Oblate",
"type": "a.",
"definition": "Flattened or depressed at the poles; as, the earth is an\n oblate spheroid."
},
{
"word": "Oblate",
"type": "a.",
"definition": "Offered up; devoted; consecrated; dedicated; -- used\n chiefly or only in the titles of Roman Catholic orders. See Oblate, n."
},
{
"word": "Oblate",
"type": "a.",
"definition": "One of an association of priests or religious women who\n have offered themselves to the service of the church. There are three\n such associations of priests, and one of women, called oblates."
},
{
"word": "Oblate",
"type": "a.",
"definition": "One of the Oblati."
},
{
"word": "Oblateness",
"type": "n.",
"definition": "The quality or state of being oblate."
},
{
"word": "Oblati",
"type": "n. pl.",
"definition": "Children dedicated in their early years to the monastic\n state."
},
{
"word": "Oblati",
"type": "n. pl.",
"definition": "A class of persons, especially in the Middle Ages, who\n offered themselves and their property to a monastery."
},
{
"word": "Oblation",
"type": "n.",
"definition": "The act of offering, or of making an offering."
},
{
"word": "Oblation",
"type": "n.",
"definition": "Anything offered or presented in worship or sacred\n service; an offering; a sacrifice."
},
{
"word": "Oblation",
"type": "n.",
"definition": "A gift or contribution made to a church, as for the\n expenses of the eucharist, or for the support of the clergy and the\n poor."
},
{
"word": "Oblationer",
"type": "n.",
"definition": "One who makes an offering as an act worship or\n reverence."
},
{
"word": "Oblatrate",
"type": "v. i.",
"definition": "To bark or snarl, as a dog."
},
{
"word": "Oblatration",
"type": "n.",
"definition": "The act of oblatrating; a barking or snarling."