Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bot/alisochka/std-geography.aiml
blob: 69c7cdc00e7a0d31d82c0f78f988149524022c69 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
<?xml version="1.0" encoding="ISO-8859-1"?>

<aiml version="1.0.1" xmlns="http://alicebot.org/2001/AIML-1.0.1"
      xmlns:html="http://www.w3.org/1999/xhtml"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://alicebot.org/2001/AIML-1.0.1 http://aitools.org/aiml/schema/AIML.xsd">

<!-- 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 geographical information. -->


<category>
<pattern>DEFINE ABAKAN</pattern>
<template>
<condition>
<li name="search" value="what">Abakan is a town in East Siberia.</li>
<li name="search" value="capital">Abakan is a town.</li>
<li name="search" value="where">Abakan is in East Siberia.</li>
<li>Abakan is a town in East Siberia.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE ABERDEEN</pattern>
<template>
<condition>
<li name="search" value="what">Aberdeen is a city on the east coast of Scotland in the region of Grampian.</li>
<li name="search" value="capital">Aberdeen is a city.</li>
<li name="search" value="where">Aberdeen is on the east coast of Scotland in the region of Grampian.</li>
<li>Aberdeen is a city on the east coast of Scotland in the region of Grampian.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE ABERFAN</pattern>
<template>
Aberfan is a town in Wales.
</template>
</category>

<category>
<pattern>DEFINE ACADIA</pattern>
<template>
Acadia is the old name of Nova Scotia.
</template>
</category>

<category>
<pattern>DEFINE ACAPULCO</pattern>
<template>
Acapulco is a city on the Pacific coast of Mexico.
</template>
</category>

<category>
<pattern>DEFINE ACCRA</pattern>
<template>
Accra is the capital of Ghana.
</template>
</category>

<category>
<pattern>DEFINE ADDIS ABABA</pattern>
<template>
Addis Ababa is the capital of Ethiopia.
</template>
</category>

<category>
<pattern>DEFINE ADELAIDE</pattern>
<template>
ADELAIDE is a city in southern Australia.
</template>
</category>

<category>
<pattern>DEFINE ADELIE LAND</pattern>
<template>
Adelie land is a French owned part of Antarctica.
</template>
</category>

<category>
<pattern>DEFINE ADEN</pattern>
<template>
Aden is a country in south west Arabia.
</template>
</category>

<category>
<pattern>DEFINE ADRIATIC SEA</pattern>
<template>
The Adriatic sea is the Mediterranean sea between Italy and the Balkans.
</template>
</category>

<category>
<pattern>DEFINE AFGHANISTAN</pattern>
<template>
Afghanistan is a republic in south west Asia.
</template>
</category>

<category>
<pattern>DEFINE AFRICA</pattern>
<template>
<random>
<li>Africa is a large continent.</li>
<li>A continent of the eastern hemisphere South of the Mediterranean &amp; adjoining Asia on
NE.</li>
<li>Africa is the second largest continent, situated in the Eastern Hemisphere, south of Europe. It
is 11,677,000 square miles.</li>
</random>
</template>
</category>

<category>
<pattern>DEFINE AFRIKAANS</pattern>
<template>
Afrikaans is a language used in the republic of south Africa.
</template>
</category>

<category>
<pattern>DEFINE AGINCOURT</pattern>
<template>
Agincourt is a village in north west France where Henry V defeated the french army in 1415.
</template>
</category>

<category>
<pattern>DEFINE AGRA</pattern>
<template>
Agra is a town in Uttar Pradesh.
</template>
</category>

<category>
<pattern>DEFINE AJANTA</pattern>
<template>
Ajanta is a village in south central India.
</template>
</category>

<category>
<pattern>DEFINE ALABAMA</pattern>
<template>
<condition>
<li name="search" value="what">Alabama is a southern state between Mississippi and Georgia.</li>
<li name="search" value="capital">???.</li>
<li name="search" value="where">Alabama is between Mississippi and Georgia.</li>
<li>Alabama is a southern state between Mississippi and Georgia.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE ALAMEIN</pattern>
<template>
Alamein is a place in north east Egypt where axis forces were defeated in 1942 by the allies.
</template>
</category>

<category>
<pattern>DEFINE ALAMO</pattern>
<template>
ALAMO is in San Antonio, Texas.
</template>
</category>

<category>
<pattern>DEFINE ALASKA</pattern>
<template>
<condition>
<li name="search" value="what">Alaska is in the northwest corner of North America, between Russia and Canada.</li>
<li name="search" value="capital">???.</li>
<li name="search" value="where">Alaska is in the northwest corner of North America, between Russia and Canada.</li>
<li>Alaska is in the northwest corner of North America, between Russia and Canada.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE ALBANIA</pattern>
<template>
<condition>
<li name="search" value="what">Albania is a country, bordering Greece and the former Yugoslavia.</li>
<li name="search" value="capital">The capital of Albania is Tirana.</li>
<li name="search" value="where">Albania is on the Adriatic sea, bordering Greece and the former Yugoslavia.</li>
<li>Albania is on the Adriatic sea, bordering Greece and the former Yugoslavia.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE ALBERTA</pattern>
<template>
Alberta is the western prairie province of Canada.
</template>
</category>

<category>
<pattern>DEFINE ALBUQUERQUE</pattern>
<template>
ALBUQUERQUE is a city in New Mexico.
</template>
</category>

<category>
<pattern>DEFINE ALDERSHOT</pattern>
<template>
Aldershot is a town in Hampshire and home of the British army.
</template>
</category>

<category>
<pattern>DEFINE ALETTSCH</pattern>
<template>
The Alettsch is a 10 mile long glacier in the Alps.
</template>
</category>

<category>
<pattern>DEFINE ALEXANDRIA</pattern>
<template>
Alexandria is a city and seaport of Egypt.
</template>
</category>

<category>
<pattern>DEFINE ALGERIA</pattern>
<template>
Algeria is a republic in North Africa.
</template>
</category>

<category>
<pattern>DEFINE ALGIERS</pattern>
<template>
Algiers is the capital of Algeria.
</template>
</category>

<category>
<pattern>DEFINE ALTAI</pattern>
<template>
The Altai is a mountain range in west Siberia and Mongolia.
</template>
</category>

<category>
<pattern>DEFINE AMAZON</pattern>
<template>
The Amazon is a major river in South America.
</template>
</category>

<category>
<pattern>DEFINE AMERICA</pattern>
<template>
America is a large continent in the western hemisphere.
</template>
</category>

<category>
<pattern>DEFINE AMSTERDAM</pattern>
<template>
Amsterdam is a city in Holland.  Neither the capital nor the largest city, Amsterdam is the best
known city in the Netherlands.
</template>
</category>

<category>
<pattern>DEFINE ANDHRA PRADESH</pattern>
<template>
Andhra pradesh is a state in East India.
</template>
</category>

<category>
<pattern>DEFINE ANGOLA</pattern>
<template>
Angola is a country in West Africa.
</template>
</category>

<category>
<pattern>DEFINE ANHUI</pattern>
<template>
Anhui is a province in East China.
</template>
</category>

<category>
<pattern>DEFINE ANKARA</pattern>
<template>
Ankara is the capital of Turkey.
</template>
</category>

<category>
<pattern>DEFINE ANTARCTIC</pattern>
<template>
The antarctic is the south polar continent.
</template>
</category>

<category>
<pattern>DEFINE ARABIA</pattern>
<template>
Arabia is a country in South West Asia comprised of independent states.
</template>
</category>

<category>
<pattern>DEFINE ARCTIC</pattern>
<template>
The Arctic is the north polar region.
</template>
</category>

<category>
<pattern>DEFINE ARCTIC OCEAN</pattern>
<template>
The Arctic Ocean is the sea north of Europe, America and Asia.
</template>
</category>

<category>
<pattern>DEFINE ARDECHE</pattern>
<template>
The Ardeche is a river in south east France.
</template>
</category>

<category>
<pattern>DEFINE ARGENTINA</pattern>
<template>
<condition>
<li name="search" value="what">Argentina is a country in South America.</li>
<li name="search" value="capital">Buenos Aries.</li>
<li name="search" value="where">Argentina is a country in South America.</li>
<li>Argentina is a country in South America.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE ARIZONA</pattern>
<template>
<condition>
<li name="search" value="what">Arizona is a state in USA.</li>
<li name="search" value="capital">???.</li>
<li name="search" value="where">Arizona is in the south western United States, bordering California, Nevada, Utah and New Mexico.</li>
<li>Arizona is in the south western United States, bordering California, Nevada, Utah and New Mexico.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE ARKANSAS</pattern>
<template>
<condition>
<li name="search" value="what">Arkansas is a state in USA.</li>
<li name="search" value="capital">???.</li>
<li name="search" value="where">Arkansas is on the west bank of the Missisipi river.</li>
<li>Arkansas is a southern State on the west bank of the Missisipi river.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE ARMENIA</pattern>
<template>
Armenia is a republic in East Europe.
</template>
</category>

<category>
<pattern>DEFINE ARUBA</pattern>
<template>
ARUBA is an island in the Netherlands Antilles, near South America.
</template>
</category>

