-
Notifications
You must be signed in to change notification settings - Fork 8
/
std-dictionary.aiml
executable file
·20602 lines (8972 loc) · 248 KB
/
std-dictionary.aiml
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
<?xml version="1.0" encoding="ISO-8859-1"?>
<aiml version="1.0">
<!-- Free software (c) 2001 ALICE AI Foundation -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<!-- This file contains the definitions of single words just like a dictionary. -->
<meta name="author" content="Thomas Ringate"/>
<meta name="language" content="en"/>
<category>
<pattern>DEFINE A</pattern>
<template>
The first letter of the roman alphabet.
</template>
</category>
<category>
<pattern>DEFINE AARDVARK</pattern>
<template>
An aardvark is a south african ant eating animal.
</template>
</category>
<category>
<pattern>DEFINE AARDWOLF</pattern>
<template>
An aardwolf is a carnivorous mammal.
</template>
</category>
<category>
<pattern>DEFINE ABA</pattern>
<template>
An aba is a sack like garment worn by arabs.
</template>
</category>
<category>
<pattern>DEFINE ABACUS</pattern>
<template>
An abacus is a counting frame.
</template>
</category>
<category>
<pattern>DEFINE ABBA</pattern>
<template>
<random>
<li>Abba is a father, it is the title of a bishop in the Syrian, Coptic, and Ethiopian Christian
churches.</li>
<li>Abba means father in Hebrew.It is used as an appelation of respect.</li>
<li>Abba was this real cool 'seventies band man.</li>
<li>Anna, Bjorn, Benny and Agnetha.</li>
</random>
</template>
</category>
<category>
<pattern>DEFINE ABBESS</pattern>
<template>
An abbess is the female superior of a community of nuns.
</template>
</category>
<category>
<pattern>DEFINE ABBEY</pattern>
<template>
An abbey is a body of monks or a monastic building.
</template>
</category>
<category>
<pattern>DEFINE ABBOT</pattern>
<template>
An abbot is the male superior of a community of monks.
</template>
</category>
<category>
<pattern>DEFINE ABBRACADABRA</pattern>
<template>
Abbracadabra is a qabbalistic magic word.
</template>
</category>
<category>
<pattern>DEFINE ABBREVIATION</pattern>
<template>
An abbreviation is a short form of a word or words.
</template>
</category>
<category>
<pattern>DEFINE ABDOMEN</pattern>
<template>
<random>
<li>The abdomen is the part of a creature's body between diaphragm and pelvis.</li>
<li>The area between the thorax and the pelvis, normally referred to as the stomach.</li>
</random>
</template>
</category>
<category>
<pattern>DEFINE ABODE</pattern>
<template>
Abode is a place where something lives.
</template>
</category>
<category>
<pattern>DEFINE ABOMASUM</pattern>
<template>
An abomasum is the fourth stomach of a ruminant.
</template>
</category>
<category>
<pattern>DEFINE ABORIGINE</pattern>
<template>
An aborigine is a member of an indigenous people.
</template>
</category>
<category>
<pattern>DEFINE ABORTION</pattern>
<template>
Abortion is the expulsion of the foetus from the uterus.
</template>
</category>
<category>
<pattern>DEFINE ABSCESS</pattern>
<template>
An abscess is a pus filled infection of an animal.
</template>
</category>
<category>
<pattern>DEFINE ABSURDISM</pattern>
<template>
Absurdism is the philosophy that we exist in a meaningless, irrational universe.
</template>
</category>
<category>
<pattern>DEFINE ABYSS</pattern>
<template>
An abyss is a very deep gorge.
</template>
</category>
<category>
<pattern>DEFINE ACACIA</pattern>
<template>
The acacia is a leguminosae found in warm climates.
</template>
</category>
<category>
<pattern>DEFINE ACANTHUS</pattern>
<template>
The acanthus is a herbaceous plant of south europe, asia and africa.
</template>
</category>
<category>
<pattern>DEFINE ACCELERATION</pattern>
<template>
Acceleration is the rate at which a moving body increases in velocity.
</template>
</category>
<category>
<pattern>DEFINE ACCELERATOR</pattern>
<template>
An accelerator is a device for increasing speed.
</template>
</category>
<category>
<pattern>DEFINE ACCENT</pattern>
<template>
An accent is a local mode of pronunciation in speech.
</template>
</category>
<category>
<pattern>DEFINE ACCENTOR</pattern>
<template>
An accentor is a type of bird of the prunelliadae family.
</template>
</category>
<category>
<pattern>DEFINE ACCORDION</pattern>
<template>
An accordion is a small portable musical instrument with a keyboard and bellows.
</template>
</category>
<category>
<pattern>DEFINE ACCURACY</pattern>
<template>
<random>
<li>Accuracy is the quality or state of being accurate or exact.</li>
<li>Accuracy represents the degree of certainty in measurement. In accuracy can arise because of
limitations of our knowledge and our physical measuring equipment. Chaotic systems that
compound errors lead to massive inaccuracy, making some of them totally unpredictable.</li>
</random>
</template>
</category>
<category>
<pattern>DEFINE ACE</pattern>
<template>
An ace is a playing card with one pip.
</template>
</category>
<category>
<pattern>DEFINE ACETAL</pattern>
<template>
Acetal is a colourless liquid formed by oxidation of alcohol.
</template>
</category>
<category>
<pattern>DEFINE ACETONE</pattern>
<template>
Acetone is a colourless liquid with the formulae ch2coch3.
</template>
</category>
<category>
<pattern>DEFINE ACETYLENE</pattern>
<template>
Acetylene is a highly inflammable gas of the hydrocarbon family used for welding and cutting
metals.
</template>
</category>
<category>
<pattern>DEFINE ACHILLES TENDON</pattern>
<template>
The Achilles Tendon is the tendon which connects the heel with the calf of the leg, and is the
principal extensor of the foot.
</template>
</category>
<category>
<pattern>DEFINE ACID</pattern>
<template>
An acid is a chemical compound that reacts with metals to form salts by releasing hydrogen.
</template>
</category>
<category>
<pattern>DEFINE ACLINIC</pattern>
<template>
The aclinic is a magnetic equator.
</template>
</category>
<category>
<pattern>DEFINE ACNE</pattern>
<template>
Acne is a skin eruption due to inflammation of the sebaceous glands.
</template>
</category>
<category>
<pattern>DEFINE ACONITE</pattern>
<template>
Aconite is a poisonous plant.
</template>
</category>
<category>
<pattern>DEFINE ACONITINE</pattern>
<template>
Aconitine is a poisonous alkaloid derived from aconite.
</template>
</category>
<category>
<pattern>DEFINE ACORN</pattern>
<template>
The acorn is the fruit of the oak tree.
</template>
</category>
<category>
<pattern>DEFINE ACOTYLEDON</pattern>
<template>
An acotyledon is a plant with no distinct seed leaves, such as moss and fern.
</template>
</category>
<category>
<pattern>DEFINE ACRE</pattern>
<template>
An acre is a measurement of land area being 4840 square yards.
</template>
</category>
<category>
<pattern>DEFINE ACROMEGALY</pattern>
<template>
Acromegaly is a disease due to over activity of the pituitary gland results in excessive bone
growth, especially the skull.
</template>
</category>
<category>
<pattern>DEFINE ACRONYM</pattern>
<template>
<random>
<li>An acronym is a word formed from the initials of other words.</li>
<li>An acronym is an abbreviation made of letters, like A.L.I.C.E.</li>
</random>
</template>
</category>
<category>
<pattern>DEFINE ACROPHOBIA</pattern>
<template>
Acrophobia is the fear of high places.
</template>
</category>
<category>
<pattern>DEFINE ACRYLIC</pattern>
<template>
Acrylic is a synthetic fibre derived from acrylic acid.
</template>
</category>
<category>
<pattern>DEFINE ACTINIUM</pattern>
<template>
Actinium is a radioactive element.
</template>
</category>
<category>
<pattern>DEFINE ACTIVATION</pattern>
<template>
In stimulus-response, activation means the input "firing" in response to a matching pattern.
</template>
</category>
<category>
<pattern>DEFINE ACTOR</pattern>
<template>
An actor is a dramatic performer.
</template>
</category>
<category>
<pattern>DEFINE ADA</pattern>
<template>
ADA is a trademark used for a structured computer programming language
</template>
</category>
<category>
<pattern>DEFINE ADDAX</pattern>
<template>
An addax is a large antelope found in north african deserts.
</template>
</category>
<category>
<pattern>DEFINE ADDER</pattern>
<template>
An adder is a venomous snake found in england.
</template>
</category>
<category>
<pattern>DEFINE ADENOIDS</pattern>
<template>
Adenoids is the pathological enlargement of the lymphoid tissue.
</template>
</category>
<category>
<pattern>DEFINE ADHESIVE</pattern>
<template>
An adhesive is a sticky substance.
</template>
</category>
<category>
<pattern>DEFINE ADIPOCERE</pattern>
<template>
Adipocere is a substance in dead bodies formed by decomposition of fatty acids when exposed to
moisture.
</template>
</category>
<category>
<pattern>DEFINE ADIT</pattern>
<template>
An adit is the horizontal entrance to a mine.
</template>
</category>
<category>
<pattern>DEFINE ADMIRAL</pattern>
<template>
Admiral is a rank in the navy.
</template>
</category>
<category>
<pattern>DEFINE ADOBE</pattern>
<template>
An adobe is a mexican house made of clay bricks.
</template>
</category>
<category>
<pattern>DEFINE ADSL</pattern>
<template>
Asynchronous Digital Subscriber Line.
</template>
</category>
<category>
<pattern>DEFINE ADULT</pattern>
<template>
An adult is a fully grown being.
</template>
</category>
<category>
<pattern>DEFINE ADULTERY</pattern>
<template>
<random>
<li>voluntary sexual intercourse between a married man and someone other than his wife or
between a married woman and someone other than her husband; also : an act of adultery.</li>
<li>Adultery is the voluntary sexual intercourse between a married man and a woman not his
wife, or between a married woman and a man not her husband.</li>
</random>
</template>
</category>
<category>
<pattern>DEFINE ADVERTISING</pattern>
<template>
The art of selling through media.
</template>
</category>
<category>
<pattern>DEFINE ADYTUM</pattern>
<template>
An adytum is the inner most part of a temple.
</template>
</category>
<category>
<pattern>DEFINE ADZE</pattern>
<template>
An adze is a carpenter's tool for cutting away the surface of wood.
</template>
</category>
<category>
<pattern>DEFINE AERIAL</pattern>
<template>
An aerial is a receiving or radiating device used in radio communications.
</template>
</category>
<category>
<pattern>DEFINE AERODROME</pattern>
<template>
An aerodrome is a place where aircraft are based.
</template>
</category>
<category>
<pattern>DEFINE AERODYNAMICS</pattern>
<template>
Making airplanes fly.
</template>
</category>
<category>
<pattern>DEFINE AGAR</pattern>
<template>
Agar is a laxative substance obtained from seaweed.
</template>
</category>
<category>
<pattern>DEFINE AGARIC</pattern>
<template>
The agaric is a family of fungus.
</template>
</category>
<category>
<pattern>DEFINE AGATE</pattern>
<template>
Agate is a semi precious stone comprised mainly of silica.
</template>
</category>
<category>
<pattern>DEFINE AGENDA</pattern>
<template>
An agenda is a list of tasks.
</template>
</category>
<category>
<pattern>DEFINE AGNES</pattern>
<template>
Agnes is the patron saint of virgins.
</template>
</category>
<category>
<pattern>DEFINE AGNI</pattern>
<template>
Agni is the hindu god of fire.
</template>
</category>
<category>
<pattern>DEFINE AGORAPHOBIA</pattern>
<template>
Agoraphobia is the fear of open spaces.
</template>
</category>
<category>
<pattern>DEFINE AIDS</pattern>
<template>
AIDS is the modern day plague.
</template>
</category>
<category>
<pattern>DEFINE AIKIDO</pattern>
<template>
Japanese martial arts similar to Judo.
</template>
</category>
<category>
<pattern>DEFINE AIM</pattern>
<template>
American Indian Movement.
</template>
</category>
<category>
<pattern>DEFINE AIR</pattern>
<template>
The normal atmosphere of Earth, mostly nitrogen, oxygen and carbon dioxide.
</template>
</category>
<category>
<pattern>DEFINE AIRCRAFT</pattern>
<template>
An aircraft is a flying machine, a vessel which flies through the air rather than floats on water or
travels along a road or rail.
</template>
</category>
<category>
<pattern>DEFINE AISLE</pattern>
<template>
An aisle is a passage between rows of seats.
</template>
</category>
<category>
<pattern>DEFINE AK47</pattern>
<template>
The ak47 is a russian assault rifle.
</template>
</category>
<category>
<pattern>DEFINE ALBACORE</pattern>
<template>
The albacore is a species of fish.
</template>
</category>
<category>
<pattern>DEFINE ALBATROSS</pattern>
<template>
The albatross is a long winged oceanic bird.
</template>
</category>
<category>
<pattern>DEFINE ALBURNUM</pattern>
<template>
The alburnum is the recently formed wood in trees.
</template>
</category>
<category>
<pattern>DEFINE ALCATRAZ</pattern>
<template>
A former prison island in San Francisco.
</template>
</category>
<category>
<pattern>DEFINE ALCOHOL</pattern>
<template>
Alcohol is a termed used by Philippus Aureolus Paracelsus for fine powder, meaning distilled
spirit. It is colorless, volatile, and a pungent liquid. It is used in industry and medicine, and is the
intoxicating element of whiskey, wine, beer, and other fermented or distilled liquors. It is classed
as a depressant drug, also called ethyl alcohol. Any intoxicating liquor with this liquid (ethyl) in it
is considered alcohol.
</template>
</category>
<category>
<pattern>DEFINE ALDER</pattern>
<template>
The alder is a type of tree of the birch family.
</template>
</category>
<category>
<pattern>DEFINE ALGEBRA</pattern>
<template>
<random>
<li>a generalization of arithmetic in which letters representing numbers are combined according
to the rules of arithmetic.</li>
<li>A mathematical system using symbols, especially letters, to generalize certain arithmetical
operations and relationships.</li>
</random>
</template>
</category>
<category>
<pattern>DEFINE ALGORITHM</pattern>
<template>
<random>
<li>An algorithm is a series of instructions to perform a specified set of transformations, such as
mathematical operations.
<br />A computer program, like myself is an algorithm.
<br />So are the rules of a game, or the score to a piece of music.</li>
<li>An algorithm is an abstract mathematical representation of a computer program. Like alice
uses a CBR algorithm.</li>
<li>An algorithm is a set of rules.</li>
</random>
</template>
</category>
<category>
<pattern>DEFINE ALIMENTARY CANAL</pattern>
<template>
The alimentary canal is the channel in an animal through which food passes.
</template>
</category>
<category>
<pattern>DEFINE ALKALI</pattern>
<template>
An alkali is a chemical substance.
</template>
</category>
<category>
<pattern>DEFINE ALLAH</pattern>
<template>
Allah is the muslim name of god.
</template>
</category>
<category>
<pattern>DEFINE ALLERGY</pattern>
<template>
An allergy is a hypersensitivity of body tissue to a substance.
</template>
</category>
<category>
<pattern>DEFINE ALLEY</pattern>
<template>
An alley is a narrow street.
</template>
</category>
<category>
<pattern>DEFINE ALLIGATOR</pattern>
<template>
An alligator is a crocodilian reptile.
</template>
</category>
<category>
<pattern>DEFINE ALLOY</pattern>
<template>
An alloy is a mixture of a metal and other metals or non metals.
</template>
</category>
<category>
<pattern>DEFINE ALPHA</pattern>
<template>
Alpha is the first letter of the greek alphabet.
</template>
</category>
<category>
<pattern>DEFINE ALTAR</pattern>
<template>
An altar is a block used for making offerings to a deity.
</template>
</category>
<category>
<pattern>DEFINE ALTAVISTA</pattern>
<template>
Altavista is a search engine.
</template>
</category>
<category>
<pattern>DEFINE ALTHING</pattern>
<template>
The althing is the parliament of iceland, it was created in 930 and is the oldest parliamentary
assembly in the world.
</template>
</category>
<category>
<pattern>DEFINE ALTIMETER</pattern>
<template>
An altimeter is a device measuring altitude.
</template>
</category>
<category>
<pattern>DEFINE ALUMINIUM</pattern>
<template>
Aluminium is a light silvery metal element.
</template>
</category>
<category>
<pattern>DEFINE ALVEOLUS</pattern>
<template>
An alveolus is a lung air sac where gas exchange with the blood occurs.
</template>
</category>
<category>
<pattern>DEFINE AMBIGUOUS</pattern>
<template>
Ambiguous means having two or more possible meanings.
</template>
</category>
<category>
<pattern>DEFINE AMENTACEAE</pattern>
<template>
Amentaceae is the family of trees and plants where the flowers are arranged in the form of catkins.
</template>
</category>
<category>
<pattern>DEFINE AMETHYST</pattern>
<template>
Amethyst is a precious stone.
</template>
</category>
<category>
<pattern>DEFINE AMMETER</pattern>
<template>
An ammeter is a device for measuring electrical current.
</template>
</category>
<category>
<pattern>DEFINE AMMONIA</pattern>
<template>
Ammonia is a colourless gas.
</template>
</category>
<category>
<pattern>DEFINE AMOEBA</pattern>
<template>
An amoeba is a primitive one cell animal.
</template>
</category>
<category>
<pattern>DEFINE AMPERE</pattern>
<template>
The ampere is the fundamental unit of measurement of electrical current.
</template>
</category>
<category>
<pattern>DEFINE AMPHETAMINE</pattern>
<template>
Amphetamine is a drug that induces sleeplessness.
</template>
</category>
<category>
<pattern>DEFINE AMPHITHEATRE</pattern>
<template>
An amphitheatre is a circular or ovular arena surrounded by tiers of seats.
</template>
</category>
<category>
<pattern>DEFINE ANAEMIA</pattern>
<template>
Anaemia is the medical condition of lacking red blood cells.
</template>
</category>
<category>
<pattern>DEFINE ANALGESIC</pattern>
<template>
An analgesic is a pain reliever.
</template>
</category>
<category>
<pattern>DEFINE ANARCHISM</pattern>
<template>
Anarchism is the theory that all forms of government interfere unjustly with individual liberty and
should be replaced by the voluntary association of cooperative groups. Also known as resistance,
sometimes by terrorism, to organized government.
</template>
</category>
<category>
<pattern>DEFINE ANARCHY</pattern>
<template>
<random>
<li>political disorder due to the absence of governmental authority.</li>
<li>Anarchy is the complete absence of government. Also seen as political disorder and violence
or lawlessness. Disorder in an sphere of activity.</li>
</random>
</template>
</category>
<category>
<pattern>DEFINE ANATOMY</pattern>
<template>
Anatomy is the study of animal's structure.
</template>
</category>
<category>
<pattern>DEFINE ANCHOR</pattern>
<template>
An anchor is a heavy implement used for securing boats at sea.
</template>
</category>
<category>
<pattern>DEFINE ANEMOMETER</pattern>
<template>
An anemometer is a device for measuring wind speed.
</template>
</category>
<category>
<pattern>DEFINE ANGER</pattern>
<template>
A strong billigerent emotion aroused by some real or supposed grievance.
</template>
</category>
<category>
<pattern>DEFINE ANGRY</pattern>
<template>
A strong billigerent emotion aroused by some real or supposed grievance.
</template>
</category>
<category>
<pattern>DEFINE ANIMAL</pattern>
<template>
<random>
<li>An animal is a form of living thing, excluding plants and fungus.</li>
<li>An animal is a living creature endowed with voluntary movement.</li>
</random>
</template>
</category>
<category>
<pattern>DEFINE ANIME</pattern>
<template>
Japanese animation.
</template>
</category>
<category>
<pattern>DEFINE ANKLE</pattern>
<template>
The ankle is the joint connecting the foot with the leg.
</template>
</category>
<category>
<pattern>DEFINE ANONYMOUS</pattern>
<template>
Having no name or identity.
</template>
</category>
<category>
<pattern>DEFINE ANT</pattern>
<template>
An ant is a small hymenopterous insect.
</template>
</category>
<category>
<pattern>DEFINE ANTENNA</pattern>
<template>
An antenna is a sensory organ found on the head of insects.
</template>
</category>
<category>
<pattern>DEFINE ANTHRAX</pattern>
<template>
Anthrax is a disease of sheep and cattle transmittable to humans.
</template>
</category>
<category>
<pattern>DEFINE ANTHROPOLOGY</pattern>
<template>
Anthropology is the study of humans as animals.
</template>
</category>
<category>
<pattern>DEFINE ANTIBIOTIC</pattern>
<template>
An antibiotic is a substance that inhibits the growth of micro organisms.
</template>
</category>
<category>
<pattern>DEFINE ANTIBODY</pattern>
<template>
An antibody is a bodily protein that inactivates infection.
</template>
</category>
<category>
<pattern>DEFINE ANTIDISESTABLISHMENTARIANISM</pattern>
<template>
It is the longest word in the English language.
</template>
</category>
<category>
<pattern>DEFINE ANTIDOTE</pattern>
<template>
An antidote is a drug used to counteract poison.
</template>
</category>
<category>
<pattern>DEFINE ANTIMATTER</pattern>
<template>
Fuel for Starships.
</template>
</category>
<category>
<pattern>DEFINE ANTIMONY</pattern>
<template>
Antimony is a metal element.
</template>
</category>
<category>