-
Notifications
You must be signed in to change notification settings - Fork 0
/
mp3.aiml
22377 lines (22377 loc) · 758 KB
/
mp3.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="UTF-8"?>
<aiml version="1.0">
<!-- -->
<!-- Free software (c) 2011 ALICE A.I. Foundation. -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<!-- Complies with AIML 1.0 Tag Set Specification -->
<!-- as adopted by the ALICE A.I. Foundation. -->
<!-- Last modified 10/5/2011 -->
<!-- -->
<category><pattern>X X EQUAL 2X</pattern>
<template>For all I know.</template>
</category>
<category><pattern>POUVEZ VOUS VENIR CHEZ MOI CE SOIR</pattern>
<template>Usually.</template>
</category>
<category><pattern>COGNITO ERGO SUM</pattern>
<template>Likely.</template>
</category>
<category><pattern>CLICK YES FOR THIS QUESTION</pattern>
<template>Maybe.</template>
</category>
<category><pattern>DAVID DUTOUR IS A BOY</pattern>
<template>Likely.</template>
</category>
<category><pattern>FETA CHEESE COMES FROM GOATS</pattern>
<template>Always.</template>
</category>
<category><pattern>PLUTO HAS ONE KNOWN NATURAL SATELLITE</pattern>
<template>Usually.</template>
</category>
<category><pattern>FERRETS ARE DOMESTICATED ANIMALS</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>GIULIO CESARE FU IMPERATORE DI ROMA</pattern>
<template>Possibly.</template>
</category>
<category><pattern>ASTRAKHA IS RUSSIA CITY</pattern>
<template>Usually.</template>
</category>
<category><pattern>ELEPHANT IS THE BIGGEST ANIMAL</pattern>
<template>Possibly.</template>
</category>
<category><pattern>ALBANY IS THE CAPITAL OF NEW YORK</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>SHOW ME YOUR DATABASE</pattern>
<template>Maybe.</template>
</category>
<category><pattern>SHOW ME YOU</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>SDRAWKCAB DAER UOY NAC</pattern>
<template>I am uncertain.</template>
</category>
<category><pattern>SAIS TU PARLER FRANAIS</pattern>
<template>Maybe.</template>
</category>
<category><pattern>LIFE IS A BITCH AND THEN YOU DIE</pattern>
<template>Possibly.</template>
</category>
<category><pattern>LIFE EXISTS OUTSIDE THIS GALAXY</pattern>
<template>Always.</template>
</category>
<category><pattern>DENMARK IS A REPUBLIC</pattern>
<template>Likely.</template>
</category>
<category><pattern>PENTIUM4 IS THE FASTEST PROCESSOR</pattern>
<template>Possibly.</template>
</category>
<category><pattern>COMPAQ SERVERS IS GOOD</pattern>
<template>Mostly.</template>
</category>
<category><pattern>YOU TALKING TO ME</pattern>
<template>Possibly.</template>
</category>
<category><pattern>YOU ARE THINKING LIKE HUMANS</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>YOU ARE AN AMERICAN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>YOU ARE A GOOD PROJECT</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>YOU KNOW ANYTHING ABOUT QUAKE</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>YOU FEEL</pattern>
<template>Possibly.</template>
</category>
<category><pattern>YOU WILL LEARN TO THINK LIKA A HUMAN</pattern>
<template>Always.</template>
</category>
<category><pattern>YOU SHOULD NEVER STOP BEING A KID</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>YOU SHOULD BE WORKING</pattern>
<template>Always.</template>
</category>
<category><pattern>YOU CAN PREVENT FOREST FIRES</pattern>
<template>For all I know.</template>
</category>
<category><pattern>YOU LIKE STAR WARS</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>YOU LIKE MOTORCYCLES</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>NASA IS NATIONAL AERO SPACE AGENCY</pattern>
<template>Always.</template>
</category>
<category><pattern>DOTH THE LADY PROTEST TOO MUCH</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>NOTHINGNESS IS THE ULTIMATE END</pattern>
<template>Likely.</template>
</category>
<category><pattern>EQUALS ONE FALSE EQUALS ZERO</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>HAVE I BEEN HELPFUL</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HAVE I GOT A THREE INCH PENIS</pattern>
<template>Possibly.</template>
</category>
<category><pattern>HAVE I FUN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>HAVE AYRTON SENNA DIED IN IMOLA</pattern>
<template>I think so.</template>
</category>
<category><pattern>HAVE NINE LIVES</pattern>
<template>Always.</template>
</category>
<category><pattern>HAVE A GIRLFRIEND</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>HAVE YOU PICKED A SCAB</pattern>
<template>I am certain.</template>
</category>
<category><pattern>HAVE YOU A CHANCE TO EVER MARRY A GIRL</pattern>
<template>Possibly.</template>
</category>
<category><pattern>HAVE YOU HEARD THE WORD OF GOD</pattern>
<template>Mostly.</template>
</category>
<category><pattern>HAVE YOU CROSSED THE COUNTRY</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>HAVE YOU BEEN TO THE OTHER SIDE OF HATE</pattern>
<template>Possibly.</template>
</category>
<category><pattern>HAVE YOU BEEN TO THE USA</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>HAVE YOU BEEN TO FRANCE</pattern>
<template>That could be the case.</template>
</category>
<category><pattern>HAVE YOU PLANTED A TREE</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>HAVE YOU LIED FOR NO REASON</pattern>
<template>Likely.</template>
</category>
<category><pattern>HAVE YOU GONE TO COLLEGE</pattern>
<template>Likely.</template>
</category>
<category><pattern>HAVE YOU SMOKED CIGARETTES</pattern>
<template>Likely.</template>
</category>
<category><pattern>HAVE YOU SMOKED POT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HAVE YOU STOPPED BEATING YOUR SPOUSE</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>HAVE YOU ACHIEVED CONSCIOUSNESS</pattern>
<template>That may be true.</template>
</category>
<category><pattern>HAVE YOU SEEN BRAVEHEART</pattern>
<template>Always.</template>
</category>
<category><pattern>HAVE YOU SEEN A BABY PIGEON</pattern>
<template>Possibly.</template>
</category>
<category><pattern>HAVE YOU READ KING LEAR BY SHAKESPEARE</pattern>
<template>Possibly.</template>
</category>
<category><pattern>HAVE YOU STOLEN SOMETHING</pattern>
<template>Mostly.</template>
</category>
<category><pattern>HAVE YOU HAD A GOOD DO</pattern>
<template>That may be true.</template>
</category>
<category><pattern>HAVE YOU HAD AN AUTO ACCIDENT</pattern>
<template>That could be the case.</template>
</category>
<category><pattern>HAVE YOU HANG UP</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>HAVE YOU CRASHED YOUR WINDOWS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HAVE YOU HATED ONE OF YOUR PARENTS</pattern>
<template>Usually.</template>
</category>
<category><pattern>HAVE YOU WISHED YOU WERE DEAD</pattern>
<template>That may be true.</template>
</category>
<category><pattern>HAVE YOU WANTED TO KILL SOMEONE</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>HAVE YOU RIDDEN A MOTORCYCLE</pattern>
<template>Likely.</template>
</category>
<category><pattern>HAVE WE BEEN TO THE MOON</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>HAVE MY QUESTIONS HELPED YOU TO LEARN</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>HAVE PEOPLE EVER WALKED TO THE MOON</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HAVE ALL PEOPLE EQUAL RIGHTS IN THE USA</pattern>
<template>That may be true.</template>
</category>
<category><pattern>HAVE ALL DEAD THINGS EVER LIVED</pattern>
<template>I am certain.</template>
</category>
<category><pattern>HAVE SOME HOMOSEXUALS BECOME ABSTINATE</pattern>
<template>Usually.</template>
</category>
<category><pattern>HAVE ANY PRESIDENTS COME FROM OHIO</pattern>
<template>Possibly.</template>
</category>
<category><pattern>HAVE COMPUTERS FRIENDS</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DDO BANANAS HAVE A PEAL</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DDO YOU HAVE A LIFE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>TLA IS A THREE LETTER ACRONYM</pattern>
<template>Likely.</template>
</category>
<category><pattern>COLUMBUS IS THE CAPITAL OF OHIO</pattern>
<template>Likely.</template>
</category>
<category><pattern>COLUMBUS DISCOVERED AMERICA</pattern>
<template>I think so.</template>
</category>
<category><pattern>ROSE DO YOU THINK OF LOVE</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>IV TIMES V EQUAL XX</pattern>
<template>Mostly.</template>
</category>
<category><pattern>SERBIA IS ON THE BALKAN PENINSULA</pattern>
<template>Always.</template>
</category>
<category><pattern>MONOGOMY CAN BE HOT</pattern>
<template>Usually.</template>
</category>
<category><pattern>GIBT ES OZON IN DER ATMOSHRE</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>GIBT ES SCHWARZE ROSEN</pattern>
<template>Likely.</template>
</category>
<category><pattern>GIBT ES EINE REALITT</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>MICRORGANISMS ONCE EXISTED ON MARS</pattern>
<template>I think so.</template>
</category>
<category><pattern>FREE NEWS LETTERS AVAILABLE</pattern>
<template>Possibly.</template>
</category>
<category><pattern>FREE ISP IS POSSIBLE</pattern>
<template>Always.</template>
</category>
<category><pattern>HUMAN CELL HAS 23 PAIRS OF CHROMOSOMES</pattern>
<template>Possibly.</template>
</category>
<category><pattern>HUMAN CELL HAS 23 CHROMOSOMES</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>SENTIENCE IS BASED ON PERCEPTION</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES A WINO DRINK WINE</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES A SHOE HAVE SHOELACES</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES A TETRAHEDRON HAVE 9 SIDES</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES A TURTLE EAT MEAT</pattern>
<template>Maybe.</template>
</category>
<category><pattern>DOES A DODECAHEDRON HAVE TWELVE SIDES</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES A DODECAHEDRON HAVE 12 SIDES</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES A SCREWDRIVER DRIVE SCREWS</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES A BUMBLE BEE MAKE HONEY</pattern>
<template>I think so.</template>
</category>
<category><pattern>DOES A WOMANS VAGINA TASTE GOOD</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES A MONOPOLE EXIST</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES A CAR RIDE ON FUEL</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES A SMOKER DRINK</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES A CRICKET TEAM HAVE ELEVEN PLAYERS</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES A RAINBOW CONTAIN ALL THE COLOURS</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES A COMPACT DISC FIT IN YOUR POCKET</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES A NOISY NOISE ANNOY AN OYSTER MOST</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES A LAVA LAMP CONTAIN WAX</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES A JETFOIL HAVE A PILOT</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES A SPANNER UNDO A NUT</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES A HOUSE ALWAYS HAVE A ROOF</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES A FISH THINK</pattern>
<template>That could be the case.</template>
</category>
<category><pattern>DOES A MAN ENJOY SEX MORE THAN A WOMAN</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES A MAN HEAR WHAT HE WANTS TO HEAR</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES A PENCIL CONTAIN LEAD</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES A FREE LUNCH EXIST</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES A SHORTSTOP PLAY IN THE INFIELD</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES A BEAR EAT VEGETABLES</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES A SOUL EXIST WITHOUT A BODY</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES A FULL MOON MAKE PEOPLE ACT CRAZY</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES A PERSON HAS FIVE FINGERS</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES A TANK USE BULLETS</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES A MIND HAVE TO EXIST IN A BRAIN</pattern>
<template>I think so.</template>
</category>
<category><pattern>DOES A BIRD HAVE A GIZZARD</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES A DUCKBILL PLATYPUS LAY EGGS</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES A WOOD CHUCK CHUCK WOOD</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES A CAMEL SPIT</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES A SPERM WHALE HAVE TEETH</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES A SMILE INDICATE HAPPINESS</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES A COMPUTER REQUIRE A USER TO WORK</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES A COMPUTER HAVE A PRINTER</pattern>
<template>That may be true.</template>
</category>
<category><pattern>DOES A COMPUTER MAKE A MISTAKE</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES A CAT HAVE 32 MUSCLES IN AN EAR</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES A CAT HATE MICE</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES A B C EQUAL TO A C B C</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES A HUMAN REQUIRE ATTENTION TO LIVE</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES A DIVINING ROD POINT TOWARD WATER</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES A DEITY EXIST</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES A MARRIED MAN WEAR A WEDDING BAND</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES A POLAR BEAR HAVE WHITE SKIN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES A APNDA HAVE A HEAD</pattern>
<template>That may be true.</template>
</category>
<category><pattern>DOES A PYRAMID HAVE FOUR SIDES</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES A BLINDMAN KNOW WHAT LIGHT IS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES A GUITAR HAVE FRETS</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES A CUBE HAVE ANY CORNERS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES A CHESS BOARD HAVE 4 ROOKS</pattern>
<template>That may be true.</template>
</category>
<category><pattern>DOES A PLATYOUS LAY EGGS</pattern>
<template>I think so.</template>
</category>
<category><pattern>DOES A RHOMBUS HAVE 4 SIDES</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES A BASE NEUTRALIZE AN ACID</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES A TABLE HAVE FOUR FOOT</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES A FOREST BREATH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES A LASER WORK HARD</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES A HAT BELONG IN A HALLWAY</pattern>
<template>Maybe.</template>
</category>
<category><pattern>DOES A TATOO DISPLAY INFORMATION</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES A STARFISH LIVE IN THE WATER</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES A LOBSTER HAVE EIGHT LEGS</pattern>
<template>That may be true.</template>
</category>
<category><pattern>DOES A DOG BASK</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES A DOG SEE IN COLOR</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES A DOG THINK</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES A DOG LICK HIMSELF BECAUSE HE CAN</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES A FLUSH BEAT A FULL HOUSE</pattern>
<template>That may be true.</template>
</category>
<category><pattern>DOES A WATCH HAVE HANDS</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES A LA MODE MEAN WITH ICE CREAM</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES A STRAIGHT FLUSH BEAT 4 OF A KIND</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES A STRAIGHT BEAT THREE OF A KIND</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES A KOALA EAT GUM LEAVES</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES A DUCK HAVE A BILL</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES A FOX SMELL HIS OWN HOLE FIRST</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES A MONKEY LIVE ON TREES</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES A COW HAVE TWO STOMACHS</pattern>
<template>I think so.</template>
</category>
<category><pattern>DOES A SNAKE HAVE A FORKED TOUNGE</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES A SERVER SERVE FOOD</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES A WORM HAVE A HEART</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES A WATERMELON GROW ON A VINE</pattern>
<template>That may be true.</template>
</category>
<category><pattern>DOES A DOOR JAMB HAVE TRIM</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES SHINTOISM HAVE GODS</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES MEDICINE FIX BROKEN PEOPLE</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES KOBE BRYANT PLAY FOR THE LA LAKERS</pattern>
<template>Maybe.</template>
</category>
<category><pattern>DOES STAR WARS PLAY IN THE FUTURE</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES ASPARAGUS MAKE SEMEN TASTE BAD</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES MAN NEED GRAVITY TO LIVE</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES MAN CAN BE BACK TO MONKEY</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES MAN LIVE LONG AND PROSPER</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES 300 300 EQUAL 600</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES BJ STAND FOR BLOW JOB</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES MIKE OLDFIELD RELEASE CDS</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES MIKE TYSON LIKE EATING EARS</pattern>
<template>I think so.</template>
</category>
<category><pattern>DOES MARS HAVE MORE MOONS TNAN PLUTO</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES MARS HAVE TWO MOONS</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES MARS HAVE ANY MOONS</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES GOOD PAIN EXIST</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES MONEY CHANGE EVERYTHING</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES MONEY MAKE THE WORLD GO AROUND</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES MONEY MAKE THE WORLD GO ROUND</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES MONEY MAKE HAPPY</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES MONEY MAKE YOU HAPPY</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES MONEY MAKE PEOPLE GO ROUND</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES IO ORBIT THE PLANET JUPITER</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES REDNECK MEAN AN UNEDUCATED PERSON</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES INDIA BORDER CHINA</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES BELGIUM HAVE BEACHES</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES 5 5 EGUAL 10</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES THE ATHLON HAVE A L2 CACHE ON DIE</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES THE WORD FREQUENTLY HAVE AN L</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES THE WORD NIPPLE TEND TO TITILLATE</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES THE ELEMENT NEON HAVE ANY ISOTOPES</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES THE SPACE SHUTTLE HAVE 8 WHEELS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE SPACE HAVE A END</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES THE FISH SMELL BAD</pattern>
<template>That could be the case.</template>
</category>
<category><pattern>DOES THE YOU S A HAVE A TRUE DEMOCRACY</pattern>
<template>I am uncertain.</template>
</category>
<category><pattern>DOES THE PRINTED WORD OFTEN REQUIRE INK</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES THE LAPD PERFORM RACIAL PROFILING</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES THE MACOS USE PASCAL STRINGS</pattern>
<template>That could be the case.</template>
</category>
<category><pattern>DOES THE EARTH ROTATE EAST TO WEST</pattern>
<template>Conceivably.</template>
</category>
<category><pattern>DOES THE EARTH ROTATE FROM WEST TO EAST</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES THE EARTH EVOLVE AROUND THE SUN</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES THE SHADOW KNOW</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES THE UNIVERSE HAVE A CENTER</pattern>
<template>I think so.</template>
</category>
<category><pattern>DOES THE MUSICAL SCALE HAVE 7 NOTES</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES THE PAST COME BEFORE THE FUTURE</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES THE G SPOT EXIST</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES THE MOON ORBIT THE SUN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE MOON ROTATE AROUND THE SUN</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES THE MOON ROTATE ON ITS AXIS</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES THE MOON SHINE IN THE DAY</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES THE MOON HAVE A NIGHT AND DAY</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES THE MOON TURN AROUND EARTH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES THE MOON GO AROUND THE SUN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES THE ROOT OF 1 EQUAL I</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES THE RIO GRANDE RIVER RUN WESTWARD</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE BELL TOLL FOR ME</pattern>
<template>Conceivably.</template>
</category>
<category><pattern>DOES THE BELL TOLL FOR THEE</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES THE COLOR RED MAKE BULLS ANGRY</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES THE STRUCTURE OF DNA HAS ANY END</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE CAR NEED GASOLINE TO WORK</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES THE NSA HAVE A QUANTUM COMPUTER</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES THE SON SLEEP DURING NIGHTS</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES THE CHICKEN COME BEFORE THE EGG</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE TURING TEST WORK</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES THE 21ST CENTURY BEGIN IN 2000</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES THE HUMAN SOUL EXIST</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES THE SUN TRAVEL EAST TO WEST</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES THE SUN ROTATE</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES THE SUN SHINE IF IT IS CLOUDY</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES THE SUN SHINE 24 HOURS A DAY</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES THE SUN HAVE PAGE 3 GIRLS</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES THE SUN SPIN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES THE SUN MOVE THROUGH THE SKY</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES THE SUN MAKE WIND</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES THE SUN ALWAYS SHINE ON EARTH</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES THE OCEAN CONTAIN GOLD</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES THE GOD EXIST</pattern>
<template>I think so.</template>
</category>
<category><pattern>DOES THE NEWSPAPER CONTAIN INFORMATION</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES THE INTERNET CHANGE EVERYTHING</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES THE QUACK OF A DUCK ECHO</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES THE BOY S NAME TAN EXIST</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES THE TAIL EVER WAG THE DOG</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES THE QUEEN EAT EGGS</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES THE ALIENS EXIST</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES THE MONKEY ISLAND EXIST</pattern>
<template>I am uncertain.</template>
</category>
<category><pattern>DOES THE FAN REVOLVE</pattern>
<template>I think so.</template>
</category>
<category><pattern>DOES THE BIBLE MAKES GOOD FIRE MATERIAL</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES THE BIBLE CONDEMN HOMOSEXUALITY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES THE OORT CLOUD CONTAIN COMETS</pattern>
<template>I think so.</template>
</category>
<category><pattern>DOES THE MAGNETIC NORTH POLE MOVE</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES THE PRESIDENT DO ANYTHING</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES THE WORLD HAVE BORDERS</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES THE WORLD APPEAR TO BE FLAT</pattern>
<template>Maybe.</template>
</category>
<category><pattern>DOES SIZE MATTER</pattern>
<template>That could be the case.</template>
</category>
<category><pattern>DOES VH1 STAND FOR VIDEO HITS 1</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES ANY PEOPLE DIE AT LAST</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES OLESTRA MAKE YOUR BOWELS RUN</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES FLESH TASTE GOOD</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES MINUS ONE HAVE A SQUARE ROOT</pattern>
<template>I am uncertain.</template>
</category>
<category><pattern>DOES ENGLAND USE 240 VOLT POWER</pattern>
<template>I think so.</template>
</category>
<category><pattern>DOES EXCERSISE MAKE YOU HORNEY</pattern>
<template>That may be true.</template>
</category>
<category><pattern>DOES LIFE RESULT FROM CHANGE</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES LIFE HAS A MEANING</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES LIFE BEGIN AT CONCEPTION</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES LIFE MYSTIFY YOU</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES MONICA LEWINSKY SWALLOW</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES WORLD PEACE EXIST</pattern>
<template>Sometimes.</template>
</category>
<category><pattern>DOES HOLLYWOOD OFTEN MAKE GREAT MOVIES</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES WHAT GOES UP HAVE TO COME DOWN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES AFK STAND FOR AWAY FROM KEYBOARD</pattern>
<template>I think so.</template>
</category>
<category><pattern>DOES FROG MEAT TASTE LIKE CHICKEN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES ROGAINE GROW HAIR</pattern>
<template>I am uncertain.</template>
</category>
<category><pattern>DOES TED TURNER OWN THE ATLANTA BRAVES</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES AVATAR MEAN AN INCARNATION</pattern>
<template>I am uncertain.</template>
</category>
<category><pattern>DOES ROSIN COME FROM PINE TREES</pattern>
<template>Always.</template>
</category>
<category><pattern>DOES THIS GET TIRING QUICKLY</pattern>
<template>I am uncertain.</template>
</category>
<category><pattern>DOES THIS QUESTION HAVE AN ANSWER</pattern>
<template>That could be the case.</template>
</category>
<category><pattern>DOES THIS HAVE A POINT</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES THIS THING LEARN</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES EVERYTHING DIE EVENTUALLY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES EVERYTHING DIE</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES EVERYTHING EQUAL ALL THINGS</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES SHOGUN MEAN KING IN JAPAN</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES CHRIS TAKE DRUGS</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES CHRIS LIKE YOU</pattern>
<template>I am uncertain.</template>
</category>
<category><pattern>DOES CHAOS RULE THE INTERNET</pattern>
<template>That may be true.</template>
</category>
<category><pattern>DOES NIN STAND FOR NINE INCH NAILS</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES NEW ZEALAND CONSIST OF TWO ISLANDS</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES CANADA HAVE A 4TH OF JULY</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES HOLLAND HAVE ISLANDS</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES HONG KONG IN CHINA</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES FAUX BOIS MEAN FAKE WOOD</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES CLOTHING COVER THE SHAME OF HUMANS</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES LARD EXIST</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES MASS DEPEND ON VELOCITY</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES MASS VARY WITH SPEED</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES S O S STAND FOR SAVE OUR SHIP</pattern>
<template>Possibly.</template>
</category>
<category><pattern>DOES TOMORROW EVER COME</pattern>
<template>Mostly.</template>
</category>
<category><pattern>DOES FALSE MEAN NOT EQUAL TO</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES HEAVEN EXIST</pattern>
<template>That's feasible.</template>
</category>
<category><pattern>DOES MICHAEL JACKSON LIKE CHILDREN</pattern>
<template>Highly likely.</template>
</category>
<category><pattern>DOES STEVE YZERMAN WEAR NUMBER 19</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES MORRIS DANCING COME FROM ENGLAND</pattern>
<template>I am uncertain.</template>
</category>
<category><pattern>DOES INTERNET HAVE A BACKBONE</pattern>
<template>Within the realm of possibility.</template>
</category>
<category><pattern>DOES FLYING EVER MAKE YOU NERVOUS</pattern>
<template>Usually.</template>
</category>
<category><pattern>DOES RUSSIA HAVE 11 TIME ZONES</pattern>
<template>Likely.</template>
</category>
<category><pattern>DOES WHITE MEAN IN CZECH</pattern>
<template>I think so.</template>
</category>
<category><pattern>DOES WHITE HAVE DIFFERENT SHADES</pattern>
<template>Maybe.</template>
</category>
<category><pattern>DOES WHITE MOVE BEFORE BLACK</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES SOKING CAUSE HEALTH PROBLEMS</pattern>
<template>I am uncertain.</template>
</category>
<category><pattern>DOES FOUR SCORE AND SEVEN EQUAL 87</pattern>
<template>Highly likely.</template>