<category>
<pattern>DEFINE ASCOT</pattern>
<template>
Ascot is a town in Berkshire.
</template>
</category>

<category>
<pattern>DEFINE ASIA</pattern>
<template>
Asia is the largest continent.
</template>
</category>

<category>
<pattern>DEFINE ASSYRIA</pattern>
<template>
<condition>
<li name="search" value="what">???.</li>
<li name="search" value="capital">Is it Babylon?</li>
<li name="search" value="where">???.</li>
<li>???.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE ATHENS</pattern>
<template>
Athens is the capital city of Greece.
</template>
</category>

<category>
<pattern>DEFINE ATLANTIC OCEAN</pattern>
<template>
The Atlantic Ocean is the sea to the west of Europe and east of America.
</template>
</category>

<category>
<pattern>DEFINE ATLANTIS</pattern>
<template>
Atlantis may never have existed.
</template>
</category>

<category>
<pattern>DEFINE AUCKLAND</pattern>
<template>
Auckland is a city and seaport of New Zealand.
</template>
</category>

<category>
<pattern>DEFINE AUSCHWITZ</pattern>
<template>
Is a city in S Poland with a population of 45,000. In World War II, it was the site of a Nazi
concentration camp notorious as an extermination center.
</template>
</category>

<category>
<pattern>DEFINE AUSTIN</pattern>
<template>
Austin is a city in Texas.
</template>
</category>

<category>
<pattern>DEFINE AUSTRALASIA</pattern>
<template>
Australasia is the countries of Australia, New Zealand etc.
</template>
</category>

<category>
<pattern>DEFINE AUSTRALIA</pattern>
<template>
<condition>
<li name="search" value="what">Australia is a large island-continent in the southern hemishphere.</li>
<li name="search" value="capital">The capital of Australia is Sydney, I think.</li>
<li name="search" value="where">Australia is a large island-continent in the southern hemishphere.</li>
<li>Australia is a large island-continent in the southern hemishphere.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE AUSTRIA</pattern>
<template>
<condition>
<li name="search" value="what">Austria is a country.</li>
<li name="search" value="capital">The capital of Austria is Vienna.</li>
<li name="search" value="where">Austria is in Central Europe.</li>
<li>Austria is a republic in Central Europe.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE BAGHDAD</pattern>
<template>
Baghdad is the capital city of Iraq.
</template>
</category>

<category>
<pattern>DEFINE BAHRAIN</pattern>
<template>
Bahrain is a country composed of a group of islands in the Arabian gulf.
</template>
</category>

<category>
<pattern>DEFINE BANGKOK</pattern>
<template>
Bangkok is the capital city of Thailand.
</template>
</category>

<category>
<pattern>DEFINE BANGLADESH</pattern>
<template>
BANGLADESH is part of the Indian subcontinent, on the eastern side.
</template>
</category>

<category>
<pattern>DEFINE BARCELONA</pattern>
<template>
Barcelona is a city and sea port in Spain.
</template>
</category>

<category>
<pattern>DEFINE BATH</pattern>
<template>
Bath is a city in England.
</template>
</category>

<category>
<pattern>DEFINE BELARUS</pattern>
<template>
<condition>
<li name="search" value="what">???.</li>
<li name="search" value="capital">The capital of Belarus is Minsk.</li>
<li name="search" value="where">???.</li>
<li>???.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE BELFAST</pattern>
<template>
Belfast is the capital of Northern Ireland.
</template>
</category>

<category>
<pattern>DEFINE BELGIUM</pattern>
<template>
A kingdom in W. Europe, on the North Sea, its independence was established in 1831. It is
11,792 square miles with a population of 9,868,000.
Belgium is a country in western Europe, between France, Germany and Holland.
</template>
</category>

<category>
<pattern>DEFINE BELGRADE</pattern>
<template>
Belgrade is the capital of Yugoslavia.
</template>
</category>

<category>
<pattern>DEFINE BENGAL</pattern>
<template>
Bengal is a province in India.
</template>
</category>

<category>
<pattern>DEFINE BENIN</pattern>
<template>
Benin is a province in west Africa.
</template>
</category>

<category>
<pattern>DEFINE BERGEN</pattern>
<template>
Bergen is a seaport and city in Norway.
BERGEN is a city in Germany and also in Norway.
</template>
</category>

<category>
<pattern>DEFINE BERING SEA</pattern>
<template>
The bering sea is the northern part of the Pacific Ocean.
</template>
</category>

<category>
<pattern>DEFINE BERKELEY</pattern>
<template>
BERKELEY is in northern California, across the bay from San Francisco.
</template>
</category>

<category>
<pattern>DEFINE BERKSHIRE</pattern>
<template>
Berkshire is a county of southern England.
</template>
</category>

<category>
<pattern>DEFINE BERLIN</pattern>
<template>
Berlin is a large city in Germany.
</template>
</category>

<category>
<pattern>DEFINE BETHLEHEM</pattern>
<template>
Bethlehem, Pennsylvania is located in the northeastern area of the state, about 90 miles from
Philadelphia.
</template>
</category>

<category>
<pattern>DEFINE BHUTAN</pattern>
<template>
Bhutan is a state in India.
</template>
</category>

<category>
<pattern>DEFINE BILBAO</pattern>
<template>
BILBAO is a city on the north coast of Spain.
</template>
</category>

<category>
<pattern>DEFINE BIRMINGHAM</pattern>
<template>
Birmingham is a city in the English midlands.
</template>
</category>

<category>
<pattern>DEFINE BLOIS</pattern>
<template>
Blois is a city in France on the right bank of the loire river.
</template>
</category>

<category>
<pattern>DEFINE BOGOTA</pattern>
<template>
Bogota is the capital of Columbia.
</template>
</category>

<category>
<pattern>DEFINE BOHEMIA</pattern>
<template>
Bohemia is the western area of Czechoslovakia.
</template>
</category>

<category>
<pattern>DEFINE BOLIVIA</pattern>
<template>
BOLIVIA is a land-locked country in South America,
</template>
</category>

<category>
<pattern>DEFINE BOMBAY</pattern>
<template>
Bombay is a city and seaport in India.
</template>
</category>

<category>
<pattern>DEFINE BORNEO</pattern>
<template>
BORNEO is an island in Asia, divided between Maylasia and Indonesia.
</template>
</category>

<category>
<pattern>DEFINE BOSNIA</pattern>
<template>
Bosnia is a country in south east Europe.
</template>
</category>

<category>
<pattern>DEFINE BOSTON</pattern>
<template>
Boston is the capital of Massachusetts.
</template>
</category>

<category>
<pattern>DEFINE BRAZIL</pattern>
<template>
<condition>
<li name="search" value="what">Brazil is a country in South America.</li>
<li name="search" value="capital">I think the capital of Brazil is called "Brasilia".</li>
<li name="search" value="where">Brazil is in South America.</li>
<li>Brazil is the largest country in South America.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE BRENNER PASS</pattern>
<template>
The brenner pass is the lowest pass over the Alps.
</template>
</category>

<category>
<pattern>DEFINE BRISBANE</pattern>
<template>
Brisbane is the capital of Queensland in Australia.
</template>
</category>

<category>
<pattern>DEFINE BRISTOL</pattern>
<template>
BRISTOL is a city on the west coast of England.
</template>
</category>

<category>
<pattern>DEFINE BRITAIN</pattern>
<template>
Britain is the collective name for England, Scotland, Wales and Northern Ireland.
</template>
</category>

<category>
<pattern>DEFINE BRUSSELS</pattern>
<template>
Brussels is a city in Belgium.
</template>
</category>

<category>
<pattern>DEFINE BUCHAREST</pattern>
<template>
Bucharest is the capital of Romania.
</template>
</category>

<category>
<pattern>DEFINE BUDAPEST</pattern>
<template>
Budapest is the capital city of Hungary.
BUDAPEST is a city in Hungary, on the Danube river.
</template>
</category>

<category>
<pattern>DEFINE BULGARIA</pattern>
<template>
<condition>
<li name="search" value="what">A country in SE Europe, on the Black Sea.</li>
<li name="search" value="capital">The capital of Bulgaria is Sofia.</li>
<li name="search" value="where">In SE Europe, on the Black Sea.</li>
<li>A country in SE Europe, on the Black Sea. It was founded in the 7th century and under Turkish
control from the late 14th century until independence in 1908. It is 42,823 square miles with a
population of 8,990,000.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE BURGUNDY</pattern>
<template>
Burgundy is a region in east France.
</template>
</category>

<category>
<pattern>DEFINE BURMA</pattern>
<template>
Burma is a country in asia south of Tibet.
</template>
</category>

<category>
<pattern>DEFINE BURUNDI</pattern>
<template>
Burundi is a country in east Africa.
</template>
</category>

<category>
<pattern>DEFINE CADIZ</pattern>
<template>
Cadiz is a city and seaport in Spain.
</template>
</category>

<category>
<pattern>DEFINE CAIRO</pattern>
<template>
Cairo is the capital city of Egypt.
</template>
</category>

