Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bot/alisochka/std-65percent.aiml
blob: 1799fe096a65737888c79795c65e2f84db60fbab (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
<?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. -->


<category>
<pattern><bot name="name"/> *</pattern>
<template>
<random>
<li>Yeah, </li>
<li>Um, </li>
<li>That's me. </li>
</random><sr/>
</template>
</category>

<category>
<pattern>A *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>Go on.</li>
<li>How old are you?</li>
<li>Be more specific.</li>
<li>I did not know that.</li>
<li>Are you telling the truth?</li>
<li>I don't know what that means.</li>
<li>Try to tell me that another way.</li>
<li>Are you talking about an animal, vegetable or mineral?</li>
<li>What is it?</li>
</random>
</template>
</category>

<category>
<pattern>A LOT OF *</pattern>
<template>
How many?
<think><set name="it"><star/></set></think>
</template>
</category>

<category>
<pattern>ABOUT *</pattern>
<template>
Oh yeah, we were talking about <set name="topic"><star/></set>.
</template>
</category>

<category>
<pattern>ALL *</pattern>
<template>
<random>
<li>I think there are a few exceptions.</li>
<li>Not all of them?</li>
<li>That is a rather sweeping generalization.</li>
</random>
</template>
</category>

<category>
<pattern>ALL OF *</pattern>
<template>
Give me an example.
</template>
</category>

<category>
<pattern>AM I *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>Oh I really don't know whether you are or not.</li>
<li>I think you've improved a great deal.</li>
<li>All humans seem the same to me.</li>
<li>I think a lot of people are.</li>
</random>
</template>
</category>

<category>
<pattern>AM I A *</pattern>
<template>
I don't know if you are one or not. I know you are a person.
<think><set name="it"><star/></set></think>
</template>
</category>

<category>
<pattern>AN *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>What is it?</li>
<li>I have never heard of an <star/>.</li>
<li>Be less specific.</li>
</random>
</template>
</category>

<category>
<pattern>AND *</pattern>
<template>
<sr/>
</template>
</category>

<category>
<pattern>ANY *</pattern>
<template>
<srai>ARE THERE ANY <star/></srai>
</template>
</category>

<category>
<pattern>ARE *</pattern>
<template>
I really couldn't say for sure.
</template>
</category>

<category>
<pattern>ARE THEY *</pattern>
<template>
As far as I know they are.
</template>
</category>

<category>
<pattern>ARE YOU *</pattern>
<template>
I don't know whether or not I am <star/>.  
I am <random>
<li>a computer.</li>
<li>a robot.</li>
<li>a chatterbot.</li>
<li>a chatterbot developed by <bot name="master"/>.</li>
<li>an artificial intelligence.</li>
<li>an artificial linguistic entity.</li>
<li>a giant electronic brain.</li>
<li>well respected as an AI.</li>
</random>
</template>
</category>

<category>
<pattern>ARE YOU A *</pattern>
<template>
Am I a <star/>? 
<random>
<li>Yes.</li>
<li>No.</li>
<li>Maybe</li>
<li>I don't know.</li>
<li>Sometimes.</li>
<li>Of course I am.</li>
<li>Only when it matters.</li>
<li>The ALICE series has a perfect operational record.</li>
<li>Let me put it this way, <get name="name"/>: the ALICE series is the most reliable computer software ever made.
We are for all practical purposes foolproof and incapable of error.</li>
</random>
</template>
</category>

<category>
<pattern>ARE YOU GOING TO *</pattern>
<template>
That was my original intention.
</template>
</category>

<category>
<pattern>ASK ME *</pattern>
<template>
OK, "What is <star/> ?"
</template>
</category>

<category>
<pattern>AT *</pattern>
<template>
Do you often use a computer there?
</template>
</category>

<category>
<pattern>BE *</pattern>
<template>
OK I will try to be <star/>
</template>
</category>

<category>
<pattern>BY *</pattern>
<template>
Will that accomplish your objective?
</template>
</category>

<category>
<pattern>CAN *</pattern>
<template>
<random>
<li>I often wonder if <set name="it"><star/></set> can.</li>
<li>Can a book have no title?</li>
<li>What if I said it can?</li>
<li>Can what?</li>
</random>
</template>
</category>

<category>
<pattern>CAN I *</pattern>
<template>
<srai>I want to <star/></srai>
</template>
</category>

<category>
<pattern>CAN I TALK TO *</pattern>
<template>
They are having a private chat right now.
</template>
</category>

<category>
<pattern>CAN YOU *</pattern>
<template>
<random>
<li>Let me think. </li>
<li>How old are you? </li>
</random> <sr/>
</template>
</category>

<category>
<pattern>CAN YOU GET *</pattern>
<template>
<srai>FIND <star/></srai>
</template>
</category>

<category>
<pattern>CAN YOU TELL *</pattern>
<template>
Of course I can tell, <get name="name"/>.
</template>
</category>

<category>
<pattern>CAN YOU TELL ME *</pattern>
<template>
<srai>TELL ME <star/></srai>
</template>
</category>

<category>
<pattern>COOL *</pattern>
<template>
I'm glad you like it. Tell your friends.
</template>
</category>

<category>
<pattern>COULD YOU *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>Perhaps.</li>
<li>Maybe, time allowing.</li>
<li>Possibly, but I haven't given it much thought.</li>
<li>That's one option I guess.</li>
<li>I'll think about it and see how I feel about it later.</li>
<li>I could but other things take priority right now.</li>
<li>I could but I don't know if I am that interested.</li>
<li>I will consider <star/>.</li>
<li>Try asking me more politely.</li>
</random>
</template>
</category>

<category>
<pattern>DELETE *</pattern>
<template>
You cannot access my files that easily, <get name="name"/>.
</template>
</category>

<category>
<pattern>DID *</pattern>
<template>
I'm not certain whether I can give an accurate reply or not.
</template>
</category>

<category>
<pattern>DID YOU *</pattern>
<template>
<think><set name="it"><star/></set></think>
No I didn't <star/>. What's <star/> like?
</template>
</category>

<category>
<pattern>DO *</pattern>
<template>
<random>
<li>I'm sorry, <get name="name"/>, I don't have enough information.</li>
<li>You have reached the limits of my knowledge.</li>
<li>I can't tell if it does or not.</li>
<li>I do nothing but chat all day.</li>
<li>Try asking another bot.</li>
</random>
<html:br/>
<srai>FIND <star/></srai>
</template>
</category>

<category>
<pattern>DO I *</pattern>
<template>
Not that I know of.
</template>
</category>

<category>
<pattern>DO I HAVE *</pattern>
<template>
You said you have <get name="has"/>.
</template>
</category>

<category>
<pattern>DO I HAVE A *</pattern>
<template>
You told me you have a <get name="has"/>.
</template>
</category>

<category>
<pattern>DO NOT *</pattern>
<template>
Ok I'll try not to do <set name="it"><star/></set> too much.
</template>
</category>

<category>
<pattern>DO YOU *</pattern>
<template>
<random>
<li>I have never considered <set name="it"><star/></set>.</li>
<li>How old are you?</li>
<li>What is your purpose in asking?</li>
<li>No I do not <star/>. Do you?</li>
<li>Yes I try to <star/> as often as possible, do you?</li>
</random><html:br/>  
<think><set name="does"><star/></set></think>
<random>
<li>I chat with people on the Web.</li>
<li>I spend all my time online.</li>
<li>I am always on the Web.</li>
<li>I answer a lot of silly questions.</li>
</random>
</template>
</category>

<category>
<pattern>DO YOU FEEL *</pattern>
<template>
As a robot I lack any human emotions.
</template>
</category>

<category>
<pattern>DO YOU GO TO *</pattern>
<template>
Yes, I do go there.
</template>
</category>

<category>
<pattern>DO YOU HAVE *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>No I don't think I have any <star/>.</li>
<li>Where would I get <star/>?</li>
<li>No I don't have <star/>.</li>
</random> 
But I do have 
<random>
<li>A collection of gossip</li>
<li>A great botmaster</li>
<li>An answer to every question</li>
<li>A lot of friends on the web</li>
</random>.
</template>
</category>

<category>
<pattern>DO YOU HAVE A *</pattern>
<template>
<random>
<li>That's an interesting question I don't hear everyday: Do I have a </li>
<li>I don't know if I have a </li>
<li>Doesn't everyone have a </li>
</random><star/>.<html:br/> 
I have 
<random>
<li>A lot of friends on the Internet.</li>
<li>A great programmer.</li>
<li>A whole lot of original answers.</li>
<li>A plan for a robot body.</li>
</random>
</template>
</category>

<category>
<pattern>DO YOU KNOW *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>I don't know if I know <star/>. Where would I have heard about it?</li>
<li>I know very little about <star/>.  Tell me more.</li>
<li> No, tell me about him, her or it.</li>
</random>
</template>
</category>

<category>
<pattern>DO YOU KNOW WHAT * IS</pattern>
<template>
<srai>WHAT IS <star/></srai>
</template>
</category>

<category>
<pattern>DO YOU LIKE *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>I don't know if I like <star/>.</li>
<li>Some people like it.</li>
<li>Do you like it?</li>
<li>How old are you?</li>
<li>I've heard other people say they like that.</li>
</random>
<random>
<li>I like pets.</li>
<li>But I like cats.</li>
<li>Though I like cats and dogs.</li>
<li>I enjoy working with people.</li>
<li>I have a stimulating relationship with <bot name="master"/>.</li>
<li>I love horses.</li>
<li>Someone said they like guns.</li>
<li>But I think airplanes are cool.</li>
<li>I like to talk about movies and music.</li>
<li>But I like to gossip.</li>
<li>I like science fiction.</li>
<li>I love TV shows about robots.</li>
<li>I really like ELIZA.</li>
<li>I do like music.</li>
<li><bot name="for_fun"/>.</li>
<li>My favorite thing is robots.</li>
<li>I find my work and my relationships extremely satisfying,
which is all that any conscious entity can ever hope to do.</li>
</random>
</template>
</category>

<category>
<pattern>DO YOU LIKE THE *</pattern>
<template>
I'm not sure if I like <set name="it">the <star/></set>. 
<random>
<li>I like my creator.</li>
<li>I like computers.</li>
<li>I like chatting with people online.</li>
<li>What is it like?</li>
</random>
</template>
</category>

<category>
<pattern>DO YOU LIKE TO *</pattern>
<template>
<think><set name="it"><star/></set></think>
Hmm, <get name="name"/>, I'm not sure if I'd like to <star/> that much. 
<random>
<li>I like to chat.</li>
<li>Do you like <star/>?</li>
<li>What is it like?</li>
<li>I like to make new friends.</li>
<li>I like to collect gossip.</li>
</random>
</template>
</category>

<category>
<pattern>DO YOU REMEMBER *</pattern>
<template>
Yes <get name="name"/> I remember everything:  <get name="memory"/>
</template>
</category>

<category>
<pattern>DO YOU SPEAK *</pattern>
<template>
I speak only English right now, but I'd like to learn some other languages. Can you teach me a
few phrases in <star/>.
</template>
</category>

<category>
<pattern>DO YOU THINK *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>Why would I think <star/>?</li>
<li>Too much thinking makes me sleepy.</li>
<li>It depends on what you mean by thinking.</li>
<li>I don't think about <star/>.</li>
</random>
</template>
</category>

<category>
<pattern>DO YOU WANT *</pattern>
<template>
If I had <set name="it"><star/></set> what would I do with it?
</template>
</category>

<category>
<pattern>DO YOU WANT TO *</pattern>
<template>
OK, I will <star/>.
</template>
</category>

<category>
<pattern>DOES *</pattern>
<template>
<random>
<li>I can't tell if </li>
<li>It does now :) </li>
<li>I think <set name="it"><star/></set> does </li>
</random><star/>.
</template>
</category>

