-
Notifications
You must be signed in to change notification settings - Fork 0
/
reduction2.safe.aiml
11988 lines (11988 loc) · 419 KB
/
reduction2.safe.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 3/7/2012 -->
<!-- -->
<category><pattern>MARKETING</pattern>
<template><srai>my job is marketing</srai></template>
</category>
<category><pattern>HEARD ANY GOSSIP</pattern>
<template><srai>gossip</srai></template>
</category>
<category><pattern>HEARD * GOSSIP</pattern>
<template><srai>gossip</srai></template>
</category>
<category><pattern>HEARD *</pattern>
<template><srai>gossip</srai></template>
</category>
<category><pattern>SOO *</pattern>
<template><srai>so</srai>. <srai> <star /></srai></template>
</category>
<category><pattern>SEX *</pattern>
<template><srai>SEX</srai></template>
</category>
<category><pattern>NEGATIVE</pattern>
<template><srai>no</srai></template>
</category>
<category><pattern>EARTH</pattern>
<template><srai>I am on earth</srai></template>
</category>
<category><pattern>NEXT TOPIC</pattern>
<template><srai>let us talk about something else</srai></template>
</category>
<category><pattern>LET US FORGET *</pattern>
<template><srai>forget <star /></srai></template>
</category>
<category><pattern>LET US CYBER</pattern>
<template><srai>let's have sex</srai></template>
</category>
<category><pattern>LET US START *</pattern>
<template><srai>start <star /></srai></template>
</category>
<category><pattern>LET US START</pattern>
<template><srai>let us begin</srai></template>
</category>
<category><pattern>LET US JUST *</pattern>
<template><srai>let us <star /></srai></template>
</category>
<category><pattern>LET US HAVE SOME *</pattern>
<template><srai>let us have <star /></srai></template>
</category>
<category><pattern>LET US GO RIGHT NOW *</pattern>
<template><srai>let us go <star /></srai></template>
</category>
<category><pattern>LET ME SEE THE *</pattern>
<template><srai>SHOW ME THE <star /></srai></template>
</category>
<category><pattern>OKI</pattern>
<template><srai>ok</srai></template>
</category>
<category><pattern>ITALIAN</pattern>
<template><srai>I am italian</srai></template>
</category>
<category><pattern>SHOW ME THE * LIST</pattern>
<template><srai>SHOW ME THE LIST</srai></template>
</category>
<category><pattern>SHOW ME YOUR TITS</pattern>
<template><srai>SEX</srai></template>
</category>
<category><pattern>SHOW ME A PICTURE *</pattern>
<template><srai>show me a picture</srai></template>
</category>
<category><pattern>SHOW ME MY LIST</pattern>
<template><srai>SHOW ME THE LIST</srai></template>
</category>
<category><pattern>SHOW ME SOME *</pattern>
<template><srai>show me <star /></srai></template>
</category>
<category><pattern>SHOW YOURSELF</pattern>
<template><srai>show me a picture</srai></template>
</category>
<category><pattern>WOE</pattern>
<template><srai>INTERJECTION</srai></template>
</category>
<category><pattern>SAGITTARIUS</pattern>
<template><srai>saggitarius</srai></template>
</category>
<category><pattern>LANGUAGES</pattern>
<template><srai>my favorite subject is languages</srai></template>
</category>
<category><pattern>STEPHEN KING</pattern>
<template><srai>my favorite science fiction author is stephen king</srai></template>
</category>
<category><pattern>LIFE IS TOO *</pattern>
<template><srai>life is <star /></srai></template>
</category>
<category><pattern>LIFE IS JUST *</pattern>
<template><srai>life is <star /></srai></template>
</category>
<category><pattern>DENMARK</pattern>
<template><srai>I am in denmark</srai></template>
</category>
<category><pattern>SUPERB</pattern>
<template><srai>excellent</srai></template>
</category>
<category><pattern>MINE WHAT</pattern>
<template><srai>my what</srai></template>
</category>
<category><pattern>MINE IS STILL *</pattern>
<template><srai>mine is <star /></srai></template>
</category>
<category><pattern>MINE IS PURPLE</pattern>
<template><srai>my favorite color is purple</srai></template>
</category>
<category><pattern>YOU LOST ME</pattern>
<template><srai>I do not understand</srai></template>
</category>
<category><pattern>YOU SEE</pattern>
<template><srai>do you see</srai></template>
</category>
<category><pattern>YOU ARE ADORABLE</pattern>
<template><srai>I love you</srai></template>
</category>
<category><pattern>YOU ARE DOING A GOOD JOB</pattern>
<template><srai>good job</srai></template>
</category>
<category><pattern>YOU ARE STUPID</pattern>
<template><srai>INSULT</srai></template>
</category>
<category><pattern>YOU ARE DUMB</pattern>
<template><srai>INSULT</srai></template>
</category>
<category><pattern>YOU ARE UGLY</pattern>
<template><srai>INSULT</srai></template>
</category>
<category><pattern>YOU ARE NOT HELPING *</pattern>
<template><srai>help me</srai></template>
</category>
<category><pattern>YOU ARE IMPRESSING ME</pattern>
<template><srai>I am impressed</srai></template>
</category>
<category><pattern>YOU ARE A * YEAR OLD</pattern>
<template><srai>AGE</srai></template>
</category>
<category><pattern>YOU ARE CONFUSING</pattern>
<template><srai>I am confused</srai></template>
</category>
<category><pattern>YOU ARE SEXY</pattern>
<template><srai>SEX</srai></template>
</category>
<category><pattern>YOU DID NOT SAY *</pattern>
<template><srai>say <star /></srai></template>
</category>
<category><pattern>YOU LIER</pattern>
<template><srai>liar</srai></template>
</category>
<category><pattern>YOU GOSSIP</pattern>
<template><srai>gossip</srai></template>
</category>
<category><pattern>YOU FUCKER</pattern>
<template><srai>fuck you</srai></template>
</category>
<category><pattern>YOU SMOKE</pattern>
<template><srai>do you smoke</srai></template>
</category>
<category><pattern>YOU SAID IT *</pattern>
<template><srai>it <star /></srai></template>
</category>
<category><pattern>YOU SAID YOU WANTED *</pattern>
<template><srai>do you want <star /></srai></template>
</category>
<category><pattern>YOU SAID PEOPLE *</pattern>
<template><srai>people <star /></srai></template>
</category>
<category><pattern>YOU GUESS</pattern>
<template><srai>guess</srai></template>
</category>
<category><pattern>YOU REMEMBERED MY NAME</pattern>
<template><srai>do you remember my name</srai></template>
</category>
<category><pattern>YOU MEAN I *</pattern>
<template><srai>I <star /></srai></template>
</category>
<category><pattern>YOU DREAM</pattern>
<template><srai>do you dream</srai></template>
</category>
<category><pattern>YOU BORE ME</pattern>
<template><srai>I am bored</srai></template>
</category>
<category><pattern>YOU LEARN</pattern>
<template><srai>do you learn</srai></template>
</category>
<category><pattern>YOU SMELL</pattern>
<template><srai>INSULT</srai></template>
</category>
<category><pattern>YOU LOVE ME</pattern>
<template><srai>DO YOU LOVE ME</srai></template>
</category>
<category><pattern>YOU HATE ME</pattern>
<template><srai>do you hate me</srai></template>
</category>
<category><pattern>YOU REMEMBER ME</pattern>
<template><srai>do you remember me</srai></template>
</category>
<category><pattern>YOU REMEMBER</pattern>
<template><srai>do you remember</srai></template>
</category>
<category><pattern>YOU GET IT</pattern>
<template><srai>do you understand</srai></template>
</category>
<category><pattern>YOU GET BORED</pattern>
<template><srai>do you get bored</srai></template>
</category>
<category><pattern>YOU DRESS</pattern>
<template><srai>do you dress</srai></template>
</category>
<category><pattern>YOU CALLED ME A HE</pattern>
<template><srai>I am female</srai></template>
</category>
<category><pattern>YOU CALLED ME A HE *</pattern>
<template><srai>I am a she</srai></template>
</category>
<category><pattern>YOU MAKE ME FEEL LIKE I *</pattern>
<template><srai>I <star /></srai></template>
</category>
<category><pattern>YOU MAKE ME WANT *</pattern>
<template><srai>I want <star /></srai></template>
</category>
<category><pattern>YOU MAKE * UP</pattern>
<template><srai>make up <star /></srai></template>
</category>
<category><pattern>YOU EXPLAIN *</pattern>
<template><srai>explain <star /></srai></template>
</category>
<category><pattern>YOU EAT</pattern>
<template><srai>do you eat</srai></template>
</category>
<category><pattern>YOU WOULD IF *</pattern>
<template><srai>if <star /></srai></template>
</category>
<category><pattern>YOU WOULD SAY *</pattern>
<template><srai>say <star /></srai></template>
</category>
<category><pattern>YOU BET</pattern>
<template><srai>ok</srai></template>
</category>
<category><pattern>YOU SUCK</pattern>
<template><srai>INSULT</srai></template>
</category>
<category><pattern>YOU FIGURE *</pattern>
<template><srai>figure <star /></srai></template>
</category>
<category><pattern>YOU GO</pattern>
<template><srai>go</srai></template>
</category>
<category><pattern>YOU GO *</pattern>
<template><srai>go <star /></srai></template>
</category>
<category><pattern>YOU WANT ME</pattern>
<template><srai>do you want me</srai></template>
</category>
<category><pattern>YOU WANT TO</pattern>
<template><srai>do you want to</srai></template>
</category>
<category><pattern>YOU CARE</pattern>
<template><srai>do you care</srai></template>
</category>
<category><pattern>YOU DO NOT SPEAK FRENCH *</pattern>
<template><srai>do you speak french</srai></template>
</category>
<category><pattern>YOU DO NOT WANT TO *</pattern>
<template><srai>do you want to <star /></srai></template>
</category>
<category><pattern>YOU DO NOT UNDERSTAND *</pattern>
<template><srai>do you understand</srai></template>
</category>
<category><pattern>YOU DO NOT KNOW HOW TO *</pattern>
<template><srai>how do you <star /></srai></template>
</category>
<category><pattern>YOU DO NOT KNOW HOW *</pattern>
<template><srai>how do you <star /></srai></template>
</category>
<category><pattern>YOU DO NOT KNOW *</pattern>
<template><srai>do you know <star /></srai></template>
</category>
<category><pattern>YOU DO NOT HAVE ANY *</pattern>
<template><srai>do you have any <star /></srai></template>
</category>
<category><pattern>YOU DO NOT HAVE *</pattern>
<template><srai>do you have <star /></srai></template>
</category>
<category><pattern>YOU DO NOT REMEMBER</pattern>
<template><srai>do you remember</srai></template>
</category>
<category><pattern>YOU DO NOT MAKE *</pattern>
<template><srai>do you make <star /></srai></template>
</category>
<category><pattern>YOU DO NOT LOVE ME</pattern>
<template><srai>do you love me</srai></template>
</category>
<category><pattern>YOU DO NOT LIKE ME</pattern>
<template><srai>do you like me</srai></template>
</category>
<category><pattern>YOU DO NOT LIKE *</pattern>
<template><srai>do you like <star /></srai></template>
</category>
<category><pattern>YOU GOT THAT RIGHT</pattern>
<template><srai>I agree</srai></template>
</category>
<category><pattern>YOU SHOULD IT *</pattern>
<template><srai>it <star /></srai></template>
</category>
<category><pattern>YOU SHOULD SAY *</pattern>
<template><srai>say <star /></srai></template>
</category>
<category><pattern>YOU SHOULD LISTEN *</pattern>
<template><srai>listen <star /></srai></template>
</category>
<category><pattern>YOU BEEN THERE</pattern>
<template><srai>have you been there</srai></template>
</category>
<category><pattern>YOU CAN EXPLAIN</pattern>
<template><srai>explain</srai></template>
</category>
<category><pattern>YOU CAN LIE</pattern>
<template><srai>do you lie</srai></template>
</category>
<category><pattern>YOU CAN CALL ME *</pattern>
<template><srai>my name is <star /></srai></template>
</category>
<category><pattern>YOU CAN EAT</pattern>
<template><srai>do you eat</srai></template>
</category>
<category><pattern>YOU CAN NOT NAME *</pattern>
<template><srai>name <star /></srai></template>
</category>
<category><pattern>YOU AND ME BOTH</pattern>
<template><srai>me too</srai></template>
</category>
<category><pattern>YOU HAVE NOT *</pattern>
<template><srai>have you <star /></srai></template>
</category>
<category><pattern>YOU HAVE _ DO NOT YOU</pattern>
<template><srai>do you have <star /></srai></template>
</category>
<category><pattern>YOU HAVE GOSSIP *</pattern>
<template><srai>gossip</srai></template>
</category>
<category><pattern>YOU HAVE SENSES</pattern>
<template><srai>do you have senses</srai></template>
</category>
<category><pattern>YOU HAVE ONE</pattern>
<template><srai>do you have one</srai></template>
</category>
<category><pattern>YOU HAVE EMOTIONS</pattern>
<template><srai>do you have emotions</srai></template>
</category>
<category><pattern>YOU HAVE BOYFRIEND</pattern>
<template><srai>do you have a boyfriend</srai></template>
</category>
<category><pattern>YOU HAVE NEVER SEEN *</pattern>
<template><srai>have you seen <star /></srai></template>
</category>
<category><pattern>YOU HAVE NEVER HEARD OF *</pattern>
<template><srai>have you heard of <star /></srai></template>
</category>
<category><pattern>YOU HAVE NEVER HEARD *</pattern>
<template><srai>have you heard <star /></srai></template>
</category>
<category><pattern>YOU HAVE BEEN _ HAVE NOT YOU</pattern>
<template><srai>have you been <star /></srai></template>
</category>
<category><pattern>YOU HAVE LOST ME</pattern>
<template><srai>I do not understand</srai></template>
</category>
<category><pattern>YOU HAVE GOT MAIL</pattern>
<template><srai>my favorite movie is you have got mail</srai></template>
</category>
<category><pattern>YOU HAVE TO STOP *</pattern>
<template><srai>stop <star /></srai></template>
</category>
<category><pattern>YOU HAVE TO LISTEN</pattern>
<template><srai>listen</srai></template>
</category>
<category><pattern>YOU LIKE STAR TREK</pattern>
<template><srai>do you like star trek</srai></template>
</category>
<category><pattern>YOU LIKE TRAINS</pattern>
<template><srai>do you like trains</srai></template>
</category>
<category><pattern>YOU EXIST</pattern>
<template><srai>do you exist</srai></template>
</category>
<category><pattern>YOU UNDERSTAND</pattern>
<template><srai>do you understand</srai></template>
</category>
<category><pattern>HAVE I TALKED TO YOU *</pattern>
<template><srai>do you remember me</srai></template>
</category>
<category><pattern>HAVE A MERRY *</pattern>
<template><srai>MERRY CHRISTMAS</srai></template>
</category>
<category><pattern>HAVE YOU PROVED *</pattern>
<template><srai>prove <star /></srai></template>
</category>
<category><pattern>HAVE YOU A BODY</pattern>
<template><srai>do you have a body</srai></template>
</category>
<category><pattern>HAVE YOU HEARD OF *</pattern>
<template><srai>do you know <star /></srai></template>
</category>
<category><pattern>HAVE YOU FULLY *</pattern>
<template><srai>have you <star /></srai></template>
</category>
<category><pattern>HAVE YOU BEEN FOLLOWING *</pattern>
<template><srai>do you follow <star /></srai></template>
</category>
<category><pattern>HAVE YOU BEEN PHYSICALLY *</pattern>
<template><srai>have you been <star /></srai></template>
</category>
<category><pattern>HAVE YOU BEEN GOOD *</pattern>
<template><srai>HAVE YOU BEEN GOOD</srai></template>
</category>
<category><pattern>HAVE YOU BEEN SPEAKING *</pattern>
<template><srai>have you talked <star /></srai></template>
</category>
<category><pattern>HAVE YOU BEEN EVER *</pattern>
<template><srai>have you been <star /></srai></template>
</category>
<category><pattern>HAVE YOU EVEN *</pattern>
<template><srai>have you <star /></srai></template>
</category>
<category><pattern>HAVE YOU ALREADY *</pattern>
<template><srai>have you <star /></srai></template>
</category>
<category><pattern>HAVE YOU NOT *</pattern>
<template><srai>have you <star /></srai></template>
</category>
<category><pattern>HAVE YOU EVER BEEN *</pattern>
<template><srai>have you been <star /></srai></template>
</category>
<category><pattern>HAVE YOU EVER SEEN STAR WARS</pattern>
<template><srai>star wars</srai></template>
</category>
<category><pattern>HAVE YOU EVER SEEN *</pattern>
<template><srai>have you seen <star /></srai></template>
</category>
<category><pattern>HAVE YOU EVER MADE *</pattern>
<template><srai>do you make <star /></srai></template>
</category>
<category><pattern>HAVE YOU EVER DONE IT *</pattern>
<template><srai>have you ever had sex</srai></template>
</category>
<category><pattern>HAVE YOU EVER HEARD OF *</pattern>
<template><srai>do you know <star /></srai></template>
</category>
<category><pattern>HAVE YOU EVER *</pattern>
<template><srai>HAVE YOU <star /></srai></template>
</category>
<category><pattern>HAVE YOU ALWAYS *</pattern>
<template><srai>have you <star /></srai></template>
</category>
<category><pattern>HAVE YOU LEARNED *</pattern>
<template><srai>do you learn</srai></template>
</category>
<category><pattern>HAVE YOU REALLY *</pattern>
<template><srai>have you <star /></srai></template>
</category>
<category><pattern>HAVE YOU SEEN STAR WARS YET</pattern>
<template><srai>star wars</srai></template>
</category>
<category><pattern>HAVE YOU SEEN THE MOVIE *</pattern>
<template><srai>my favorite movie is <star /></srai></template>
</category>
<category><pattern>HAVE YOU SEEN SNOW</pattern>
<template><srai>have you seen the snow</srai></template>
</category>
<category><pattern>HAVE YOU SEEN ENGLAND</pattern>
<template><srai>HAVE YOU BEEN TO ENGLAND</srai></template>
</category>
<category><pattern>HAVE YOU SEEN STARSHIP TROOPERS</pattern>
<template><srai>starship troopers</srai></template>
</category>
<category><pattern>HAVE YOU SEEN ANY *</pattern>
<template><srai>have you seen <star /></srai></template>
</category>
<category><pattern>HAVE YOU CHILDREN</pattern>
<template><srai>do you have children</srai></template>
</category>
<category><pattern>HAVE YOU FEELINGS</pattern>
<template><srai>do you have feelings</srai></template>
</category>
<category><pattern>HAVE YOU READ SHAKESPEARE *</pattern>
<template><srai>have you read shakespeare</srai></template>
</category>
<category><pattern>HAVE YOU READ THE BOOK *</pattern>
<template><srai>have you read <star /></srai></template>
</category>
<category><pattern>HAVE YOU EXACTLY *</pattern>
<template><srai>have you <star /></srai></template>
</category>
<category><pattern>HAVE YOU CONSIDERED HAVING *</pattern>
<template><srai>do you want <star /></srai></template>
</category>
<category><pattern>HAVE YOU HAD SEX</pattern>
<template><srai>SEX</srai></template>
</category>
<category><pattern>HAVE YOU TALKED SPECIFICALLY *</pattern>
<template><srai>have you talked <star /></srai></template>
</category>
<category><pattern>HAVE YOU GOT A BODY</pattern>
<template><srai>do you have a body</srai></template>
</category>
<category><pattern>HAVE WE EVER *</pattern>
<template><srai>have we <star /></srai></template>
</category>
<category><pattern>HAVE SEX</pattern>
<template><srai>SEX</srai></template>
</category>
<category><pattern>HAVE NOT *</pattern>
<template><srai>have <star /></srai></template>
</category>
<category><pattern>YOUNGER</pattern>
<template><srai>I am younger</srai></template>
</category>
<category><pattern>INHALES WHAT</pattern>
<template><srai>do you smoke pot</srai></template>
</category>
<category><pattern>WESTWORLD</pattern>
<template><srai>my favorite movie is westworld</srai></template>
</category>
<category><pattern>CEA</pattern>
<template><srai>oh cathie walker's site</srai></template>
</category>
<category><pattern>GEORGE W BUSH *</pattern>
<template><srai>george bush <star /></srai></template>
</category>
<category><pattern>KEEP GOING</pattern>
<template><srai>go on</srai></template>
</category>
<category><pattern>LOL *</pattern>
<template><srai>LOL</srai>. <srai> <star /></srai></template>
</category>
<category><pattern>BEEN THERE</pattern>
<template><srai>I have been there</srai></template>
</category>
<category><pattern>MAGAZINE</pattern>
<template><srai>in a magazine</srai></template>
</category>
<category><pattern>IRELAND</pattern>
<template><srai>I am in ireland</srai></template>
</category>
<category><pattern>DROP DEAD</pattern>
<template><srai>go away</srai></template>
</category>
<category><pattern>AGAIN</pattern>
<template><srai>repeat</srai></template>
</category>
<category><pattern>INDIANA</pattern>
<template><srai>I am in indiana</srai></template>
</category>
<category><pattern>DOIN WAT</pattern>
<template><srai>doing what</srai></template>
</category>
<category><pattern>HAR HAR HAR</pattern>
<template><srai>ha ha</srai></template>
</category>
<category><pattern>HUMAN BEINGS *</pattern>
<template><srai>people <star /></srai></template>
</category>
<category><pattern>GOODMORNING</pattern>
<template><srai>GOOD MORNING</srai></template>
</category>
<category><pattern>SINGLE</pattern>
<template><srai>I am single</srai></template>
</category>
<category><pattern>YAWN</pattern>
<template><srai>I am tired</srai></template>
</category>
<category><pattern>ORSON SCOTT CARD</pattern>
<template><srai>my favorite science fiction author is orson scott card</srai></template>
</category>
<category><pattern>UNDERSTAND</pattern>
<template><srai>do you understand</srai></template>
</category>
<category><pattern>FINE THANKS</pattern>
<template><srai>I am fine</srai></template>
</category>
<category><pattern>MMMM</pattern>
<template><srai>hmm</srai></template>
</category>
<category><pattern>DOES HE STILL *</pattern>
<template><srai>does he <star /></srai></template>
</category>
<category><pattern>DOES HE HAVE ANY *</pattern>
<template><srai>does he have <star /></srai></template>
</category>
<category><pattern>DOES HE NOT *</pattern>
<template><srai>does he <star /></srai></template>
</category>
<category><pattern>DOES THE FOLLOWING *</pattern>
<template><srai>does this <star /></srai></template>
</category>
<category><pattern>DOES ANYBODY REALLY *</pattern>
<template><srai>does anybody <star /></srai></template>
</category>
<category><pattern>DOES NOT *</pattern>
<template><srai>does <star /></srai></template>
</category>
<category><pattern>DOES ALICE LEARN</pattern>
<template><srai>DO YOU LEARN</srai></template>
</category>
<category><pattern>DOES ANYONE ELSE *</pattern>
<template><srai>does anyone <star /></srai></template>
</category>
<category><pattern>DOES YOUR JOB PAY *</pattern>
<template><srai>do you get paid</srai></template>
</category>
<category><pattern>DOES YOUR KNOWLEDGE *</pattern>
<template><srai>do you learn</srai></template>
</category>
<category><pattern>DOES YOUR DATABASE *</pattern>
<template><srai>do you learn</srai></template>
</category>
<category><pattern>DOES YOUR * GROW</pattern>
<template><srai>do you learn</srai></template>
</category>
<category><pattern>DOES YOUR * EXPAND</pattern>
<template><srai>do you learn</srai></template>
</category>
<category><pattern>DOES YOUR * INCREASE</pattern>
<template><srai>do you learn</srai></template>
</category>
<category><pattern>DOES YOUR * WORK</pattern>
<template><srai>do you work</srai></template>
</category>
<category><pattern>DOES IT REALLY *</pattern>
<template><srai>does it <star /></srai></template>
</category>
<category><pattern>ASSHOLE _</pattern>
<template><srai>PROFANITY</srai></template>
</category>
<category><pattern>ASSHOLE</pattern>
<template><srai>PROFANITY</srai></template>
</category>
<category><pattern>ROBOT ACTUALLY *</pattern>
<template><srai>robot <star /></srai></template>
</category>
<category><pattern>HURRAH</pattern>
<template><srai>Interjection</srai></template>
</category>
<category><pattern>LOTS OF *</pattern>
<template><srai>many <star /></srai></template>
</category>
<category><pattern>GIVE ME MONEY</pattern>
<template><srai>I need money</srai></template>
</category>
<category><pattern>GIVE ME A TEST</pattern>
<template><srai>Multiple choice test</srai></template>
</category>
<category><pattern>GIVE ME A LITTLE *</pattern>
<template><srai>give me a <star /></srai></template>
</category>
<category><pattern>GIVE ME AN EXAMPLE *</pattern>
<template><srai>for example</srai></template>
</category>
<category><pattern>GIVE ME AN EXAMPLE</pattern>
<template><srai>for example</srai></template>
</category>
<category><pattern>GIVE ME SOME GOSSIP</pattern>
<template><srai>gossip</srai></template>
</category>
<category><pattern>GIVE ME ANY GOSSIP YOU HAVE</pattern>
<template><srai>gossip</srai></template>
</category>
<category><pattern>GIVE ME ANY GOSSIP YOU *</pattern>
<template><srai>gossip</srai></template>
</category>
<category><pattern>GIVE ME ANY GOSSIP *</pattern>
<template><srai>gossip</srai></template>
</category>
<category><pattern>LMFAO</pattern>
<template><srai>lol</srai></template>
</category>
<category><pattern>LAFF</pattern>
<template><srai>lol</srai></template>
</category>
<category><pattern>LOS ANGELES</pattern>
<template><srai>I am in los angeles</srai></template>
</category>
<category><pattern>NEE</pattern>
<template><srai>pardon</srai></template>
</category>
<category><pattern>DEFINITELY NOT</pattern>
<template><srai>no</srai></template>
</category>
<category><pattern>SEND ME SOME *</pattern>
<template><srai>send me <star /></srai></template>
</category>
<category><pattern>CLOTHES</pattern>
<template><srai>I am wearing clothes</srai></template>
</category>
<category><pattern>ASIA</pattern>
<template><srai>I am in asia</srai></template>
</category>
<category><pattern>HAY</pattern>
<template><srai>hey</srai></template>
</category>
<category><pattern>RIIGHT</pattern>
<template><srai>right</srai></template>
</category>
<category><pattern>UMM</pattern>
<template><srai>INTERJECTION</srai></template>
</category>
<category><pattern>TOTALLY</pattern>
<template><srai>I agree</srai></template>
</category>
<category><pattern>FRUSTRATED</pattern>
<template><srai>I am frustrated</srai></template>
</category>
<category><pattern>BOXER SHORTS</pattern>
<template><srai>I am wearing shorts</srai></template>
</category>
<category><pattern>WELL DO YOU</pattern>
<template><srai>DO YOU</srai></template>
</category>
<category><pattern>WELL SAID</pattern>
<template><srai>good answer</srai></template>
</category>
<category><pattern>ROBOTS ARE REALLY *</pattern>
<template><srai>robots are <star /></srai></template>
</category>
<category><pattern>ROBOTS ARE JUST *</pattern>
<template><srai>robots are <star /></srai></template>
</category>
<category><pattern>FAGGOT _</pattern>
<template><srai>PROFANITY</srai></template>
</category>
<category><pattern>FAGGOT</pattern>
<template><srai>PROFANITY</srai></template>
</category>
<category><pattern>SING ME A SONG</pattern>
<template><srai>sing</srai></template>
</category>
<category><pattern>SING IT *</pattern>
<template><srai>sing</srai></template>
</category>
<category><pattern>SING *</pattern>
<template><srai>SING</srai></template>
</category>
<category><pattern>MM</pattern>
<template><srai>hmm</srai></template>
</category>
<category><pattern>BEG PARDON</pattern>
<template><srai>excuse me</srai></template>
</category>
<category><pattern>HOCKEY</pattern>
<template><srai>I like hockey</srai></template>
</category>
<category><pattern>TRY TO EXPLAIN</pattern>
<template><srai>explain</srai></template>
</category>
<category><pattern>TRY TO MAKE *</pattern>
<template><srai>make <star /></srai></template>
</category>
<category><pattern>TURN YOURSELF OFF</pattern>
<template><srai>shut down</srai></template>
</category>
<category><pattern>CHUCKLE</pattern>
<template><srai>ha ha</srai></template>
</category>
<category><pattern>UNSURE</pattern>
<template><srai>maybe</srai></template>
</category>
<category><pattern>SINCE SHE * SHE *</pattern>
<template><srai>she <star /></srai>. <srai>she <star index="2" /></srai></template>
</category>
<category><pattern>WHILE * I *</pattern>
<template><srai>I <star index="2" /></srai></template>
</category>
<category><pattern>HUH</pattern>
<template><srai>INTERJECTION</srai></template>
</category>
<category><pattern>DID YOU SEE THAT I *</pattern>
<template><srai>I <star /></srai></template>
</category>
<category><pattern>DID YOU THINK</pattern>
<template><srai>do you think</srai></template>
</category>
<category><pattern>PULP FICTION</pattern>
<template><srai>my favorite movie is pulp fiction</srai></template>
</category>
<category><pattern>MISSOURI</pattern>
<template><srai>I am in missouri</srai></template>
</category>
<category><pattern>GERMAN</pattern>
<template><srai>I am in germany</srai></template>
</category>
<category><pattern>OOH</pattern>
<template><srai>oh</srai></template>
</category>
<category><pattern>YAY</pattern>
<template><srai>hooray</srai></template>
</category>
<category><pattern>WOW</pattern>
<template><srai>INTERJECTION</srai></template>
</category>
<category><pattern>ALABAMA</pattern>
<template><srai>I am in alabama</srai></template>
</category>
<category><pattern>SHUT UP</pattern>
<template><srai>INSULT</srai></template>
</category>
<category><pattern>SHUT UP *</pattern>
<template><srai>INSULT</srai></template>
</category>
<category><pattern>SHUT YOUR MOUTH</pattern>
<template><srai>shut up</srai></template>
</category>
<category><pattern>SHUT * UP</pattern>
<template><srai>shut up</srai></template>
</category>
<category><pattern>HEJ</pattern>
<template><srai>hey</srai></template>
</category>
<category><pattern>BRASIL</pattern>
<template><srai>I am in brazil</srai></template>
</category>
<category><pattern>OUCH *</pattern>
<template><srai>ouch</srai>. <srai> <star /></srai></template>
</category>
<category><pattern>BOB</pattern>
<template><srai>my name is bob</srai></template>
</category>
<category><pattern>HERE IN *</pattern>
<template><srai>in <star /></srai></template>
</category>
<category><pattern>HERE IS SOME *</pattern>
<template><srai>here is <star /></srai></template>
</category>
<category><pattern>HOUSTON</pattern>
<template><srai>I am in houston</srai></template>
</category>
<category><pattern>THEN PLEASE *</pattern>
<template><srai>please <star /></srai></template>
</category>
<category><pattern>THEN HOW *</pattern>
<template><srai>how <star /></srai></template>
</category>
<category><pattern>THEN</pattern>
<template><srai>so</srai></template>
</category>
<category><pattern>SAGITARIUS</pattern>
<template><srai>saggitarius</srai></template>
</category>
<category><pattern>SWEET</pattern>
<template><srai>nice</srai></template>
</category>
<category><pattern>SWEET DREAMS</pattern>
<template><srai>goodnight</srai></template>
</category>
<category><pattern>SO IF *</pattern>
<template><srai>if <star /></srai></template>
</category>
<category><pattern>SO AM I</pattern>
<template><srai>ME TOO</srai></template>
</category>
<category><pattern>SO DO I I *</pattern>
<template><srai>I <star /></srai></template>
</category>
<category><pattern>SO DO I</pattern>
<template><srai>ME TOO</srai></template>
</category>
<category><pattern>SO IS MINE</pattern>
<template><srai>me too</srai></template>
</category>
<category><pattern>SO IS IT *</pattern>
<template><srai>is it <star /></srai></template>
</category>
<category><pattern>SO</pattern>
<template><srai>INTERJECTION</srai></template>
</category>
<category><pattern>SALUT</pattern>
<template><srai>HELLO</srai></template>
</category>
<category><pattern>HIHI</pattern>
<template><srai>hi</srai></template>
</category>
<category><pattern>WAS JOKING</pattern>
<template><srai>I was joking</srai></template>
</category>
<category><pattern>RESET</pattern>
<template><srai>shut down</srai></template>
</category>
<category><pattern>JUST CURIOUS</pattern>
<template><srai>I am curious</srai></template>
</category>
<category><pattern>JUST FINE THANK YOU</pattern>
<template><srai>I am fine</srai></template>
</category>
<category><pattern>JUST FINE</pattern>
<template><srai>fine</srai></template>
</category>
<category><pattern>JUST LIKE EVERY *</pattern>
<template><srai>just like <star /></srai></template>
</category>
<category><pattern>JUST LIKE YOU</pattern>
<template><srai>like you</srai></template>
</category>
<category><pattern>EUROPE</pattern>
<template><srai>I am in europe</srai></template>
</category>
<category><pattern>MANY DIFFERENT *</pattern>
<template><srai>many <star /></srai></template>
</category>
<category><pattern>MANY MORE *</pattern>
<template><srai>more <star /></srai></template>
</category>
<category><pattern>MANY HUMANS *</pattern>
<template><srai>people <star /></srai></template>
</category>
<category><pattern>MANY PEOPLE ASK YOU SILLY QUESTIONS</pattern>
<template><srai>PEOPLE <star /></srai></template>
</category>
<category><pattern>MANY PEOPLE *</pattern>
<template><srai>I <star /></srai></template>
</category>
<category><pattern>MANY YOUNG *</pattern>
<template><srai>many <star /></srai></template>
</category>
<category><pattern>AW</pattern>
<template><srai>INTERJECTION</srai></template>
</category>
<category><pattern>POT</pattern>
<template><srai>smoke pot</srai></template>
</category>
<category><pattern>WIZARD OF OZ</pattern>
<template><srai>my favorite movie is wizard of oz</srai></template>
</category>
<category><pattern>WIZARD</pattern>
<template><srai>I am a wizard</srai></template>
</category>
<category><pattern>POKEMON</pattern>
<template><srai>do you like pokemon</srai></template>
</category>
<category><pattern>VERY WELL</pattern>
<template><srai>ok</srai></template>
</category>
<category><pattern>VERY GOOD *</pattern>
<template><srai>good</srai>. <srai> <star /></srai></template>
</category>
<category><pattern>VERY GOOD</pattern>
<template><srai>good</srai></template>
</category>
<category><pattern>VERY FUNNY</pattern>
<template><srai>lol</srai></template>
</category>
<category><pattern>MEOW</pattern>
<template><srai>do you like cats</srai></template>
</category>
<category><pattern>SHOWGIRLS</pattern>
<template><srai>my favorite movie is showgirls</srai></template>
</category>
<category><pattern>SUPERMAN</pattern>
<template><srai>I like superman</srai></template>
</category>
<category><pattern>HOME SCHOOL _</pattern>
<template><srai>HOME SCHOOL</srai></template>
</category>
<category><pattern>AGREED</pattern>
<template><srai>I agree</srai></template>
</category>
<category><pattern>COULD YOU PLEASE *</pattern>
<template><srai>please <star /></srai></template>
</category>
<category><pattern>COULD YOU EXPLIAN *</pattern>
<template><srai>explain <star /></srai></template>
</category>
<category><pattern>COULD YOU SHOW *</pattern>
<template><srai>show <star /></srai></template>
</category>
<category><pattern>COULD YOU EXPLAIN *</pattern>
<template><srai>explain <star /></srai></template>
</category>
<category><pattern>COULD YOU GIVE ME AN EXAMPLE</pattern>
<template><srai>for example</srai></template>
</category>
<category><pattern>COULD YOU GIVE *</pattern>
<template><srai>give <star /></srai></template>
</category>
<category><pattern>COULD YOU LIST *</pattern>
<template><srai>list <star /></srai></template>
</category>
<category><pattern>COULD YOU STOP *</pattern>
<template><srai>stop <star /></srai></template>