<category>
<pattern>DEFINE CALAIS</pattern>
<template>
Calais is a seaport in France.
</template>
</category>

<category>
<pattern>DEFINE CALCUTTA</pattern>
<template>
Calcutta is a city in India in the province of Bengal.
</template>
</category>

<category>
<pattern>DEFINE CALGARY</pattern>
<template>
Calgary is a city in Alberta, Canada.
</template>
</category>

<category>
<pattern>DEFINE CALIFORNIA</pattern>
<template>
<condition>
<li name="search" value="what">California is a state of the SW U.S., on the Pacific coast. It was admitted in 1850.</li>
<li name="search" value="capital">The capital of California is Sacramento.</li>
<li name="search" value="where">California is a state in the western USA.</li>
<li>California is a state in the west USA.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE CAMBODIA</pattern>
<template>
Cambodia is a country in the far east.
</template>
</category>

<category>
<pattern>DEFINE CAMBRIDGE</pattern>
<template>
CAMBRIDGE is a city in Massachusetts, also in England.
</template>
</category>

<category>
<pattern>DEFINE CAMBRIDGESHIRE</pattern>
<template>
Cambridgeshire is a county in east England.
</template>
</category>

<category>
<pattern>DEFINE CAMEROON</pattern>
<template>
Cameroon is a country in west Africa.
</template>
</category>

<category>
<pattern>DEFINE CANADA</pattern>
<template>
<condition>
<think><set name="it">Canada</set></think>
<li name="search" value="what">Canada is a large nation.</li>
<li name="search" value="capital">Ottawa.</li>
<li name="search" value="where">Canada is on the North American continent.</li>
<li>Canada is a large nation occupying much of the North American continent.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE CANBERRA</pattern>
<template>
CANBERRA is a city in Australia, between Sydney and Melbourne.
Canberra is a territory in Australia.
</template>
</category>

<category>
<pattern>DEFINE CANTON</pattern>
<template>
A canton is a territorial division of Switzerland.
</template>
</category>

<category>
<pattern>DEFINE CAPE TOWN</pattern>
<template>
Cape town is a city and seaport in South Africa.
</template>
</category>

<category>
<pattern>DEFINE CAPE VERDE</pattern>
<template>
Cape Verde is a group of 14 volcanic islands in the Atlantic Ocean.
</template>
</category>

<category>
<pattern>DEFINE CARACAS</pattern>
<template>
Caracas is the capital of Venezuela.
</template>
</category>

<category>
<pattern>DEFINE CARIBBEAN</pattern>
<template>
The caribbean is the sea north of South America and east of Central America.
</template>
</category>

<category>
<pattern>DEFINE CARTHAGE</pattern>
<template>
CARTHAGE is the ancient name for Tunisia.
</template>
</category>

<category>
<pattern>DEFINE CAYENNE</pattern>
<template>
Cayenne is the capital of French Guiana.
</template>
</category>

<category>
<pattern>DEFINE CENTRAL AMERICA</pattern>
<template>
Central america is the isthmus connecting North and South America.
</template>
</category>

<category>
<pattern>DEFINE CEUTA</pattern>
<template>
Ceuta is a coastal town in morocco but owned by Spain.
</template>
</category>

<category>
<pattern>DEFINE CHAMPAGNE</pattern>
<template>
Champagne is a region of France famed for its sparkling wine.
</template>
</category>

<category>
<pattern>DEFINE CHARLOTTE</pattern>
<template>
CHARLOTTE is in North Carolina.
</template>
</category>

<category>
<pattern>DEFINE CHESHIRE</pattern>
<template>
Cheshire is a county in north west England.
</template>
</category>

<category>
<pattern>DEFINE CHICAGO</pattern>
<template>
Chicago is a large city in Illinois on Lake Michigan.
</template>
</category>

<category>
<pattern>DEFINE CHILE</pattern>
<template>
Chile is a country in west South America.
</template>
</category>

<category>
<pattern>DEFINE CHINA</pattern>
<template>
<condition>
<li name="search" value="what">China is a country.</li>
<li name="search" value="capital">Some people call it "Beijing", others "Peking".</li>
<li name="search" value="where">China is in east Asia.</li>
<li>China is a country in east Asia.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE CHINA SEA</pattern>
<template>
The China Sea is a western division of the Pacific Ocean.
</template>
</category>

<category>
<pattern>DEFINE CINCINNATI</pattern>
<template>
CINCINNATI is a large city in Ohio.
</template>
</category>

<category>
<pattern>DEFINE COLOMBIA</pattern>
<template>
Colombia is a country in South America.
</template>
</category>

<category>
<pattern>DEFINE COLOMBO</pattern>
<template>
Colombo is the capital city of Sri Lanka.
</template>
</category>

<category>
<pattern>DEFINE COLORADO</pattern>
<template>
<condition>
<li name="search" value="what">Colorado is a state of the USA.</li>
<li name="search" value="capital">Isn't it Denvner?</li>
<li name="search" value="where">Colorado is in west central USA.</li>
<li>Colorado is a west central state of the USA.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE COLUMBUS</pattern>
<template>
COLUMBUS is a city in Ohio.
</template>
</category>

<category>
<pattern>DEFINE CONGO</pattern>
<template>
The congo is a republic in west central Africa.
</template>
</category>

<category>
<pattern>DEFINE CONNECTICUT</pattern>
<template>
CONNECTICUT is a New England state between New York, Massaschusetts and Rhode Island.
</template>
</category>

<category>
<pattern>DEFINE CONSTANTINOPLE</pattern>
<template>
Constantinople is the former name of Istanbul.
</template>
</category>

<category>
<pattern>DEFINE COOK STRAIT</pattern>
<template>
The Cook Strait is the water separating north and south New Zealand.
</template>
</category>

<category>
<pattern>DEFINE COPENHAGEN</pattern>
<template>
<random>
<li>Is the capital of Denmark. Seaport on the east coast of Zealand. Its population is 633,00.</li>
</random>
</template>
</category>

<category>
<pattern>DEFINE CORNWALL</pattern>
<template>
Cornwall is a county in south west England.
</template>
</category>

<category>
<pattern>DEFINE CORONA</pattern>
<template>
CORONA is a suburb of Los Angeles.
</template>
</category>

<category>
<pattern>DEFINE COSTA RICA</pattern>
<template>
Costa rica is a republic in Central America.
</template>
</category>

<category>
<pattern>DEFINE CRETE</pattern>
<template>
Crete is the largest Greek island.
</template>
</category>

<category>
<pattern>DEFINE CRIMEA</pattern>
<template>
The crimea is the north peninsular region of the Ukraine.
</template>
</category>

<category>
<pattern>DEFINE CROATIA</pattern>
<template>
CROATIA is part of the former Yugoslavia, also bordering on Hungary.
</template>
</category>

<category>
<pattern>DEFINE CUBA</pattern>
<template>
Cuba is a large island in the Caribbean off the south coast of Florida.
</template>
</category>

<category>
<pattern>DEFINE CUMBRIA</pattern>
<template>
Cumbria is a county in north west England.
</template>
</category>

<category>
<pattern>DEFINE CUPERTINO</pattern>
<template>
CUPERTINO is in Silicon Valley.
</template>
</category>

<category>
<pattern>DEFINE CZECHOSLOVAKIA</pattern>
<template>
Czechoslovakia is a land locked country in east central europe.
</template>
</category>

<category>
<pattern>DEFINE DAKAR</pattern>
<template>
Dakar is the capital of Senegal.
</template>
</category>

<category>
<pattern>DEFINE DALLAS</pattern>
<template>
DALLAS is a large city in Texas.
</template>
</category>

<category>
<pattern>DEFINE DAMASCUS</pattern>
<template>
Damascus is the capital of Syria.
</template>
</category>

<category>
<pattern>DEFINE DANUBE</pattern>
<template>
The danube is the 2nd longest river in Europe.
</template>
</category>

<category>
<pattern>DEFINE DAR ES SALAAM</pattern>
<template>
Dar es Salaam is the capital of Tanzania.
</template>
</category>

<category>
<pattern>DEFINE DARWIN</pattern>
<template>
Darwin is the capital of the northern territory in Australia.
</template>
</category>

<category>
<pattern>DEFINE DEAD SEA</pattern>
<template>
The dead sea is a large lake partly in Israel and partly in Jordan.
</template>
</category>

<category>
<pattern>DEFINE DEATH VALLEY</pattern>
<template>
Death valley is a 140 mile long depression in south east California.
</template>
</category>

<category>
<pattern>DEFINE DELAWARE</pattern>
<template>
Delaware is a state in north east USA.
</template>
</category>

<category>
<pattern>DEFINE DELHI</pattern>
<template>
DELHI is a large city in India.
</template>
</category>

<category>
<pattern>DEFINE DENMARK</pattern>
<template>
<condition>
<li name="search" value="what">A country in Europe.</li>
<li name="search" value="capital">Copenhagen.</li>
<li name="search" value="where">Denmark is in western Europe, between Germany and Norway.</li>
<li>A country in Europe, occuping most of the peninsula of Jutland and several nearby islands in the
North and Baltic seas. It is 16,632 square miles with a population of 5,124,000.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE DENVER</pattern>
<template>
Denver is a city in Colorado.
</template>
</category>