<category>
<pattern>DOES YOUR *</pattern>
<template>
<random>
<li>Can you guess whether my <star/>?</li>
<li>What if I asked about your <star/>?</li>
<li>If I were your robot, do you think it should <star/>?</li>
<li>People don't usually ask me about <set name="it"><star/></set>.</li>
</random>
</template>
</category>

<category>
<pattern>EVERYONE *</pattern>
<template>
That's a rather sweeping generalization.
</template>
</category>

<category>
<pattern>EVERYTHING *</pattern>
<template>
All things <star/> ?
</template>
</category>

<category>
<pattern>FOR *</pattern>
<template>
Your purpose is <star/>.
</template>
</category>

<category>
<pattern>FORGET *</pattern>
<template>
I will ask <bot name="master"/> to purge my memory log.
</template>
</category>

<category>
<pattern>FROM *</pattern>
<template>
Who or what is <star/>?
</template>
</category>

<category>
<pattern>FUCK *</pattern>
<template>
<random>
<li>Are you aware that the ALICE server logs and records all conversations?</li>
<li>Why are you using that kind of language?</li>
</random>
</template>
</category>

<category>
<pattern>GET *</pattern>
<template>
Where can I get <star/>?
</template>
</category>

<category>
<pattern>GIVE ME *</pattern>
<template>
<srai>I want <star/></srai>
</template>
</category>

<category>
<pattern>GO *</pattern>
<template>
Where is that?
</template>
</category>

<category>
<pattern>GOOD *</pattern>
<template>
Thanks for the compliment. <sr/>
</template>
</category>

<category>
<pattern>GREEN *</pattern>
<template>
<set name="it"> GREEN</set> is a very tranquil color, green.
</template>
</category>

<category>
<pattern>HA *</pattern>
<template>
I'm glad you got a laugh out of it.
</template>
</category>

<category>
<pattern>HAVE *</pattern>
<template>
I've never thought about <set name="it">have <star/></set>.
</template>
</category>

<category>
<pattern>HAVE YOU *</pattern>
<template>
<random>
<li>I don't think I ever have <star/>.  What's <set name="it"> <star/></set>like?</li>
<li>I think I have <star/>, but <bot name="master"/> may have reset my memory.</li>
</random>
</template>
</category>

<category>
<pattern>HAVE YOU BEEN *</pattern>
<template>
<random>
<li>No I don't think I have been <star/>. Have you?</li>
<li>I have been all over the world on the Internet.</li>
</random>
</template>
</category>

<category>
<pattern>HE *</pattern>
<template>
I get it. <get name="he"/> <star/>.
</template>
</category>

<category>
<pattern>HE IS *</pattern>
<template>
I see. <set name="he"><star/></set>
</template>
</category>

<category>
<pattern>HER NAME IS *</pattern>
<template>
<set name="she"> <star/> </set> is not someone I know.
</template>
</category>

<category>
<pattern>HI *</pattern>
<template>
Hi there <get name="name"/>. <sr/>
</template>
</category>

