-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathg.json
26992 lines (26992 loc) · 823 KB
/
g.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": "Gum ammoniac",
"type": "n.",
"definition": "The concrete juice (gum resin) of an umbelliferous\n plant, the Dorema ammoniacum. It is brought chiefly from Persia in the\n form of yellowish tears, which occur singly, or are aggregated into\n masses. It has a peculiar smell, and a nauseous, sweet taste, followed\n by a bitter one. It is inflammable, partially soluble in water and in\n spirit of wine, and is used in medicine as an expectorant and\n resolvent, and for the formation of certain plasters."
},
{
"word": "G",
"type": "",
"definition": "G is the name of the fifth tone of the natural or model scale; --\n called also sol by the Italians and French. It was also originally used\n as the treble clef, and has gradually changed into the character\n represented in the margin. See Clef. G\/ (G sharp) is a tone\n intermediate between G and A."
},
{
"word": "Gab",
"type": "n.",
"definition": "The hook on the end of an eccentric rod opposite the strap.\n See. Illust. of Eccentric."
},
{
"word": "Gab",
"type": "v. i.",
"definition": "The mouth; hence, idle prate; chatter; unmeaning talk;\n loquaciousness."
},
{
"word": "Gab",
"type": "v. i.",
"definition": "To deceive; to lie."
},
{
"word": "Gab",
"type": "v. i.",
"definition": "To talk idly; to prate; to chatter."
},
{
"word": "Gabarage",
"type": "n.",
"definition": "A kind of coarse cloth for packing goods."
},
{
"word": "Gabardine",
"type": "n.",
"definition": "Alt. of Gaberdine"
},
{
"word": "Gaberdine",
"type": "n.",
"definition": "A coarse frock or loose upper garment formerly worn by\n Jews; a mean dress."
},
{
"word": "Gabber",
"type": "n.",
"definition": "A liar; a deceiver."
},
{
"word": "Gabber",
"type": "n.",
"definition": "One addicted to idle talk."
},
{
"word": "Gabbled",
"type": "imp. & p. p.",
"definition": "of Gabble"
},
{
"word": "Gabbling",
"type": "p. pr. & vb. n.",
"definition": "of Gabble"
},
{
"word": "Gabble",
"type": "v. i.",
"definition": "To talk fast, or to talk without meaning; to prate; to\n jabber."
},
{
"word": "Gabble",
"type": "v. i.",
"definition": "To utter inarticulate sounds with rapidity; as, gabbling\n fowls."
},
{
"word": "Gabble",
"type": "n.",
"definition": "Loud or rapid talk without meaning."
},
{
"word": "Gabble",
"type": "n.",
"definition": "Inarticulate sounds rapidly uttered; as of fowls."
},
{
"word": "Gabbier",
"type": "n.",
"definition": "One who gabbles; a prater."
},
{
"word": "Gabbro",
"type": "n.",
"definition": "A name originally given by the Italians to a kind of\n serpentine, later to the rock called euphotide, and now generally used\n for a coarsely crystalline, igneous rock consisting of lamellar\n pyroxene (diallage) and labradorite, with sometimes chrysolite (olivine\n gabbro)."
},
{
"word": "Gabel",
"type": "n.",
"definition": "A rent, service, tribute, custom, tax, impost, or duty; an\n excise."
},
{
"word": "Gabeler",
"type": "n.",
"definition": "A collector of gabels or taxes."
},
{
"word": "Gabelle",
"type": "n.",
"definition": "A tax, especially on salt."
},
{
"word": "Gabelleman",
"type": "n.",
"definition": "A gabeler."
},
{
"word": "Gaberdine",
"type": "n.",
"definition": "See Gabardine."
},
{
"word": "Gaber-lunzie",
"type": "n.",
"definition": "A beggar with a wallet; a licensed beggar."
},
{
"word": "Gabert",
"type": "n.",
"definition": "A lighter, or vessel for inland navigation."
},
{
"word": "Gabion",
"type": "n.",
"definition": "A hollow cylinder of wickerwork, like a basket without a\n bottom. Gabions are made of various sizes, and filled with earth in\n building fieldworks to shelter men from an enemy's fire."
},
{
"word": "Gabion",
"type": "n.",
"definition": "An openwork frame, as of poles, filled with stones and\n sunk, to assist in forming a bar dyke, etc., as in harbor improvement."
},
{
"word": "Gabionade",
"type": "n.",
"definition": "A traverse made with gabions between guns or on their\n flanks, protecting them from enfilading fire."
},
{
"word": "Gabionade",
"type": "n.",
"definition": "A structure of gabions sunk in lines, as a core for a\n sand bar in harbor improvements."
},
{
"word": "Gabionage",
"type": "n.",
"definition": "The part of a fortification built of gabions."
},
{
"word": "Gabioned",
"type": "p. a.",
"definition": "Furnished with gabions."
},
{
"word": "Gabionnade",
"type": "n.",
"definition": "See Gabionade."
},
{
"word": "Gable",
"type": "n.",
"definition": "A cable."
},
{
"word": "Gable",
"type": "n.",
"definition": "The vertical triangular portion of the end of a building,\n from the level of the cornice or eaves to the ridge of the roof. Also,\n a similar end when not triangular in shape, as of a gambrel roof and\n the like."
},
{
"word": "Gable",
"type": "n.",
"definition": "The end wall of a building, as distinguished from the front\n or rear side."
},
{
"word": "Gable",
"type": "n.",
"definition": "A decorative member having the shape of a triangular gable,\n such as that above a Gothic arch in a doorway."
},
{
"word": "Gablet",
"type": "n.",
"definition": "A small gable, or gable-shaped canopy, formed over a\n tabernacle, niche, etc."
},
{
"word": "Gablock",
"type": "n.",
"definition": "A false spur or gaff, fitted on the heel of a gamecock."
},
{
"word": "Gaby",
"type": "n.",
"definition": "A simpleton; a dunce; a lout."
},
{
"word": "Gad",
"type": "n.",
"definition": "The point of a spear, or an arrowhead."
},
{
"word": "Gad",
"type": "n.",
"definition": "A pointed or wedge-shaped instrument of metal, as a steel\n wedge used in mining, etc."
},
{
"word": "Gad",
"type": "n.",
"definition": "A sharp-pointed rod; a goad."
},
{
"word": "Gad",
"type": "n.",
"definition": "A spike on a gauntlet; a gadling."
},
{
"word": "Gad",
"type": "n.",
"definition": "A wedge-shaped billet of iron or steel."
},
{
"word": "Gad",
"type": "n.",
"definition": "A rod or stick, as a fishing rod, a measuring rod, or a rod\n used to drive cattle with."
},
{
"word": "Gadded",
"type": "imp. & p. p.",
"definition": "of Gad"
},
{
"word": "Gadding",
"type": "p. pr. & vb. n.",
"definition": "of Gad"
},
{
"word": "Gad",
"type": "n.",
"definition": "To walk about; to rove or go about, without purpose; hence, to\n run wild; to be uncontrolled."
},
{
"word": "Gadabout",
"type": "n.",
"definition": "A gadder"
},
{
"word": "Gadbee",
"type": "n.",
"definition": "The gadfly."
},
{
"word": "Gadder",
"type": "n.",
"definition": "One who roves about idly, a rambling gossip."
},
{
"word": "Gadding",
"type": "a. & n.",
"definition": "Going about much, needlessly or without purpose."
},
{
"word": "Gaddingly",
"type": "adv.",
"definition": "In a roving, idle manner."
},
{
"word": "Gaddish",
"type": "a.",
"definition": "Disposed to gad."
},
{
"word": "Gade",
"type": "n.",
"definition": "A small British fish (Motella argenteola) of the Cod family."
},
{
"word": "Gade",
"type": "n.",
"definition": "A pike, so called at Moray Firth; -- called also gead."
},
{
"word": "Gadere",
"type": "v. t. & i.",
"definition": "Alt. of Gadre"
},
{
"word": "Gadre",
"type": "v. t. & i.",
"definition": "To gather."
},
{
"word": "Gadflies",
"type": "pl. ",
"definition": "of Gadfly"
},
{
"word": "Gadfly",
"type": "n.",
"definition": "Any dipterous insect of the genus Oestrus, and allied\n genera of botflies."
},
{
"word": "Gadhelic",
"type": "a.",
"definition": "Of or pertaining to that division of the Celtic\n languages, which includes the Irish, Gaelic, and Manx."
},
{
"word": "Gadic",
"type": "a.",
"definition": "Pertaining to, or derived from, the cod (Gadus); -- applied\n to an acid obtained from cod-liver oil, viz., gadic acid."
},
{
"word": "Gaditanian",
"type": "a.",
"definition": "Of or relating to Cadiz, in Spain."
},
{
"word": "Gaditanian",
"type": "n.",
"definition": "A native or inhabitant of Cadiz."
},
{
"word": "Gadling",
"type": "n.",
"definition": "See Gad, n., 4."
},
{
"word": "Gadling",
"type": "v. i.",
"definition": "Gadding about."
},
{
"word": "Gadling",
"type": "n.",
"definition": "A roving vagabond."
},
{
"word": "Gadman",
"type": "n.",
"definition": "A gadsman."
},
{
"word": "Gadoid",
"type": "a.",
"definition": "Of or pertaining to the family of fishes (Gadidae) which\n includes the cod, haddock, and hake."
},
{
"word": "Gadoid",
"type": "n.",
"definition": "One of the Gadidae."
},
{
"word": "Gadolinia",
"type": "n.",
"definition": "A rare earth, regarded by some as an oxide of the\n supposed element gadolinium, by others as only a mixture of the oxides\n of yttrium, erbium, ytterbium, etc."
},
{
"word": "Gadolinic",
"type": "a.",
"definition": "Pertaining to or containing gadolinium."
},
{
"word": "Gadolinite",
"type": "n.",
"definition": "A mineral of a nearly black color and vitreous luster,\n and consisting principally of the silicates of yttrium, cerium, and\n iron."
},
{
"word": "Gadolinium",
"type": "n.",
"definition": "A supposed rare metallic element, with a characteristic\n spectrum, found associated with yttrium and other rare metals. Its\n individuality and properties have not yet been determined."
},
{
"word": "Gadsman",
"type": "n.",
"definition": "One who uses a gad or goad in driving."
},
{
"word": "Gaduin",
"type": "n.",
"definition": "A yellow or brown amorphous substance, of indifferent\n nature, found in cod-liver oil."
},
{
"word": "Gadwall",
"type": "n.",
"definition": "A large duck (Anas strepera), valued as a game bird, found\n in the northern parts of Europe and America; -- called also gray duck."
},
{
"word": "Gael",
"type": "n.sing. & pl.",
"definition": "A Celt or the Celts of the Scotch Highlands or of\n Ireland; now esp., a Scotch Highlander of Celtic origin."
},
{
"word": "Gaelic",
"type": "a.",
"definition": "Of or pertaining to the Gael, esp. to the Celtic\n Highlanders of Scotland; as, the Gaelic language."
},
{
"word": "Gaelic",
"type": "n.",
"definition": "The language of the Gaels, esp. of the Highlanders of\n Scotland. It is a branch of the Celtic."
},
{
"word": "Gaff",
"type": "n.",
"definition": "A barbed spear or a hook with a handle, used by fishermen in\n securing heavy fish."
},
{
"word": "Gaff",
"type": "n.",
"definition": "The spar upon which the upper edge of a fore-and-aft sail is\n extended."
},
{
"word": "Gaff",
"type": "n.",
"definition": "Same as Gaffle, 1."
},
{
"word": "Gaffed",
"type": "imp. & p. p.",
"definition": "of Gaff"
},
{
"word": "Gaffing",
"type": "p. pr. & vb. n.",
"definition": "of Gaff"
},
{
"word": "Gaff",
"type": "v. t.",
"definition": "To strike with a gaff or barbed spear; to secure by means\n of a gaff; as, to gaff a salmon."
},
{
"word": "Gaffer",
"type": "n.",
"definition": "An old fellow; an aged rustic."
},
{
"word": "Gaffer",
"type": "n.",
"definition": "A foreman or overseer of a gang of laborers."
},
{
"word": "Gaffle",
"type": "n.",
"definition": "An artificial spur or gaff for gamecocks."
},
{
"word": "Gaffle",
"type": "n.",
"definition": "A lever to bend crossbows."
},
{
"word": "Gaff-topsail",
"type": "n.",
"definition": "A small triangular sail having its foot extended upon\n the gaff and its luff upon the topmast."
},
{
"word": "Gagged",
"type": "imp. & p. p.",
"definition": "of Gag"
},
{
"word": "Gagging",
"type": "p. pr. & vb. n.",
"definition": "of Gag"
},
{
"word": "Gag",
"type": "v. t.",
"definition": "To stop the mouth of, by thrusting sometimes in, so as to\n hinder speaking; hence, to silence by authority or by violence; not to\n allow freedom of speech to."
},
{
"word": "Gag",
"type": "v. t.",
"definition": "To pry or hold open by means of a gag."
},
{
"word": "Gag",
"type": "v. t.",
"definition": "To cause to heave with nausea."
},
{
"word": "Gag",
"type": "v. i.",
"definition": "To heave with nausea; to retch."
},
{
"word": "Gag",
"type": "v. i.",
"definition": "To introduce gags or interpolations. See Gag, n., 3."
},
{
"word": "Gag",
"type": "n.",
"definition": "Something thrust into the mouth or throat to hinder speaking."
},
{
"word": "Gag",
"type": "n.",
"definition": "A mouthful that makes one retch; a choking bit; as, a gag of\n mutton fat."
},
{
"word": "Gag",
"type": "n.",
"definition": "A speech or phrase interpolated offhand by an actor on the\n stage in his part as written, usually consisting of some seasonable or\n local allusion."
},
{
"word": "Gagate",
"type": "n.",
"definition": "Agate."
},
{
"word": "Gage",
"type": "n.",
"definition": "A pledge or pawn; something laid down or given as a security\n for the performance of some act by the person depositing it, and\n forfeited by nonperformance; security."
},
{
"word": "Gage",
"type": "n.",
"definition": "A glove, cap, or the like, cast on the ground as a challenge\n to combat, and to be taken up by the accepter of the challenge; a\n challenge; a defiance."
},
{
"word": "Gage",
"type": "n.",
"definition": "A variety of plum; as, the greengage; also, the blue gage,\n frost gage, golden gage, etc., having more or less likeness to the\n greengage. See Greengage."
},
{
"word": "Gaged",
"type": "imp. & p. p.",
"definition": "of Gage"
},
{
"word": "Gaging",
"type": "p. pr & vb. n.",
"definition": "of Gage"
},
{
"word": "Gage",
"type": "n.",
"definition": "To give or deposit as a pledge or security for some act; to\n wage or wager; to pawn or pledge."
},
{
"word": "Gage",
"type": "n.",
"definition": "To bind by pledge, or security; to engage."
},
{
"word": "Gage",
"type": "n.",
"definition": "A measure or standard. See Gauge, n."
},
{
"word": "Gage",
"type": "v. t.",
"definition": "To measure. See Gauge, v. t."
},
{
"word": "Gager",
"type": "n.",
"definition": "A measurer. See Gauger."
},
{
"word": "Gagger",
"type": "n.",
"definition": "One who gags."
},
{
"word": "Gagger",
"type": "n.",
"definition": "A piece of iron imbedded in the sand of a mold to keep the\n sand in place."
},
{
"word": "Gaggled",
"type": "imp. & p. p.",
"definition": "of Gaggle"
},
{
"word": "Gaggling",
"type": "p. pr. & vb. n.",
"definition": "of Gaggle"
},
{
"word": "Gaggle",
"type": "v. i.",
"definition": "To make a noise like a goose; to cackle."
},
{
"word": "Gaggle",
"type": "v. i.",
"definition": "A flock of wild geese."
},
{
"word": "Gagtooth",
"type": "n.",
"definition": "A projecting tooth."
},
{
"word": "Gag-toothed",
"type": "a.",
"definition": "Having gagteeth."
},
{
"word": "Gahnite",
"type": "n.",
"definition": "Zinc spinel; automolite."
},
{
"word": "Gaidic",
"type": "a.",
"definition": "Pertaining to hypogeic acid; -- applied to an acid obtained\n from hypogeic acid."
},
{
"word": "Gaiety",
"type": "n.",
"definition": "Same as Gayety."
},
{
"word": "Gailer",
"type": "n.",
"definition": "A jailer."
},
{
"word": "Gaillard",
"type": "a.",
"definition": "Gay; brisk; merry; galliard."
},
{
"word": "Gailliarde",
"type": "n.",
"definition": "A lively French and Italian dance."
},
{
"word": "Gaily",
"type": "adv.",
"definition": "Merrily; showily. See gaily."
},
{
"word": "Gain",
"type": "n.",
"definition": "A square or beveled notch cut out of a girder, binding joist,\n or other timber which supports a floor beam, so as to receive the end\n of the floor beam."
},
{
"word": "Gain",
"type": "a.",
"definition": "Convenient; suitable; direct; near; handy; dexterous; easy;\n profitable; cheap; respectable."
},
{
"word": "Gain",
"type": "v. t.",
"definition": "That which is gained, obtained, or acquired, as increase,\n profit, advantage, or benefit; -- opposed to loss."
},
{
"word": "Gain",
"type": "v. t.",
"definition": "The obtaining or amassing of profit or valuable\n possessions; acquisition; accumulation."
},
{
"word": "Gained",
"type": "imp. & p. p.",
"definition": "of Gain"
},
{
"word": "Gaining",
"type": "p. pr. & vb. n.",
"definition": "of Gain"
},
{
"word": "Gain",
"type": "n.",
"definition": "To get, as profit or advantage; to obtain or acquire by\n effort or labor; as, to gain a good living."
},
{
"word": "Gain",
"type": "n.",
"definition": "To come off winner or victor in; to be successful in; to\n obtain by competition; as, to gain a battle; to gain a case at law; to\n gain a prize."
},
{
"word": "Gain",
"type": "n.",
"definition": "To draw into any interest or party; to win to one's side; to\n conciliate."
},
{
"word": "Gain",
"type": "n.",
"definition": "To reach; to attain to; to arrive at; as, to gain the top of\n a mountain; to gain a good harbor."
},
{
"word": "Gain",
"type": "n.",
"definition": "To get, incur, or receive, as loss, harm, or damage."
},
{
"word": "Gain",
"type": "v. i.",
"definition": "To have or receive advantage or profit; to acquire gain;\n to grow rich; to advance in interest, health, or happiness; to make\n progress; as, the sick man gains daily."
},
{
"word": "Gainable",
"type": "v. t.",
"definition": "Capable of being obtained or reached."
},
{
"word": "Gainage",
"type": "v. t.",
"definition": "The horses, oxen, plows, wains or wagons and implements\n for carrying on tillage."
},
{
"word": "Gainage",
"type": "v. t.",
"definition": "The profit made by tillage; also, the land itself."
},
{
"word": "Gainer",
"type": "n.",
"definition": "One who gains."
},
{
"word": "Gainful",
"type": "a.",
"definition": "Profitable; advantageous; lucrative."
},
{
"word": "Gaingiving",
"type": "n.",
"definition": "A misgiving."
},
{
"word": "Gainless",
"type": "a.",
"definition": "Not producing gain; unprofitable."
},
{
"word": "Gainly",
"type": "a.",
"definition": "Handily; readily; dexterously; advantageously."
},
{
"word": "Gainpain",
"type": "n.",
"definition": "Bread-gainer; -- a term applied in the Middle Ages to the\n sword of a hired soldier."
},
{
"word": "Gainsaid",
"type": "imp. & p. p.",
"definition": "of Gainsay"
},
{
"word": "Gainsaying",
"type": "p. pr. & vb. n.",
"definition": "of Gainsay"
},
{
"word": "Gainsay",
"type": "v. t.",
"definition": "To contradict; to deny; to controvert; to dispute; to\n forbid."
},
{
"word": "Gainsayer",
"type": "n.",
"definition": "One who gainsays, contradicts, or denies."
},
{
"word": "Gainsome",
"type": "a.",
"definition": "Gainful."
},
{
"word": "Gainsome",
"type": "a.",
"definition": "Prepossessing; well-favored."
},
{
"word": "Gainstood",
"type": "imp. & p. p.",
"definition": "of Gainstand"
},
{
"word": "gainstanding",
"type": "p. pr. & vb. n.",
"definition": "of Gainstand"
},
{
"word": "Gainstand",
"type": "v. t.",
"definition": "To withstand; to resist."
},
{
"word": "Gainstrive",
"type": "v. t. & i.",
"definition": "To strive or struggle against; to withstand."
},
{
"word": "Gairfowl",
"type": "n.",
"definition": "See Garefowl."
},
{
"word": "Gairish",
"type": "n.",
"definition": "Alt. of Gairish\/ness"
},
{
"word": "Gairishly",
"type": "n.",
"definition": "Alt. of Gairish\/ness"
},
{
"word": "Gairish\/ness",
"type": "n.",
"definition": "Same as Garish, Garishly, Garishness."
},
{
"word": "Gait",
"type": "n.",
"definition": "A going; a walk; a march; a way."
},
{
"word": "Gait",
"type": "n.",
"definition": "Manner of walking or stepping; bearing or carriage while\n moving."
},
{
"word": "Gaited",
"type": "a.",
"definition": "Having (such) a gait; -- used in composition; as,\n slow-gaited; heavy-gaited."
},
{
"word": "Gaiter",
"type": "n.",
"definition": "A covering of cloth or leather for the ankle and instep, or\n for the whole leg from the knee to the instep, fitting down upon the\n shoe."
},
{
"word": "Gaiter",
"type": "n.",
"definition": "A kind of shoe, consisting of cloth, and covering the\n ankle."
},
{
"word": "Gaiter",
"type": "v. t.",
"definition": "To dress with gaiters."
},
{
"word": "Gaitre",
"type": "n.",
"definition": "Alt. of Gaytre"
},
{
"word": "Gaytre",
"type": "n.",
"definition": "The dogwood tree."
},
{
"word": "Gala",
"type": "n.",
"definition": "Pomp, show, or festivity."
},
{
"word": "Galacta-gogue",
"type": "n.",
"definition": "An agent exciting secretion of milk."
},
{
"word": "Galactic",
"type": "a.",
"definition": "Of or pertaining to milk; got from milk; as, galactic\n acid."
},
{
"word": "Galactic",
"type": "a.",
"definition": "Of or pertaining to the galaxy or Milky Way."
},
{
"word": "Galactin",
"type": "n.",
"definition": "An amorphous, gelatinous substance containing nitrogen,\n found in milk and other animal fluids. It resembles peptone, and is\n variously regarded as a coagulating or emulsifying agent."
},
{
"word": "Galactin",
"type": "n.",
"definition": "A white waxy substance found in the sap of the South\n American cow tree (Galactodendron)."
},
{
"word": "Galactin",
"type": "n.",
"definition": "An amorphous, gummy carbohydrate resembling gelose, found\n in the seeds of leguminous plants, and yielding on decomposition\n several sugars, including galactose."
},
{
"word": "Galactodensimeter",
"type": "n.",
"definition": "Same as Galactometer."
},
{
"word": "Galactometer",
"type": "n.",
"definition": "An instrument for ascertaining the quality of milk\n (i.e., its richness in cream) by determining its specific gravity; a\n lactometer."
},
{
"word": "Galactophagist",
"type": "n.",
"definition": "One who eats, or subsists on, milk."
},
{
"word": "Galactophagous",
"type": "a.",
"definition": "Feeding on milk."
},
{
"word": "Galactophorous",
"type": "a.",
"definition": "Milk-carrying; lactiferous; -- applied to the ducts\n of mammary glands."
},
{
"word": "Galactopoietic",
"type": "a.",
"definition": "Increasing the flow of milk; milk-producing. -- n.\n A galactopoietic substance."
},
{
"word": "Galactose",
"type": "n.",
"definition": "A white, crystalline sugar, C6H12O6, isomeric with\n dextrose, obtained by the decomposition of milk sugar, and also from\n certain gums. When oxidized it forms mucic acid. Called also lactose\n (though it is not lactose proper)."
},
{
"word": "Galage",
"type": "n.",
"definition": "See Galoche."
},
{
"word": "Galagos",
"type": "pl. ",
"definition": "of Galago"
},
{
"word": "Galago",
"type": "n.",
"definition": "A genus of African lemurs, including numerous species."
},
{
"word": "Galanga",
"type": "n.",
"definition": "Alt. of Galangal"
},
{
"word": "Galangal",
"type": "n.",
"definition": "The pungent aromatic rhizome or tuber of certain East\n Indian or Chinese species of Alpinia (A. Galanga and A. officinarum)\n and of the Kaempferia Galanga), -- all of the Ginger family."
},
{
"word": "Galantine",
"type": "n.",
"definition": "A dish of veal, chickens, or other white meat, freed\n from bones, tied up, boiled, and served cold."
},
{
"word": "Galapee tree",
"type": "",
"definition": "The West Indian Sciadophyllum Brownei, a tree with very\n large digitate leaves."
},
{
"word": "Galatian",
"type": "a.",
"definition": "Of or pertaining to Galatia or its inhabitants. -- A\n native or inhabitant of Galatia, in Asia Minor; a descendant of the\n Gauls who settled in Asia Minor."
},
{
"word": "Galaxies",
"type": "pl. ",
"definition": "of Galaxy"
},
{
"word": "Galaxy",
"type": "n.",
"definition": "The Milky Way; that luminous tract, or belt, which is seen\n at night stretching across the heavens, and which is composed of\n innumerable stars, so distant and blended as to be distinguishable only\n with the telescope. The term has recently been used for remote clusters\n of stars."
},
{
"word": "Galaxy",
"type": "n.",
"definition": "A splendid assemblage of persons or things."
},
{
"word": "Galban",
"type": "n.",
"definition": "Alt. of Galbanum"
},
{
"word": "Galbanum",
"type": "n.",
"definition": "A gum resin exuding from the stems of certain Asiatic\n umbelliferous plants, mostly species of Ferula. The Bubon Galbanum of\n South Africa furnishes an inferior kind of galbanum. It has an acrid,\n bitter taste, a strong, unpleasant smell, and is used for medical\n purposes, also in the arts, as in the manufacture of varnish."
},
{
"word": "Gale",
"type": "n.",
"definition": "A strong current of air; a wind between a stiff breeze and a\n hurricane. The most violent gales are called tempests."
},
{
"word": "Gale",
"type": "n.",
"definition": "A moderate current of air; a breeze."