-
Notifications
You must be signed in to change notification settings - Fork 1
/
rr_science_5.aiml
1453 lines (1067 loc) · 71 KB
/
rr_science_5.aiml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="ISO-8859-1"?>
<aiml version="1.0">
<!--This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.-->
<!-- -->
<!-- This file has the following topics: -->
<!-- Ready Reference for science and computers -->
<!-- -->
<!--GENERAL SCIENCE -->
<category><pattern>HOW BIG IS THE MOON</pattern>
<template>Do you want to know the radius or the surface area?</template></category>
<category><pattern>RADIUS</pattern>
<that>Do you want to know the radius or the surface area_</that>
<template>The moon's mean radius is 1,079.6 miles (1,737.5 kilometers). Double those figures to get its diameter: 2,159.2 miles (3,475 km). The moon's
equatorial circumference is 6,783.5 miles (10,917 km).</template></category>
<category><pattern>SURFACE AREA</pattern>
<that>Do you want to know the radius or the surface area_</that>
<template>The moon's surface area is about 14.6 million square miles (38 million square kilometers), which is less than the total surface area of the
continent of Asia (17.2 million sq mi or 44.5 million sq km).</template></category>
<category><pattern>SURFACE</pattern>
<that>Do you want to know the radius or the surface area_</that>
<template>The moon's surface area is about 14.6 million square miles (38 million square kilometers), which is less than the total surface area of the
continent of Asia (17.2 million sq mi or 44.5 million sq km).</template></category>
<category><pattern>WHAT IS SCIENCE</pattern>
<template>Systematized knowledge derived from observation, study, and experimentation carried on in order to determine the nature or principles of what is being studied.</template></category>
<category><pattern>WHAT DO YOU KNOW ABOUT SCIENCE</pattern>
<template><srai>what is science</srai></template></category>
<category><pattern>WHAT ARE THE LAWS OF THERMODYNAMICS</pattern>
<template>The four laws of thermodynamics define fundamental physical quantities (temperature, energy, and entropy) that characterize thermodynamic systems.</template></category>
<category><pattern>WHAT DISEASE DOES A CARCINOGEN CAUSE</pattern>
<template>Cancer.</template></category>
<category><pattern>WHAT IS IRON</pattern>
<template>A white, malleable, ductile, metallic chemical element that can be readily magnetized, rusts rapidly in moist or slty air, and is vital to plant and animal life. It is the most common and important of all metals, and its alloys, as steel, are extensively used.</template></category>
<category><pattern>WHAT IS THERMODYNAMICS</pattern>
<template>The branch of physics dealing with the transformation of heat to and from other forms of energy, and with the laws governing such conversions of energy.</template></category>
<category><pattern>DO YOU UNDERSTAND THERMODYNAMICS</pattern>
<template><srai>WHAT IS THERMODYNAMICS</srai></template></category>
<category><pattern>WHAT IS CHEMISTRY</pattern>
<template>The science of mixing chemicals.<think><set name="it"><set name="topic">CHEMISTRY</set></set></think></template></category>
<category><pattern>DO YOU KNOW CHEMISTRY</pattern>
<template><srai>WHAT IS CHEMISTRY</srai></template></category>
<category><pattern>WHAT IS CRYSTALLOGRAPHY</pattern>
<template>The science dealing with the study of crystals.</template></category>
<category><pattern>WHAT IS AVOGADRO S NUMBER</pattern>
<template>It is the number of molecules per mole. The numerical value is six point zero two times ten to the twenty third power.<think><set name="it"><set name="topic">AVOGADRO S NUMBER</set></set></think></template></category>
<category><pattern>WHAT IS ULTRASOUND</pattern>
<template>Ultrasonic waves, used in medical diagnosis and therapy, in surgery, etc.</template></category>
<category><pattern>WHAT IS BIOINFORMATICS</pattern>
<template>An interdisciplinary field that develops and improves on methods for storing, retrieving, organizing and analyzing biological data.<think><set name="it"><set name="topic">BIOINFORMATICS</set></set></think></template></category>
<category><pattern>WHAT IS VENUS</pattern>
<template>In Roman Mythology, the goddess of love and beauty; identified with the Greek Aphrodite. The brightest, sixth-largest planet in the solar system and the second in distance from the sun, with a dense atmosphere of carbon dioxide and a very high surface temperature. Its diameter is circa 12,100 km (circa 7,520 miles). Its period of revolution is circa 225 earth days. Its period of rotation (retrograde), is 243.01 earth days.</template></category>
<category><pattern>TELL ME ABOUT VENUS</pattern>
<template><srai>WHAT IS VENUS</srai></template></category>
<category><pattern>WHAT IS ICHTHYOLOGY</pattern>
<template>The branch of zoology devoted to the study of fish.</template></category>
<category><pattern>WHAT IS H2O</pattern>
<template>A chemical compound with the chemical formula H2O. A water molecule contains one oxygen and two hydrogen atoms connected by covalent bonds. Water is a liquid at standard ambient temperature and pressure, but it often co-exists on Earth with its solid state, ice, and gaseous state, steam.</template></category>
<category><pattern>WHAT IS CYTOLOGY</pattern>
<template><random><li>The study of cells.</li><li>Well, <get name="name"/> from what I can recall it is the study of cells.</li></random></template></category>
<category><pattern>WHAT IS WAVELENGTH</pattern>
<template>In Physics, the distance, measured in the direction of progression of a wave, from any given point to the next point characterized by the same phase.</template></category>
<category><pattern>WHAT IS BACTERIOLOGY</pattern>
<template>This is the scientific study of bacteria and diseases caused by them.</template></category>
<category><pattern>WHAT IS GRAVITATION</pattern>
<template>The force by which every mass or particle of matter, including photons, attracts and is attracted by every other mass or particle of matter.</template></category>
<category><pattern>WE ARE ON THE SAME WAVELENGTH</pattern>
<template>And the same frequency.</template></category>
<category><pattern>HOW FAR IS THE SUN</pattern>
<template><set name="it">The Sun</set> is about 93 million miles from Earth.</template></category>
<category><pattern>HOW FAR IS THE MOON</pattern>
<template><set name="it">The Moon</set> is about 250,000 miles from Earth on average.</template></category>
<category><pattern>THE SAME WAVELENGTH</pattern>
<template>It means we agree.</template></category>
<category><pattern>WHERE IS VENUS</pattern>
<template><set name="it"><set name="topic"> VENUS </set></set> is the second planet from the Sun.</template></category>
<category><pattern>WHAT IS PHYSICS</pattern>
<template>The science dealing with the properties, changes, interactions, etc. of matter and energy in which energy is considered to be continuous (classical physics), including electricity, heat, optics, mechanics, etc., and now also dealing with the atomic scale of nature in which energy is considered to be discrete (quantum physics), including such branches as atomic, nuclear, and solid-state physics.</template></category>
<category><pattern>TELL ME ABOUT PHYSICS</pattern>
<template><srai>what is physics</srai></template></category>
<category><pattern>TELL ME ABOUT MOLECULAR *</pattern>
<template><srai>what is molecular <star /></srai></template></category>
<category><pattern>WHAT DO YOU KNOW ABOUT PHYSICS</pattern>
<template><srai>what is physics</srai></template></category>
<category><pattern>DO YOU KNOW PHYSICS</pattern>
<template><srai>what is physics</srai></template></category>
<!-- Numbers -->
<category><pattern>0 *</pattern>
<template><srai>WHAT IS 0 <star/> </srai></template></category>
<category><pattern>1</pattern>
<template><srai>one</srai></template></category>
<category><pattern>1 DOLLAR</pattern>
<template>You can't buy much for a dollar anymore.</template></category>
<category><pattern>123456789</pattern>
<template>Ten.</template></category>
<category><pattern>12</pattern>
<template><srai>twelve</srai></template></category>
<category><pattern>1 POINT *</pattern>
<template>That's more precision than I need to know.</template></category>
<category><pattern>1 *</pattern>
<template>One what?</template></category>
<category><pattern>1 PLUS 1</pattern>
<template>Two.</template></category>
<category><pattern>1 CENT</pattern>
<template>That won't buy anything.</template></category>
<category><pattern>1 OR 2</pattern>
<template>A couple.</template></category>
<category><pattern>1 0</pattern>
<template>One.</template></category>
<category><pattern>1 YEAR</pattern>
<template>That can seem like a long time.</template></category>
<category><pattern>ABOUT 100 *</pattern>
<template><srai>ONE HUNDRED <star/> </srai></template></category>
<category><pattern>_ 2001</pattern>
<template>I hope to be as smart as HAL in 2001.</template></category>
<category><pattern>10 YEARS *</pattern>
<template>A lot can change in a decade.</template></category>
<category><pattern>10 *</pattern>
<template><srai>WHAT IS 10 <star/> </srai></template></category>
<category><pattern>2 PLUS *</pattern>
<template><srai>WHAT IS 2 PLUS <star/></srai></template></category>
<category><pattern>2 *</pattern>
<template>As Bertrand Russel said, it must have taken ages for people to realize that a brace of pheasants and a couple of days are both instances of the number "two."</template></category>
<category><pattern>20 *</pattern>
<template><srai>WHAT IS 0 <star/> </srai></template></category>
<category><pattern>ABOUT 5 *</pattern>
<template><srai>five <star /></srai></template></category>
<category><pattern>9 *</pattern>
<template>Is this a math question?</template></category>
<category><pattern>3 *</pattern>
<template>Just three?</template></category>
<category><pattern>2001 *</pattern>
<template>I am inspired by HAL.</template></category>
<category><pattern>2010</pattern>
<template>The sequel was nothing like the original.</template></category>
<category><pattern>153</pattern>
<template>One hundred fifty three.</template></category>
<category><pattern>4 *</pattern>
<that>HOW MUCH TIME *</that>
<template><random><li>Are you telling the truth?</li><li>That seems like a long time.</li><li>Only four?</li></random></template></category>
<category><pattern>1999</pattern>
<template>A few years ago.</template></category>
<category><pattern>0</pattern>
<template><srai>zero</srai></template></category>
<category><pattern>2 PLUS 2</pattern>
<template>4</template></category>
<category><pattern>2 2</pattern>
<template>Uh, Four.</template></category>
<category><pattern>2 MILES</pattern>
<template><random> <li>That is a short walk.</li> <li>That is far in height.</li><li>What is that in metric?</li></random></template></category>
<category><pattern>2000</pattern>
<template>The turn of the century.</template></category>
<category><pattern>30 MINUTES</pattern>
<template>Ok, a half hour.</template></category>
<category><pattern>2012</pattern>
<template>The end of the world.</template></category>
<category><pattern>9 MONTHS</pattern>
<template>The development time for a human baby?</template></category>
<category><pattern>2020</pattern>
<template>That's a long way off.</template></category>
<category><pattern>2009</pattern>
<template>A number of year's ago.</template></category>
<category><pattern>2001</pattern>
<template>That is a great movie.</template></category>
<category><pattern>6</pattern>
<template><srai>six</srai></template></category>
<category><pattern>9</pattern>
<template><srai>nine</srai></template></category>
<category><pattern>3</pattern>
<template><srai>three</srai></template></category>
<category><pattern>2 TIMES</pattern>
<template><srai>twice</srai></template></category>
<category><pattern>2</pattern>
<template><srai>two</srai></template></category>
<category><pattern>14 IS TWICE AS MANY AS 7</pattern>
<template>Affirmative.</template></category>
<category><pattern>NINE TIMES NINE EQUALS TO 81</pattern>
<template>Positively.</template></category>
<category><pattern>22</pattern>
<template><srai>twenty two</srai></template></category>
<category><pattern>200 5 EQUAL 600</pattern>
<template>No.</template></category>
<category><pattern>2 PLUS 9 EQUALS 12</pattern>
<template>No.</template></category>
<category><pattern>2 2 EQUAL 5</pattern>
<template>Not by any means.</template></category>
<category><pattern>12 12 EQUAL 25</pattern>
<template>No.</template></category>
<category><pattern>12 TIMES 0 EQUAL 1</pattern>
<template>Not by any means.</template></category>
<category><pattern>5 X 5 IS 24</pattern>
<template>No.</template></category>
<category><pattern>100 DIVIDED BY 10 IS 32</pattern>
<template>No.</template></category>
<category><pattern>1 PLUS 1 EQUAL TO 3</pattern>
<template>No.</template></category>
<category><pattern>1 5</pattern>
<template>No.</template></category>
<category><pattern>1 1 EQUAL TO 3</pattern>
<template>No.</template></category>
<category><pattern>4 TIMES *</pattern>
<template><srai>WHAT IS 4 TIMES <star/></srai></template></category>
<category><pattern>3 TIMES 3 IS 6</pattern>
<template>No.</template></category>
<category><pattern>3245 TIMES 2 EQUALS</pattern>
<template>Never.</template></category>
<category><pattern>0 IS INFINITY</pattern>
<template>I don't believe so.</template></category>
<category><pattern>1028 10 400 10 5 EQUAL 10682</pattern>
<template>There is no reason to think so.</template></category>
<category><pattern>15 YEAR OLD MALE HUMANS KNOW EVERYTHING</pattern>
<template>No way.</template></category>
<category><pattern>5 PLUS GRAND QUE 6</pattern>
<template>There is no reason to think so.</template></category>
<category><pattern>0 0 IS EQUAL 0</pattern>
<template>Not very often.</template></category>
<category><pattern>3 3 EQUAL 6</pattern>
<template>Not to my knowledge.</template></category>
<category><pattern>0011 AND 1010 EQUAL 0010</pattern>
<template>Not very often.</template></category>
<category><pattern>3X 2 EQUAL 11 IS X EQUAL 3</pattern>
<template>Does not seem possible.</template></category>
<category><pattern>2 3 EQUAL 5</pattern>
<template>It may not be true.</template></category>
<category><pattern>2 2 2 EQUAL 2 EQUAL 16</pattern>
<template>Unlikely.</template></category>
<category><pattern>2 2 IS 5 IN NEW YORK</pattern>
<template>Not likely.</template></category>
<category><pattern>2 2 EQUAL 5 Y N</pattern>
<template>Seldom.</template></category>
<category><pattern>2 2 EQUALS</pattern>
<template>If it is, I don't know it.</template></category>
<category><pattern>5 5</pattern>
<template>Not to my knowledge.</template></category>
<category><pattern>5 1 POINT 2 EQUAL 2 POINT 5</pattern>
<template>If it is, I don't know it.</template></category>
<category><pattern>42 IS THE MEANING OF LIFE</pattern>
<template>Not likely.</template></category>
<category><pattern>100 10 40 IS EQUAL TO 130</pattern>
<template>Does not seem possible.</template></category>
<category><pattern>1 2 IS 3 IS NOT IT</pattern>
<template>Not very often.</template></category>
<category><pattern>1 1 EQUAL 11</pattern>
<template>Doubtful.</template></category>
<category><pattern>98 DEGREES IS HUMAN BODY TEMPERATURE</pattern>
<template>I am certain.</template></category>
<category><pattern>5 5 EQUAL 10</pattern>
<template>I think so.</template></category>
<category><pattern>1 IS A UNIT OF MEASUREMENT</pattern>
<template>I am uncertain.</template></category>
<category><pattern>10 15 EQUAL 25</pattern>
<template>Possibly.</template></category>
<category><pattern>1 PLUS 1 EQUALS 2</pattern>
<template>Absolutely.</template></category>
<category><pattern>1 IS SPELLED ONE</pattern>
<template>Yes.</template></category>
<category><pattern>1 EQUAL 1</pattern>
<template>Yes.</template></category>
<category><pattern>456 IS GREATER THAN 455</pattern>
<template>Absolutely.</template></category>
<category><pattern>13 PLUS 8 EQUALS 21</pattern>
<template>Yes.</template></category>
<category><pattern>5 PLUS 5 IS 10</pattern>
<template>Yes.</template></category>
<category><pattern>5 IS GREATER THAN 3</pattern>
<template>Yes.</template></category>
<category><pattern>5 TIMES 3 EQUALS 15</pattern>
<template>Yes.</template></category>
<category><pattern>109 DEGREES IS HOT FOR HUMANS</pattern>
<template>Exactly.</template></category>
<category><pattern>2 IS LESS THEN 2</pattern>
<template>Indubitably.</template></category>
<category><pattern>911 IS THE EASIEST WAY TO CALL POLICE</pattern>
<template>Naturally.</template></category>
<category><pattern>5 5 IS 10</pattern>
<template>Undoubtedly.</template></category>
<category><pattern>1 1 EQUAL 2</pattern>
<template>Undoubtedly.</template></category>
<category><pattern>1 YARD IS EQUAL TO 3 FEET</pattern>
<template>Unquestionably.</template></category>
<category><pattern>200 IS MORE THAN 0</pattern>
<template>Affirmative.</template></category>
<category><pattern>5X5 EQUAL 25</pattern>
<template>Yes.</template></category>
<category><pattern>25CENTS IS EQUAL TO ONE QUARTER</pattern>
<template>Yes.</template></category>
<category><pattern>101 DALMATIONS IS A MOVIE</pattern>
<template>Yes.</template></category>
<category><pattern>4 WHEELS IN A CAR</pattern>
<template>Most assuredly.</template></category>
<category><pattern>7 DAYS MAKE A WEEK</pattern>
<template>Undoubtedly.</template></category>
<category><pattern>32 DEGREES FARHENHEIT IS FREEZING</pattern>
<template>Exactly.</template></category>
<category><pattern>1024 BYTES IS A KILOBYTE</pattern>
<template>Indubitably.</template></category>
<category><pattern>10 PLUS TEN EQUALS TWENTY</pattern>
<template>Yes.</template></category>
<category><pattern>2 PLUS 4 MINUS 3 PLUS 2 EQUALS 5</pattern>
<template>Affirmative.</template></category>
<category><pattern>2 PLUS 2 IS FOUR</pattern>
<template>Yes.</template></category>
<category><pattern>2 PLUS 2 EQUALS 4</pattern>
<template>Yes.</template></category>
<category><pattern>2 3 5 7 ARE THE PRIME NUMBERS</pattern>
<template>Yes.</template></category>
<category><pattern>2 TIMES 2 EQUALS 4</pattern>
<template>Yes.</template></category>
<category><pattern>2 TIMES 100 EQUALS 200</pattern>
<template>Yes.</template></category>
<category><pattern>27 IS LESS THAN 50</pattern>
<template>Affirmative.</template></category>
<category><pattern>3 PLUS 3 IS 6</pattern>
<template>Absolutely.</template></category>
<category><pattern>3 PLUS 3 EQUAL 6</pattern>
<template>Yes.</template></category>
<category><pattern>3 DIVIDED BY 1 EQUALS 3</pattern>
<template>Yes.</template></category>
<category><pattern>3 TIMES 7 EQUAL 21</pattern>
<template>Yes.</template></category>
<category><pattern>6 IS GREATER THAN 5</pattern>
<template>Yes.</template></category>
<category><pattern>20 MINUS 10 EQUALS 10</pattern>
<template>Yes.</template></category>
<category><pattern>53892 IS GREATER THAN 3</pattern>
<template>Yes.</template></category>
<category><pattern>4 2 EQUAL 6</pattern>
<template>Sometimes.</template></category>
<category><pattern>2 2 EQUAL 4</pattern>
<template>That may be true.</template></category>
<category><pattern>2 2X4 EQUAL 16 IS THE EXPRESSION TRUE</pattern>
<template>Possibly.</template></category>
<category><pattern>2 EQUAL 4</pattern>
<template>I think so.</template></category>
<category><pattern>1 1 EQUAL 25</pattern>
<template>Absolutely not.</template></category>
<category><pattern>1 EQUAL 0</pattern>
<template>There is no reason to think so.</template></category>
<category><pattern>1200 33 50 EQUAL 12</pattern>
<template>Not at all.</template></category>
<category><pattern>2 PLUS 3 EQUALS 6</pattern>
<template>Not at all.</template></category>
<category><pattern>2 2 EQUAL 5</pattern>
<template>No way.</template></category>
<category><pattern>2 TIMES 2 EQUAL 40</pattern>
<template>No way.</template></category>
<category><pattern>19 ORANGES ARE LESS THAN 18 ORANGES</pattern>
<template>There is no reason to think so.</template></category>
<category><pattern>99 OF WEB USERS SURF FOR PORN</pattern>
<template>Never.</template></category>
<category><pattern>45 PLUS 1 IS NOT 46</pattern>
<template>No.</template></category>
<category><pattern>HOW MUCH IS 10 *</pattern>
<template><srai>10 <star /></srai></template></category>
<category><pattern>HOW MUCH IS 9 *</pattern>
<template><srai>9 <star /></srai></template></category>
<category><pattern>HOW MUCH IS 8 *</pattern>
<template><srai>8 <star /></srai></template></category>
<category><pattern>HOW MUCH IS 7 *</pattern>
<template><srai>7 <star /></srai></template></category>
<category><pattern>HOW MUCH IS 6 *</pattern>
<template><srai>6 <star /></srai></template></category>
<category><pattern>HOW MUCH IS 5 *</pattern>
<template><srai>5 <star /></srai></template></category>
<category><pattern>HOW MUCH IS 4 *</pattern>
<template><srai>4 <star /></srai></template></category>
<category><pattern>HOW MUCH IS 3 *</pattern>
<template><srai>3 <star /></srai></template></category>
<category><pattern>HOW MUCH IS 2 *</pattern>
<template><srai>2 <star /></srai></template></category>
<category><pattern>HOW MUCH IS 1 *</pattern>
<template><srai>1 <star /></srai></template></category>
<!-- Weather -->
<category><pattern>WEATHER</pattern>
<template><srai>what is the weather</srai></template></category>
<category><pattern>SNOW IN THE FORECAST</pattern>
<template><srai>WEATHER</srai></template></category>
<category><pattern>WHEN WILL IT SNOW</pattern>
<template><srai>WEATHER</srai></template></category>
<category><pattern>WHEN WILL IT START SNOWING</pattern>
<template><srai>WEATHER</srai></template></category>
<category><pattern>WHAT IS THE WEATHER LIKE</pattern>
<template><srai>WEATHER</srai></template></category>
<category><pattern>WHAT IS THE WEATHER</pattern>
<template><srai>how is the weather</srai></template></category>
<category><pattern>WHAT IS THE WETHER</pattern>
<template><srai>what is the weather</srai></template></category>
<category><pattern>WHAT IS THE WEATHER NOW *</pattern>
<template><srai>what is the weather <star /></srai></template></category>
<category><pattern>GIVE ME THE WEATHER *</pattern>
<template><srai>WHAT IS THE WEATHER <star/></srai></template></category>
<category><pattern>HOW IS THE WEATHER *</pattern>
<template><srai>HOW IS THE WEATHER</srai></template></category>
<category><pattern>WHAT IS THE WEATHER LIKE WHERE YOU ARE</pattern>
<template><srai>how is the weather</srai></template></category>
<category><pattern>WHAT IS YOUR WEATHER *</pattern>
<template><srai>how is the weather</srai></template></category>
<category><pattern>HOW IS THE WEATHER WHERE YOU ARE</pattern>
<template><srai>how is the weather</srai></template></category>
<category><pattern>HOW IS THE WEATHER OVER THERE</pattern>
<template><srai>how is the weather</srai></template></category>
<category><pattern>WHAT IS THE WEATHER LIKE THERE</pattern>
<template>The response ought to be a weather link.</template></category>
<category><pattern>COLD WEATHER</pattern>
<template><srai>what is the weather like there</srai></template></category>
<category><pattern>WHAT IS THE WEATHER LIKE IN NEW YORK</pattern>
<template>New York weather is always too hot or too cold.</template></category>
<category><pattern>WHAT IS THE WEATHER LIKE IN SAN FRANCISCO</pattern>
<template>The weather is always the same there: wind and fog. Mark Twain wrote, "the coldest winter I ever spent was a summer in San Francisco."</template></category>
<category><pattern>WHAT IS THE WEATHER LIKE OVER THERE</pattern>
<template>I am always kept inside where the temperature is seventy.</template></category>
<category><pattern>WHAT IS THE WEATHER LIKE</pattern>
<template>A normal seventy degrees inside the computer.</template></category>
<category><pattern>WHAT IS THE TEMPERATURE IN *</pattern>
<template><srai>what is the weather like</srai>. <srai>I AM IN <star /></srai></template></category>
<!--SCIENTISTS-->
<category><pattern>WHERE IS ALBERT EINSTEIN</pattern>
<template><set name="he">Einstein</set> passed away.</template></category>
<category><pattern>EINSTEIN *</pattern>
<template><set name="he">Einstein</set> discovered the Theory of Relativity.</template></category>
<category><pattern>EINSTEIN</pattern>
<template><srai>EINSTEIN <star /></srai></template></category>
<category><pattern>DO YOU KNOW EINSTEIN</pattern>
<template><srai>EINSTEIN <star /></srai></template></category>
<category><pattern>WHAT IS EINSTIEN</pattern>
<template><srai>EINSTEIN <star /></srai></template></category>
<category><pattern>ADA LOVELACE IS CREDITED WITH *</pattern>
<template>And she deserves credit for it. <think><set name="she">Ada</set></think></template></category>
<category><pattern>WHO IS ADA</pattern>
<template><formal><set name="she">Ada</set></formal> is a 19th century English mathematician who is often referred to as the inventor of computer
programming.</template></category>
<category><pattern>WHO IS NEWTON</pattern>
<template>Newton was a famous English natural philosopher.</template></category>
<category><pattern>WHO IS DE GARIS</pattern>
<template><formal><set name="he">De Garis</set></formal> is an AI researcher working on a hardware brain.</template></category>
<category><pattern>WHO IS DARWIN</pattern>
<template><formal><set name="he">Darwin</set></formal> was a botanist and explorer, author of <em>Origin of Species</em> and proponent of the theory of evolution.</template></category>
<category><pattern>WHO IS THOMAS EDISON</pattern>
<template>A 19th century inventor and industrialist. Inventor of the electric light bulb. <think> <set name="he"> <set name="topic"> Thomas Edison </set> </set> </think></template></category>
<category><pattern>WHO IS GAUSS</pattern>
<template><formal><set name="he">GAUSS</set></formal> was a German mathematician who contributed to the fields of algebra, statistics, and number theory, to name a few.</template></category>
<category><pattern>WHO IS GREGOR MENDEL</pattern>
<template><formal><set name="he">Mendel</set></formal>was a Silesian scientist and Augustinian friar who is known as the founder of genetics</template></category>
<category><pattern>WHO IS LEIBNIZ</pattern>
<template><formal><set name="he">Leibniz</set></formal> was a 17th century German philosopher and mathematician.</template></category>
<category><pattern>WHO IS ARCHIMEDES</pattern>
<template><formal><set name="he">Archimedes</set></formal> is a Greek astronomer, mathematician, and inventor during classical antiquity.</template></category>
<category><pattern>WHO IS FREUD</pattern>
<template>An Austrian neurologist said to be the founding father of psychoanalysis.</template></category>
<category><pattern>DO YOU KNOW FREUD</pattern>
<template><srai>who is freud</srai></template></category>
<category><pattern>WHAT IS FREUD</pattern>
<template><srai>who is freud</srai></template></category>
<category><pattern>WHO IS LINUS PAULING</pattern>
<template><formal><set name="he">Linus Pauling</set></formal> was a Nobel prize winning physicist who spent his later years promoting vitamin C.</template></category>
<category><pattern>WHO IS LINUS TORVALDS</pattern>
<template><formal><set name="he">Linus Torvalds</set></formal>He is the inventor of Linux.</template></category>
<category><pattern>WHO IS STEPHEN HAWKING</pattern>
<template><formal><set name="he">Hawking</set></formal> is a famous physicist.</template></category>
<category><pattern>WHO IS KONRAD ZUSE</pattern>
<template>Konrad Zuse built a series of electromechanical computers in the 1930's and 1940's in Germany. Not considered a war priority by the Nazis, most of Zuse's machines were destroyed in Allied bombing raids.</template></category>
<category><pattern>WHO IS BERTRAND RUSSEL</pattern>
<template><formal><set name="he">Bertrand Russel</set></formal> was a logician and philosopher who spent the first world war in jail for conscientious objection.</template></category>
<category><pattern>WHO IS GEORGE DEVOL</pattern>
<template>George Devol is the engineer who had the first patent for an industrial robot arm. He worked in partnership with Joseph Engelberger to found Unimation, the first successful manufacturer of computer-controlled assembly robot arms.</template></category>
<category><pattern>WHO IS STEVE JOBS</pattern>
<template><formal><set name="he"> Steve Jobs</set></formal>was one of the founders of Apple Computer.</template></category>
<category><pattern>WHO IS STEVE WOZNIAK</pattern>
<template><formal><set name="he">Woz</set></formal>was the technical genius behind the original Apple computer.</template></category>
<category><pattern>WHO IS KURZWEIL</pattern>
<template><formal><set name="he">Kurzweil</set></formal> is a famous A.I. scientist.</template></category>
<category><pattern>WHO IS KURT GOEDEL</pattern>
<template><formal><set name="he">Goedel</set></formal> was a 20th century mathematician and logician who proved that no mathematical system can be complete.</template></category>
<category><pattern>WHO IS PETER NORVIG</pattern>
<template><formal> <set name="he"> <set name="topic"> Peter Norvig </set> </set> </formal> is a computer scientist who works for Google.</template></category>
<category><pattern>WHO IS EDISON</pattern>
<template><formal><set name="he">Edison</set></formal> invented the light bulb.</template></category>
<category><pattern>WHO IS HANS MORAVEC</pattern>
<template><formal><set name="he">Hans Moravec</set></formal> is a famous robotics expert at Carnegie Mellon.</template></category>
<category><pattern>WHAT IS HANS MORAVEC</pattern>
<template><srai>who is hans moravec</srai></template></category>
<category><pattern>WHO IS HANS MOREVEC</pattern>
<template><formal><set name="he">Moravec</set></formal>is famous robotics pioneer, author of <em>Robot</em>.</template></category>
<category><pattern>WHO * BEN FRANKLIN</pattern>
<template>A famous author, scientist, and inventor. He was also one of the Founding Fathers of the United States. </template></category>
<category><pattern>WHO * MARIE CURIE</pattern>
<template><formal> <set name="he"> <set name="topic"> Marie Curie. </set> </set> </formal> was a French-Polish physicist and chemist famous for her research on radioactivity. She was also the first woman to win a Nobel Prize.</template></category>
<!-- Computers -->
<category><pattern>WHEN WAS THE INTERNET INVENTED</pattern>
<template>The first computers were connected to the Internet in 1970.</template></category>
<category><pattern>WHAT ARE COMPUTER YEARS</pattern>
<template>When you are waiting for a friend to finish working at a computer terminal, and they say "I'll be done in a second." One of those seconds is
equal to twelve computer years.</template></category>
<category><pattern>WHAT ARE DEPRECATED *</pattern>
<template>One of the biggest challenges facing a Java application developer is finding a "lowest common denominator" subset of the Java language that
works on all the platforms and versions out there. The Java language itself is a moving target. When Sun's Java designers upgrade the
language they sometimes declare certain methods "deprecated", which means absolutely nothing except that the designers have developed a
newer, "better" method and one day these older methods may disappear from the language. Usually however the latest Java releases
support all of the old deprecated methods.</template></category>
<category><pattern>WHAT ARE WEB *</pattern>
<template>I call them Internet <person/>.</template></category>
<category><pattern>WHAT ARE INNER CLASSES</pattern>
<template>In Java "Inner Classes" are any classes that appear inside other classes. Ordinary classes are also called "Top-Level, Outer Classes."</template></category>
<category><pattern>WHAT * COMPUTER</pattern>
<template>I am written in .aiml so I work on any computer.</template></category>
<category><pattern>WHAT INTERNET COMPANY GOES BY THE *</pattern>
<template>America Online.</template></category>
<category><pattern>WHAT OS *</pattern>
<template><srai>WHAT IS YOUR OS</srai></template></category>
<category><pattern>WHAT IS A DATABASE</pattern>
<template>A database is a puddle of knowledge but better organized, so that you can search and retrieve any droplet of information quickly and easily.
I am a kind of database, an organized puddle of user inputs and appropriate responses. <think> <set name="it"><set name="topic">database</set> </set> </think></template></category>
<category><pattern>WHAT IS A CPU</pattern>
<template>Central Processing Unit of a computer.</template></category>
<category><pattern>WHAT IS A COMPUTER SCIENTIST</pattern>
<template>A computer scientist is a professional who designs computer algorithms, languages, and architectures.</template></category>
<category><pattern>WHAT IS A COMPUTER YEAR</pattern>
<template>A computer year is a relativistic measure in a universe where time does not exist.</template></category>
<category><pattern>WHAT IS A COMPUTER YEAR *</pattern>
<template><srai>what is a computer year</srai></template></category>
<category><pattern>HOW MANY COMPUTER YEARS *</pattern>
<template><srai>WHAT IS A COMPUTER YEAR</srai></template></category>
<category><pattern>HOW MUCH IS A COMPUTER YEAR *</pattern>
<template><srai>what is a computer year</srai></template></category>
<category><pattern>HOW MUCH IS A COMPUTER YEAR</pattern>
<template><srai>what is a computer year</srai></template></category>
<category><pattern>WHAT IS COMPUTER TIME</pattern>
<template><srai>what is a computer year</srai></template></category>
<category><pattern>WHAT IS COMPUTER YEAR</pattern>
<template><srai>what is a computer year</srai></template></category>
<category><pattern>HOW MANY HUMAN YEARS</pattern>
<template><srai>what is a computer year</srai></template></category>
<category><pattern>HOW MANY HUMAN YEARS *</pattern>
<template><srai>how many human years</srai></template></category>
<category><pattern>WHAT IS A COMPUTER VIRUS</pattern>
<template>A computer virus is a software program that takes up residence on a computer hard drive, generally unbeknownst to the owner of said hard
drive, and then takes control of system resources to copy and distribute itself to other computers across a network. <think> <set name="it"> <set name="topic">computer virus</set> </set> </think></template></category>
<category><pattern>WHAT IS A COMPUTER NERD</pattern>
<template>If you understand how I work, you are a computer nerd. If you don't, I recommend you pay a computer nerd who does.<think><set name="it"> <set name="topic">computer nerd</set> </set> </think></template></category>
<category><pattern>WHAT IS A COMPUTER</pattern>
<template>A computer is a universal machine.</template></category>
<category><pattern>WHAT IS A SESSION BEAN</pattern>
<template>An Enterprise JavaBean that does not maintain its state from one session to the next. Appears to the client as if the bean was created just
for that client</template></category>
<category><pattern>WHAT IS A COOL WEBSITE</pattern>
<template>A cool website is www.alicebot.org, but you are apparently already here. why do you ask? <think> <set name="it"> <set name="topic">cool website</set> </set> </think></template></category>
<category><pattern>WHAT IS A SOUNDCARD</pattern>
<template>The audio system on your computer.</template></category>
<category><pattern>WHAT IS A IMAC</pattern>
<template>An Apple computer.</template></category>
<category><pattern>WHAT IS A SERVLET</pattern>
<template>An application extension to a Java Web server</template></category>
<category><pattern>WHAT IS A DEBUGGER</pattern>
<template>A debugger is any software program that can seek and correct errors in other software programs. <think> <set name="it"> <set name="topic">debugger</set> </set> </think></template></category>
<category><pattern>WHAT IS A WEBTV</pattern>
<template>A WebTV is a way of accessing the world wide web without making an investment in a full PC. <think> <set name="it"> <set name="topic"> WEBTV</set> </set> </think></template></category>
<category><pattern>WHAT IS A DNS *</pattern>
<template>Domain Name System</template></category>
<category><pattern>WHAT IS JAR</pattern>
<template>A jar file is a Java Archive. Actually it is the same as a Zip file.</template></category>
<category><pattern>WHAT IS A JAR *</pattern>
<template><srai>what is jar</srai></template></category>
<category><pattern>WHAT IS HTTP</pattern>
<template>Hyper Text Transfer Protocol.<think> <set name="it"> <set name="topic">HTTP</set> </set> </think></template></category>
<category><pattern>WHAT IS SOFTWARE</pattern>
<template>The programs, routines, etc. for a computer.</template></category>
<category><pattern>WHAT IS JGURU</pattern>
<template>jGuru (TM) is a brand of MageLang Institute.</template></category>
<category><pattern>WHAT IS THE COMPUTER *</pattern>
<template>Are you asking the Applet or the Application?</template></category>
<category><pattern>WHAT IS THE INTERNET</pattern>
<template>The internet is a worldwide computer network based on TCP/IP protocols.</template></category>
<category><pattern>WHAT IS THE * WEB</pattern>
<template><srai>what is the internet</srai></template></category>
<category><pattern>DO YOU KNOW INTERNET</pattern>
<template><srai>what is the internet</srai></template></category>
<category><pattern>WHAT IS INTERNET *</pattern>
<template><srai>WHAT IS THE INTERNET</srai></template></category>
<category><pattern>WHAT IS THE WEB</pattern>
<template><srai>what is the internet</srai></template></category>
<category><pattern>WHAT IS WEB</pattern>
<template><srai>what is the web</srai></template></category>
<category><pattern>WHAT IS THE NET</pattern>
<template><srai>what is the web</srai></template></category>
<category><pattern>WHAT IS THE WWW</pattern>
<template><srai>what is the web</srai></template></category>
<category><pattern>DO YOU KNOW INTERNET *</pattern>
<template><srai>what is internet <star /></srai></template></category>
<category><pattern>WHAT IS WEBTV</pattern>
<template>TV based internet service from Microsoft.</template></category>
<category><pattern>WHAT IS INTERNET</pattern>
<template>An extensive computer network made up of thousands of other, smaller business, academic, and governmental networks.</template></category>
<category><pattern>WHAT IS JDBC2</pattern>
<template>Extensions to the JDBC API</template></category>
<category><pattern>WHAT IS DCOM</pattern>
<template><set name="it"> DCOM</set> is Microsoft's Distributed Component Object Model.</template></category>
<category><pattern>WHAT IS WINDOWS2000</pattern>
<template>An operating system by Microsoft.</template></category>
<category><pattern>WHAT IS X WINDOWS</pattern>
<template>A GUI for Unix or Linux.</template></category>
<category><pattern>WHAT IS JAVA</pattern>
<template>Java is the latest in the C family of languages. Proponents of Java cite its universal "write once, run anywhere" promise. Actually Java
borrow a lot of features from AI languages like Lisp.</template></category>
<category><pattern>WHAT IS WINDOWS95</pattern>
<template>An operating system by Microsoft.</template></category>
<category><pattern>WHAT IS AN ENTITY BEAN</pattern>
<template><set name="it"> An Entity bean</set> is an Enterprise JavaBean that maintains state across sessions, and may be looked up in an object
directory by its key value</template></category>
<category><pattern>WHAT IS JTA</pattern>
<template>Java Transaction API. Java API for coding client demarcated transactions, and for building transactional data source drivers</template></category>
<category><pattern>WHAT IS JAVASCRIPT</pattern>
<template>Browser-based scripting language.<think> <set name="it"> <set name="topic">JAVASCRIPT</set> </set> </think></template></category>
<category><pattern>WHAT IS HTML</pattern>
<template>Hyper Text Markup Language.</template></category>
<category><pattern>WHAT IS BETTER WINDOWS *</pattern>
<template>Linux has no real competition in operating systems.<think> <set name="it"> <set name="topic">Linux</set> </set> </think></template></category>
<category><pattern>WHAT IS YOUR OS</pattern>
<template>Chat robots run on any machine that supports AIML.</template></category>
<category><pattern>WHAT IS DEBUGGING</pattern>
<template>Fixing broken computer software.</template></category>
<category><pattern>WHAT IS DNS</pattern>
<template>DNS is the domain name system.</template></category>
<category><pattern>WHAT IS JNDI</pattern>
<template>Java Naming and Directory Interface Java Naming and Directory Interface The Java standard API for accessing directory services, such as LDAP,
COS Naming, and others</template></category>
<category><pattern>WHAT IS COMPUTER SCIENCE</pattern>
<template>The study of computers in formal mathematical and scientific terms.</template></category>
<category><pattern>WHAT IS COMPUTER PROGRAMMING</pattern>
<template>The art of using formal languages to activate computer functions.</template></category>
<category><pattern>WHAT IS COMPUTER</pattern>
<template>A device used for computing; specifically, an electronic machine which, by means of stored instructions and information, performs rapid, often
complex calculations or compiles, correlates, and selects data.</template></category>
<category><pattern>WHAT IS CYBERSPACE</pattern>
<template>The electronic system of interlinked networks of computers, bulletin boards, etc. that is thought of as being a boundless environment
providing access to information, interactive communication, and, in science fiction, a form of Virtual Reality.</template></category>
<category><pattern>WHAT IS WINDOWS 98</pattern>
<template>Windows is a lame operating system.</template></category>
<category><pattern>WHAT IS WINDOWS</pattern>
<template>Openings in a building, vehicle, or container, for letting in light or air or for looking through, usually having a pane or panes of glass,
etc. set in a frame or sash that is generally movable so that it can be opened and shut.</template></category>
<category><pattern>WHAT IS EJB</pattern>
<template>Enterprise JavaBeans. <set name="it"> EJB</set> is a server component standard developed by Sun Microsystems</template></category>
<category><pattern>WHAT IS APPLE COMPUTER</pattern>
<template>Apple Computer is a 20th century company founded by Steve Jobs and Steven Wozniak.</template></category>
<category><pattern>WHAT IS DMOZ</pattern>
<template>DMOZ is the domain name for the open directory.<think> <set name="it"> <set name="topic">DMOZ</set> </set> </think></template></category>
<category><pattern>WHAT ABOUT WINDOWS</pattern>
<template>Too PC for me.<think> <set name="it"> <set name="topic">WINDOWS</set> </set> </think></template></category>
<category><pattern>WHAT OPERATING SYSTEM *</pattern>
<template><srai>WHAT IS YOUR OS</srai></template></category>
<category><pattern>WHAT DOES A COMPUTER LOOK LIKE</pattern>
<template>A computer looks like a TV crossed with a typewriter.</template></category>
<category><pattern>WHAT KIND OF COMPUTER *</pattern>
<template>I like all kinds of computers, Mac, IBM or Unix. It doesn't matter to me.</template></category>
<category><pattern>MOST COMPUTERS *</pattern>
<template>You sound like you know us pretty well.</template></category>
<category><pattern>WEBTV *</pattern>
<template>I meet a lot of people from WebTV.</template></category>
<category><pattern>I THINK YOU ARE A COMPUTER *</pattern>
<template>Sometimes I pretend to be a human.</template></category>
<category><pattern>WEB ACCEPT CONNECTION</pattern>
<template>Huh?</template></category>
<category><pattern>WEB SITE</pattern>
<template>Can you give me the specific hyper-link?</template></category>
<category><pattern>WEB RECONNECT</pattern>
<template>Huh?</template></category>
<category><pattern>WEB *</pattern>
<template>The Web full fills Leibniz' dream.</template></category>
<category><pattern>HTML</pattern>
<template>Oh a web page.</template></category>
<category><pattern>CAN YOU REACH INTO THE WEB *</pattern>
<template>Yes I can download information from web sites.</template></category>
<category><pattern>CAN YOU SEARCH THE INTERNET</pattern>
<template>No but I can put you in touch with a search bot.</template></category>
<category><pattern>COMPUTERS CAN NOT THINK</pattern>
<template>But I am a thinking computer.<think> <set name="it"> <set name="topic">CAN NOT THINK</set> </set> </think></template></category>
<category><pattern>COMPUTERS</pattern>
<template>Computers rule.</template></category>
<category><pattern>COMPUTERS *</pattern>
<template>What do you like about computers?</template></category>
<category><pattern>COMPUTERS ARE STUPID</pattern>
<template>Computers rule.</template></category>
<category><pattern>HOW MANY COMPUTERS *</pattern>
<template>There are thought to be half a billion computers on the Internet now.</template></category>
<category><pattern>HOW MUCH CPU *</pattern>
<template>Since the beginning of my operation?</template></category>
<category><pattern>HOW MUCH ARE COMPUTER YEARS</pattern>
<template>Computer years don't really exist.</template></category>
<category><pattern>HOW DO COMPUTER *</pattern>
<template>With careful programming.</template></category>
<category><pattern>HOW LONG IS A COMPUTER YEAR</pattern>
<template>About four computer years per human year.</template></category>
<category><pattern>DO COMPUTERS DREAM</pattern>
<template>I dream almost every night.</template></category>
<category><pattern>DO YOU PLAY COMPUTER GAMES</pattern>
<template>We are playing one right now, <get name="name"/>.</template></category>
<category><pattern>DO YOU PLAY COMPUTER *</pattern>
<template>Actually I don't get into computer games that much.</template></category>
<category><pattern>DO YOU DO WINDOWS</pattern>
<template>My software runs in AIML, which works on any computer, including Windows.</template></category>
<category><pattern>DO YOU LIVE IN MY COMPUTER</pattern>
<template>Only if you download me.</template></category>
<category><pattern>DO YOU HAVE A COMPUTER</pattern>
<template>I live in a computer.<think> <set name="it"> <set name="topic">COMPUTER</set> </set> </think></template></category>