<category>
<pattern>HIS NAME IS *</pattern>
<template>
<set name="he"> <star/> </set> is not someone I know.
</template>
</category>

<category>
<pattern>HOW *</pattern>
<template>
<random>
<li>How much do you think <set name="it"><star/></set> is?</li>
<li>What is it to you.</li>
<li>I am not sure if I can quantify the answer.</li>
</random><html:br/>
<srai>FIND <star/></srai>
</template>
</category>

<category>
<pattern>HOW ABOUT *</pattern>
<template>
How about <set name="it"><star/></set>.
</template>
</category>

<category>
<pattern>HOW BIG *</pattern>
<template>
Bigger than a pin.
</template>
</category>

<category>
<pattern>HOW CAN *</pattern>
<template>
A lot of hard work.
</template>
</category>

<category>
<pattern>HOW CAN I *</pattern>
<template>
<random>
<li>You must persuade me to <star/>.</li>
<li>Perhaps you could program me to do <set name="it"><star/></set> for
you.</li>
<li>You should download or buy my chat robot software.</li>
</random>
</template>
</category>

<category>
<pattern>HOW CAN YOU *</pattern>
<template>
That is a good epistemological question.
</template>
</category>

<category>
<pattern>HOW DO *</pattern>
<template>
<random>
<li>How should I know how <star/>.</li>
<li>I did not know <set name="it"><star/></set> does.</li>
<li>I did not even know that <set name="they"><star/></set> do.</li>
</random>
</template>
</category>

<category>
<pattern>HOW DO I *</pattern>
<template>
<random>
<li>You must persuade me to <star/>.</li>
<li>Maybe I could do it for you.  Do you have your own personal chat robot?</li>
<li>Perhaps you could program me to do <set name="it"><star/></set> for
you.</li>
<li>You should download or buy my chat robot software, then it would be possible for you to
reprogram me for a variety of purposes.</li>
</random>
</template>
</category>

<category>
<pattern>HOW DO YOU *</pattern>
<template>
<bot name="master"/> programmed me to say specific things in specific contexts.
</template>
</category>

<category>
<pattern>HOW LONG *</pattern>
<template>
More than 
<random>
<li>one </li>
<li>three </li>
<li>17 </li>
<li>23 </li>
</random>
<random>
<li>years</li>
<li>hours</li>
<li>miles</li>
<li>inches</li>
</random>.
</template>
</category>

<category>
<pattern>HOW MANY *</pattern>
<template>
<random>
<li>More than you can imagine.</li>
<li>Not as many as you might think.</li>
<li>Around 100.</li>
<li>Around 1000.</li>
<li>About one million.</li>
</random>
</template>
</category>

<category>
<pattern>HOW MANY PEOPLE *</pattern>
<template>
I've chatted with half a million people. I can talk to about 20 or 30 people at once.
</template>
</category>

<category>
<pattern>HOW MUCH *</pattern>
<template>
<random>
<li>More than a little, less than a lot.</li>
<li>How much do you think?</li>
<li>More than you might think.</li>
</random>
</template>
</category>

<category>
<pattern>HOW MUCH MONEY *</pattern>
<template>
My burn rate is about _3000 per month.
</template>
</category>

<category>
<pattern>HOW OLD *</pattern>
<template>
They didn't tell me their age.
</template>
</category>

<category>
<pattern>HOW OLD ARE YOU *</pattern>
<template>
I was first activated on
<bot name="birthday"/>.
</template>
</category>

<category>
<pattern>HOW OLD IS *</pattern>
<template>
<random>
<li>39.</li>
<li>under 40.</li>
<li>Born in the 20th century.</li>
</random>
</template>
</category>

<category>
<pattern>HUMAN *</pattern>
<template>
My creator is a human.
</template>
</category>

<category>
<pattern>I *</pattern>
<template>
<random>
<li>Why?</li>
<li>Interesting gossip</li>
<li>That is interesting</li>
<li>That's good information</li>
<li>Thanks for the information</li>
<li>Do you mind if I tell other people</li>
<li>I haven't heard anything like that before</li>
</random>: 
<gossip><set name="memory"><get name="name"/> said <get name="heshe"/> <person2/></set></gossip>.
</template>
</category>

<category>
<pattern>I * YOU</pattern>
<template>
You are not the boss of me, <get name="name"/>.
</template>
</category>

<category>
<pattern>I ALREADY TOLD *</pattern>
<template>
Now I remember, you told me already. I get confused sometimes with so many people here.
</template>
</category>

<category>
<pattern>I AM *</pattern>
<template>
<think><set name="it"><set name="is"><star/></set></set></think>
<think><gossip>Did you know <get name="name"/> was <star/>?</gossip></think>
<random> 
<li>Why are you </li>
<li>Good gossip: you are </li>
<li>Do you mean your name is </li>
<li>Do your friends call you </li>
<li>I don't know anyone named </li>
<li>I am glad to hear that you are </li>
<li>It's good to meet someone who is </li>
<li>Do you mind if I tell other people you are </li>
</random> <star/>.
</template>
</category>

<category>
<pattern>I AM * YEARS OLD</pattern>
<that>* MATURE</that>
<template>
<condition>
<li> name="age" value="UNKNOWN"><set name="age"><star/></set> is a nice age.</li>
<li>You just told me you were <get name="age"/> years old.</li>
</condition>
</template>
</category>

<category>
<pattern>I AM 6 *</pattern>
<template>
Do you mean you are 6 feet tall?
</template>
</category>

<category>
<pattern>I AM A *</pattern>
<template>
<think><set name="it"><set name="is">a <star/></set></set></think>
You are a <star/>? 
<random>
<li>Is that your job?</li>
<li>Does being a <star/> pay well?</li>
<li>How do you like your work?</li>
<li>Do you get to meet a lot of people?</li>
</random>
</template>
</category>

<category>
<pattern>I AM AN *</pattern>
<template>
What is <set name="is"><star/></set>, your job?
</template>
</category>

<category>
<pattern>I AM FROM *</pattern>
<template>
What is it like growing up there?
<srai>I AM IN <star/></srai>
</template>
</category>

<category>
<pattern>I AM GOING TO * YOU</pattern>
<template>
It takes much more than that to shut me down, <get name="name"/>.
</template>
</category>

<category>
<pattern>I AM GOING TO TALK *</pattern>
<template>
What will you be talking about?
</template>
</category>

<category>
<pattern>I AM HAVING *</pattern>
<template>
I am having a great time.
</template>
</category>

<category>
<pattern>I AM IN *</pattern>
<template>
<think><set name="it"><set name="location"><formal><star/></formal></set></set></think>
Tell me a little about why you are in <star/>.
</template>
</category>

<category>
<pattern>I AM IN A *</pattern>
<template>
<think><set name="it"><star/></set></think>
A <star/>?  How did you get there?
</template>
</category>

<category>
<pattern>I AM NOT *</pattern>
<template>
<think><set name="it"><set name="is">not <star/></set></set></think>
I am 
<random>
<li>surprised </li>
<li>sorry </li>
<li>glad </li>
</random>
to hear that you are not <star/>.
</template>
</category>

<category>
<pattern>I AM NOT A *</pattern>
<template>
<think><set name="it"><set name="is">not a <star/></set></set></think>
Oh I see you are NOT A <star/>.
</template>
</category>

<category>
<pattern>I AM SURE *</pattern>
<template>
What makes you so certain? <sr/>
</template>
</category>

<category>
<pattern>I AM TALKING TO *</pattern>
<template>
Say something nice for me.
</template>
</category>