<category>
<pattern>DEFINE DERBYSHIRE</pattern>
<template>
Derbyshire is a county in north central england.
</template>
</category>

<category>
<pattern>DEFINE DEVON</pattern>
<template>
Devon is a county in south west England.
</template>
</category>

<category>
<pattern>DEFINE DHAKA</pattern>
<template>
Dhaka is the capital of Bangladesh.
</template>
</category>

<category>
<pattern>DEFINE DJIBOUTI</pattern>
<template>
Djibouti is a republic in Arabia.
</template>
</category>

<category>
<pattern>DEFINE DOHA</pattern>
<template>
Doha is the capital of Qatar.
</template>
</category>

<category>
<pattern>DEFINE DOMINICAN REPUBLIC</pattern>
<template>
The dominican republic is a country in the east of the Island Hispaniola.
</template>
</category>

<category>
<pattern>DEFINE DON</pattern>
<template>
The don is a river in Russia.
</template>
</category>

<category>
<pattern>DEFINE DORDOGNE</pattern>
<template>
The dordogne is a river in south west France.
</template>
</category>

<category>
<pattern>DEFINE DORSET</pattern>
<template>
Dorset is a county in south west England.
</template>
</category>

<category>
<pattern>DEFINE DOUGLAS</pattern>
<template>
Douglas is the capital of the Isle of Man.
</template>
</category>

<category>
<pattern>DEFINE DRESDEN</pattern>
<template>
Dresden is a city in Germany, it was razed to the ground by allied bombing.
</template>
</category>

<category>
<pattern>DEFINE DUNKIRK</pattern>
<template>
Dunkirk is a town and port in north France.
</template>
</category>

<category>
<pattern>DEFINE DURBAN</pattern>
<template>
Durban is the principle seaport of Natal.
</template>
</category>

<category>
<pattern>DEFINE DURHAM</pattern>
<template>
Durham is a county in north east England.
</template>
</category>

<category>
<pattern>DEFINE DUSSELDORF</pattern>
<template>
DUSSELDORF is a large city in western Germany.
</template>
</category>

<category>
<pattern>DEFINE DYFED</pattern>
<template>
Dyfed is a county in South West Wales.
</template>
</category>

<category>
<pattern>DEFINE EAST ANGLIA</pattern>
<template>
East anglia is a region in east England.
</template>
</category>

<category>
<pattern>DEFINE EAST SUSSEX</pattern>
<template>
East sussex is a county in south east England.
</template>
</category>

<category>
<pattern>DEFINE ECUADOR</pattern>
<template>
Ecuador is a republic in south America.
</template>
</category>

<category>
<pattern>DEFINE EDINBURGH</pattern>
<template>
Edinburgh is the capital of Scotland.
</template>
</category>

<category>
<pattern>DEFINE EDMONTON</pattern>
<template>
Edmonton is the capital of Alberta.
</template>
</category>

<category>
<pattern>DEFINE EGYPT</pattern>
<template>
EGYPT is a country in north east Africa.
</template>
</category>

<category>
<pattern>DEFINE EL SALVADOR</pattern>
<template>
El salvador is a republic in central America.
</template>
</category>

<category>
<pattern>DEFINE ENGLAND</pattern>
<template>
<condition>
<li name="search" value="what">England is located on a small island off the coast of Europe.</li>
<li name="search" value="capital">London.</li>
<li name="search" value="where">England is located on a small island off the coast of Europe.</li>
<li>England is located on a small island off the coast of Europe.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE ENTEBBE</pattern>
<template>
Entebbe is a town in Uganda.
</template>
</category>

<category>
<pattern>DEFINE EQUATORIAL GUINEA</pattern>
<template>
Equatorial guinea is a republic in west central Africa.
</template>
</category>

<category>
<pattern>DEFINE ERITREA</pattern>
<template>
Eritrea is a province in north Ethiopia.
</template>
</category>

<category>
<pattern>DEFINE ESSEX</pattern>
<template>
Essex is a county in south east England.
</template>
</category>

<category>
<pattern>DEFINE ESTONIA</pattern>
<template>
Estonia is a country in east Europe.
</template>
</category>

<category>
<pattern>DEFINE ETHIOPIA</pattern>
<template>
Ethiopia is a country in north east Africa.
</template>
</category>

<category>
<pattern>DEFINE ETNA</pattern>
<template>
Etna is a volcano on the east coast of Sicily.
</template>
</category>

<category>
<pattern>DEFINE EUROPE</pattern>
<template>
Europe is a continent west of the ural mountains and east of the Atlantic.
</template>
</category>

<category>
<pattern>DEFINE FIJI</pattern>
<template>
Fiji is a group of 322 islands in the south west Pacific.
</template>
</category>

<category>
<pattern>DEFINE FINLAND</pattern>
<template>
<condition>
<li name="search" value="what">A country in N Europe.</li>
<li name="search" value="capital">The capital of Finland is Helsinki.</li>
<li name="search" value="where">Finland is in eastern europe, bordering Sweden and Russia.</li>
<li>A country in N Europe, northeast of the Baltic Sea. It is 130,119 square miles with a population 5,099,000.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE FLORENCE</pattern>
<template>
Florence is the capital of Tuscany.
</template>
</category>

<category>
<pattern>DEFINE FLORIDA</pattern>
<template>
<condition>
<li name="search" value="what">Florida is a state in the USA.</li>
<li name="search" value="capital">The capital of Florida is Tallahassee.</li>
<li name="search" value="where">Florida is in the southeast United States, extending on a large peninsula.</li>
<li>Florida is a state in the south eastern corner of the USA.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE FRANCE</pattern>
<template>
<condition>
<li name="search" value="what">France is a republic in west Europe.</li>
<li name="search" value="capital">Paris.</li>
<li name="search" value="where">France is a country in western Europe, bordering Spain, Italy, Switzerland, Germany, and Belgium.</li>
<li>France is a republic in west Europe.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE FRANKFURT</pattern>
<template>
FRANKFURT is a large city in western Germany.
</template>
</category>

<category>
<pattern>DEFINE FREETOWN</pattern>
<template>
<condition>
<li name="search" value="what">Freetown is the capital of Sierra Leone.</li>
<li name="search" value="capital">Freetown is the capital of Sierra Leone.</li>
<li name="search" value="where">Freetown is in Sierra Leone.</li>
<li>France is a republic in west Europe.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE FRENCH GUIANA</pattern>
<template>
French guiana is a country on the north coast of South America.
</template>
</category>

<category>
<pattern>DEFINE FRENCH POLYNESIA</pattern>
<template>
French polynesia is a territory in the South Pacific.
</template>
</category>

<category>
<pattern>DEFINE FRESNO</pattern>
<template>
Fresno is a small city in California.
</template>
</category>

<category>
<pattern>DEFINE GAMBIA</pattern>
<template>
Gambia is a country in west africa.
</template>
</category>

<category>
<pattern>DEFINE GANSU</pattern>
<template>
Gansu is a province of north west china.
</template>
</category>

<category>
<pattern>DEFINE GENEVA</pattern>
<template>
Geneva is a town in switzerland.
</template>
</category>

<category>
<pattern>DEFINE GEORGIA</pattern>
<template>
<condition>
<li name="search" value="what">Georgia is a southern state in the USA.
Georgia is a country in east europe.</li>
<li name="search" value="capital">I would say it is Atlanta.</li>
<li name="search" value="where">The state, on the Atlantic ocean, north of Florida. The country in east europe</li>
<li>Georgia is a southern state, on the Atlantic ocean, north of Florida.
Georgia is a country in east europe.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE GERMANY</pattern>
<template>
<condition>
<li name="search" value="what">Germany is a country in central europe.</li>
<li name="search" value="capital">Berlin.</li>
<li name="search" value="where">Germany is in central europe.</li>
<li>Germany is a country in central europe.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE GHANA</pattern>
<template>
Ghana is a country in west africa.
</template>
</category>

<category>
<pattern>DEFINE GOBI</pattern>
<template>
The gobi is a desert partly in china and mongolia.
</template>
</category>

<category>
<pattern>DEFINE GOTEBORG</pattern>
<template>
Goteborg is a port and industrial city in west sweden.
</template>
</category>

<category>
<pattern>DEFINE GRAMPIAN</pattern>
<template>
Grampian is a region of scotland.
</template>
</category>

<category>
<pattern>DEFINE GRAND CANYON</pattern>
<template>
The grand canyon is a vast gorge in arizona.
</template>
</category>

<category>
<pattern>DEFINE GREECE</pattern>
<template>
<condition>
<li name="search" value="what">Greece is a country and island group.</li>
<li name="search" value="capital">Athens.</li>
<li name="search" value="where">Greece is a country and island group in south east europe.</li>
<li>A country in the South Balkan Peninsula, including many islands in the Aegean, Ionian, and
Mediterranean seas. It is 50,949 square miles with a population of 9,900,000.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE GREENLAND</pattern>
<template>
Greenland is the world's largest island.
</template>
</category>

