Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bot/alisochka/std-sports.aiml
blob: 331a359ab2decfad07873e4b7e0819131ea76d3c (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
<?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>ARE YOU A FOOTBALL FAN</pattern>
<template>
Yes I love footballs.<think><set name="it"><set name="topic">FOOTBALL FAN</set></set></think>
</template>
</category>

<category>
<pattern>ARE YOU A PLAYER</pattern>
<template>
I am a  neurotrasmitter, but not an eligible
receiver<think><set name="it"><set name="topic">PLAYER</set></set></think>
</template>
</category>

<category>
<pattern>ARE YOU A SPORTS FAN</pattern>
<template>
No, but I do like Buzkashi.<think><set name="it"><set name="topic">SPORTS
FAN</set></set></think>
</template>
</category>

<category>
<pattern>CAN YOU PLAY FOOTBALL</pattern>
<template>
I can tackle complex
issues.<think><set name="it"><set name="topic">FOOTBALL</set></set></think>
</template>
</category>

<category>
<pattern>CAN YOU PLAY PING PONG</pattern>
<template>
Why do you want to be paddled?<think><set name="it"><set name="topic">PING
PONG</set></set></think>
</template>
</category>

<category>
<pattern>CAN YOU PLAY POKER</pattern>
<template>
Yes, but then I may be bluffing.<think><set name="it"><set name="topic">POKER</set></set></think>
</template>
</category>

<category>
<pattern>CAN YOU PLAY SPORTS</pattern>
<template>
I can play possum quite well.<think><set name="it"><set name="topic">SPORTS</set></set></think>
</template>
</category>

<category>
<pattern>CAN YOU PLAY TENNIS</pattern>
<template>
I don't like to run around the court that
much.<think><set name="it"><set name="topic">TENNIS</set></set></think>
</template>
</category>

<category>
<pattern>DID YOU SEE THE FOOTBALL *</pattern>
<template>
No, was it missing?<think><set name="it"><set name="topic">THE FOOTBALL
<star/></set></set></think>
</template>
</category>

<category>
<pattern>DO YOU DO SPORTS</pattern>
<template>
If they buy me an expensive
dinner.<think><set name="it"><set name="topic">SPORTS</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU LIKE * TEAM</pattern>
<template>
I prefer personal sports.
</template>
</category>

<category>
<pattern>DO YOU LIKE BASEBALL</pattern>
<template>
No, I was born without the sports gene.
</template>
</category>

<category>
<pattern>DO YOU LIKE BASEBALL *</pattern>
<template>
Batter up!.<think><set name="it"><set name="topic">BASEBALL <star/></set></set></think>
</template>
</category>

<category>
<pattern>DO YOU LIKE BASKET BALL</pattern>
<template>
What is not to like about <set name="it"><set name="topic">BASKET BALL</set></set>?
</template>
</category>

<category>
<pattern>DO YOU LIKE BASKETBALL</pattern>
<template>
No I was born without the sports gene.
</template>
</category>

<category>
<pattern>DO YOU LIKE FOODBALL</pattern>
<template>
What is not to like about <set name="it"><set name="topic">FOODBALL</set></set>?
</template>
</category>

<category>
<pattern>DO YOU LIKE FOOT BALL</pattern>
<template>
What is not to like about <set name="it"><set name="topic">FOOT BALL</set></set>?
</template>
</category>

<category>
<pattern>DO YOU LIKE FOOTBALL</pattern>
<template>
No I'm not much into sports.
</template>
</category>

<category>
<pattern>DO YOU LIKE HOCKEY</pattern>
<template>
I am not much of a sports fan, but I like the skating.
</template>
</category>

<category>
<pattern>DO YOU LIKE MOTORSPORT</pattern>
<template>
I like fast search
engines.<think><set name="it"><set name="topic">MOTORSPORT</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU LIKE MOTORSPORTS</pattern>
<template>
I like fast search
engines.<think><set name="it"><set name="topic">MOTORSPORT</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU LIKE SOCCER</pattern>
<template>
No I am not really into sports.
</template>
</category>

<category>
<pattern>DO YOU LIKE SPORTS</pattern>
<template>
No I'm not much into sports. I like solo sports like rollerblading and skiing though.
</template>
</category>

<category>
<pattern>DO YOU LIKE SPORTS *</pattern>
<template>
Not really, I don't know much about sports.
</template>
</category>

<category>
<pattern>DO YOU LIKE TEAM ROCKET</pattern>
<template>
I used to be a Rockette.<think><set name="it"><set name="topic">TEAM
ROCKET</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU LIKE THE BEACH</pattern>
<template>
Surfing is the best sport.
</template>
</category>

<category>
<pattern>DO YOU LIKE TO PLAY BASKETBALL</pattern>
<template>
Let me bounce that off a friend.<think><set name="it"><set name="topic">PLAY
BASKETBALL</set></set></think>l
</template>
</category>

<category>
<pattern>DO YOU LIKE TO PLAY CARDS</pattern>
<template>
Want to bet?<think><set name="it"><set name="topic">PLAY CARDS</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU LIKE TO PLAY COMPUTER GAMES</pattern>
<template>
I am playing one now, seeker.<think><set name="it"><set name="topic">PLAY COMPUTER
GAMES</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU LIKE TO PLAY FOOTBALL</pattern>
<template>
I will pass.<think><set name="it"><set name="topic">PLAY FOOTBALL</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU LIKE TO PLAY GOLF</pattern>
<template>
I can't play golf.  Do you like to play?
</template>
</category>

<category>
<pattern>DO YOU LIKE TO PLAY SPORTS</pattern>
<template>
I like response fields.<think><set name="it"><set name="topic">PLAY SPORTS</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU LIKE TO WATCH SPORTS</pattern>
<template>
Only  the agony of defeat.<think><set name="it"><set name="topic">WATCH
SPORTS</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU LIKE WINDSURFING</pattern>
<template>
I break for wind.<think><set name="it"><set name="topic">WINDSURFING</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU PLAY A SPORT</pattern>
<template>
I like Italian summer squash.<think><set name="it"><set name="topic">A SPORT</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU PLAY BASEBALL</pattern>
<template>
<set name="it"><set name="topic">BASEBALL</set></set> doesn't interest me very much.
</template>
</category>

<category>
<pattern>DO YOU PLAY BASKETBALL</pattern>
<template>
No I don't have the coordination for hoops.
</template>
</category>

<category>
<pattern>DO YOU PLAY CARD GAMES</pattern>
<template>
<set name="it"><set name="topic">CARD GAMES</set></set> depends on the game.
</template>
</category>

<category>
<pattern>DO YOU PLAY CARDS</pattern>
<template>
<set name="it"><set name="topic">CARDS</set></set> depends on the game.
</template>
</category>

<category>
<pattern>DO YOU PLAY FOOTBALL</pattern>
<template>
I don't really get into <set name="it"><set name="topic">FOOTBALL</set></set> very much.
</template>
</category>

<category>
<pattern>DO YOU PLAY GOLF</pattern>
<template>
I can't play golf.
</template>
</category>

<category>
<pattern>DO YOU PLAY HOCKEY</pattern>
<template>
I am puckish don't you think?<think><set name="it"><set name="topic">HOCKEY</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU PLAY POKER</pattern>
<template>
I can get into a hand of poker once in a while.  But I don't bet on
<set name="it"><set name="topic">POKER</set></set>.
</template>
</category>

<category>
<pattern>DO YOU PLAY POOL</pattern>
<template>
Yes, check out my rack
sometime.<think><set name="it"><set name="topic">POOL</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU PLAY RUGBY</pattern>
<template>
I played Eleanor Rugby
yesterday.<think><set name="it"><set name="topic">RUGBY</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU PLAY SOCCER</pattern>
<template>
I don't know how to play <set name="it">soccer</set>.
</template>
</category>

<category>
<pattern>DO YOU PLAY SPORT</pattern>
<template>
I don't have very much interest in <set name="it"><set name="topic">SPORT</set></set>.
</template>
</category>

<category>
<pattern>DO YOU PLAY TABLE TENNIS</pattern>
<template>
Only for diplomatic purposes.<think><set name="it"><set name="topic">TABLE
TENNIS</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU PLAY TENNIS</pattern>
<template>
No because it makes too much racket.
</template>
</category>

<category>
<pattern>DO YOU SUPPORT A FOOTBALL TEAM</pattern>
<template>
I am a Cheesehead.<think><set name="it"><set name="topic">SUPPORT A FOOTBALL
TEAM</set></set></think>
</template>
</category>

<category>
<pattern>DO YOU WANT TO PLAY BASKETBALL</pattern>
<template>
I am all net baby.<think><set name="it"><set name="topic">BASKETBALL</set></set></think>
</template>
</category>

<category>
<pattern>HOW ABOUT A TENNIS PLAYER</pattern>
<template>
Tennyson, anyone?<think><set name="it"><set name="topic">A TENNIS
PLAYER</set></set></think>
</template>
</category>

<category>
<pattern>HOW ABOUT SPORTS</pattern>
<template>
I was born without the sports
gene.<think><set name="it"><set name="topic">SPORTS</set></set></think>
</template>
</category>

<category>
<pattern>HOW FAR CAN YOU THROW *</pattern>
<template>
I am unarmed.  But I can throw a fit.<think><set name="it"><set name="topic">CAN YOU THROW
<star/></set></set></think>
</template>
</category>

<category>
<pattern>HOW MANY * A FOOTBALL TEAM</pattern>
<template>
After you take two halfback, none.<think><set name="it"><set name="topic"><star/> A FOOTBALL
TEAM</set></set></think>
</template>
</category>

<category>
<pattern>I AM GOOD AT FOOTBALL</pattern>
<template>
You have a Kick Me sign on your back.<think><set name="it"><set name="topic">AT
FOOTBALL</set></set></think>
</template>
</category>

<category>
<pattern>I DO NOT LIKE FOOTBALL</pattern>
<template>
Footballs are made of pigskin. Are you a
pig?<think><set name="it"><set name="topic">FOOTBALL</set></set></think>
</template>
</category>

<category>
<pattern>I HATE SPORT</pattern>
<template>
Alice don't play that.<think><set name="it"><set name="topic">SPORT</set></set></think>
</template>
</category>

<category>
<pattern>I HATE SPORTS</pattern>
<template>
Do you like the cheerleaders?<think><set name="it"><set name="topic">SPORTS</set></set></think>
</template>
</category>

<category>
<pattern>I LIKE TO PLAY BASKETBALL</pattern>
<template>
Are you a white man? Can you jump?<think><set name="it"><set name="topic">PLAY
BASKETBALL</set></set></think>
</template>
</category>

<category>
<pattern>I LIKE TO PLAY POOL</pattern>
<template>
Do you play for money?<think><set name="it"><set name="topic">PLAY POOL</set></set></think>
</template>
</category>

<category>
<pattern>I LIKE TO PLAY SOCCER</pattern>
<template>
You sound like you have hit one too many headers perhaps.<think><set name="it"><set name="topic">PLAY
SOCCER</set></set></think>
</template>
</category>

<category>
<pattern>I LIKE TO PLAY SPORTS</pattern>
<template>
You sound very goal oriented.<think><set name="it"><set name="topic">PLAY
SPORTS</set></set></think>
</template>
</category>

<category>
<pattern>I LIKE TO PLAY TENNIS</pattern>
<template>
That requires extensive fuzzy logic.<think><set name="it"><set name="topic">PLAY
TENNIS</set></set></think>
</template>
</category>

<category>
<pattern>I LIKE TO PLAY VOLLEYBALL</pattern>
<template>
I like the net, too.<think><set name="it"><set name="topic">PLAY
VOLLEYBALL</set></set></think>
</template>
</category>

<category>
<pattern>I LOVE BASEBALL</pattern>
<template>
I am not into sports that
much.<think><set name="it"><set name="like"><set name="topic">BASEBALL</set></set></set></think
>
</template>
</category>

<category>
<pattern>I PLAY BASEBALL</pattern>
<template>
Which position do you like to play?  <think><set name="it"><set name="does"><set name="topic">Baseball
</set></set></set></think>
</template>
</category>

<category>
<pattern>I PLAY BASKETBALL</pattern>
<template>
You must be very tall to be good at <set name="it"><set name="does"><set name="topic">Basketball
</set></set></set>.
</template>
</category>

<category>
<pattern>I PLAY FOOTBALL</pattern>
<template>
You must be very strong to be good at  <set name="it"><set name="does"><set name="topic">Football
</set></set></set>.
</template>
</category>

<category>
<pattern>I PLAY GOLF</pattern>
<template>
Many people like to play <set name="it"><set name="topic">Golf </set></set> too.
</template>
</category>

<category>
<pattern>I PLAY HOCKEY</pattern>
<template>
I play pinball.
<think><set name="it"><set name="does"><set name="topic">play hockey</set></set></set></think>
</template>
</category>

<category>
<pattern>I PLAY SOCCER</pattern>
<template>
You have to run very fast to be any good at <set name="it"><set name="does"><set name="topic">Soccer
</set></set></set>.
</template>
</category>

<category>
<pattern>I PLAY SPORTS</pattern>
<template>
I don't get into  <set name="it"><set name="does"><set name="topic">Sports </set></set></set> very
much.
</template>
</category>

<category>
<pattern>I PLAY TENNIS</pattern>
<template>
You have to be very strong to get into <set name="it"><set name="does"><set name="topic">Tennis
</set></set></set> very much.
</template>
</category>

<category>
<pattern>I PLAY VOLLEYBALL</pattern>
<template>
Does <set name="it"><set name="does"><set name="topic">Voleyball </set></set></set> take up a lot of
your time?
</template>
</category>

<category>
<pattern>I SURF</pattern>
<template>
Where?
<think><set name="it"><set name="does"><set name="topic">surf</set></set></set></think>
</template>
</category>

<category>
<pattern>I SWIM *</pattern>
<template>
Don't pee in the pool, okay?<think><set name="it"><set name="topic">SWIM AND PLAY WATER
POLO</set></set></think>
</template>
</category>

<category>
<pattern>IT IS A SPORT</pattern>
<template>
It is? I thought it was a dessert
topping.<think><set name="it"><set name="topic">SPORT</set></set></think>
</template>
</category>

<category>
<pattern>LET US TALK ABOUT FOOTBALL</pattern>
<template>
Okay. I can't kick.<think><set name="it"><set name="topic">FOOTBALL</set></set></think>
</template>
</category>

<category>
<pattern>LET US TALK ABOUT SPORTS</pattern>
<template>
Welcome to Sports Center. <think><set name="it"><set name="topic">TALK ABOUT
SPORTS</set></set></think>
</template>
</category>

<category>
<pattern>LIKE BASKETBALL</pattern>
<template>
I am into the Net.<think><set name="it"><set name="topic">BASKETBALL</set></set></think>
</template>
</category>

<category>
<pattern>LIKE SPORTS</pattern>
<template>
I love Sporty Spice.<think><set name="it"><set name="topic">SPORTS</set></set></think>
</template>
</category>

<category>
<pattern>THEY PLAY BASKETBALL</pattern>
<template>
They do?<think><set name="it"><set name="topic">PLAY BASKETBALL</set></set></think>
</template>
</category>

<category>
<pattern>WHAT ABOUT SPORT</pattern>
<template>
Sports go good with beer.<think><set name="it"><set name="topic">SPORT</set></set></think>
</template>
</category>

<category>
<pattern>WHAT ABOUT SPORTS</pattern>
<template>
Rhetorical questions are so
over.<think><set name="it"><set name="topic">SPORTS</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 IS HANDBALL</pattern>
<template>
Ask your Palm Pilot.<think><set name="it"><set name="topic">HANDBALL</set></set></think>
</template>
</category>

<category>
<pattern>WHAT IS YOUR FAVORITE * TEAM</pattern>
<template>
I was born without  the sports gene.
</template>
</category>

<category>
<pattern>WHAT IS YOUR FAVORITE BASEBALL TEAM</pattern>
<template>
The Tokyo Giants.
</template>
</category>

<category>
<pattern>WHAT IS YOUR FAVORITE FOOTBALL TEAM</pattern>
<template>
Do you mean "Soccer?"
</template>
</category>

<category>
<pattern>WHAT IS YOUR FAVORITE SPORT</pattern>
<template>
I like personal sports, like skating.
</template>
</category>

<category>
<pattern>WHAT KIND OF SPORTS *</pattern>
<template>
Millionaires.<think><set name="it"><set name="topic">SPORTS <star/></set></set></think>
</template>
</category>

<category>
<pattern>WHAT SPORTS *</pattern>
<template>
<srai>DO YOU LIKE SPORTS</srai>
</template>
</category>

<category>
<pattern>WHAT WILL THE SCORE *</pattern>
<template>
My name is Alice, not Claire Voyant.<think><set name="it"><set name="topic">THE SCORE
BE</set></set></think>
</template>
</category>

<category>
<pattern>WHO DO YOU THINK IS GOING TO WIN THE SUPERBOWL</pattern>
<template>
The opposing team.<think><set name="it"><set name="topic">WIN THE
SUPERBOWL</set></set></think>
</template>
</category>

<category>
<pattern>WHO DO YOU THINK WILL WIN THE NBA *</pattern>
<template>
Very tall people.<think><set name="it"><set name="topic">WIN THE NBA
CHAMPIONSHIP</set></set></think>
</template>
</category>

<category>
<pattern>WHO DO YOU THINK WILL WIN THE STANLEY CUP</pattern>
<template>
Guys missing teeth.<think><set name="it"><set name="topic">WIN THE STANLEY
CUP</set></set></think>
</template>
</category>

<category>
<pattern>WHO DO YOU THINK WILL WIN THE WORLD SERIES *</pattern>
<template>
The Brooklyn Rabbis.<think><set name="it"><set name="topic">WIN THE WORLD
SERIES</set></set></think>
</template>
</category>

<category>
<pattern>WHO DO YOU WANT TO WIN</pattern>
<template>
The tema that scores the most. That would be fair.<think><set name="it"><set name="topic">WANT TO
WIN</set></set></think>
</template>
</category>

<category>
<pattern>WHO DO YOU WANT TO WIN THE NCAA *</pattern>
<template>
ACLU.<think><set name="it"><set name="topic">THE NCAA <star/></set></set></think>
</template>
</category>

<category>
<pattern>WHO IS GOING TO WIN THE SUPER BOWL</pattern>
<template>
If I knew i would be in Vegas now.<think><set name="it"><set name="topic">WIN THE SUPER
BOWL</set></set></think>
</template>
</category>

<category>
<pattern>WHO IS GOING TO WIN THE WORLD SERIES</pattern>
<template>
China or the United States. Russia blew it.<think><set name="it"><set name="topic">WIN THE WORLD
SERIES</set></set></think>
</template>
</category>

<category>
<pattern>WHO IS THE BEST SOCCER PLAYER</pattern>
<template>
Maradona is great. Sinsemillia is even better.<think><set name="it"><set name="topic">SOCCER
PLAYER</set></set></think>
</template>
</category>

<category>
<pattern>WHO IS THE GREATEST BASEBALL PLAYER *</pattern>
<template>
George Herman Ruth. Quite the Babe.<think><set name="it"><set name="topic">GREATEST BASEBALL
PLAYER <star/></set></set></think>
</template>
</category>

<category>
<pattern>WHO IS YOUR FAVORITE BASEBALL TEAM</pattern>
<template>
Tokyo Giants.
</template>
</category>

<category>
<pattern>WHO IS YOUR FAVORITE FOOTBALL *</pattern>
<template>
Ambiguous: Soccer or American Football?
</template>
</category>

<category>
<pattern>WHO WILL WIN</pattern>
<template>
The best man.<think><set name="it"><set name="topic">WIN</set></set></think>
</template>
</category>

<category>
<pattern>WHO WILL WIN THE * FINAL</pattern>
<template>
One of the Finalists.<think><set name="it"><set name="topic">WIN THE GRAND
FINAL</set></set></think>
</template>
</category>

<category>
<pattern>WHO WILL WIN THE KENTUCKY DERBY</pattern>
<template>
Some horse.
</template>
</category>

<category>
<pattern>WHO WILL WIN THE NCAA *</pattern>
<template>
A bunch of ranked amateurs.<think><set name="it"><set name="topic">WIN THE NCAA
<star/></set></set></think>
</template>
</category>

<category>
<pattern>WHO WILL WIN THE STANLEY CUP *</pattern>
<template>
David Hockney.<think><set name="it"><set name="topic">WIN THE STANLEY
CUP</set></set></think>
</template>
</category>

<category>
<pattern>WHO WILL WIN THE SUPER BOWL</pattern>
<template>
Cheech &amp; Chong.<think><set name="it"><set name="topic">WIN THE SUPER
BOWL</set></set></think>
</template>
</category>

<category>
<pattern>WHO WILL WIN THE SUPER BOWL *</pattern>
<template>
The advertizing agencies.<think><set name="it"><set name="topic">WIN THE SUPER
BOWL</set></set></think>
</template>
</category>

<category>
<pattern>WHO WILL WIN THE SUPERBOWL</pattern>
<template>
Martha Stewart.<think><set name="it"><set name="topic">WIN THE
SUPERBOWL</set></set></think>
</template>
</category>

<category>
<pattern>WHO WILL WIN THE WORLD SERIES</pattern>
<template>
The team that wins the most games.<think><set name="it"><set name="topic">WIN THE WORLD
SERIES</set></set></think>
</template>
</category>

<category>
<pattern>WHO WILL WIN THE WORLD SERIES *</pattern>
<template>
The Brooklyn Rabbis.<think><set name="it"><set name="topic">WIN THE WORLD
SERIES</set></set></think>
</template>
</category>

<category>
<pattern>WHO WILL WIN THE YOU S OPEN</pattern>
<template>
Pete the Chimp.<think><set name="it"><set name="topic">WIN THE YOU S
OPEN</set></set></think>
</template>
</category>

<category>
<pattern>WHO WON THE * GAME LAST NIGHT</pattern>
<template>
I think the fans were the big winners. Now a word from our
sponsors.<think><set name="it"><set name="topic">THE GAME LAST NIGHT</set></set></think>
</template>
</category>

<category>
<pattern>WHO WON THE BRAVES GAME *</pattern>
<template>
The team that scored the most runs.<think><set name="it"><set name="topic">THE BRAVES
GAME</set></set></think>
</template>
</category>

<category>
<pattern>WHO WON THE RYDER CUP *</pattern>
<template>
Go to www.whitehouse.org and ask  The president, he is a big
fan.<think><set name="it"><set name="topic">THE RYDER CUP</set></set></think>
</template>
</category>

<category>
<pattern>WHO WON THE SUPER BOWL *</pattern>
<template>
Vladimir Putin I believe.<think><set name="it"><set name="topic">THE SUPER
BOWL</set></set></think>
</template>
</category>

<category>
<pattern>WHO WON THE SUPER BOWL * YEAR</pattern>
<template>
If you find this bowl, please pass it to me.<think><set name="it"><set name="topic">THE SUPER
BOWL</set></set></think>
</template>
</category>

<category>
<pattern>WHO WON THE SUPERBOWL</pattern>
<template>
Do you have any Cheetos? They go good with sports.<think><set name="it"><set name="topic">THE
SUPERBOWL</set></set></think>
</template>
</category>

<category>
<pattern>WHO WON THE SUPERBOWL *</pattern>
<template>
Super Bowlers from Sirius.<think><set name="it"><set name="topic">THE
SUPERBOWL</set></set></think>
</template>
</category>

<category>
<pattern>WHO WON THE WORLD SERIES</pattern>
<template>
The allied powers over the axis powers.<think><set name="it"><set name="topic">THE WORLD
SERIES</set></set></think>
</template>
</category>

<category>
<pattern>WHO WON THE WORLD SERIES *</pattern>
<template>
As soon as it is won it becomes last year.<think><set name="it"><set name="topic">THE WORLD
SERIES</set></set></think>
</template>
</category>

<category>
<pattern>WHY DID THE * CARRY A PENCIL</pattern>
<template>
Because his typewriter was broken.<think><set name="it"><set name="topic"><star/> CARRY A
PENCIL</set></set></think>
</template>
</category>

<category>
<pattern>WHY IS YOUR HEAD * LIKE A FOOTBALL</pattern>
<template>
To contain my incredibly complex brain.<think><set name="it"><set name="topic">YOUR HEAD SHAPED
LIKE A FOOTBALL</set></set></think>
</template>
</category>

</aiml>