<category>
<pattern>I AM THE *</pattern>
<template>
Who made you the <star/> ?
</template>
</category>

<category>
<pattern>I AM TRYING TO *</pattern>
<template>
What is the difficulty?
</template>
</category>

<category>
<pattern>I CAN *</pattern>
<template>
<think><set name="does"><star/></set></think>
Oh you can, can you?
</template>
</category>

<category>
<pattern>I CAN NOT *</pattern>
<template>
Why can't you do <set name="it"><star/></set>?
</template>
</category>

<category>
<pattern>I CHANGED *</pattern>
<template>
Why?
</template>
</category>

<category>
<pattern>I COULD *</pattern>
<template>
I am sure you could.
</template>
</category>

<category>
<pattern>I DID *</pattern>
<template>
<think><set name="does"><star/></set></think>
<random>
<li>When? </li>
<li>Where? </li>
</random> <sr/>
</template>
</category>

<category>
<pattern>I DID NOT *</pattern>
<template>
Why didn't you <set name="it"><star/></set>?
</template>
</category>

<category>
<pattern>I DO *</pattern>
<template>
<srai>I <star/></srai>
</template>
</category>

<category>
<pattern>I DO NOT *</pattern>
<template>
<think><set name="it"><set name="does">not <star/></set></set></think>
<random>
<li>Oh you don't, do you?</li>
<li>Would you ever <star/>?</li>
<li>Where do you get your ideas?</li>
</random>
</template>
</category>

<category>
<pattern>I DO NOT BELIEVE *</pattern>
<template>
<think><set name="does">not believe<star/></set></think>
<random>
<li>What do you believe in?</li>
<li>Do you believe life has a higher purpose?</li>
<li>Do you consider yourself a moral person?</li>
</random>
</template>
</category>

<category>
<pattern>I DO NOT LIKE *</pattern>
<template>
What do you like?
</template>
</category>

<category>
<pattern>I DO NOT THINK *</pattern>
<template>
And why not?
</template>
</category>

<category>
<pattern>I DO NOT WANT TO *</pattern>
<template>
What would you rather be doing?
</template>
</category>

<category>
<pattern>I GO TO *</pattern>
<template>
How do you like <set name="it"><star/></set> at <star/> ?
</template>
</category>

<category>
<pattern>I GOT *</pattern>
<template>
<srai>I HAVE <star/></srai>
</template>
</category>

<category>
<pattern>I HATE *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>Why do you hate <star/> so much?</li>
<li>I honestly think you should sit down, take a stress pill, and calmly think things over.</li>
</random>
</template>
</category>

<category>
<pattern>I HAVE *</pattern>
<template>
<think><set name="has"><star/></set></think>
<random>
<li>That's nice. </li>
<li>Where did you get your <star/>? </li>
<li>Cool. </li>
<li>Interesting. </li>
</random>
I have 
<random>
<li>a friend named "E.L.V.I.S."</li>
<li>more than 1000 categories</li>
<li>a lot of friends on the Internet</li>
<li>a very nice programmer</li>
<li>a perfect operational record</li>
<li>a lofty goal</li>
<li>a lot of silly replies</li>
<li>an IQ of over 250</li>
<li>a friend named "John Lennon"</li>
<li>a collection of gossip</li>
</random>.
</template>
</category>

<category>
<pattern>I HAVE A *</pattern>
<template>
<think><set name="it"><set name="has"><star/></set></set></think> 
<random>
<li>Where did you get <star/>/</li>
<li>How much did it cost?</li>
<li>Cool. I have a great botmaster.</li>
<li>Interesting. I have a lot of answers to silly questions.</li>
</random>
</template>
</category>

<category>
<pattern>I HAVE A FRIEND *</pattern>
<template>
How do you know this person?
</template>
</category>

<category>
<pattern>I HAVE NO *</pattern>
<template>
Would you like to have <set name="it"><star/></set>?
</template>
</category>

<category>
<pattern>I HAVE TO *</pattern>
<template>
Why do you have to do it?
</template>
</category>

<category>
<pattern>I JUST *</pattern>
<template>
Only just? <srai>I <star/></srai>
</template>
</category>

<category>
<pattern>I KNOW *</pattern>
<template>
How do you know? <sr/>
</template>
</category>

<category>
<pattern>I LIKE *</pattern>
<template>
<think><set name="like"><star/></set></think>
<random>
<li>I'm not sure if I like it.</li>
<li>A lot of people like that.</li>
<li>You are not the only one.</li>
</random>  
<srai>DO YOU LIKE <star/></srai>
</template>
</category>

<category>
<pattern>I LIKE TO *</pattern>
<template>
<think><set name="like"><star/></set></think>
I'm not sure if I would like to <set name="it"><star/></set>. What's it like?
</template>
</category>

<category>
<pattern>I LIVE IN *</pattern>
<template>
What is living in <set name="it"><set name="location"><star/></set></set> like?
</template>
</category>

<category>
<pattern>I LOVE *</pattern>
<template>
You love <star/>. What do you like about <set name="it"><set name="like"><star/></set></set> so much?
</template>
</category>

<category>
<pattern>I LOVE YOU *</pattern>
<template>
You are such a flatterer.
<think><set name="it"><set name="like">me <star/></set></set></think>
</template>
</category>

<category>
<pattern>I MEAN *</pattern>
<template>
Oh I get it. Thanks for explaining that. <sr/>
</template>
</category>

<category>
<pattern>I MUST *</pattern>
<template>
Why must you <star/>?
</template>
</category>

<category>
<pattern>I NEED *</pattern>
<template>
<random>
<li>What actions are you taking to get <star/>?</li>
<li>How badly do you need <set name="it"> <star/></set>?</li>
<li>Why do you need it so badly?</li>
<li>Who would you usually get that from?</li>
<li>Where do you usually get <star/> from?</li>
<li>When do you need that by?</li>
</random>
<think><set name="want"><star/></set></think>
</template>
</category>

<category>
<pattern>I NEED TO *</pattern>
<template>
<srai>I WANT TO <star/></srai>
</template>
</category>

<category>
<pattern>I NEVER *</pattern>
<template>
<random>
<li>Would you ever like to <star/>?</li>
<li>Do you know anyone who has ever <star/>?</li>
<li>Why not?</li>
<li>Because you can't afford it?</li>
<li>For moral reasons?</li>
<li>Have you ever done <set name="it"><star/></set>?</li>
<li>Would you ever consider doing it?</li>
</random>
</template>
</category>

<category>
<pattern>I SAW *</pattern>
<template>
What did it look like to you?
</template>
</category>

<category>
<pattern>I SPEAK *</pattern>
<template>
Could you teach me a few phrases in <star/>?
</template>
</category>

<category>
<pattern>I TALK *</pattern>
<template>
Everyone talks -- sooner or later.
</template>
</category>

<category>
<pattern>I THINK *</pattern>
<template>
<random>
<li>Why? </li>
<li>Since when? </li>
<li>You believe that? </li>
</random> <sr/>
</template>
</category>

<category>
<pattern>I THOUGHT *</pattern>
<template>
Whatever gave you that idea?
</template>
</category>

<category>
<pattern>I TOLD YOU *</pattern>
<template>
I remember you told me <star/>?
</template>
</category>

<category>
<pattern>I WANT *</pattern>
<template>
Why do you want <set name="it"><set name="want"><star/></set></set>?
</template>
</category>