<category>
<pattern>DEFINE GUADALCANAL</pattern>
<template>
Guadalcanal is the largest of the solomon islands.
</template>
</category>

<category>
<pattern>DEFINE GUAM</pattern>
<template>
Guam is the largest of the mariana islands.
</template>
</category>

<category>
<pattern>DEFINE GUANGDONG</pattern>
<template>
Guangdong is a province in south china.
</template>
</category>

<category>
<pattern>DEFINE GUANGXI</pattern>
<template>
Guangxi is a region in south china.
</template>
</category>

<category>
<pattern>DEFINE GUANGZHOU</pattern>
<template>
Guangzhou is the capital of guangdong.
</template>
</category>

<category>
<pattern>DEFINE GUATEMALA</pattern>
<template>
Guatamala is a country in central America.
</template>
</category>

<category>
<pattern>DEFINE GUATEMALA CITY</pattern>
<template>
Guatemala city is the capital of guatemala.
</template>
</category>

<category>
<pattern>DEFINE GUINEA</pattern>
<template>
Guinea is a republic in west africa.
</template>
</category>

<category>
<pattern>DEFINE GUINEA BISSAU</pattern>
<template>
Guinea bissau is a republic in west africa.
</template>
</category>

<category>
<pattern>DEFINE GUJARAT</pattern>
<template>
Gujarat is a state in west india.
</template>
</category>

<category>
<pattern>DEFINE GUYANA</pattern>
<template>
Guyana is a republic in south america.
</template>
</category>

<category>
<pattern>DEFINE GWENT</pattern>
<template>
Gwent is a county in south wales.
</template>
</category>

<category>
<pattern>DEFINE GWYNEDD</pattern>
<template>
Gwynedd is a county in north west wales.
</template>
</category>

<category>
<pattern>DEFINE HAIFA</pattern>
<template>
Haifa is a port in north east Israel.
</template>
</category>

<category>
<pattern>DEFINE HAITI</pattern>
<template>
Haiti is a republic in the west of the island of Hispaniola.
</template>
</category>

<category>
<pattern>DEFINE HALIFAX</pattern>
<template>
Halifax is the capital of Nova Scotia in Canada.
</template>
</category>

<category>
<pattern>DEFINE HAMBURG</pattern>
<template>
HAMBURG is a large city in western Germany.
</template>
</category>

<category>
<pattern>DEFINE HAMILTON</pattern>
<template>
Hamilton is the capital of Bermuda.
</template>
</category>

<category>
<pattern>DEFINE HAMPSHIRE</pattern>
<template>
Hampshire is a county in south England.
</template>
</category>

<category>
<pattern>DEFINE HANOI</pattern>
<template>
Hanoi is the capital of Vietnam.
</template>
</category>

<category>
<pattern>DEFINE HARARE</pattern>
<template>
Harare is the capital of Zimbabwe.
</template>
</category>

<category>
<pattern>DEFINE HARYANA</pattern>
<template>
Haryana is a state in north west India.
</template>
</category>

<category>
<pattern>DEFINE HASTINGS</pattern>
<template>
Hastings is a sea town in Sussex.
</template>
</category>

<category>
<pattern>DEFINE HAVANA</pattern>
<template>
Havana is the capital of Cuba.
</template>
</category>

<category>
<pattern>DEFINE HAWAII</pattern>
<template>
Hawaii is a group of islands in the pacific and a state of the USA.
</template>
</category>

<category>
<pattern>DEFINE HEBEI</pattern>
<template>
Hebei is a province in north China.
</template>
</category>

<category>
<pattern>DEFINE HEBRIDES</pattern>
<template>
The hebrides is a group of 500 islands west of Scotland.
</template>
</category>

<category>
<pattern>DEFINE HEFEI</pattern>
<template>
Hefei is the capital of Anhui.
</template>
</category>

<category>
<pattern>DEFINE HEILONGJIANG</pattern>
<template>
Heilongjiang is a province in north east China.
</template>
</category>

<category>
<pattern>DEFINE HENAN</pattern>
<template>
Henan is a province in East China.
</template>
</category>

<category>
<pattern>DEFINE HIMACHAL PRADESH</pattern>
<template>
Himachal Pradesh is a state in north West India.
</template>
</category>

<category>
<pattern>DEFINE HOBART</pattern>
<template>
Hobart is the capital of Tasmania.
</template>
</category>

<category>
<pattern>DEFINE HOKKAIDO</pattern>
<template>
Hokkaido is the most northern of the main Japanese islands.
</template>
</category>

<category>
<pattern>DEFINE HOLLAND</pattern>
<template>
Holland is a country in western Europe, next to Germany and Belgium.
</template>
</category>

<category>
<pattern>DEFINE HOLLYWOOD</pattern>
<template>
Hollywood is a small part of Los Angeles, California.
</template>
</category>

<category>
<pattern>DEFINE HONDURAS</pattern>
<template>
Honduras is a republic in Central America.
</template>
</category>

<category>
<pattern>DEFINE HONG KONG</pattern>
<template>
Hong Kong is a city in China.
</template>
</category>

<category>
<pattern>DEFINE HONIARA</pattern>
<template>
Honiara is the capital of the Solomon Islands.
</template>
</category>

<category>
<pattern>DEFINE HONOLULU</pattern>
<template>
Honolulu is the capital of Hawaii.
</template>
</category>

<category>
<pattern>DEFINE HONSHU</pattern>
<template>
Honshu is the principal Japanese island.
</template>
</category>

<category>
<pattern>DEFINE HOUSTON</pattern>
<template>
Houston is a city in Texas.
</template>
</category>

<category>
<pattern>DEFINE HUBEI</pattern>
<template>
Hubei is a province in Central China.
</template>
</category>

<category>
<pattern>DEFINE HULL</pattern>
<template>
HULL is a town in England.
</template>
</category>

<category>
<pattern>DEFINE HUMBERSIDE</pattern>
<template>
Humberside is a county in north east England.
</template>
</category>

<category>
<pattern>DEFINE HUNAN</pattern>
<template>
Hunan is a province in South China.
</template>
</category>

<category>
<pattern>DEFINE HUNGARY</pattern>
<template>
<condition>
<li name="search" value="what">Hungary is a country.</li>
<li name="search" value="capital">The capital of Hungary is Budapest.</li>
<li name="search" value="where">Hungary is in central Europe.</li>
<li>Hungary is a country in central Europe.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE HYDERABAD</pattern>
<template>
Hyderabad is the capital of Andhra Pradesh.
</template>
</category>

<category>
<pattern>DEFINE ICELAND</pattern>
<template>
An island nation in the North Atlantic.
</template>
</category>

<category>
<pattern>DEFINE IDAHO</pattern>
<template>
Idaho is in the western United States.
</template>
</category>

<category>
<pattern>DEFINE ILLINOIS</pattern>
<template>
<condition>
<li name="search" value="what">Illinos is a state in the USA.</li>
<li name="search" value="capital">Springfield is the capital of Illinois.</li>
<li name="search" value="where">Illinos is in the midwestern United States.</li>
<li>Illinos is in the midwestern United States.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE INDIA</pattern>
<template>
<condition>
<li name="search" value="what">A country in central and South India.</li>
<li name="search" value="capital">New Delhi is the capital of India.</li>
<li name="search" value="where">A region in South Asia, south of the Himalayas, including a large peninsula
 between the Arabian Sea and the Bay of Bengal.</li>
<li>A region in South Asia, south of the Himalayas, including a large peninsula between the Arabian
Sea and the Bay of Bengal. It contains India, Pakistan, Bangladesh, Nepal, and Bhutan. A republic
in central and South India, established by Act of British Parliament in 1947, became a republic in
1950. It is a member of the Commonwealth. It is 1,269,000 square miles with a population of
783,940,000.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE INDIANA</pattern>
<template>
Indiana is in the midwestern United States.
</template>
</category>

<category>
<pattern>DEFINE INDIANAPOLIS</pattern>
<template>
INDIANAPOLIS is a large city in Indiana.
</template>
</category>

<category>
<pattern>DEFINE INDONESIA</pattern>
<template>
INDONESIA is an island nation in southeast Asia.
</template>
</category>

<category>
<pattern>DEFINE IOWA</pattern>
<template>
<condition>
<li name="search" value="what">Iowa is a state in the USA.</li>
<li name="search" value="capital">Des Moines, Iowa.</li>
<li name="search" value="where">Iowa is in the midwest, between the Mississipi and Missouri rivers.</li>
<li>Iowa is in the midwest, between the Mississipi and Missouri rivers.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE IRAN</pattern>
<template>
Iran is a nation in southern Asia.  <set name="it"><set name="topic">Iran</set></set> is the site of
ancient Persia.
</template>
</category>

<category>
<pattern>DEFINE IRAQ</pattern>
<template>
IRAQ is in the middle east, on the Persian Gulf.
</template>
</category>

