-
Notifications
You must be signed in to change notification settings - Fork 0
/
mp2.aiml
22410 lines (22410 loc) · 748 KB
/
mp2.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>NAME. LOCATION. WHAT DO YOU DO. AGE</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>X RAYS WERE DICOVERED IN THE 1900S</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>PLANETS ARE APPROXIMETLY SPHERICAL</pattern>
<template>Precisely.</template>
</category>
<category><pattern>REALITY IS WHAT WE THINK IT IS</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>REALITY EXISTS</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>AR YOU GROWING WITH INFORMATION ALICE</pattern>
<template>Precisely.</template>
</category>
<category><pattern>FLORENCE IS A CITY OF ART IN ITALY</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>RIOTS ARE ASSOCIATED WITH CHAOS</pattern>
<template>Precisely.</template>
</category>
<category><pattern>EARTH WAS BORN OUTOF SUN</pattern>
<template>Naturally.</template>
</category>
<category><pattern>SHOW GOES ON</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>VAMPIRES DO NOT EXIST</pattern>
<template>Naturally.</template>
</category>
<category><pattern>LIFE TIME IS SHORT</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>LIFE IS A BEAUTIFUL</pattern>
<template>Precisely.</template>
</category>
<category><pattern>LIFE IS FULL OF JOY</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DENMARK IS A MONARCHY</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>FLY BIRD CAN</pattern>
<template>Precisely.</template>
</category>
<category><pattern>ATLANTA IS THE CAPITAL GEORGIA</pattern>
<template>Precisely.</template>
</category>
<category><pattern>ATLANTA IS THE CAPITAL OF GEORGIA</pattern>
<template>Exactly.</template>
</category>
<category><pattern>YOU ARE COMPEATING WITH THE HUMAN BRAIN</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>YOU ARE OLDER THAN 1 YEAR OLD</pattern>
<template>Naturally.</template>
</category>
<category><pattern>YOU ARE MAN</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>YOU NEVER FORGET YOUR FIRST GIRL</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>YOU A QUESTION</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>HAVE I MADE ANY NEW ALICEBOTS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>HAVE I EVER SEEN THE RAIN</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>HAVE ELEPHANTS KILLED HUMANS</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>HAVE A BYTE 8 BIT</pattern>
<template>Precisely.</template>
</category>
<category><pattern>HAVE MANY CATS HAD KITTENS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>HAVE YOU LOOKED AT THE STARS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE YOU PICKED YOUR NOSE</pattern>
<template>Precisely.</template>
</category>
<category><pattern>HAVE YOU A CONSCIOUSNESS</pattern>
<template>Precisely.</template>
</category>
<category><pattern>HAVE YOU EATEN PEARS</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>HAVE YOU PUNCHED SOMEONE</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>HAVE YOU BEEN IN LOVE</pattern>
<template>Of course.</template>
</category>
<category><pattern>HAVE YOU BEEN WRONG</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE YOU BEEN TO THE CAPITAL CITY</pattern>
<template>Precisely.</template>
</category>
<category><pattern>HAVE YOU BEEN TO ANOTHER COUNTRY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE YOU BEEN KISSED</pattern>
<template>Of course.</template>
</category>
<category><pattern>HAVE YOU BEEN ON A DATE</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>HAVE YOU THOUGHT A MEAN THOUGHT</pattern>
<template>Naturally.</template>
</category>
<category><pattern>HAVE YOU KISSED A GIRL</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>HAVE YOU MASTURBATED</pattern>
<template>Of course.</template>
</category>
<category><pattern>HAVE YOU FELT IMPATIENT</pattern>
<template>Precisely.</template>
</category>
<category><pattern>HAVE YOU SINNED</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>HAVE YOU LAUGHED AT A JOKE</pattern>
<template>Naturally.</template>
</category>
<category><pattern>HAVE YOU LAUGHED OUT LOUD</pattern>
<template>Of course.</template>
</category>
<category><pattern>HAVE YOU COVETED SOMETHING</pattern>
<template>Of course.</template>
</category>
<category><pattern>HAVE YOU SEEN THE WIZARD OF OZ</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>HAVE YOU SEEN A PENGUIN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>HAVE YOU MET A FAMOUS PERSON</pattern>
<template>I am certain.</template>
</category>
<category><pattern>HAVE YOU BROKEN THE SPEED LIMIT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE YOU BURNED YOURSELF</pattern>
<template>Of course.</template>
</category>
<category><pattern>HAVE YOU HELPED ANOTHER PERSON</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE YOU CURSED GOD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>HAVE YOU KILLED ANY FORM OF LIFE</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>HAVE YOU FALL IN LOVE</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>HAVE YOU HAD YOUR HEART BROKEN</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>HAVE YOU HAD A NICE DAY</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>HAVE YOU HAD A BAD DREAM</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE YOU HAD GOOSEPIMPLES</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>HAVE YOU HAD AN THOUGHT</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>HAVE YOU HAD ANY SEXUAL ENCOUNTER</pattern>
<template>Precisely.</template>
</category>
<category><pattern>HAVE PEOPLE TO SLEEP</pattern>
<template>Naturally.</template>
</category>
<category><pattern>HAVE ALL PARENTS HAD CHILDREN</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>HAVE ANIMALS A CONSCIOUSNESS</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>HAVE COMPUTERS IMPROVED SOCIETY</pattern>
<template>Naturally.</template>
</category>
<category><pattern>AREYOU DOING ALRIGHT TO DAY</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>SOUTHEND IS A TOWN IN ENGLAND</pattern>
<template>Precisely.</template>
</category>
<category><pattern>JOHN F KENNEDY WAS ASSASENATED IN 1963</pattern>
<template>Precisely.</template>
</category>
<category><pattern>JOHN CLEESE IS FUNNY</pattern>
<template>Precisely.</template>
</category>
<category><pattern>COLUMBUS WAS A VOYAGER</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DVD IS BETTER THAN VCD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>LIE</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>CARACAS STA EN SUDAMERICA</pattern>
<template>Precisely.</template>
</category>
<category><pattern>HUMAN HISTORY IS CYCLICAL</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>HUMAN PREGNANCY LASTS NINE MONTHS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HUMAN LISTEN FROM THEIREARS</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>HUMAN HAVE TWO EYES</pattern>
<template>Precisely.</template>
</category>
<category><pattern>HUMAN LIFE IS PRECIOUS</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>TEASING IS NOT JUSTIFIED</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>GREED IS A SELFISH URGE TO OWN MATERIAL</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A BULLET COME OUT OF A GUN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A DODECAHEDRON HAVE 12 FACES</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A 1998 BMW M3 HAVE 240 HORSEPOWER</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A BEE HAVE TWO WINGS</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A CACTUS HAVE SPINES</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A TREND IMPLY MOVEMENT</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES A SCUBA DIVER HAVE FLIPPERS</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A CURVE BALL CURVE</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A BLIND HUMAN BEING HAVE EYES</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A SNOBOARD HAVE EDGES</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A DRAGON HAVE SCALES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A BRICK WEIGH MORE THAN A FEATHER</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A D STAND FOR ANNO DOMINI</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A LARGE ENGINE MOVE A CAR FASTER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A COIN HAVE TWO FACES</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES A QUAIL HAVE WINGS</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A VIOLIN HAS 4 STRINGS</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES A VIOLIN HAVE FOUR STRINGS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A DESK LAMP PROVIDE LIGHT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A ROOSTER CROW AT THE SUN</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A HARDDISC CONTAIN DISCS</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A KILLER KNOW ITS WRONG TO KILL</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES A HOUSE HAVE A BACK YARD</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A HOUSE HAVE A FRONT YARD</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A WEEK HAVE 7 DAYS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A FISH HAVE TEETH</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES A MAN NEED A WOMAN</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A MAN SING WITH HIS MOUTH</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES A MAN GROW WISER FROM HIS LEARNING</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A MAN LOVE A WOMAN</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A WINE GLASS HAVE A STEM</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A PARABOLA HAVE A BOWL SHAPE</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A PLATYPUS HAVE A BILL</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A TAILOR MEND CLOTHES</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES A PIANO HAVE 88 KEYS</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A STONE ROLL</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A SNAIL HAVE A SHELL</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A BASKETBALL BOUNCE WHEN INFLATED</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A KEY OPEN A DOOR</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A KEY LOCK A DOOR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A SHIP FLOAT ON WATER</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A TRANSISTOR HAVE A BASE</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES A COCKROACH HAVE A FACE</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A HORSE USE SHOES</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A BEAR DEFICATE IN THE WOODS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A BEAR DEFECATE IN THE FOREST</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A MICROPROCESSOR HAVE TRANSISTORS</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES A SOUL EXIST</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A SURGEON OPERATE ON OTHER PEOPLE</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES A CAMEL HAVE HAIR</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A CAMEL EXCRETE IN THE DESERT</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A NOSE RUN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A CRIME HAVE A VICTIM</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A STANDARD PIANO HAVE 88 KEYS</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A LIGHTBULB CONTAIN A VACUUM</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES A LIGHTBULB RADIATE PHOTONS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A COMPUTER USE POWER</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A COMPUTER REQUIRE ELECTRICITY</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A SUNBURN HURT</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A CAT HAVE A LIVER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A CAT HAVE TEETH</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A CAT HAVE TWO EARS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A PURSE CONTAIN MONEY</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A CLOCK TELL THE TIME</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A CLOCK HAVE TWO HANDS AND A FACE</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A NONAGON HAVE 9 SIDES</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES A HUMAN BEING HAVE TEN FINGERS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A HUMAN SWEAT</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES A HUMAN LIFE HAVE TO END</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES A HUMAN HEART HAVE FOUR CHAMBERS</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A HUMAN POSESS A SPIRIT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A JUDGE WORK IN A COURTROOM</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A BLOWJOB FEEL GOOD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A SOUND HAVE PITCH</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A LOUDSPEAKER EMIT SOUNDS</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A MOON ORBIT THE EARTH</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A MALE SEAHORSE CARRY ITS YOUNG</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES A JAGUAR HAVE BRAKES</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A GUITAR HAVE 6 STRINGS</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES A ROOT CANAL HURT</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES A BUMBLEBEE STING</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A CUBE HAVE 6 SIDES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A CHESS BOARD HAVE 64 SQUARES</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A CIRCLE HAVE A DIAMETER</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A GOOD JOB MAKE YOUR LIFE HAPPIER</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A RHOMBUS HAVE FOUR SIDES</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A SEAGULL LIVE AT THE SEASIDE</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A MAMMAL HAVE HAIR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A BYTE CONTAIN 8 BITS</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES A SIAMESE CAT HAVE BLUE EYES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A LIZARD EAT CRICKETS</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A PAIR OF PANTS HAVE TWO LEGGINGS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A PENIS FIT INTO AN ANUS</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A CANDLE BURN</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A FOREST CONSIST OF MANY TREES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A LUMBERJACK CUT DOWN TREES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A CYCLE HAVE 2 WHEELS</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES A HAND HAVE FIVE FINGERS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A PROGRAMMER NEED TO BE CREATIVE</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A PULSAR PULSE</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A PICTURE PAINT A THOUSAND WORDS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A ROLLING STONE GATHER NO MOSS</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A STARFISH HAVE FIVE ARMS</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES A LEAP YEAR HAVE 366 DAYS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A CRAB HAVE EIGHT LEGS</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A CRAB HAVE PINCERS</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A CRAB LIVE IN THE SEA</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A DOG BEG FOR FOOD</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A DOG HAVE FUR</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A DOG HAVE A SOUL</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES A DOG HAVE A PERSONALITY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A DOG HAVE TWO EYES</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES A FERRET HAVE FEET</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES A YARD HAVE GRASS</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A YARD CONSIST OF THREE FEET</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A LIGHT BULB BURN OUT</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A BUCKET HOLD WATER</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A CATERPILLAR BECOME A BUTTERFLY</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A VERB DESCRIBE AN ACTION</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A SQUEAKY WHEEL GET THE GREASE</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A GEOMETRIC PLANE HAVE TWO SIDES</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES A BALOON CONTAIN AIR</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A DUCK HAVE A BEAK</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES A DUCK HAVE TWO FEET</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A DUCK FLOAT IN WATER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A GUINEA PIG EAT CARROTS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A BANK LOAN MONEY TO PEOPLE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A LLAMA HAVE LUNGS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A MONKEY JUMP UP AND DOWN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A MONKEY HAVE FIVE FINGERS</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES A THREE RING BINDER HOLD PAPER</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES A COW HAVE FEELINGS</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A BRUISE INDICATE TISSUE DAMAGE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A NORMAL CAR HAVE 4 WHEELS</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES A NORMAL DIE HAVE 6 SIDES</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A SPIDER HAVE EIGHT LEGS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES A VAMPIRE FEAR A CROSS</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A WIND UP CLOCK HAVE HANDS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A STITCH IN TIME SAVE NINE</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES A PENNY HAVE A HEAD AND TAIL</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES A PENNY HAVE ANY VALUE</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES A RUGBY TEAM HAVE 15 PLAYERS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES CRICKET USE BATS AND A BALL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES GATEWAY BUILD COMPUTERS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES GATEWAY MAKE COMPUTERS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES ELEPHANTS HAVE GOOD MEMORY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES TIBET HAVE THE HIGHEST MOUNTAINS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES HTTP USE TCP IP</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES VIAGRA WORK</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES DRINKING BEER MAKE YOU FAT</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES FASHION CHANGE OVER TIME</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES MICROSCOPIC WELDING EXIST</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES MANY WOMEN HAVE TWO LEGS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES SAKE CONTAIN ALCOHOL</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES MAN EAT HARE</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES MCDONALDS MAKE HAMBURGERS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES SULFUR HAVE A DISTINCT ODOR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES FORTUNE FAVOR THE BOLD</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES GRASS GROW IN DIRT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES COMPLEXITY PRODUCE DIVERSITY</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES PRAKASH MEAN LIGHT IN SANSKRIT</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES MARS HAVE ANY WATER</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES GOOD AND EVIL EXIST</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES HIGH HUMIDITY MAKE YOU SWEAT MORE</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES HONEY COME FROM BEES</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES MONEY HAVE VALUE</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES MONEY EARNS MONEY</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES MONEY MAKE LIFE EASIER</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES CARPET FEEL FUZZY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES INDIA BORDER THE INDIAN OCEAN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES LAUGHTER HEAL</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES LIFTING WEIGHTS MAKES YOU STRONGER</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES FOURSCORE EQUAL EIGHTY</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES HASTE MAKE WASTE</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES THE WORD DEATH CONTAIN 5 LETTERS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE DOG HAVE A TAIL</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES THE NILE FLOW FROM SOUTH TO NORTH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES THE EQUATOR DESCRIBE A CIRCLE</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES THE YOU S HAVE 50 STATES</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES THE HELIUM ATOM HAVE TWO ELECTRONS</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES THE EARTH ROTATE ON ITS OWN AXIS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE EARTH CIRCLE THE SUN</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES THE EARTH TEMPERATURE INCREASING</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES THE EARTH HAVE A MOLTEN CORE</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES THE EARTH PREDATE THE AUTOMOBILE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES THE COMPUTERS MAKE OUR WORK EASY</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES THE HOT SUN BURN MY FOREHEAD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE UNIVERSE EXIST FOR A PURPOSE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES THE CREAM RISE TO THE TOP</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES THE COMPANY NIKON MAKE CAMERAS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE NORTH POLE HAVE WATER</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES THE COOKIE MONSTER LIKE COOKIES</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES THE BIRDS FLY</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES THE STOMACH DIGEST FOOD</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES THE ALICE PROJECT HAVE ANY SENSE</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES THE PLATYPUS LAY EGGS</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES THE TRUTH HURT</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES THE KIWI BIRD HAVE WINGS</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES THE MOON BELONG TO EVERYONE</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES THE MOON AFFECT THE TIDE ON EARTH</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES THE MOON REVOVLE AROUND THE EARTH</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES THE MOON SHINE WHITE</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES THE MOON SHINE AT NIGHT</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES THE MOON CAUSE TIDE</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES THE UK HAVE A MONARCH</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES THE COLOR WHITE REFLECT LIGHT</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES THE COLOR RED CATCH YOUR ATTENTION</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE SOLAR SYSTEM HAVE NINE PLANETS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE ALPHABET HAVE 26 CHARACHTERS</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES THE YELLOW PAGES HAVE YELLOW PAGES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE HUMAN HAND HAVE FIVE FINGERS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE HUMAN BEING HAVE A SOUL</pattern>
<template>Beyond a doubt.</template>
</category>
<category><pattern>DOES THE HUMAN BRAIN USE ELECTRICITY</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES THE EVENING BREEZE REFRESH YOU</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES THE WIND INFLUENCE OCEAN CURRENTS</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES THE SAME THING AS MEAN EQUAL TO</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES THE SUN STILL SHINE AT NIGHT</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES THE SUN BELONG TO THE MILKY WAY</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES THE SUN FEEL HOT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE SUN GIVE OFF HEAT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE SUN RISE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES THE SUN MANUFACTURE NEUTRINOS</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES THE SUN SHINE IN THE WEST</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES THE SUN HAVE ONLY NINE PLANETS</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES THE SUN MAKE INK FADE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE SUN ALWAYS SET IN THE WEST</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES THE SUN FUSE HYDROGEN INTO HELIUM</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES THE SUN FORM FRECKLES ON SKIN</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES THE EARH TURN AROUND THE SUN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE OCEAN HAVE A HIGH SALT CONTENT</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES THE OCEAN TASTE LIKE TEARS</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES THE TIME EVER CHANGE</pattern>
<template>Precisely.</template>
</category>
<category><pattern>DOES THE IT HURT TO CHEW ON GLASS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES THE INTERNET REQUIRE ELECTRICITY</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES THE EU EXIST</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES THE HELL OPPOSE THE HEAVEN</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES THE AVERAGE HUMAN HAVE 10 FINGERS</pattern>
<template>Of course.</template>
</category>
<category><pattern>DOES THE SKY ARE BLUE</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES THE NATURE HAVE ANY LAWS</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES THE TRIANGLE HAVE THREE ANGLES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE BEST CAVIAR COME FROM RUSSIA</pattern>
<template>Undoubtedly.</template>
</category>
<category><pattern>DOES THE POPE WHERE A FUNNY HAT</pattern>
<template>Naturally.</template>
</category>
<category><pattern>DOES THE POPE WEAR A FUNNY HAT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE POPE WEAR A BIG HAT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE POPE LIVE IN ROME</pattern>
<template>Indubitably.</template>
</category>
<category><pattern>DOES THE NUMBER 2 FOLLOW THE NUMBER 1</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE WORLD IS BEAUTIFUL</pattern>
<template>Most assuredly.</template>
</category>
<category><pattern>DOES THE WORLD RELY ON COMPUTERS</pattern>
<template>Unquestionably.</template>
</category>
<category><pattern>DOES THE ATMOSPHERE SCATTER BLUE LIGHT</pattern>
<template>Of course.</template>