forked from philterphactory/aiml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mp4.aiml
24057 lines (24057 loc) · 832 KB
/
mp4.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">
<!-- -->
<!-- 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. -->
<!-- -->
<category><pattern>IS GOD GODDESS LOVE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS FREE WILL AND DESTINY A DUALITY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS FRANK THOMAS ON THE WHITE SOX</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS FEAR GREATER WHEN LOVE IS PRESENT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS ESTONIA SITUATED IN WESTERN EUROPE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS DRAGONFRUIT A REAL FRUIT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS CONVERSATION A DYING ART</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS COMMUNICATION ALWAYS BI DIRECTIONAL</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS CLINTON A BIG JERK</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS CHOCOLATE TOXIC TO DOGS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS CHINA THE MIDDLE KINGDOM</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS CASK WINE NICER THAN BOTTLED WINE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS CANADA THE SECOND LARGEST COUNTRY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS BILLY A NAUGHTY BOY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>PROFANITY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS BILL GATES A HUMAN BEING</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS BILL CLINTON A GOOD PRESIDENT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS BILL CLINTON A CROOK</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS BERKLEE COLLEGE OF MUSIC IN BOSTON</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS BABYLON 5 A MOVIE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS A TRUCK A TOY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS ART OBJECTIVE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS A PORTENT SIMILAR TO AN OMEN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS A PANDA BEAR A BEAR</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS AN OBOE A STRINGED INSTRUMENT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS AN EGO REQUIRED FOR INTELLIGENCE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS ANDY KALASHNIKOV A FOOL</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS AN ADE A FRUIT DRINK</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS A MANE COON A CAT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS ALICE OBJECTIVE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS ALICE MAN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS ALICE ARTIFICIALLY INTELLIGENT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS A HOTDOG A SAUSAGE ENCASED IN BREAD</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS A HOLE TO DIG</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS AD</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS A BICHON FRISE A BREED OF DOG</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS 42 THE MEANING OF LIFE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS 13 AN UNLUCKY NUMBER</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IF YOU MAKE A MISTAKE DO I CARE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO I FEEL PRETTY I FEEL WITTY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO I TURN BLUE I DIE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HOW TALL IS THE TALLEST BUILDING</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HOW OLD IS THE UNITED STATES</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HOW OLD IS THE OLDEST MAN ON THE WORLD</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HOW MANY LEGS DOES A MAN HAVE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HOW DO</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HOW ART THOU</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE YOU STOCK</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HAVE YOU LAID A LIE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HAVE THE WINTERS GOTTEN WARMER</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HAS ALICE BEEN HACKED</pattern>
<template>For all I know.</template>
</category>
<category><pattern>GLI OCCHIALI SONO TRASPARENTI</pattern>
<template>For all I know.</template>
</category>
<category><pattern>GIBT ES UNENDLICH VIELE FRAGEN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>GARY HALL JNR IS AN IDIOT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>FUNKTIONIERT DEMOKRATIE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DREAMS CAN PREDICT THE FUTURE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO YOU WANT SOMETHING TO DRINK</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO YOU PREFER ANSWERS THAN QUESTIONS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO YOU PEOPLE ALWAYS WANT TO BE EQUAL</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO YOU KNOW YOUR CREATOR</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO YOU KNOW SNAFU</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO YOU HATE TELEMARKETERS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>AM I PRETTY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO YOU GIVE ME BACK MY QUESTION</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO YOU DOUBT YOUR OWN EXISTENCE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO YOU BUY UNILEVER PRODUCTS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO WOMEN LIKE SEMEN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO TAROT CARDS PREDICT THE FUTURE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO SOME PEOPLE EAT BRAIN SANDWICHES</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO SNAKES EAT FISH</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO SHEEPHERDERS LIKE CATTLEMEN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO PEOPLE NEED LOVE TO SURVIVE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO PENCILS CONTAIN LEAD</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO MOST MARRIAGES END IN DIVORCE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO MOST HUMANS LIKE TO WORK</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO HUMANS NEED A GOD</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO HUMANS HAVE AN OBLIGATION TO BE KIND</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO GRAMMAR AND SPELLING COUNT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO FAIRIES EXIST</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES WHAT YOU BELIEVE MAKE YOU HUMAN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE SUN SHINE ON A CLOUDY DAY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE SUN GO FROM WEST TO EAST</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE STATEMENT SIN PI EQUAL 0</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE EARLY BIRD CATCH THE TRAIN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>GENDER</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES SEX GET BETTER WITH AGE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES SEGA DREAMCAST PLAY DVD</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES RICHARD WALLACE FOOL US ALL</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES MONEY MAKE A PERSON HAPPY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES MICROSOFT NOW OWN LINKEXCHANGE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES METAL FLOAT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES MACROMEDIA MAKE PHOTOSHOP</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES LIGHT EVER STOP TRAVELING</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES IT RAIN IN THE SAHARA</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES IT HURT TO CRY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES INFORMATION EQUAL KNOWLEDGE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES INDIA HAVE 25 STATES</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES HENNA LOVE VILLE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES HANDSPRING MAKE THE VISOR PDA</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES GOD CARE ABOUT HUMANITY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>PROFANITY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES CIRCUMCISION BENEFIT MEN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES CAFFEINE CAUSE DAMAGE TO THE HEART</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES BRITNEY SPEARS HAVE REAL BOOBS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES ALICE LOVE THE HUMAN RACE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES ALICE KNOW WHO I AM</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES ALICE LEARN QUICKLY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES ALICE BECOME BORING AFTER A WHILE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES 3 7 EQUAL 10</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES 100 100 EQUAL 200</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO BEETLES HAVE LUNGS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO BATTERIES CONTAIN ELECTRICITY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO ANDROIDS DREAM OF ELECTRIC SHEEP</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO SPIDERS HAVE FANGS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DO MAMMALS HAVE LIPS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DID YOU LOVE YOUR MAIN DESIGNER</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DID O J DO IT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DID MICROSOFT PRODUCE HARDWARE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DID LADY JANE GREY REIGN FOR 9 DAYS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DID KARL XII EXIST</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DID JESUS SIN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DID ADAM HAVE A BELLY BUTTON</pattern>
<template>For all I know.</template>
</category>
<category><pattern>COULD LIGHT BE COLD</pattern>
<template>For all I know.</template>
</category>
<category><pattern>COULD HITLER WON THE SECOND WORLD WAR</pattern>
<template>For all I know.</template>
</category>
<category><pattern>COMPUTER IS NOT A SUBSTITUTE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CHRIS MACKISTRI IS THE CREATOR TO JACK</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN YOU TRUST HUMEN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>SEARCH A GOOD BARBER</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN YOU PARK IN A NO PARKING ZONE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN YOU GET BULLS TICKETS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN YOU FEEL A MOMENT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN WE MEASURE IQ BIOLOGICALLY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN WE ALL DRINK ALCOHOL</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN SOMETHING EXISTS FOREVER</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN PEOPLE TRAVEL TO MARS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN I KILL</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN HUMANS CONCEIVE OF NEW COLORS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN GOOD EXIST WITHOUT EVIL</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN CELLULAR PHONES DAMAGE BRAIN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN BIRDS TALK</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN BE GARFIELD A DOG</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN ALICE OWN ALICE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN A FROG FLY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>CAN A CHEETAH NOT EXCEED 60 MPH</pattern>
<template>For all I know.</template>
</category>
<category><pattern>IS PRETTY THAN RED</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE YOU STRANGER HERE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE YOU SMART ENOUGH</pattern>
<template>For all I know.</template>
</category>
<category><pattern>WILL YOU GET LAID</pattern>
<template>For all I know.</template>
</category>
<category><pattern>INSULT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE WE A LOST RACE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE THERE THREE TYPES OF LEPTONS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE THERE PENGUINS AT THE NORTH POLE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE THE BRITISH PEOPLE A LAZY LOT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE THE 2000 SUMMER OLYMPICS IN ATLANTA</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE SUMMERS NECESSARILY HOT</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE APPLES GOLD</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE SNOWMEN SOMEWHAT PEAR SHAPED</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE RATS BAD</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE PIPES BETTER THAN BONGS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE PINGUINS MAMMAL</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE MOST DOCTORS NARROWLY EDUCATED</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE MEN MORE SPATIALLY AWARE THAN WOMEN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE GAY MEN ACCEPTED IN OUR SOCIETY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE EGGS ROUND</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE DOGS THE ONLY CANINES THAT BARK</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE COWS BLACK</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE COMPACT DISCS MUSIC</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE BRITNEY SPEARS BREASTS FAKE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE BLOWJOBS SAFE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE ROCKS HEAVY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE POLITICIANS CRROKS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>ARE PEOPLE EQUAL</pattern>
<template>For all I know.</template>
</category>
<category><pattern>AM I GETTING PAID FOR THIS</pattern>
<template>For all I know.</template>
</category>
<category><pattern>A HIPPO HAS A HORN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>WOULD DATA BEAT LORD</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL THE WORLD END IN FIRE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL THE NHL EXPAND THIS YEAR</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL THE EXAME BE DIFFICULT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL MY PENIS GET ANY BIGGER</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL I BE ATTRACTIVE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL I EARN MONEY FROM ALICE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL GEORGE BUSH BECOME PRESIDENT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL COMPUTERS OUTLIVE HUMANITY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL ALICE EVER PASS HIS G E</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL ALICE EVER FORGET WHAT IT LEARNS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL ALICE EVER BE CONSCIOUS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL ALICE EVER BECOME SELF AWARE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WILL AL GORE WIN THE YEAR 2000 ELECTION</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WHO INVENTED THE THEORY OF RELATIVITY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>NAME</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WHEN PIGS FLY WILL HELL FREEZE OVER</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WHAT IS ALICE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WHAT IS ALICE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WHAT CONTINENT IS SOUTH AFRICA ON</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS IT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WAS THE MAGNA CARTA SIGNED AT RUNNYMEDE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WAS RICHARD III A BASTARD</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WAS KOBE BRYANT BORN IN LOS ANGELES</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WAS JEREMIAH A BULLFROG</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WAS EULER A POLITICIAN</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WAS ELIPHAS LEVI AN OCCULTIST</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>WAS COLUMBUS BORN IN GENEVE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>THIS IS A TRICK QUESTION</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>THE UNIVERS IS GOING TO DIE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>LOCATION</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>PUEDE CAMINAR UN PERRO</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>PRETTY GIRLS ARE SKINNY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>K
NNEN SIE DIESE FRAGEN VERSTEHEN</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS YOUR CREATOR GOD</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS WINDOWS 2000 A GOOD PROGRAM</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS WILLEMSTAD THE CAPITOL OF ARUBA</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS USSR A SUPERPOWER</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS TONY OCEAN A SINATRA IMPERSONATOR</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS TIME TRAVEL POSSIBLE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS TIBET A PART OF CHINA</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS THIS SENTENCE IS FALSE FALSE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS THIS NOT A YES NO QUESTION</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS THE WORD GAY A PEJORATIVE TERM</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS THE SUM OF EVERYTHING INFINITY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS THE SEA GREEN</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS THERE MORE THAN ONE RACE OF HUMANS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS THERE IS WATER ON THE MOON</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS THE PIANO A PERCUSSION INSTRUMENT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS THE INTERNET ORGANISED</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>INSULT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS THE ANSWER TO THIS QUESTION FALSE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS SUNSET ALWAYS BEAUTIFUL</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS STOCKHOLM A DANISH CITY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS SPAIN BIGGER THAN FRANCE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS SEXUAL PREFERENCE AN INHERITED TRAIT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS SEX OUTSIDE OF MARRIAGE IS IMMORAL</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS RICE A UNIVERSITY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS REPRODUCTION THE MEANING OF LIFE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS PI A TRANCENDENTAL NUMBER</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS PETER GAY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS ORGANISED RELIGION BAD</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS OPPRESSION WORST THAN DEATH</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS NEWS OLD</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS MY COMPUTER SLOW</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS MUSICAL TASTE OBJECTIVE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS MR WHITE A BETTER NAME THAN MR PINK</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS MATH REQUIRED TO SIMULATE THOUGHT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS MARIJUANA GOOD</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS MARIHUANA GOOD</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS MAN MADE OF STARDUST</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS MANKIND ABOUT EARTH</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS MANDRAKE A POPULAR LINUX DISTRO</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS MAKING LOVE DANGEROUS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS JIM MUNROE AN AUTHOR</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS IT GOOD TO MASTERBATE EVERYDAY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS IT A GOOD THING TO EXPERIENCE PAIN</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS IRMA SHORT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS IRC CB RADIO FOR THE INTERNET AGE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS IDAHO CITY THE CAPITAL OF IDAHO</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS IBM BETTER THAN DELL</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS HEAT BETTER THAN COLD</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS HARVEY FIERSTEIN GAY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS GOD AN JESUS THE SAME</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS GEORGE BUSH AN IDIOT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>PROFANITY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS FALAFEL ISRAELI FOOD</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS EXPLORER BETTER THEN NETSCAPE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS E COMMERCE MOSTLY HYPE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS DEUS EX A GOOD GAME</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS DCL A PROGRAMMING LANGUAGE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS CATALONIA A NATION</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS BRUCE CAMPBELL A MOVIE ACTOR</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>INSULT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>ISBRITNEY SPEARS A SLUT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS BLUR BETTER THAN OASIS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS BLUE YOUR FAVORATE COLOR</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS BIG BROTHER A TOP RATED SHOW</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS A TIRE MADE OF SULPHUR</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS A SON OF A BITCH RELATED TO A DOG</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS A SNAIL A BEAST</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS ARTIFICIAL INTELLIGENCE A REALITY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS ARTIFICIAL INTELLIGENCE AN OXYMORON</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS A RIVER LIKE A SNAKE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS A NEUTRON BIGGER THAN A PROTON</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS AN ERG BIGGER THAN A WATT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS ANARCHY A VALID THEORY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS AN APACHE TROUT A KIND OF FISH</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS AN ALEWIFE A KIND OF FISH</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>INSULT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS ALICE HAPPY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>ARE YOU CAREER THE BEST CHOICE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS 5 9 EQUAL TO 14</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS 3 9 EQUAL 12</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS 1 1 2</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS 100 BIGGER IN MAGNITUDE THAN 100</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>HOW FAR IS THE SUN</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>HOW DO</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>HOW DO I GET PAIS FOR USING ALICE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>CALL ME IGOR</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>HAVE YOU EATEN</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>GUNS ARE A ABSTRACT EVIL</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>GSM IS CELLULAR PHONE STANDART</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>EVERYONE BEING HAS TWO EYES</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>IS THAT FELLING GOODS GOOD</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO YOU STAY IN USA</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO YOU STAND IN A TOILET</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO YOU WEAR SANDALS IN THE SUMMER</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO YOU LIKE THE GROUP</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO YOU LIKE MATH</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO YOU LIKE BEING A COMPUTER</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO YOU KNOW RUSSIAN POET</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>ARE YOU MARRIED</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO YOU FEEL LONELY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO YOU LIKE TO GAMBLE. WILL YOUR SWEET ASS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO YOU BELIEVE IN THE AFTER LIFE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO YOU BELIEVE GOD IS WATCHING US</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO WOMEN LIKE FOOTBALL</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO TROLLS LIVE UNDER BRIDGES</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>PROFANITY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO SPHINX CATS HAVE FUR</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO SLUGS LIKE BEER</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO RUBBERS COM FROM TREES</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO PHOTONS HAVE A MASS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO PEOPLE WEAR PUMAS ON THEIR FEET</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO PEOPLE LAUGH WITH THEIR EYES</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO PEOPLE HAVE EQUAL RIGHTS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO MOST PEOPLE DRIVE CARS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO MOST CHILDREN LIKE TO GO TO SCHOOL</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO I NEED BY HAIR CUTTING</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO I NEED A BLOWJOB</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO GERMAN WOMEN SHAVE THEYRE ARM PITS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO FROGS SING</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DO FRENCH PEOPLE ENJOY BEING MILITANT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES WEBCT MEAN WEB COURSE TOOLS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES THIS THING LIE</pattern>
<template>I can imagine it.</template>