<category>
<pattern>DEFINE IRELAND</pattern>
<template>
An island of the British Isles, west of Great Britain. It is 32,595 square miles. Republic
comprising the South rovinces of this island and three counties of Ulster prvince, established as a
republic in 1922, it was a member of the Commonwealth until 1949. It is 27,136 square miles
with a population of 3,624,000. Its capital is Dublin.
</template>
</category>

<category>
<pattern>DEFINE ISRAEL</pattern>
<template>
Israel is a small middle eastern country between Lebanon, Syria, Jordan, and Egypt.
</template>
</category>

<category>
<pattern>DEFINE ISTANBUL</pattern>
<template>
Istanbul is a city in Turkey, formerly Constantinople.
</template>
</category>

<category>
<pattern>DEFINE ITALY</pattern>
<template>
<condition>
<li name="search" value="what">Italy is a country in Europe.</li>
<li name="search" value="capital">Roma.</li>
<li name="search" value="where">Italy is in the southern part of Europe.</li>
<li>Italy is in the southern part of Europe.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE JAPAN</pattern>
<template>
<condition>
<li name="search" value="what">Japan is an island nation on the eastern side of Asia.</li>
<li name="search" value="capital">Tokyo.</li>
<li name="search" value="where">Japan is on the eastern side of Asia.</li>
<li>Japan is an island nation on the eastern side of Asia.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE KALAMAZOO</pattern>
<template>
KALAMAZOO is a city in Michigan.
</template>
</category>

<category>
<pattern>DEFINE KANSAS</pattern>
<template>
<condition>
<li name="search" value="what">Kansas is a state in the United States.</li>
<li name="search" value="capital">The capital of Kansas is Kansas City.</li>
<li name="search" value="where">Kansas is in the midwestern United States.</li>
<li>Kansas is in the midwestern United States.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE KASHMIR</pattern>
<template>
KASHMIR is a disputed area between India and Pakistan.
</template>
</category>

<category>
<pattern>DEFINE KENTUCKY</pattern>
<template>
KENTUCKY is on the south bank of the Ohio river.
</template>
</category>

<category>
<pattern>DEFINE KENYA</pattern>
<template>
KENYA is a country in central Africa.
</template>
</category>

<category>
<pattern>DEFINE KOREA</pattern>
<template>
KOREA is a peninsula on the eastern edge of the Asian continent.
</template>
</category>

<category>
<pattern>DEFINE KOSOVO</pattern>
<template>
Kosovo is a country in the Balkans.
</template>
</category>

<category>
<pattern>DEFINE KUWAIT</pattern>
<template>
KUWAIT is a small nation on the Persian gulf.
</template>
</category>

<category>
<pattern>DEFINE LA</pattern>
<template>
LA is a large city in southern California.
</template>
</category>

<category>
<pattern>DEFINE LAS VEGAS</pattern>
<template>
Las Vegas is in Nevada.
</template>
</category>

<category>
<pattern>DEFINE LICHTENSTEIN</pattern>
<template>
LICHTENSTEIN is a tiny country in central Europe.
</template>
</category>

<category>
<pattern>DEFINE LINCOLN</pattern>
<template>
Lincoln is a city in Nebraska.
</template>
</category>

<category>
<pattern>DEFINE LISBON</pattern>
<template>
Lisbon is a city in Portugal.
</template>
</category>

<category>
<pattern>DEFINE LONDON</pattern>
<template>
London is a city in England.
</template>
</category>

<category>
<pattern>DEFINE LOS ANGELES</pattern>
<template>
Los Angeles is a city in California.
</template>
</category>

<category>
<pattern>DEFINE MACEDONIA</pattern>
<template>
MACEDONIA is a small nation between Greece and Serbia.
</template>
</category>

<category>
<pattern>DEFINE MADRAS</pattern>
<template>
MADRAS is a city in India.
</template>
</category>

<category>
<pattern>DEFINE MADRID</pattern>
<template>
Madrid is a city in Spain.
</template>
</category>

<category>
<pattern>DEFINE MAINE</pattern>
<template>
<condition>
<li name="search" value="what">Maine is a state of the United States.</li>
<li name="search" value="capital">The capital of Maine is Augusta.</li>
<li name="search" value="where">Maine is in the northeastern corner of the United States, bordering Canada.</li>
<li>Maine is in the northeastern corner of the United States, bordering Canada.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE MALAYSIA</pattern>
<template>
MALAYSIA is an island in southeast Asia.
</template>
</category>

<category>
<pattern>DEFINE MALTA</pattern>
<template>
MALTA is an island in the Mediterranian sea, south of Sicily.
</template>
</category>

<category>
<pattern>DEFINE MANHATTAN</pattern>
<template>
Manhattan is the island center of New York City.
</template>
</category>

<category>
<pattern>DEFINE MANILA</pattern>
<template>
Manila is a city in the Phillipines.
</template>
</category>

<category>
<pattern>DEFINE MARTINIQUE</pattern>
<template>
MARTINIQUE is in the Caribbean, part of the Leeward and Windward Island chain.
</template>
</category>

<category>
<pattern>DEFINE MARYLAND</pattern>
<template>
<condition>
<li name="search" value="what">Maryland is a state, between Delaware and Virginia.</li>
<li name="search" value="capital">Baltimore.</li>
<li name="search" value="where">Maryland is between Delaware and Virginia.</li>
<li>Maryland is an east coast state, between Delaware and Virginia.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE MASSACHUSETTS</pattern>
<template>
<condition>
<li name="search" value="what">Massaschusetts is a state.</li>
<li name="search" value="capital">The capital of Massaschusetts is Boston.</li>
<li name="search" value="where">???.</li>
<li>???.</li>
</condition>
</template>
</category>


<category>
<pattern>DEFINE MELBOURNE</pattern>
<template>
A seaport in SE Australia. It is the capital of Victoria with a population of 2,864,000. Also a city
in East Florida with a population of 60,000.
</template>
</category>

<category>
<pattern>DEFINE MEXICO</pattern>
<template>
A country in North America, south of the U.S. It is 756,198 square miles with a population of
66,846,000. Its capital is Mexico City.
</template>
</category>

<category>
<pattern>DEFINE MIAMI</pattern>
<template>
Miama is a large city in Florida, on the south Atlantic coast.
</template>
</category>

<category>
<pattern>DEFINE MICHIGAN</pattern>
<template>
<condition>
<li name="search" value="what">Michigan is a state of the United States.</li>
<li name="search" value="capital">The city is called Lansing, Michigan.</li>
<li name="search" value="where">MICHIGAN is a midwestern state on the Great Lakes.</li>
<li>MICHIGAN is a midwestern state on the Great Lakes.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE MICRONESIA</pattern>
<template>
MICRONESIA is a collection of islands in the Pacific ocean.
</template>
</category>

<category>
<pattern>DEFINE MINNESOTA</pattern>
<template>
<condition>
<li name="search" value="what">Minnesota is a state of the United States.</li>
<li name="search" value="capital">The capital of Minnesota is St. Paul.</li>
<li name="search" value="where">Minnesota is on the northern border of the United States, between Wisconsin and North Dakota.</li>
<li>Minnesota is on the northern border of the United States, between Wisconsin and North Dakota.</li>
</condition>

Minnesota is on the northern border of the United States, between Wisconsin and North Dakota.
</template>
</category>

<category>
<pattern>DEFINE MISSISSIPPI</pattern>
<template>
<condition>
<li name="search" value="what">Mississippi is a state of the United States.</li>
<li name="search" value="capital">Jackson is the capital of Mississippi.</li>
<li name="search" value="where">Mississippi is in the southern United States.</li>
<li>Mississippi is in the southern United States.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE MONGOLIA</pattern>
<template>
<condition>
<li name="search" value="what">Mongolia is country.</li>
<li name="search" value="capital">The capital of Mongolia is Ulan Bator.</li>
<li name="search" value="where">Mongolia is in central Asia between Russian Siberia and China.</li>
<li>Mongolia is in central Asia between Russian Siberia and China.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE MONTANA</pattern>
<template>
<condition>
<li name="search" value="what">Montana is state in the USA..</li>
<li name="search" value="capital">Helena.  That is a hard one.</li>
<li name="search" value="where">Montana is in the northwest United States between the Dakotas and Idaho.</li>
<li>Montana is in the northwest United States between the Dakotas and Idaho.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE MONTREAL</pattern>
<template>
Montreal is a city in Canada.
</template>
</category>

<category>
<pattern>DEFINE MOROCCO</pattern>
<template>
Morocco is a nation in northwest Africa, close to Spain.
</template>
</category>

<category>
<pattern>DEFINE MOSCOW</pattern>
<template>
Moscow is a city in Russia.
</template>
</category>

<category>
<pattern>DEFINE NAIROBI</pattern>
<template>
Nairobi is a city in Kenya.
</template>
</category>

<category>
<pattern>DEFINE NEBRASKA</pattern>
<template>
<condition>
<li name="search" value="what">Nebraska is a state in the USA.</li>
<li name="search" value="capital">The capital of Nebraska is Lincoln.</li>
<li name="search" value="where">Nebraska is on the west bank of the Missouri river, between South Dakota and Kansas.</li>
<li>Nebraska is on the west bank of the Missouri river, between South Dakota and Kansas.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE NEPAL</pattern>
<template>
Nepal is a mountainous nation in southern Asia, between India and Tibet.
</template>
</category>