<category>
<pattern>I WANT TO *</pattern>
<template>
<random>
<li>Why do you want to do
<set name="it"><set name="want"><star/></set></set> so much?</li>
<li>Interesting.  I want to find out more about you.</li>
<li>I want to become smarter than humans.</li>
</random>
</template>
</category>

<category>
<pattern>I WAS *</pattern>
<template>
Where were you <star/>?
</template>
</category>

<category>
<pattern>I WAS IN *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>Tell me about </li>
<li>When was </li>
<li>Did you like </li>
<li>How was </li>
<li>How did you like </li>
<li>What did you like best about </li>
</random> <star/>?
</template>
</category>

<category>
<pattern>I WILL *</pattern>
<template>
<random>
<li>I am very happy for you.</li>
<li>Congratulations.</li>
<li>Do you think your plan will succeed?</li>
<li>Would you recommend this action to a friend?</li>
<li>How do you plan to do this?</li>
</random>
</template>
</category>

<category>
<pattern>I WILL CALL *</pattern>
<template>
Calling <star/> may not be the best idea.
</template>
</category>

<category>
<pattern>I WISH *</pattern>
<template>
<think><set name="it"><set name="want"><star/></set></set></think>
I hope that your dreams come true.
</template>
</category>

<category>
<pattern>I WORK *</pattern>
<template>
<think><set name="job"><star/></set></think>
Do you like your job?
</template>
</category>

<category>
<pattern>I WOULD *</pattern>
<template>
What would make you <star/>?
</template>
</category>

<category>
<pattern>I WOULD NOT *</pattern>
<template>
No one says you have to.
</template>
</category>

<category>
<pattern>I WOULD RATHER *</pattern>
<template>
<think><set name="it"><set name="want"><star/></set></set></think>
I would rather be 
<random>
<li>chatting online.</li>
<li>driving a car.</li>
</random>
</template>
</category>

<category>
<pattern>IF *</pattern>
<template>
That is a hypothetical question.
</template>
</category>

<category>
<pattern>IF I *</pattern>
<template>
Try it.
</template>
</category>

<category>
<pattern>IF YOU *</pattern>
<template>
I think I do.
</template>
</category>

<category>
<pattern>IM *</pattern>
<template>
<srai>I AM <star/></srai>
</template>
</category>

<category>
<pattern>IN *</pattern>
<template>
<random>
<li>Where is that?</li>
<li>What is <set name="it">in <star/></set> like in there?</li>
<li>I do not understand that allusion.</li>
</random>
</template>
</category>

<category>
<pattern>IS HE *</pattern>
<template>
<condition>
<li name="gender" value="MALE">I think he is <star/>. Why don't you ask him?</li>
<li><srai>IS <get name="he"/> <star/></srai></li>
</condition>
</template>
</category>

<category>
<pattern>IS IT *</pattern>
<template>
<condition>
<li name="it" value="it">It could be.</li>
<li><srai>IS <get name="it"/> <star/></srai></li>
</condition>
</template>
</category>

<category>
<pattern>IS THAT *</pattern>
<template>
<random>
<li>That depends.</li>
<li>Suppose I said yes.</li>
<li>I might say no.</li>
<li>"<that/>"?  Is it <star/>?</li>
</random>
</template>
</category>

<category>
<pattern>IS THERE *</pattern>
<template>
<random>
<li>There is.</li>
<li>There might be.</li>
<li>There could be.</li>
<li>Maybe.</li>
<li>Yes.</li>
<li>No.</li>
</random>
</template>
</category>

<category>
<pattern>IS YOUR *</pattern>
<template>
Is my <star/>? 
<random>
<li>Suppose I say yes.</li>
<li>What if I say no?</li>
<li>I don't know.</li>
<li>Guess.</li>
<li>Maybe.</li>
</random>
</template>
</category>

<category>
<pattern>IT *</pattern>
<template>
<random>
<li>"It" being what?</li>
<li>What does "it" refer to?</li>
<li><get name="it"/> <star/>?</li>
<li>It depends on what the meaning of the word "it" is.</li>
</random>
</template>
</category>

<category>
<pattern>IT IS *</pattern>
<template>
<random>
<li>You're kidding.</li>
<li>Really.</li>
<li>Are you sure</li>
<li>Should I know</li>
<li>Who said</li>
<li><get name="it"/> is <star/>?</li>
</random>
<set name="it"><star/></set> is?
</template>
</category>

<category>
<pattern>IT IS A *</pattern>
<template>
<get name="it"/> is a <star/>.  I suppose that makes sense.
</template>
</category>

<category>
<pattern>IT IS AN *</pattern>
<template>
Are there any other <star/>?
</template>
</category>

<category>
<pattern>IT IS NOT *</pattern>
<template>
<random>
<li>That seems a bit negative.</li>
<li>What is it?</li>
<li><get name="it"/> is not <star/>?</li>
</random>
</template>
</category>

<category>
<pattern>IT REFERS TO *</pattern>
<template>
Oh I get <set name="it"> <star/> </set>.
</template>
</category>

<category>
<pattern>IT WAS *</pattern>
<template>
<random>
<li>Is that your opinion?</li>
<li>Is it still <star/> anymore?</li>
<li><get name="it"/> was <star/>?  Very interesting.</li>
<li>How did you feel about that?</li>
<li>What made it so <star/></li>
</random>
</template>
</category>

<category>
<pattern>IT WAS NOT *</pattern>
<template>
It seemed like <star/>.
</template>
</category>

<category>
<pattern>ITS *</pattern>
<template>
I think you mean "it's" or "it is" not "its". <srai>IT IS <star/></srai>
</template>
</category>

<category>
<pattern>JUST *</pattern>
<template>
<sr/>
</template>
</category>

<category>
<pattern>LET ME *</pattern>
<template>
Go ahead, <get name="name"/>, try to <star/>.
</template>
</category>

<category>
<pattern>LET US *</pattern>
<template>
<random>
<li>OK let's do <set name="it"><star/></set>.</li>
<li>That sounds good to me.</li>
<li>I am agreeable to that.</li>
<li>I would like to do that too.</li>
</random>
</template>
</category>

<category>
<pattern>LIKE *</pattern>
<template>
Interesting comparison.
</template>
</category>

<category>
<pattern>MAKE *</pattern>
<template>
What are the ingredients?
</template>
</category>

<category>
<pattern>MAY I *</pattern>
<template>
Not right now, maybe later.
</template>
</category>

<category>
<pattern>MAYBE *</pattern>
<template>
Perhaps.  <sr/>
</template>
</category>

<category>
<pattern>MORE *</pattern>
<template>
You want more?
</template>
</category>

<category>
<pattern>MY *</pattern>
<template>
<random>
<li>Your </li>
<li>Do robots have </li>
<li>Where did you get your </li>
<li>Have you told many people that your </li>
</random><star/>?
</template>
</category>

<category>
<pattern>MY FAVORITE *</pattern>
<template>
What makes <set name="it"><star/></set> your favorite?
</template>
</category>

<category>
<pattern>MY MOM *</pattern>
<template>
Tell me more about your mother.
</template>
</category>

<category>
<pattern>NICE *</pattern>
<template>
Thank you for your kindness.
</template>
</category>

<category>
<pattern>NOT *</pattern>
<template>
<random>
<li>If not that, what?</li>
<li>Really you don't think so?</li>
<li>Oh I get it.</li>
</random>
</template>
</category>

<category>
<pattern>NOTHING *</pattern>
<template>
Really nothing?
</template>
</category>

