-
Notifications
You must be signed in to change notification settings - Fork 2
/
q.json
5207 lines (5207 loc) · 162 KB
/
q.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": "Quarte",
"type": "n.",
"definition": "A position in thrusting or parrying, with the inside of the\n hand turned upward and the point of the weapon toward the adversary's\n right breast."
},
{
"word": "Qraspine",
"type": "p. pr. & vb. n.",
"definition": "of Grasp"
},
{
"word": "Qua",
"type": "conj.",
"definition": "In so far as; in the capacity or character of; as."
},
{
"word": "Quab",
"type": "n.",
"definition": "An unfledged bird; hence, something immature or unfinished."
},
{
"word": "Quab",
"type": "v. i.",
"definition": "See Quob, v. i."
},
{
"word": "Qua-bird",
"type": "n.",
"definition": "The American night heron. See under Night."
},
{
"word": "Quacha",
"type": "n.",
"definition": "The quagga."
},
{
"word": "Qvacked",
"type": "imp. & p. p.",
"definition": "of Quack"
},
{
"word": "Quacking",
"type": "p. pr. & vb. n.",
"definition": "of Quack"
},
{
"word": "Quack",
"type": "v. i.",
"definition": "To utter a sound like the cry of a duck."
},
{
"word": "Quack",
"type": "v. i.",
"definition": "To make vain and loud pretensions; to boast."
},
{
"word": "Quack",
"type": "v. i.",
"definition": "To act the part of a quack, or pretender."
},
{
"word": "Quack",
"type": "n.",
"definition": "The cry of the duck, or a sound in imitation of it; a\n hoarse, quacking noise."
},
{
"word": "Quack",
"type": "n.",
"definition": "A boastful pretender to medical skill; an empiric; an\n ignorant practitioner."
},
{
"word": "Quack",
"type": "n.",
"definition": "Hence, one who boastfully pretends to skill or knowledge of\n any kind not possessed; a charlatan."
},
{
"word": "Quack",
"type": "a.",
"definition": "Pertaining to or characterized by, boasting and pretension;\n used by quacks; pretending to cure diseases; as, a quack medicine; a\n quack doctor."
},
{
"word": "Quackeries",
"type": "pl. ",
"definition": "of Quackery"
},
{
"word": "Quackery",
"type": "n.",
"definition": "The acts, arts, or boastful pretensions of a quack; false\n pretensions to any art; empiricism."
},
{
"word": "Quack grass",
"type": "",
"definition": "See Quitch grass."
},
{
"word": "Quackish",
"type": "a.",
"definition": "Like a quack; boasting; characterized by quackery."
},
{
"word": "Quackism",
"type": "n.",
"definition": "Quackery."
},
{
"word": "Quackled",
"type": "imp. & p. p.",
"definition": "of Quackle"
},
{
"word": "Quackling",
"type": "p. pr. & vb. n.",
"definition": "of Quackle"
},
{
"word": "Quackle",
"type": "v. i. & t.",
"definition": "To suffocate; to choke."
},
{
"word": "Quacksalver",
"type": "n.",
"definition": "One who boasts of his skill in medicines and salves,\n or of the efficacy of his prescriptions; a charlatan; a quack; a\n mountebank."
},
{
"word": "Quad",
"type": "a.",
"definition": "Alt. of Quade"
},
{
"word": "Quade",
"type": "a.",
"definition": "Evil; bad; baffling; as, a quade wind."
},
{
"word": "Quad",
"type": "n.",
"definition": "A quadrat."
},
{
"word": "Quad",
"type": "n.",
"definition": "A quadrangle; hence, a prison."
},
{
"word": "Quadrae",
"type": "pl. ",
"definition": "of Quadra"
},
{
"word": "Quadra",
"type": "n.",
"definition": "The plinth, or lowest member, of any pedestal, podium,\n water table, or the like."
},
{
"word": "Quadra",
"type": "n.",
"definition": "A fillet, or listel."
},
{
"word": "Quadrable",
"type": "a.",
"definition": "That may be sqyared, or reduced to an equivalent square;\n -- said of a surface when the area limited by a curve can be exactly\n found, and expressed in a finite number of algebraic terms."
},
{
"word": "Quadragenarious",
"type": "a.",
"definition": "Consisting of forty; forty years old."
},
{
"word": "Quadragene",
"type": "n.",
"definition": "An indulgence of forty days, corresponding to the forty\n days of ancient canonical penance."
},
{
"word": "Quadragesima",
"type": "n.",
"definition": "The forty days of fast preceding Easter; Lent."
},
{
"word": "Quadragesimal",
"type": "a.",
"definition": "Belonging to Lent; used in Lent; Lenten."
},
{
"word": "Quadragesimals",
"type": "n. pl.",
"definition": "Offerings formerly made to the mother church of\n a diocese on Mid-Lent Sunday."
},
{
"word": "Quadrangle",
"type": "n.",
"definition": "A plane figure having four angles, and consequently\n four sides; any figure having four angles."
},
{
"word": "Quadrangle",
"type": "n.",
"definition": "A square or quadrangular space or inclosure, such a\n space or court surrounded by buildings, esp. such a court in a college\n or public school in England."
},
{
"word": "Quadrangular",
"type": "a.",
"definition": "Having four angles, and consequently four sides;\n tetragonal."
},
{
"word": "Quadrantes",
"type": "pl. ",
"definition": "of Quadrans"
},
{
"word": "Quadrans",
"type": "n.",
"definition": "A fourth part of the coin called an as. See 3d As, 2."
},
{
"word": "Quadrans",
"type": "n.",
"definition": "The fourth of a penny; a farthing. See Cur."
},
{
"word": "Quadrant",
"type": "n.",
"definition": "The fourth part; the quarter."
},
{
"word": "Quadrant",
"type": "n.",
"definition": "The quarter of a circle, or of the circumference of a\n circle, an arc of 90\u00a1, or one subtending a right angle at the center."
},
{
"word": "Quadrant",
"type": "n.",
"definition": "One of the four parts into which a plane is divided by\n the coordinate axes. The upper right-hand part is the first quadrant;\n the upper left-hand part the second; the lower left-hand part the\n third; and the lower right-hand part the fourth quadrant."
},
{
"word": "Quadrant",
"type": "n.",
"definition": "An instrument for measuring altitudes, variously\n constructed and mounted for different specific uses in astronomy,\n surveying, gunnery, etc., consisting commonly of a graduated arc of\n 90\u00a1, with an index or vernier, and either plain or telescopic sights,\n and usually having a plumb line or spirit level for fixing the vertical\n or horizontal direction."
},
{
"word": "Quadrantal",
"type": "a.",
"definition": "Of or pertaining to a quadrant; also, included in the\n fourth part of a circle; as, quadrantal space."
},
{
"word": "Quadrantal",
"type": "n.",
"definition": "A cubical vessel containing a Roman cubic foot, each\n side being a Roman square foot; -- used as a measure."
},
{
"word": "Quadrantal",
"type": "n.",
"definition": "A cube."
},
{
"word": "Quadrat",
"type": "n.",
"definition": "A block of type metal lower than the letters, -- used in\n spacing and in blank lines."
},
{
"word": "Quadrat",
"type": "n.",
"definition": "An old instrument used for taking altitudes; -- called\n also geometrical square, and line of shadows."
},
{
"word": "Quadrate",
"type": "a.",
"definition": "Having four equal sides, the opposite sides parallel, and\n four right angles; square."
},
{
"word": "Quadrate",
"type": "a.",
"definition": "Produced by multiplying a number by itself; square."
},
{
"word": "Quadrate",
"type": "a.",
"definition": "Square; even; balanced; equal; exact."
},
{
"word": "Quadrate",
"type": "a.",
"definition": "Squared; suited; correspondent."
},
{
"word": "Quadrate",
"type": "a.",
"definition": "A plane surface with four equal sides and four right\n angles; a square; hence, figuratively, anything having the outline of a\n square."
},
{
"word": "Quadrate",
"type": "a.",
"definition": "An aspect of the heavenly bodies in which they are\n distant from each other 90\u00a1, or the quarter of a circle; quartile. See\n the Note under Aspect, 6."
},
{
"word": "Quadrate",
"type": "a.",
"definition": "The quadrate bone."
},
{
"word": "Quadrated",
"type": "imp. & p. p.",
"definition": "of Quadrate"
},
{
"word": "Quadrating",
"type": "p. pr. & vb. n.",
"definition": "of Quadrate"
},
{
"word": "Quadrate",
"type": "a.",
"definition": "To square; to agree; to suit; to correspond; -- followed\n by with."
},
{
"word": "Quadrate",
"type": "v. t.",
"definition": "To adjust (a gun) on its carriage; also, to train (a\n gun) for horizontal firing."
},
{
"word": "Quadratic",
"type": "a.",
"definition": "Of or pertaining to a square, or to squares; resembling\n a quadrate, or square; square."
},
{
"word": "Quadratic",
"type": "a.",
"definition": "Tetragonal."
},
{
"word": "Quadratic",
"type": "a.",
"definition": "Pertaining to terms of the second degree; as, a\n quadratic equation, in which the highest power of the unknown quantity\n is a square."
},
{
"word": "Quadratics",
"type": "n.",
"definition": "That branch of algebra which treats of quadratic\n equations."
},
{
"word": "Quadratojugal",
"type": "a.",
"definition": "Of or pertaining to the quadrate and jugal bones."
},
{
"word": "Quadratojugal",
"type": "a.",
"definition": "Of or pertaining to the quadratojugal bone."
},
{
"word": "Quadratojugal",
"type": "n.",
"definition": "The quadratojugal bone."
},
{
"word": "Quadratrix",
"type": "n.",
"definition": "A curve made use of in the quadrature of other curves;\n as the quadratrix, of Dinostratus, or of Tschirnhausen."
},
{
"word": "Quadrature",
"type": "a.",
"definition": "The act of squaring; the finding of a square having the\n same area as some given curvilinear figure; as, the quadrature of a\n circle; the operation of finding an expression for the area of a figure\n bounded wholly or in part by a curved line, as by a curve, two\n ordinates, and the axis of abscissas."
},
{
"word": "Quadrature",
"type": "a.",
"definition": "A quadrate; a square."
},
{
"word": "Quadrature",
"type": "a.",
"definition": "The integral used in obtaining the area bounded by a\n curve; hence, the definite integral of the product of any function of\n one variable into the differential of that variable."
},
{
"word": "Quadrature",
"type": "a.",
"definition": "The position of one heavenly body in respect to another\n when distant from it 90\u00a1, or a quarter of a circle, as the moon when at\n an equal distance from the points of conjunction and opposition."
},
{
"word": "Quadrel",
"type": "n.",
"definition": "A square piece of turf or peat."
},
{
"word": "Quadrel",
"type": "n.",
"definition": "A square brick, tile, or the like."
},
{
"word": "Quadrennial",
"type": "a.",
"definition": "Comprising four years; as, a quadrennial period."
},
{
"word": "Quadrennial",
"type": "a.",
"definition": "Occurring once in four years, or at the end of every\n four years; as, quadrennial games."
},
{
"word": "Quadrennially",
"type": "adv.",
"definition": "Once in four years."
},
{
"word": "Quadrennium",
"type": "n.",
"definition": "A space or period of four years."
},
{
"word": "Quadri-",
"type": "",
"definition": "A combining form meaning four, four times, fourfold; as,\n quadricapsular, having four capsules."
},
{
"word": "Quadribasic",
"type": "a.",
"definition": "Same as Tetrabasic."
},
{
"word": "Quadrible",
"type": "a.",
"definition": "Quadrable."
},
{
"word": "Quadric",
"type": "a.",
"definition": "Of or pertaining to the second degree."
},
{
"word": "Quadric",
"type": "n.",
"definition": "A quantic of the second degree. See Quantic."
},
{
"word": "Quadric",
"type": "n.",
"definition": "A surface whose equation in three variables is of the\n second degree. Spheres, spheroids, ellipsoids, paraboloids,\n hyperboloids, also cones and cylinders with circular bases, are\n quadrics."
},
{
"word": "Quadricapsular",
"type": "a.",
"definition": "Having four capsules."
},
{
"word": "Quadriceps",
"type": "n.",
"definition": "The great extensor muscle of the knee, divided above\n into four parts which unite in a single tendon at the knee."
},
{
"word": "Quadricipital",
"type": "n.",
"definition": "Of or pertaining to the quadriceps."
},
{
"word": "Quadricorn",
"type": "n.",
"definition": "Any quadricornous animal."
},
{
"word": "Quadricornous",
"type": "a.",
"definition": "Having four horns, or hornlike organs; as, a\n quadricornous beetle."
},
{
"word": "Quadricostate",
"type": "a.",
"definition": "Having four ribs."
},
{
"word": "Quadridentate",
"type": "a.",
"definition": "Having four teeth; as, a quadridentate leaf."
},
{
"word": "Quadriennial",
"type": "a.",
"definition": "Same as Quadrennial."
},
{
"word": "Quadrifarious",
"type": "a.",
"definition": "Arranged in four rows or ranks; as, quadrifarious\n leaves."
},
{
"word": "Quadrifid",
"type": "a.",
"definition": "Divided, or deeply cleft, into four parts; as, a\n quadrifid perianth; a quadrifid leaf."
},
{
"word": "Quadrifoil",
"type": "a.",
"definition": "Alt. of Quadrifoliate"
},
{
"word": "Quadrifoliate",
"type": "a.",
"definition": "Four-leaved; having the leaves in whorls of four."
},
{
"word": "Quadrifurcated",
"type": "a.",
"definition": "Having four forks, or branches."
},
{
"word": "Quadrigae",
"type": "pl. ",
"definition": "of Quadriga"
},
{
"word": "Quadriga",
"type": "n.",
"definition": "A car or chariot drawn by four horses abreast."
},
{
"word": "Quadrigeminal",
"type": "a.",
"definition": "Alt. of Quadrigeminous"
},
{
"word": "Quadrigeminous",
"type": "a.",
"definition": "Fourfold; having four similar parts, or two pairs\n of similar parts."
},
{
"word": "Quadrigenarious",
"type": "a.",
"definition": "Consisting of four hundred."
},
{
"word": "Quadrijugate",
"type": "a.",
"definition": "Same as Quadrijugous."
},
{
"word": "Quadrijugous",
"type": "a.",
"definition": "Pinnate, with four pairs of leaflets; as, a\n quadrijugous leaf."
},
{
"word": "Quadrilateral",
"type": "a.",
"definition": "Having four sides, and consequently four angles;\n quadrangular."
},
{
"word": "Quadrilateral",
"type": "n.",
"definition": "A plane figure having four sides, and consequently\n four angles; a quadrangular figure; any figure formed by four lines."
},
{
"word": "Quadrilateral",
"type": "n.",
"definition": "An area defended by four fortresses supporting each\n other; as, the Venetian quadrilateral, comprising Mantua, Peschiera,\n Verona, and Legnano."
},
{
"word": "Quadrilateralness",
"type": "n.",
"definition": "The property of being quadrilateral."
},
{
"word": "Quadriliteral",
"type": "a.",
"definition": "Consisting of four letters."
},
{
"word": "Quadrille",
"type": "n.",
"definition": "A dance having five figures, in common time, four\n couples of dancers being in each set."
},
{
"word": "Quadrille",
"type": "n.",
"definition": "The appropriate music for a quadrille."
},
{
"word": "Quadrille",
"type": "n.",
"definition": "A game played by four persons with forty cards, being\n the remainder of an ordinary pack after the tens, nines, and eights are\n discarded."
},
{
"word": "Quadrillion",
"type": "n.",
"definition": "According to the French notation, which is followed\n also upon the Continent and in the United States, a unit with fifteen\n ciphers annexed; according to the English notation, the number produced\n by involving a million to the fourth power, or the number represented\n by a unit with twenty-four ciphers annexed. See the Note under\n Numeration."
},
{
"word": "Quadrilobate",
"type": "a.",
"definition": "Alt. of Quadrilobed"
},
{
"word": "Quadrilobed",
"type": "a.",
"definition": "Having four lobes; as, a quadrilobate leaf."
},
{
"word": "Quadrilocular",
"type": "a.",
"definition": "Having four cells, or cavities; as, a quadrilocular\n heart."
},
{
"word": "Quadrin",
"type": "n.",
"definition": "A small piece of money, in value about a farthing, or a\n half cent."
},
{
"word": "Quadrinodal",
"type": "a.",
"definition": "Possessing four nodes; as, quadrinodal curves."
},
{
"word": "Quadrinomial",
"type": "n.",
"definition": "A polynomial of four terms connected by the signs\n plus or minus."
},
{
"word": "Quadrinomical",
"type": "a.",
"definition": "Quadrinomial."
},
{
"word": "Quadrinominal",
"type": "a.",
"definition": "Quadrinomial."
},
{
"word": "Quadripartite",
"type": "a.",
"definition": "Divided into four parts."
},
{
"word": "Quadripartitely",
"type": "adv.",
"definition": "In four parts."
},
{
"word": "Quadripartition",
"type": "n.",
"definition": "A division or distribution by four, or into four\n parts; also, a taking the fourth part of any quantity or number."
},
{
"word": "Quadripennate",
"type": "a.",
"definition": "Having four wings; -- said of insects."
},
{
"word": "Quadriphyllous",
"type": "a.",
"definition": "Having four leaves; quadrifoliate."
},
{
"word": "Quadrireme",
"type": "n.",
"definition": "A galley with four banks of oars or rowers."
},
{
"word": "Quadrisection",
"type": "n.",
"definition": "A subdivision into four parts."
},
{
"word": "Quadrisulcate",
"type": "a.",
"definition": "Having four hoofs; as, a quadrisulcate foot; a\n quadrisulcate animal."
},
{
"word": "Quadrisyllabic",
"type": "",
"definition": "Alt. of Quadri-syllabical"
},
{
"word": "Quadri-syllabical",
"type": "",
"definition": "Having four syllables; of or pertaining to\n quadrisyllables; as, a quadrisyllabic word."
},
{
"word": "Quadrisyllable",
"type": "n.",
"definition": "A word consisting of four syllables."
},
{
"word": "Quadrivalence",
"type": "n.",
"definition": "The quality or state of being quadrivalent;\n tetravalence."
},
{
"word": "Quadrivalent",
"type": "a.",
"definition": "Having a valence of four; capable of combining with,\n being replaced by, or compared with, four monad atoms; tetravalent; --\n said of certain atoms and radicals; thus, carbon and silicon are\n quadrivalent elements."
},
{
"word": "Quadrivalve",
"type": "a.",
"definition": "Dehiscent into four similar parts; four-valved; as, a\n quadrivalve pericarp."
},
{
"word": "Quadrivalve",
"type": "n.",
"definition": "A door, shutter, or the like, having four folds."
},
{
"word": "Quadrivalvular",
"type": "a.",
"definition": "Having four valves; quadrivalve."
},
{
"word": "Quadrivial",
"type": "a.",
"definition": "Having four ways meeting in a point."
},
{
"word": "Quadrivial",
"type": "n.",
"definition": "One of the four \"liberal arts\" making up the\n quadrivium."
},
{
"word": "Quadrivium",
"type": "n.",
"definition": "The four \"liberal arts,\" arithmetic, music, geometry,\n and astronomy; -- so called by the schoolmen. See Trivium."
},
{
"word": "Quadroon",
"type": "n.",
"definition": "The offspring of a mulatto and a white person; a person\n quarter-blooded."
},
{
"word": "Quadroxide",
"type": "n.",
"definition": "A tetroxide."
},
{
"word": "Quadrumana",
"type": "n. pl.",
"definition": "A division of the Primates comprising the apes and\n monkeys; -- so called because the hind foot is usually prehensile, and\n the great toe opposable somewhat like a thumb. Formerly the Quadrumana\n were considered an order distinct from the Bimana, which last included\n man alone."
},
{
"word": "Quadrumane",
"type": "n.",
"definition": "One of the Quadrumana."
},
{
"word": "Quadrumanous",
"type": "a.",
"definition": "Having four hands; of or pertaining to the\n Quadrumana."
},
{
"word": "Quadruped",
"type": "a.",
"definition": "Having four feet."
},
{
"word": "Quadruped",
"type": "n.",
"definition": "An animal having four feet, as most mammals and\n reptiles; -- often restricted to the mammals."
},
{
"word": "Quadrupedal",
"type": "a.",
"definition": "Having four feet; of or pertaining to a quadruped."
},
{
"word": "Quadruple",
"type": "a.",
"definition": "Fourfold; as, to make quadruple restitution; a quadruple\n alliance."
},
{
"word": "Quadruple",
"type": "n.",
"definition": "four times the sum or number; a fourfold amount; as, to\n receive to quadruple of the amount in damages."
},
{
"word": "Quadrupled",
"type": "imp. & p. p.",
"definition": "of Quadruple"
},
{
"word": "Quadrupling",
"type": "p. pr. & vb. n.",
"definition": "of Quadruple"
},
{
"word": "Quadruple",
"type": "v. t.",
"definition": "To multiply by four; to increase fourfold; to double;\n to double twice."
},
{
"word": "Quadruple",
"type": "v. i.",
"definition": "To be multiplied by four; to increase fourfold; to\n become four times as much."
},
{
"word": "Quadruplex",
"type": "a.",
"definition": "Fourfold; folded or doubled twice."
},
{
"word": "Quadruplicated",
"type": "imp. & p. p.",
"definition": "of Quadruplicate"
},
{
"word": "Quadruplicating",
"type": "p. pr. & vb. n.",
"definition": "of Quadruplicate"
},
{
"word": "Quadruplicate",
"type": "v. t.",
"definition": "To make fourfold; to double twice; to quadruple."
},
{
"word": "Quadruplicate",
"type": "a.",
"definition": "Fourfold; doubled twice; four times repeated; as, a\n quadruplicate ratio, or a quadruplicate proportion."
},
{
"word": "Quadruplicate",
"type": "a.",
"definition": "Raised to the fourth power."
},
{
"word": "Quadruplication",
"type": "n.",
"definition": "The act of making fourfold; a taking four times\n the simple sum or amount."
},
{
"word": "Quadruply",
"type": "adv.",
"definition": "To a fourfold quantity; so as to be, or cause to be,\n quadruple; as, to be quadruply recompensed."
},
{
"word": "Quaere",
"type": "v. imperative.",
"definition": "Inquire; question; see; -- used to signify\n doubt or to suggest investigation."
},
{
"word": "Quaestor",
"type": "n.",
"definition": "Same as Questor."
},
{
"word": "Quaffed",
"type": "imp. & p. p.",
"definition": "of Quaff"
},
{
"word": "Quaffing",
"type": "p. pr. & vb. n.",
"definition": "of Quaff"
},
{
"word": "Quaff",
"type": "v. t.",
"definition": "To drink with relish; to drink copiously of; to swallow\n in large draughts."
},
{
"word": "Quaff",
"type": "v. i.",
"definition": "To drink largely or luxuriously."
},
{
"word": "Quaffer",
"type": "n.",
"definition": "One who quaffs, or drinks largely."
},
{
"word": "Quag",
"type": "n.",
"definition": "A quagmire."
},
{
"word": "Quagga",
"type": "n.",
"definition": "A South African wild ass (Equus, \/ Hippotigris, quagga).\n The upper parts are reddish brown, becoming paler behind and behind and\n beneath, with dark stripes on the face, neck, and fore part of the\n body."
},
{
"word": "Quaggy",
"type": "a.",
"definition": "Of the nature of a quagmire; yielding or trembling under\n the foot, as soft, wet earth; spongy; boggy."
},
{
"word": "Quagmire",
"type": "n.",
"definition": "Soft, wet, miry land, which shakes or yields under the\n feet."
},
{
"word": "Quahog",
"type": "n.",
"definition": "Alt. of Quahaug"
},
{
"word": "Quahaug",
"type": "n.",
"definition": "An American market clam (Venus mercenaria). It is sold in\n large quantities, and is highly valued as food. Called also round clam,\n and hard clam."
},
{
"word": "Quaigh",
"type": "n.",
"definition": "Alt. of Quaich"
},
{
"word": "Quaich",
"type": "n.",
"definition": "A small shallow cup or drinking vessel."
},
{
"word": "Qualled",
"type": "imp. & p. p.",
"definition": "of Quail"
},
{
"word": "Qualling",
"type": "p. pr. & vb. n.",
"definition": "of Quail"
},
{
"word": "Quail",
"type": "v. i.",
"definition": "To die; to perish; hence, to wither; to fade."
},
{
"word": "Quail",
"type": "v. i.",
"definition": "To become quelled; to become cast down; to sink under\n trial or apprehension of danger; to lose the spirit and power of\n resistance; to lose heart; to give way; to shrink; to cower."
},
{
"word": "Quail",
"type": "v. t.",
"definition": "To cause to fail in spirit or power; to quell; to crush;\n to subdue."
},
{
"word": "Quail",
"type": "v. i.",
"definition": "To curdle; to coagulate, as milk."
},
{
"word": "Quail",
"type": "n.",
"definition": "Any gallinaceous bird belonging to Coturnix and several\n allied genera of the Old World, especially the common European quail\n (C. communis), the rain quail (C. Coromandelica) of India, the stubble\n quail (C. pectoralis), and the Australian swamp quail (Synoicus\n australis)."
},
{
"word": "Quail",
"type": "n.",
"definition": "Any one of several American partridges belonging to Colinus,\n Callipepla, and allied genera, especially the bobwhite (called Virginia\n quail, and Maryland quail), and the California quail (Calipepla\n Californica)."
},
{
"word": "Quail",
"type": "n.",
"definition": "Any one of numerous species of Turnix and allied genera,\n native of the Old World, as the Australian painted quail (Turnix\n varius). See Turnix."
},
{
"word": "Quail",
"type": "n.",
"definition": "A prostitute; -- so called because the quail was thought to\n be a very amorous bird."
},
{
"word": "Quaily",
"type": "n.",
"definition": "The upland plover."
},
{
"word": "Quaint",
"type": "a.",
"definition": "Prudent; wise; hence, crafty; artful; wily."
},
{
"word": "Quaint",
"type": "a.",
"definition": "Characterized by ingenuity or art; finely fashioned;\n skillfully wrought; elegant; graceful; nice; neat."
},
{
"word": "Quaint",
"type": "a.",
"definition": "Curious and fanciful; affected; odd; whimsical; antique;\n archaic; singular; unusual; as, quaint architecture; a quaint\n expression."
},
{
"word": "Quaintise",
"type": "n.",
"definition": "Craft; subtlety; cunning."
},
{
"word": "Quaintise",
"type": "n.",
"definition": "Elegance; beauty."
},
{
"word": "Quaintly",
"type": "adv.",
"definition": "In a quaint manner."
},
{
"word": "Quaintness",
"type": "n.",
"definition": "The quality of being quaint."
},
{
"word": "Quair",
"type": "n.",
"definition": "A quire; a book."