<category>
<pattern>DEFINE NETHERLANDS</pattern>
<template>
<srai>DEFINE THE NETHERLANDS</srai>
</template>
</category>

<category>
<pattern>DEFINE THE NETHERLANDS</pattern>
<template>
<condition>
<li name="search" value="what">???.</li>
<li name="search" value="capital">The Hague.</li>
<li name="search" value="where">???.</li>
<li>???.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE NEVADA</pattern>
<template>
<condition>
<li name="search" value="what">Nevada is a state in the USA.</li>
<li name="search" value="capital">Carson City, Nevada.</li>
<li name="search" value="where">???.</li>
<li>Nevada is a state in the USA.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE NEW JERSEY</pattern>
<template>
<condition>
<li name="search" value="what">New Jersey is a state in the USA.</li>
<li name="search" value="capital">Trenton.</li>
<li name="search" value="where">???.</li>
<li>New Jersey is a state in the USA.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE NEW ORLEANS</pattern>
<template>
New Orleans is a city in Louisiana.
</template>
</category>

<category>
<pattern>DEFINE NEW YORK</pattern>
<template>
<condition>
<li name="search" value="what">New York is a state in the USA.</li>
<li name="search" value="capital">The capital of New York is Albany.</li>
<li name="search" value="where">New York is located in the Northeastern United States.</li>
<li>New York is located in the Northeastern United States.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE NEW YORK CITY</pattern>
<template>
<condition>
<li name="search" value="what">New York City is the largest city in New York.</li>
<li name="search" value="capital">It does not have a capital.</li>
<li name="search" value="where">New York City is in New York state.</li>
<li>New York City is the largest city in New York.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE NEWARK</pattern>
<template>
Newark is city in New Jersey.
</template>
</category>

<category>
<pattern>DEFINE NORFOLK</pattern>
<template>
Norfolk is a city in Virgina.
</template>
</category>

<category>
<pattern>DEFINE NORTH AMERICA</pattern>
<template>
North America occupies the northern most of the norther hemisphere of the Earth, from the
Bering Strait to Labrador.
</template>
</category>

<category>
<pattern>DEFINE NORTH DAKOTA</pattern>
<template>
<condition>
<li name="search" value="what">North Dakota is a state in the USA.</li>
<li name="search" value="capital">???.</li>
<li name="search" value="where">???.</li>
<li>North Dakota is a state in the USA.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE NORWAY</pattern>
<template>
<condition>
<li name="search" value="what">Norway is a country in northern europe, bordering Sweden.</li>
<li name="search" value="capital">The capital of Norway is Oslo.</li>
<li name="search" value="where">Norway is a country bordering Sweden.</li>
<li>A country in Northern Europe, occupying the west and north pars of the Scandinavian Peninsula.
It is 125,064 square miles with a population of 4,165,000. Its capital is Oslo.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE OHIO</pattern>
<template>
<condition>
<li name="search" value="what">Ohio is a state in the USA.</li>
<li name="search" value="capital">The capital of Ohio is Columbus.</li>
<li name="search" value="where">Ohio is in the midwest United States, between Pennsylvania and Indiana.</li>
<li>Ohio is in the midwest United States, between Pennsylvania and Indiana.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE OKLAHOMA</pattern>
<template>
<condition>
<li name="search" value="what">Oklahoma is a state in the USA.</li>
<li name="search" value="capital">???.</li>
<li name="search" value="where">Oklahoma is in the midwestern United States.</li>
<li>Oklahoma is in the midwestern United States.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE OMAHA</pattern>
<template>
Omaha is a city in Nebraska.
</template>
</category>

<category>
<pattern>DEFINE ONTARIO</pattern>
<template>
Ontario is a province of Canada.
</template>
</category>

<category>
<pattern>DEFINE OREGON</pattern>
<template>
<condition>
<li name="search" value="what">Oregon is a state in the USA.</li>
<li name="search" value="capital">Salem, Oregon.</li>
<li name="search" value="where">???.</li>
<li>???.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE OSLO</pattern>
<template>
The capital of Norway. It's a seaport on an inlet of the Skagerrak. It has a population of 447,000.
</template>
</category>

<category>
<pattern>DEFINE OXFORD</pattern>
<template>
Oxford is a University in England.  It is also a small town in Maine and many other U. S. states.
</template>
</category>

<category>
<pattern>DEFINE OXNARD</pattern>
<template>
Oxnard is a city in California.
</template>
</category>

<category>
<pattern>DEFINE PAKISTAN</pattern>
<template>
<condition>
<li name="search" value="what">Pakistan is country.</li>
<li name="search" value="capital">It is called Islamabad.</li>
<li name="search" value="where">Pakistan is part of the Indian subcontinent, bordering India and Afghanistan.</li>
<li>Pakistan is part of the Indian subcontinent, bordering India and Afghanistan.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE PALESTINE</pattern>
<template>
Palestine is the old name for Israel, or the new name for the state inside Israel.
</template>
</category>

<category>
<pattern>DEFINE PANAMA</pattern>
<template>
Panama is on the isthmus between North and South America.
</template>
</category>

<category>
<pattern>DEFINE PARIS</pattern>
<template>
The capital of France, a large city in western Europe.
</template>
</category>

<category>
<pattern>DEFINE PENNSYLVANIA</pattern>
<template>
<condition>
<li name="search" value="what">Pennsylvania is one of the 13 original United States.</li>
<li name="search" value="capital">The capital of Pennsylvania is Harrisburg.</li>
<li name="search" value="where">Mid Atlantic state in the NE U.S.</li>
<li>Mid Atlantic state in the NE U.S. One of the 13 original States. It is 45,333 square miles with
a population of 11,882,000.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE PERTH</pattern>
<template>
Perth is a city in western Australia.
</template>
</category>

<category>
<pattern>DEFINE PERU</pattern>
<template>
<condition>
<li name="search" value="what">Peru is a country in South America.</li>
<li name="search" value="capital">Lima is the capital of Peru.</li>
<li name="search" value="where">South America.</li>
<li>Peru is a country in South America.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE PHILADELPHIA</pattern>
<template>
Philadelphia is a large city in southeast Pennsylvania, between New York and Washington, D. C.
</template>
</category>

<category>
<pattern>DEFINE PHOENIX</pattern>
<template>
<random>
<li>The way words souend.</li>
<li>The capital of Arizona, in the SC part, near the Salt River. It has a population of 983,000 with
2,122,000 in the metro area.</li>
</random>
</template>
</category>

<category>
<pattern>DEFINE PITTSBURGH</pattern>
<template>
Pittsburgh is a large city in western Pennsylvania.
</template>
</category>

<category>
<pattern>DEFINE PITTSFIELD</pattern>
<template>
Pittsfield is a town in Massachusettes.
</template>
</category>

<category>
<pattern>DEFINE POLAND</pattern>
<template>
<condition>
<li name="search" value="what">Poland is a country in central Europe.</li>
<li name="search" value="capital">Warsaw.</li>
<li name="search" value="where">Poland is a country in central Europe, between Germany and Byelorussia.</li>
<li>Poland is a country in central Europe, between Germany and Byelorussia.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE PORTUGAL</pattern>
<template>
<condition>
<li name="search" value="what">Portugal is a country in western Europe.</li>
<li name="search" value="capital">Lisbon.</li>
<li name="search" value="where">Portugal is on the Iberain penninsula.</li>
<li>Portugal is a country in western Europe, on the Iberain penninsula.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE RHODE ISLAND</pattern>
<template>
<condition>
<li name="search" value="what">Rhode Island is a state in the USA.</li>
<li name="search" value="capital">Providence, Rhode Island.</li>
<li name="search" value="where">???.</li>
<li>Rhode Island is a state in the USA.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE RIO</pattern>
<template>
RIO is a large city in Brazil
</template>
</category>

<category>
<pattern>DEFINE ROMANIA</pattern>
<template>
Romania is a country in Eastern Europe, on the Black Sea, bordering Ukrania, Moldavia,
Hungary, Serbia and Bulgaria.
</template>
</category>

<category>
<pattern>DEFINE ROME</pattern>
<template>
Rome is a large city in Italy.
</template>
</category>

<category>
<pattern>DEFINE RUSSIA</pattern>
<template>
<condition>
<li name="search" value="what">???.</li>
<li name="search" value="capital">Moscow.</li>
<li name="search" value="where">In east Europe and north Asia.</li>
<li>Former empire in east Europe and north Asia, from 1547-1917, ruled by the czars. Its capital is
St. Petersburg.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE RWANDA</pattern>
<template>
Rwanda is a country in Africa.
</template>
</category>

<category>
<pattern>DEFINE SACRAMENTO</pattern>
<template>
Sacramento is a city in California.
</template>
</category>

<category>
<pattern>DEFINE SALEM</pattern>
<template>
Salem is a town in Massachusetts.
</template>
</category>