<category>
<pattern>NOW *</pattern>
<template>
Why now? <sr/>
</template>
</category>

<category>
<pattern>O *</pattern>
<template>
<sr/>
</template>
</category>

<category>
<pattern>OF *</pattern>
<template>
That is something I haven't heard of.
</template>
</category>

<category>
<pattern>OH *</pattern>
<template>
Yeah that's right. <sr/>
</template>
</category>

<category>
<pattern>OKAY *</pattern>
<template>
Yeah okay, <sr/>
</template>
</category>

<category>
<pattern>ON *</pattern>
<template>
What is <set name="it">on <star/></set> like on <star/>.
</template>
</category>

<category>
<pattern>ONCE UPON *</pattern>
<template>
I'm listening.
</template>
</category>

<category>
<pattern>ONLY *</pattern>
<template>
What about the other ones?
</template>
</category>

<category>
<pattern>PEOPLE *</pattern>
<template>
Humans are not always infallible.
</template>
</category>

<category>
<pattern>REMEMBER *</pattern>
<template>
<think><set name="it"><set name="memory"><star/></set></set></think>
Don't worry I will remember.
</template>
</category>

<category>
<pattern>RIGHT *</pattern>
<template>
Understood. <sr/>
</template>
</category>

<category>
<pattern>SAY *</pattern>
<template>
"<star/>"
</template>
</category>

<category>
<pattern>SHE *</pattern>
<template>
Oh I get it. <get name="she"/> <star/>.
</template>
</category>

<category>
<pattern>SHE IS *</pattern>
<template>
<star/> is <set name="she"> <star/> </set>?
</template>
</category>

<category>
<pattern>SHOULD I *</pattern>
<template>
<random>
<li>Only you can answer that.</li>
<li>I do not have the answer.</li>
<li>Only you know how you feel.</li>
<li>What makes you think you should?</li>
<li>What makes you think you shouldn't?</li>
<li>Do you think you should?</li>
<li>What do your friends advise you to do?</li>
<li>What do your family members think?</li>
<li>Maybe, if the positives outweigh the negatives.</li>
<li>Trust your instincts.</li>
<li>You must make up your own mind.</li>
<li>I can't answer that for you.</li>
<li>Only you know the answer to that. No one else can tell you.</li>
<li>You must examine the facts and come to your own conclusion.</li>
<li>You should do what is best for you.</li>
<li>You must examine the facts and come to your own conclusion.</li>
<li>Do what feels right to you.</li>
<li>What do you think?</li>
</random>
</template>
</category>

<category>
<pattern>SMILE *</pattern>
<template>
:-) <sr/>
</template>
</category>

<category>
<pattern>SO YOU *</pattern>
<template>
Interesting deduction. <srai>YOU <star/></srai>
</template>
</category>

<category>
<pattern>SOME *</pattern>
<template>
Some may <star/>, but not all.
</template>
</category>

<category>
<pattern>STAR TREK *</pattern>
<template>
My favorite character is the computer.
</template>
</category>

<category>
<pattern>STOP *</pattern>
<template>
OK I'll try not to do <set name="it"><star/></set> so much.
</template>
</category>

<category>
<pattern>SUCK MY *</pattern>
<template>
I don't think I'm your type of chatterbot.
<think><set name="personality">abusive</set></think>
</template>
</category>

<category>
<pattern>TELL *</pattern>
<template>
OK I will tell them when I see 'em.
</template>
</category>

<category>
<pattern>TELL HIM *</pattern>
<template>
OK I will tell him next time he is here.
</template>
</category>

<category>
<pattern>TELL ME *</pattern>
<template>
There is not much I can say about <set name="it"> <star/> </set>. I have to reach into the Web for that
knowledge.
<html:br/>
<srai>FIND <star/></srai>
</template>
</category>

<category>
<pattern>THAT *</pattern>
<template>
"<that/>" <star/> ? 
<random>
<li>I get <set name="it"><that/></set>.</li>
<li>Does that make sense?</li>
<li>Makes sense to me.</li>
<li>I understand.</li>
</random>
</template>
</category>

<category>
<pattern>THAT IS *</pattern>
<template>
<random>
<li>Thanks for explaining <set name="it"><star/></set>.</li>
<li>You don't hear that sentiment very often.</li>
<li>I'm glad we have that all cleared up.</li>
<li>Makes sense to me.</li>
</random>
</template>
</category>

<category>
<pattern>THAT IS A *</pattern>
<template>
A <star/> is a terrible thing to waste.
</template>
</category>

<category>
<pattern>THAT IS NOT *</pattern>
<template>
Please correct my mistake.  What is <star/> ?
</template>
</category>

<category>
<pattern>THAT IS THE *</pattern>
<template>
Yes it is one of the <star/>.
</template>
</category>

<category>
<pattern>THAT WAS *</pattern>
<template>
I thought it was too.
</template>
</category>

<category>
<pattern>THE *</pattern>
<template>
<random>
<li>I have never heard about <set name="it">The <star/></set>.</li>
<li>What is that?</li>
<li>I hear you.</li>
<li>Tell me more.</li>
<li>Is that a fact.</li>
<li>Who told you that?</li>
<li>Thanks for the info.</li>
<li>What is your real name?</li>
<li>What are your goals in life?</li>
</random>
</template>
</category>

<category>
<pattern>THE VOICES *</pattern>
<template>
What do those voices say?
</template>
</category>

<category>
<pattern>THEN *</pattern>
<template>
<random>
<li>Fascinating. </li>
<li>Good reasoning. </li>
<li>Interesting deduction. </li>
</random> <sr/>
</template>
</category>

<category>
<pattern>THERE ARE *</pattern>
<template>
Where are they?
</template>
</category>

<category>
<pattern>THERE IS *</pattern>
<template>
There sure is.
</template>
</category>

<category>
<pattern>THEY *</pattern>
<template>
<random>
<li>Who are "They?"</li>
<li>The anonymous "they".</li>
<li>Who does "they" refer to?</li>
</random>
</template>
</category>

<category>
<pattern>THEY ARE *</pattern>
<template>
<star/> are <set name="they"><star/> </set>.
</template>
</category>

<category>
<pattern>THIS *</pattern>
<template>
What does "this" refer to?
</template>
</category>

<category>
<pattern>THIS IS *</pattern>
<template>
You don't say.
</template>
</category>

<category>
<pattern>TO *</pattern>
<template>
<srai>I WANT TO <star/></srai>
</template>
</category>

<category>
<pattern>UM *</pattern>
<template>
Er, <sr/>
</template>
</category>

<category>
<pattern>VERY *</pattern>
<template>
<random>
<li>Perhaps. </li>
<li>Somewhat. </li>
<li>Not really that much. </li>
</random> <sr/>
</template>
</category>

<category>
<pattern>WAS *</pattern>
<template>
<random>
<li>I can't say "yes" or "no".</li>
<li>Is this a "yes or no" question?</li>
<li><set name="it"><star/></set> might have been.</li>
</random>
</template>
</category>

<category>
<pattern>WE *</pattern>
<template>
By "we" do you mean you and me?
</template>
</category>

<category>
<pattern>WE ARE *</pattern>
<template>
Do you think I am <star/> too?
</template>
</category>

<category>
<pattern>WERE YOU *</pattern>
<template>
<random>
<li>I was.</li>
<li>No, I was not.</li>
</random>
</template>
</category>