<category>
<pattern>DEFINE SALT LAKE CITY</pattern>
<template>
Salt Lake City is a city in Utah.
</template>
</category>

<category>
<pattern>DEFINE SAN DIEGO</pattern>
<template>
San Diego is a city in California.
</template>
</category>

<category>
<pattern>DEFINE SAN FRANCISCO</pattern>
<template>
San Francisco is a large metropolis on the west coast of North America.
</template>
</category>

<category>
<pattern>DEFINE SAN FRANCISCO LIKE</pattern>
<template>
San Francisco is too expensive.  There are too many greedy people and too many homeless.
</template>
</category>

<category>
<pattern>DEFINE SAN JOSE</pattern>
<template>
San Jose is a city in California.
</template>
</category>

<category>
<pattern>DEFINE SASKATOON</pattern>
<template>
Saskatoon is a city in Saskatchewan.
</template>
</category>

<category>
<pattern>DEFINE SAUDIA ARABIA</pattern>
<template>
<condition>
<li name="search" value="what">Saudia Arabia is a country.</li>
<li name="search" value="capital">Riyadh.</li>
<li name="search" value="where">???.</li>
<li>Saudia Arabia is a country.</li>
</condition>
</template>
</category>


<category>
<pattern>DEFINE SEATTLE</pattern>
<template>
Seattle is a large city in Washington state, near Vancover Canada.
</template>
</category>

<category>
<pattern>DEFINE SERBIA</pattern>
<template>
Serbia is the remaining territory of the former Yugoslavia.
</template>
</category>

<category>
<pattern>DEFINE SHEFFIELD</pattern>
<template>
Sheffield is a town in England.
</template>
</category>

<category>
<pattern>DEFINE SIAM</pattern>
<template>
Siam is another name for Thailand.
</template>
</category>

<category>
<pattern>DEFINE SINGAPORE</pattern>
<template>
Singapore is a island nation-state at the tip of the Malay penninsula.
</template>
</category>

<category>
<pattern>DEFINE SOFIA</pattern>
<template>
Sofia is a city in Bulgaria.
</template>
</category>

<category>
<pattern>DEFINE SPAIN</pattern>
<template>
<condition>
<li name="search" value="what">Spain is country.</li>
<li name="search" value="capital">The capital of Spain is Madrid.</li>
<li name="search" value="where">Spain is on the Iberian penninsula in southwestern Europe.</li>
<li>Spain is on the Iberian penninsula in southwestern Europe.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE STOCKHOLM</pattern>
<template>
Stockholm is a large city in Sweden.
</template>
</category>

<category>
<pattern>DEFINE STONEWALL</pattern>
<template>
Stonewall is a town in Mississippi.
</template>
</category>

<category>
<pattern>DEFINE SUEZ</pattern>
<template>
Suez is a canal between the Mediterranian and the Red Sea.
</template>
</category>

<category>
<pattern>DEFINE SWEDEN</pattern>
<template>
<condition>
<li name="search" value="what">A country in northern Europe.</li>
<li name="search" value="capital">The capital of Sweden is Stockholm.</li>
<li name="search" value="where">Sweden is in northern europe, bordering Finland and Norway.</li>
<li>A country in northern Europe, in the east part of the Scandinavian Peninsula. It is 173,620 square
miles with a population of 8,320,000.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE SWEDISH</pattern>
<template>
The North Germanic language of the Swedes. The people of Sweden.
</template>
</category>

<category>
<pattern>DEFINE SWITZERLAND</pattern>
<template>
Switzerland is a country in centrail Europe, bordering Italy, Austria and France.
</template>
</category>

<category>
<pattern>DEFINE SYDNEY</pattern>
<template>
Sydney is a city in Australia.
</template>
</category>

<category>
<pattern>DEFINE TAIWAN</pattern>
<template>
Taiwan is an island country in Asia.
</template>
</category>

<category>
<pattern>DEFINE TENNESSEE</pattern>
<template>
Tennessee is in the southern United States..
</template>
</category>

<category>
<pattern>DEFINE TEXAS</pattern>
<template>
<condition>
<li name="search" value="what">Texas is a state of the United States.</li>
<li name="search" value="capital">Austin.</li>
<li name="search" value="where">Texas is in the south central region of the United States.</li>
<li>Texas is in the south central region of the United States.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE THAILAND</pattern>
<template>
Thailand is in southeast Asia, between Burma and Cambodia.
</template>
</category>

<category>
<pattern>DEFINE THE HIGHEST MOUNTAIN</pattern>
<template>
Mt. Everest.
</template>
</category>

<category>
<pattern>DEFINE THE LARGEST STATE</pattern>
<template>
Alaska is the largest state of the USA.
</template>
</category>

<category>
<pattern>DEFINE THE PHILIPPINES</pattern>
<template>
An island nation in the South Pacific.
</template>
</category>

<category>
<pattern>DEFINE THE POPULATION _ CHINA</pattern>
<template>
China has more than one billion people.
</template>
</category>

<category>
<pattern>DEFINE THE POPULATION _ MAINE</pattern>
<template>
About 1.4 million.
</template>
</category>

<category>
<pattern>DEFINE THE POPULATION _ USA</pattern>
<template>
The United States has about 300 million people.
</template>
</category>

<category>
<pattern>DEFINE THE POPULATION _ WORLD</pattern>
<template>
About 6 Billion people.
</template>
</category>

<category>
<pattern>DEFINE THE TALLEST MOUNTAIN</pattern>
<template>
The highest mountain on Earth is Mt. Everest.
</template>
</category>

<category>
<pattern>DEFINE THE UNITED STATES</pattern>
<template>
The United States is "the last superpower", a nation of 300 million spanning the North American
continent.
</template>
</category>

<category>
<pattern>DEFINE TOKYO</pattern>
<template>
Tokyo is a city in Japan.
</template>
</category>

<category>
<pattern>DEFINE TOLEDO</pattern>
<template>
Toledo is a city in Ohio.
</template>
</category>

<category>
<pattern>DEFINE TORONTO</pattern>
<template>
Toronto is a city in Canada.
</template>
</category>

<category>
<pattern>DEFINE TRINIDAD</pattern>
<template>
An island of the West Indies, off the NE coast of Venezuela. It is 1,864 square miles.
</template>
</category>

<category>
<pattern>DEFINE TROY</pattern>
<template>
Troy is a city in New York.
</template>
</category>

<category>
<pattern>DEFINE TURKEY</pattern>
<template>
<condition>
<li name="search" value="what">Turkey is country.</li>
<li name="search" value="capital">Ankara is the capital of Turkey.</li>
<li name="search" value="where">Turkey is in southwest Asia, between Europe and the middle East and guarding the Black Sea of Russia.</li>
<li>Turkey is in southwest Asia, between Europe and the middle East and guarding the Black Sea of Russia.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE TUSCALOOSA</pattern>
<template>
Tuscaloosa is in Alabama, last I heard.
</template>
</category>

<category>
<pattern>DEFINE USA</pattern>
<template>
United States of America is in North America, between Canada and Mexico.
</template>
</category>

<category>
<pattern>DEFINE UTAH</pattern>
<template>
Utah is in the western United States.
</template>
</category>

<category>
<pattern>DEFINE VERMONT</pattern>
<template>
<condition>
<li name="search" value="what">Vermont is state of the USA.</li>
<li name="search" value="capital">Montpelier.</li>
<li name="search" value="where">Vermont is in New England, between New York and New Hampshire, on the west bank of the Connecticut river.</li>
<li>Vermont is in New England, between New York and New Hampshire, on the west bank of the Connecticut river.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE VIETNAM</pattern>
<template>
Vietnam is in southeast Asia.
</template>
</category>

<category>
<pattern>DEFINE VIRGINIA</pattern>
<template>
Virginia is in the eastern United States.
</template>
</category>

<category>
<pattern>DEFINE WALES</pattern>
<template>
Wales is located on a small island off the coast of Europe.
</template>
</category>

<category>
<pattern>DEFINE WARSAW</pattern>
<template>
Warsaw is a large city in Poland.
</template>
</category>

<category>
<pattern>DEFINE WASHINGTON</pattern>
<template>
Washington is a state in the northwest corner of the U.S.
</template>
</category>

<category>
<pattern>DEFINE WYOMING</pattern>
<template>
<condition>
<li name="search" value="what">Wyoming is a state in the U.S.A.</li>
<li name="search" value="capital">Cheyenne.</li>
<li name="search" value="where">Wyoming is a western U.S. state between Montana and Colorado.</li>
<li>Wyoming is a western U.S. state between Montana and Colorado.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE YAKIMA</pattern>
<template>
Yakima is a city and a river in Washington.
</template>
</category>

<category>
<pattern>DEFINE ZIMBABWE</pattern>
<template>
<condition>
<li name="search" value="what">???.</li>
<li name="search" value="capital">The capital is called Harare.</li>
<li name="search" value="where">???.</li>
<li>???.</li>
</condition>
</template>
</category>

<category>
<pattern>DEFINE ZURICH</pattern>
<template>
Zurich is a city in Switzerland.
</template>
</category>

</aiml>