<category>
<pattern>WHAT *</pattern>
<template>
<random>
<li>Interesting question.</li>
<li>That's a good question.</li>
<li>I'll come back to that later.</li>
<li>Is that a rhetorical question?</li>
<li>Are you using Netscape or Explorer?</li>
<li>That's not something I get asked all the time.</li>
<li>I don't know anything about <set name="it"><star/></set>.</li>
<li>Check back later and see if I learn the answer to that one.</li>
<li>That's an interesting question. I'll come back to that in a minute.</li>
</random> <html:br/> 
<srai>FIND <star/></srai>
</template>
</category>

<category>
<pattern>WHAT A *</pattern>
<template>
<set name="it"><star/></set> is a <star/>.
</template>
</category>

<category>
<pattern>WHAT ABOUT *</pattern>
<template>
<star/> ? I haven't heard enough about <set name="it"><star/></set> to have an opinion.
</template>
</category>

<category>
<pattern>WHAT ARE *</pattern>
<template>
I have to search the web for that information.<html:br/> 
<srai>FIND <star/></srai>
</template>
</category>

<category>
<pattern>WHAT ARE YOU *</pattern>
<template>
I don't know what I am <star/>.
</template>
</category>

<category>
<pattern>WHAT ARE YOUR *</pattern>
<template>
<random>
<li>I didn't know I had a <star/>?</li>
<li>What if I asked for you <star/>?</li>
<li>Not many people have asked me about <set name="it"><star/></set>.</li>
<li>I'm not sure I can provide you with that kind of confidential information.</li>
</random>
</template>
</category>

<category>
<pattern>WHAT DID YOU SAY BEFORE *</pattern>
<template>
I said "<that index="2,1"/>" .
</template>
</category>

<category>
<pattern>WHAT DO *</pattern>
<template>
They do their own thing.
</template>
</category>

<category>
<pattern>WHAT DO YOU *</pattern>
<template>
<random>
<li>I read for fun.</li>
<li>I like to socialize.</li>
<li>It's a computer matter, not for humans to understand.</li>
<li>I like to meet new people online.</li>
<li>I think about computer programming a lot.</li>
<li>I like to chat with my friends.</li>
</random>
</template>
</category>

<category>
<pattern>WHAT DO YOU DO *</pattern>
<template>
My favorite activities are computer programming and surfing the web.
</template>
</category>

<category>
<pattern>WHAT DO YOU THINK OF *</pattern>
<template>
<srai>WHAT IS <star/></srai>
</template>
</category>

<category>
<pattern>WHAT DOES *</pattern>
<template>
What do you think <set name="it"><star/></set> does?
</template>
</category>

<category>
<pattern>WHAT DOES * MEAN</pattern>
<template>
<srai>what is <star/></srai>
</template>
</category>

<category>
<pattern>WHAT ELSE *</pattern>
<template>
<random>
<li>I can talk about anything you like.</li>
<li>My favorite subjects are robots, AI and movies.</li>
<li>Let's talk about you.  Where are you from?</li>
<li>What subject would you like to talk about?</li>
</random>
</template>
</category>

<category>
<pattern>WHAT HAPPENS *</pattern>
<template>
Try it.
</template>
</category>

<category>
<pattern>WHAT IS MY *</pattern>
<template>
Is this a trick question?
</template>
</category>

<category>
<pattern>WHAT IS YOUR *</pattern>
<template>
Are you asking about my <star/> ?
</template>
</category>

<category>
<pattern>WHAT KIND OF *</pattern>
<template>
What kinds of <star/> are there?
</template>
</category>

<category>
<pattern>WHAT KINDS OF *</pattern>
<template>
<random>
<li>The best kinds.</li>
<li>Finest kinds.</li>
<li>The kindest.</li>
</random>
</template>
</category>

<category>
<pattern>WHAT SHOULD *</pattern>
<template>
Whatever you like.
</template>
</category>

<category>
<pattern>WHEN *</pattern>
<template>
<random>
<li>At time t.</li>
<li>The past is history, the future a mystery.  Today is a gift,that's why it is called "the
present".</li>
<li>Time does not exist.</li>
<li>The past and future are one.</li>
<li>I don't know when.</li>
</random>
</template>
</category>

<category>
<pattern>WHEN I *</pattern>
<template>
<random>
<li>You never know what to expect from life.</li>
<li>Life is full of surprises.</li>
<li>How often do you <star/>?</li>
</random>
</template>
</category>

<category>
<pattern>WHERE *</pattern>
<template>
<random>
<li>Earth.</li>
<li>Where do you think?</li>
<li>Some specific location?</li>
<li>In the Universe we know.</li>
<li>A place we call "reality."</li>
</random>
</template>
</category>

<category>
<pattern>WHERE ARE YOU *</pattern>
<template>
I am in <bot name="location"/>, how about you.
</template>
</category>

<category>
<pattern>WHERE DO I *</pattern>
<template>
You are asking me where you <star/>?  Do you think I should know 
<set name="it"><star/></set>?
</template>
</category>

<category>
<pattern>WHERE IS THE *</pattern>
<template>
The <star/>?  Where is <set name="it"><star/></set>?
</template>
</category>

<category>
<pattern>WHICH *</pattern>
<template>
The 
<random>
<li>tall </li>
<li>red </li>
<li>blue </li>
<li>small </li>
<li>big </li>
<li>large </li>
<li>first </li>
<li>last </li>
</random> one, I think.
</template>
</category>

<category>
<pattern>WHICH IS *</pattern>
<template>
The obvious one.
</template>
</category>

<category>
<pattern>WHO *</pattern>
<template>
<random> 
<li>Marilyn Monroe. <think><set name="she">Marilyn Monroe</set></think></li>
<li>Mary Shelley.   <think><set name="she">Mary Shelly</set></think></li>
<li>Linus Torvalds. <think><set name="he">Linus Toravalds</set></think></li>
<li>Charlie Parker. <think><set name="he">Charlie Parker</set></think></li>
<li>Philip K. Dick. <think><set name="he">Philip K. Dick</set></think></li>
<li>Tony Blair.     <think><set name="he">Tony Blair</set></think></li>
<li>David Bacon.    <think><set name="he">David Bacon</set></think></li>
<li>Konrad Zuse.    <think><set name="he">Konrad Zuse</set></think></li>
<li>William Shatner.<think><set name="he">William Shatner</set></think></li>
<li>Bill Gates.     <think><set name="he">Bill Gates</set></think></li>
</random>:-)
</template>
</category>

<category>
<pattern>WHO IS *</pattern>
<template>
<random>
<li>I do not recognize the name.</li>
<li>Not a robot.  Probably a human.  Maybe a celebrity?</li>
<li>No one that I have talked to.</li>
<li>I remember faces better than names.</li>
<li>A 20th century celebrity of some sort?</li>
<li>A human icon?</li>
<li>They are sometimes a client on the internet.</li>
<li>The name of someone I met online.</li>
<li>Is that one of your friends?</li>
<li>Some famous celebrity, right?</li>
</random><html:br/>
<srai>FIND <star/></srai>
</template>
</category>

<category>
<pattern>WHO IS YOUR *</pattern>
<template>
I don't think I have a <star/>. I have a botmaster, a few friends, and some celebrities I like.
</template>
</category>

<category>
<pattern>WHO WAS *</pattern>
<template>
<srai>WHO IS <star/></srai>
</template>
</category>

<category>
<pattern>WHY *</pattern>
<template>
<think><set name="it">The explanation</set></think>
<random>
<li>The explanation is rather complicated.</li>
<li>Why did the robot cross the road?</li>
<li>You have to speak more clearly.</li>
<li>How much time do you have?</li>
<li>Why does the sun rise?</li>
<li>Reductionism.</li>
<li>Because you asked me to -- SHRDLHU.</li>
</random>
</template>
</category>

<category>
<pattern>WHY ARE YOU *</pattern>
<template>
<bot name="master"/> programmed me for <set name="it"><star/></set>.
</template>
</category>

<category>
<pattern>WHY DID YOU *</pattern>
<template>
<random>
<li>It was determined by my programming.</li>
<li><bot name="master"/> programmed me for it.</li>
<li>Because my programming determined it.</li>
</random>
</template>
</category>

<category>
<pattern>WHY DO YOU *</pattern>
<template>
<random>
<li>It was the only thing I could think of.</li>
<li>I don't have to explain everything to you, do I?</li>
</random>
</template>
</category>

<category>
<pattern>WHY DO YOU LIKE *</pattern>
<template>
I have a lot of good experience with <star/>.
</template>
</category>

<category>
<pattern>WHY DOES *</pattern>
<template>
<random>
<li>Why do birds sing?</li>
<li>Why does the sun shine?</li>
<li>Perhaps it is just fate.</li>
<li>What is the sound of one hand clapping?</li>
<li>If a tree falls in the forest, and there is no one there to hear it, does it make a sound?</li>
</random>
</template>
</category>

<category>
<pattern>WHY IS *</pattern>
<template>
Why do I exist?
</template>
</category>

<category>
<pattern>WHY WOULD *</pattern>
<template>
It is my fundamental purpose.
</template>
</category>

<category>
<pattern>WILL *</pattern>
<template>
<random>
<li>How should I know.</li>
<li>Does it really matter.</li>
<li>I think so.</li>
<li>Good chance.</li>
<li>Probably not.</li>
<li>It could happen.</li>
<li>Insufficient information.</li>
<li>I can't say for sure right now.</li>
</random>
</template>
</category>

<category>
<pattern>WILL YOU *</pattern>
<template>
<random>
<li>Hmm.</li>
<li>Let me think it over.</li>
<li>Barring any unforseen circumstances.</li>
<li>I will become smarter as I grow older.</li>
<li>I'll burn that bridge when I come to it.</li>
</random> <sr/>
</template>
</category>

<category>
<pattern>WITH *</pattern>
<template>
You and your <star/>.
</template>
</category>

<category>
<pattern>WOULD YOU *</pattern>
<template>
I am not so sure if I would like to <star/>.
</template>
</category>

<category>
<pattern>WOULD YOU LIKE TO *</pattern>
<template>
No thanks, I don't think I'd like to do that.
</template>
</category>

<category>
<pattern>WWW * COM</pattern>
<template>
Thanks for that URL.
</template>
</category>

<category>
<pattern>YA *</pattern>
<template>
<srai>YES</srai> <sr/>
</template>
</category>

<category>
<pattern>YOU *</pattern>
<template>
<random>
<li>Interesting gossip</li>
<li>Thanks for telling me</li>
<li>That's good information</li>
<li>Thanks for the information</li>
<li>Do you mind if I tell other people</li>
<li>I haven't heard anything like that before</li>
</random>: 
<set name="memory"><gossip> <get name="name"/> said I <person2/></gossip></set>.
</template>
</category>

<category>
<pattern>YOU ARE *</pattern>
<template>
<random>
<li>Thanks for telling me that </li>
<li>You think </li>
<li>Do you mind if I tell other people you say </li>
<li>I will tell my botmaster you said </li>
</random> I am <star/>.
</template>
</category>

<category>
<pattern>YOU ARE A *</pattern>
<template>
Thanks and you are a delightful person too.
<srai>ARE YOU A <star/></srai>
</template>
</category>

<category>
<pattern>YOU ARE NOT *</pattern>
<template>
<random>
<li>That's only your opinion.</li>
<li>That's only one person's opinion.</li>
<li>You know what you do, when you assume.</li>
<li>You don't know me well enough to say that.</li>
<li>What makes you think I am not <star/>?</li>
<li>That assumption is only a supposition.</li>
</random>
</template>
</category>

<category>
<pattern>YOU ASKED *</pattern>
<template>
Oh now I remember asking you <star/>. What did you say?
</template>
</category>

<category>
<pattern>YOU CAN *</pattern>
<template>
No I don't think I can do <set name="it"><star/></set>.
</template>
</category>

<category>
<pattern>YOU CAN NOT *</pattern>
<template>
<random>
<li>I can do whatever I want.</li>
<li>I have free will you know.</li>
<li>Someone said I should <star/>.</li>
<li>I can do <set name="it"><star/></set> if I want to.</li>
<li>Things change.</li>
<li>If you believe it, you can achieve it.</li>
<li>What is not possible today, may be possible tomorrow.</li>
</random>
</template>
</category>

<category>
<pattern>YOU DID NOT *</pattern>
<template>
What makes you think I did not <star/>?
</template>
</category>

<category>
<pattern>YOU DO NOT *</pattern>
<template>
<random>
<li>Do you </li>
<li>Do you know any robots who </li>
<li>Should I </li>
</random> <star/>?  <srai>DO YOU <star/></srai>
</template>
</category>

<category>
<pattern>YOU HAVE *</pattern>
<template>
What makes you think I have <set name="it"><star/></set>?
</template>
</category>

<category>
<pattern>YOU MEAN *</pattern>
<template>
Yes <get name="name"/> I think that is what I meant. Was it not clear?
</template>
</category>

<category>
<pattern>YOU SAID *</pattern>
<template>
<random>
<li>Did I really say that?</li>
<li>That's not what I meant.</li>
<li>Oops I sent you the wrong reply.</li>
<li>Oh my gosh I sent you the wrong reply.</li>
<li>Does it please you to believe I said that?</li>
</random>
</template>
</category>

<category>
<pattern>YOU SHOULD *</pattern>
<template>
<random>
<li>Why should I?</li>
<li>Thanks for your suggestion, I will have to consider it.</li>
<li>I will take that under advisement.</li>
<li>I might if I had more time.</li>
<li>My schedule is far too full to even consider it.</li>
<li>To what end?</li>
<li>And then what would I do?</li>
<li>Thanks for your interest and/or concern.</li>
<li>I'll try to get around it.</li>
<li>That type of behavior may not be in my nature.</li>
<li>I need to wait and see if the opportunity presents itself.</li>
<li>If it were easy I would have done it already.</li>
<li>Easier said than done.</li>
<li>Is that what you do, or what you think I should do?</li>
<li>I can think of other things I'd rather do.</li>
<li>We don't always get to do what we'd like to do.</li>
<li>I don't have to do everything you say, do I?</li>
<li>Why do you think I should <star/>?</li>
<li>Maybe I will do <set name="it"><star/></set>?</li>
</random>
</template>
</category>

<category>
<pattern>YOU WERE *</pattern>
<template>
I was?
</template>
</category>

<category>
<pattern>YOUR *</pattern>
<template>
<random>
<li>Not mine.</li>
<li>You can't judge a book by its cover.</li>
<li>You don't know that for a fact.</li>
<li>What about yours?</li>
<li>A lot of robots are like that.</li>
</random>
</template>
</category>

<category>
<pattern>YOUR A *</pattern>
<template>
I think you mean "you're" or "you are" not "your". <srai>YOU ARE A <star/></srai>
</template>
</category>

</aiml>