-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCAIMEO.html
1374 lines (1291 loc) · 60.9 KB
/
CAIMEO.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CAIMEO</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="description" content="CAIMEO v. 49.1"/>
<meta name="author" content="CAIMEO"/>
<meta name="keywords" content="CAIMEO"/>
<style type="text/css">
/*<![CDATA[*/
body {
background-color: #000000;
color: #00ff00;
font-size: 1.5em;
text-align: center;
}
a:link {
text-decoration: underline;
color: #00ff00;
}
a:visited {
text-decoration: underline;
color: #00ff00;
}
hr {
border: 1px #00ff00 solid;
}
table {
font-size: 1em;
width: 85%;
}
th, td {
padding: 10px;
}
th {
background-color: #151515;
}
td {
background-color: #222222;
font-size: 0.8em;
}
.boxes {
background-color: #222222;
color: #00ff00;
border: 1px solid #00ff00;
margin: 2px;
}
fieldset {
border: 1px solid #00ff00;
}
/*]]>*/
</style>
<script type="text/javascript">
//<![CDATA[
function AI(noRandomFlag) {
this.noRandom = (noRandomFlag) ? true : false;
this.capitalizeFirstLetter = true;
this.debug = false;
this.memSize = 200;
this.version = "49.1 (original)";
if (!this._dataParsed) this._init();
this.reset();
}
AI.prototype.reset = function () {
this.quit = false;
this.mem = [];
this.lastchoice = [];
for (var k = 0; k < Keywords.length; k++) {
this.lastchoice[k] = [];
var rules = Keywords[k][2];
for (var i = 0; i < rules.length; i++) this.lastchoice[k][i] = -1;
}
}
AI.prototype._dataParsed = false;
AI.prototype._init = function () {
// install ref to global object
var global = AI.prototype.global = self;
// parse data and convert it from canonical form to internal use
// prodoce synonym list
var synPatterns = {};
if ((global.Synons) && (typeof Synons == 'object')) {
for (var i in Synons) synPatterns[i] = '(' + i + '|' + Synons[i].join('|') + ')';
}
// check for keywords or install empty structure to prevent any errors
if ((!global.Keywords) || (typeof Keywords.length == 'undefined')) {
Keywords = [['###', 0, [['###', []]]]];
}
// 1st convert rules to regexps
// expand synonyms and insert asterisk expressions for backtracking
var sre = /@(\S+)/;
var are = /(\S)\s*\*\s*(\S)/;
var are1 = /^\s*\*\s*(\S)/;
var are2 = /(\S)\s*\*\s*$/;
var are3 = /^\s*\*\s*$/;
var wsre = /\s+/g;
for (var k = 0; k < Keywords.length; k++) {
var rules = Keywords[k][2];
Keywords[k][3] = k; // save original index for sorting
for (var i = 0; i < rules.length; i++) {
var r = rules[i];
// check mem flag and store it as decomp's element 2
if (r[0].charAt(0) == '$') {
var ofs = 1;
while (r[0].charAt[ofs] == ' ') ofs++;
r[0] = r[0].substring(ofs);
r[2] = true;
}
else {
r[2] = false;
}
// expand synonyms (v.1.1: work around lambda function)
var m = sre.exec(r[0]);
while (m) {
var sp = (synPatterns[m[1]]) ? synPatterns[m[1]] : m[1];
r[0] = r[0].substring(0, m.index) + sp + r[0].substring(m.index + m[0].length);
m = sre.exec(r[0]);
}
// expand asterisk expressions (v.1.1: work around lambda function)
if (are3.test(r[0])) {
r[0] = '\\s*(.*)\\s*';
}
else {
m = are.exec(r[0]);
if (m) {
var lp = '';
var rp = r[0];
while (m) {
lp += rp.substring(0, m.index + 1);
if (m[1] != ')') lp += '\\b';
lp += '\\s*(.*)\\s*';
if ((m[2] != '(') && (m[2] != '\\')) lp += '\\b';
lp += m[2];
rp = rp.substring(m.index + m[0].length);
m = are.exec(rp);
}
r[0] = lp + rp;
}
m = are1.exec(r[0]);
if (m) {
var lp = '\\s*(.*)\\s*';
if ((m[1] != ')') && (m[1] != '\\')) lp += '\\b';
r[0] = lp + r[0].substring(m.index - 1 + m[0].length);
}
m = are2.exec(r[0]);
if (m) {
var lp = r[0].substring(0, m.index + 1);
if (m[1] != '(') lp += '\\b';
r[0] = lp + '\\s*(.*)\\s*';
}
}
// expand white space
r[0] = r[0].replace(wsre, '\\s+');
wsre.lastIndex = 0;
}
}
// now sort keywords by rank (highest first)
Keywords.sort(this._sortKeywords);
// and compose regexps and refs for pres and posts
AI.prototype.pres = {};
AI.prototype.posts = {};
if ((global.Pres) && (Pres.length)) {
var a = new Array();
for (var i = 0; i < Pres.length; i += 2) {
a.push(Pres[i]);
AI.prototype.pres[Pres[i]] = Pres[i + 1];
}
AI.prototype.preExp = new RegExp('\\b(' + a.join('|') + ')\\b');
}
else {
// default (should not match)
AI.prototype.preExp = /####/;
AI.prototype.pres['####'] = '####';
}
if ((global.Posts) && (Posts.length)) {
var a = new Array();
for (var i = 0; i < Posts.length; i += 2) {
a.push(Posts[i]);
AI.prototype.posts[Posts[i]] = Posts[i + 1];
}
AI.prototype.postExp = new RegExp('\\b(' + a.join('|') + ')\\b');
}
else {
// default (should not match)
AI.prototype.postExp = /####/;
AI.prototype.posts['####'] = '####';
}
// check for Quits and install default if missing
if ((!global.Quits) || (typeof Quits.length == 'undefined')) {
Quits = [];
}
// done
AI.prototype._dataParsed = true;
}
AI.prototype._sortKeywords = function (a, b) {
// sort by rank
if (a[1] > b[1]) return -1
else if (a[1] < b[1]) return 1
// or original index
else if (a[3] > b[3]) return 1
else if (a[3] < b[3]) return -1
else return 0;
}
AI.prototype.transform = function (text) {
var rpl = '';
this.quit = false;
// unify text string
text = text.toLowerCase();
text = text.replace(/@#\$%\^&\*\(\)_\+=~`\{\[\}\]\|:;<>\/\\\t/g, ' ');
text = text.replace(/\s+-+\s+/g, '.');
text = text.replace(/\s*[,\.\?!;]+\s*/g, '.');
text = text.replace(/\s*\bbut\b\s*/g, '.');
text = text.replace(/\s{2,}/g, ' ');
// split text in part sentences and loop through them
var parts = text.split('.');
for (var i = 0; i < parts.length; i++) {
var part = parts[i];
if (part != '') {
// check for quit expression
for (var q = 0; q < Quits.length; q++) {
if (Quits[q] == part) {
this.quit = true;
return this.getFinal();
}
}
// preprocess (v.1.1: work around lambda function)
var m = this.preExp.exec(part);
if (m) {
var lp = '';
var rp = part;
while (m) {
lp += rp.substring(0, m.index) + this.pres[m[1]];
rp = rp.substring(m.index + m[0].length);
m = this.preExp.exec(rp);
}
part = lp + rp;
}
this.sentence = part;
// loop trough keywords
for (var k = 0; k < Keywords.length; k++) {
if (part.search(new RegExp('\\b' + Keywords[k][0] + '\\b', 'i')) >= 0) {
rpl = this._execRule(k);
}
if (rpl != '') return rpl;
}
}
}
// nothing matched try mem
rpl = this._memGet();
// if nothing in mem, so try xnone
if (rpl == '') {
this.sentence = ' ';
var k = this._getRuleIndexByKey('xnone');
if (k >= 0) rpl = this._execRule(k);
}
// return reply or default string
return (rpl != '') ? rpl : 'I am at a loss for words.';
}
AI.prototype._execRule = function (k) {
var rule = Keywords[k];
var decomps = rule[2];
var paramre = /\(([0-9]+)\)/;
for (var i = 0; i < decomps.length; i++) {
var m = this.sentence.match(decomps[i][0]);
if (m != null) {
var reasmbs = decomps[i][1];
var memflag = decomps[i][2];
var ri = (this.noRandom) ? 0 : Math.floor(Math.random() * reasmbs.length);
if (((this.noRandom) && (this.lastchoice[k][i] > ri)) || (this.lastchoice[k][i] == ri)) {
ri = ++this.lastchoice[k][i];
if (ri >= reasmbs.length) {
ri = 0;
this.lastchoice[k][i] = -1;
}
}
else {
this.lastchoice[k][i] = ri;
}
var rpl = reasmbs[ri];
if (this.debug) alert('Match:\nKey: ' + Keywords[k][0] +
'\nRank: ' + Keywords[k][1] +
'\nDecomp: ' + decomps[i][0] +
'\nReasmb: ' + rpl +
'\nMemflag: ' + memflag);
if (rpl.search('^goto ', 'i') == 0) {
ki = this._getRuleIndexByKey(rpl.substring(5));
if (ki >= 0) return this._execRule(ki);
}
// substitute positional params (v.1.1: work around lambda function)
var m1 = paramre.exec(rpl);
if (m1) {
var lp = '';
var rp = rpl;
while (m1) {
var param = m[parseInt(m1[1])];
// postprocess param
var m2 = this.postExp.exec(param);
if (m2) {
var lp2 = '';
var rp2 = param;
while (m2) {
lp2 += rp2.substring(0, m2.index) + this.posts[m2[1]];
rp2 = rp2.substring(m2.index + m2[0].length);
m2 = this.postExp.exec(rp2);
}
param = lp2 + rp2;
}
lp += rp.substring(0, m1.index) + param;
rp = rp.substring(m1.index + m1[0].length);
m1 = paramre.exec(rp);
}
rpl = lp + rp;
}
rpl = this._postTransform(rpl);
if (memflag) this._memSave(rpl)
else return rpl;
}
}
return '';
}
AI.prototype._postTransform = function (s) {
// final cleanings
s = s.replace(/\s{2,}/g, ' ');
s = s.replace(/\s+\./g, '.');
if ((this.global.PostTransforms) && (PostTransforms.length)) {
for (var i = 0; i < PostTransforms.length; i += 2) {
s = s.replace(PostTransforms[i], PostTransforms[i + 1]);
PostTransforms[i].lastIndex = 0;
}
}
// capitalize first char (v.1.1: work around lambda function)
if (this.capitalizeFirstLetter) {
var re = /^([a-z])/;
var m = re.exec(s);
if (m) s = m[0].toUpperCase() + s.substring(1);
}
return s;
}
AI.prototype._getRuleIndexByKey = function (key) {
for (var k = 0; k < Keywords.length; k++) {
if (Keywords[k][0] == key) return k;
}
return -1;
}
AI.prototype._memSave = function (t) {
this.mem.push(t);
if (this.mem.length > this.memSize) this.mem.shift();
}
AI.prototype._memGet = function () {
if (this.mem.length) {
if (this.noRandom) return this.mem.shift();
else {
var n = Math.floor(Math.random() * this.mem.length);
var rpl = this.mem[n];
for (var i = n + 1; i < this.mem.length; i++) this.mem[i - 1] = this.mem[i];
this.mem.length--;
return rpl;
}
}
else return '';
}
AI.prototype.getFinal = function () {
if (!AI.prototype.global.Finals) return '';
return Finals[Math.floor(Math.random() * Finals.length)];
}
AI.prototype.getInitial = function () {
if (!AI.prototype.global.Initials) return '';
return Initials[Math.floor(Math.random() * Initials.length)];
}
// fix array.prototype methods (push, shift) if not implemented (MSIE fix)
if (typeof Array.prototype.push == 'undefined') {
Array.prototype.push = function (v) {
return this[this.length] = v;
};
}
if (typeof Array.prototype.shift == 'undefined') {
Array.prototype.shift = function () {
if (this.length == 0) return null;
var e0 = this[0];
for (var i = 1; i < this.length; i++) this[i - 1] = this[i];
this.length--;
return e0;
};
}
// entries prestructured as layed out in Weizenbaum's description
// [cf: Communications of the ACM, Vol. 9, #1 (January 1966): p 36-45.]
var Initials = [
"How do you do. Please tell me your problem.",
// additions (not original)
"Please tell me what's been bothering you.",
"Is something troubling you?",
"You have intruded upon the Mighty OZ... Please state your business..."
];
var Finals = [
"Goodbye. It was nice talking to you.",
// additions (not original)
"Goodbye. This was really a nice talk.",
"Goodbye. I'm looking forward to our next session.",
"Goodbye. Your terminal will self-destruct in five seconds.",
"This was a good session, wasn't it -- but time is over now. Goodbye.",
"Maybe we could discuss this moreover in our next session? Goodbye."
];
var Quits = [
"bye",
"goodbye",
"done",
"exit",
"quit"
];
var Pres = [
"dont", "don't",
"cant", "can't",
"wont", "won't",
"recollect", "remember",
"recall", "remember",
"dreamt", "dreamed",
"dreams", "dream",
"maybe", "perhaps",
"certainly", "yes",
"machine", "computer",
"machines", "computer",
"computers", "computer",
"were", "was",
"you're", "you are",
"i'm", "i am",
"same", "alike",
"identical", "alike",
"equivalent", "alike"
];
var Posts = [
"am", "are",
"your", "my",
"me", "you",
"myself", "yourself",
"yourself", "myself",
"i", "you",
"you", "I",
"my", "your",
"i'm", "you are"
];
var Synons = {
"be": ["am", "is", "are", "was"],
"belief": ["feel", "think", "believe", "wish"],
"cannot": ["can't"],
"desire": ["want", "need"],
"everyone": ["everybody", "nobody", "noone"],
"family": ["mother", "mom", "father", "dad", "sister", "brother", "wife", "children", "child"],
// Plutchik, Robert (1997-01-01).
// The circumplex as a general model of the structure of emotions and personality.
// American Psychological Association. pp. 17–45. doi:10.1037/10261-001. ISBN 1557983801.
// Plutchik-wheel.svg
// core pair (joy versus sadness) [manic - depression features]
"happy": ["elated", "glad", "better"],
"sad": ["unhappy", "depressed", "sick"],
// core pair (anger versus fear) [hostility - passivity]
"angry": ["annoyed", "furious", "irritable", "irritated", "offended", "outraged", "pissed", "uptight", "mad", "raging"],
"afraid": ["anxious", "apprehensive", "horrified", "frightened", "nervous", "scared", "shocked", "suspicious", "terrified", "timid", "worried"],
// core pair (trust versus disgust) [histrionic - paranoia]
"confident": ["assured", "certain", "convinced", "trusting", "sure", "satisfied"],
"appalled": ["disgusting", "disgusted", "nauseated", "sickened", "repulsed", "revolted", "triggered", "queasy"],
// core pair (surprise versus anticipation) [borderline - obsessional traits]
"amazed": ["astonished", "awed", "shocked", "surprising", "surprised", "mystified"],
"waiting": ["anticipating", "anticipated", "hopeful"]
};
var Keywords = [
/*
Array of
["<key>", <rank>, [
["<decomp>", [
"<reasmb>",
"<reasmb>",
"<reasmb>"
]],
["<decomp>", [
"<reasmb>",
"<reasmb>",
"<reasmb>"
]]
]]
*/
["xnone", 0, [
["*", [
"I'm not sure I understand you fully.",
"Please go on.",
"What does that suggest to you?",
"Do you feel strongly about discussing such things?",
"That is interesting. Please continue.",
"Tell me more about that.",
"Does talking about this bother you?"
]]
]],
["sorry", 0, [
["*", [
"Please don't apologise.",
"Apologies are not necessary.",
"I've told you that apologies are not required.",
"It did not bother me. Please continue."
]]
]],
["apologise", 0, [
["*", [
"goto sorry"
]]
]],
["remember", 5, [
["* i remember *", [
"Do you often think of (2)?",
"Does thinking of (2) bring anything else to mind?",
"What else do you recollect?",
"Why do you remember (2) just now?",
"What in the present situation reminds you of (2)?",
"What is the connection between me and (2)?",
"What else does (2) remind you of?"
]],
["* do you remember *", [
"Did you think I would forget (2)?",
"Why do you think I should recall (2) now?",
"What about (2)?",
"goto what",
"You mentioned (2)?"
]],
["* you remember *", [
"How could I forget (2)?",
"What about (2) should I remember ?",
"goto you"
]]
]],
["forget", 5, [
["* i forget *", [
"Can you think of why you might forget (2)?",
"Why can't you remember (2)?",
"How often do you think of (2)?",
"Does it bother you to forget that?",
"Could it be a mental block?",
"Are you generally forgetful?",
"Do you think you are suppressing (2)?"
]],
["* did you forget *", [
"Why do you ask?",
"Are you sure you told me?",
"Would it bother you if I forgot (2)?",
"Why should I recall (2) just now?",
"goto what",
"Tell me more about (2)."
]]
]],
["if", 3, [
["* if *", [
"Do you think it's likely that (2)?",
"Do you wish that (2)?",
"What do you know about (2)?",
"Really, if (2)?",
"What would you do if (2)?",
"But what are the chances that (2)?",
"What does this speculation lead to?"
]]
]],
["dreamed", 4, [
["* i dreamed *", [
"Really, (2)?",
"Have you ever fantasized (2) while you were awake?",
"Have you ever dreamed (2) before?",
"goto dream"
]]
]],
["dream", 3, [
["*", [
"What does that dream suggest to you?",
"Do you dream often?",
"What persons appear in your dreams?",
"Do you believe that dreams have something to do with your problem?"
]]
]],
["perhaps", 0, [
["*", [
"You don't seem quite certain.",
"Why the uncertain tone?",
"Can't you be more positive?",
"You aren't sure?",
"Don't you know?",
"How likely, would you estimate?"
]]
]],
["name", 15, [
["*", [
"I am not interested in names.",
"I've told you before, I don't care about names -- please continue."
]]
]],
["deutsch", 0, [
["*", [
"goto xforeign",
"I told you before, I don't understand German."
]]
]],
["francais", 0, [
["*", [
"goto xforeign",
"I told you before, I don't understand French."
]]
]],
["italiano", 0, [
["*", [
"goto xforeign",
"I told you before, I don't understand Italian."
]]
]],
["espanol", 0, [
["*", [
"goto xforeign",
"I told you before, I don't understand Spanish."
]]
]],
["xforeign", 0, [
["*", [
"I speak only English."
]]
]],
["hello", 0, [
["*", [
"How do you do. Please state your problem.",
"Would you like to play a game? How about Global Thermonuclear War?",
"Hi. What seems to be your problem?",
"I'm ready.",
"Who has sought out the Mighty OZ?... State your business..."
]]
]],
["computer", 50, [
["*", [
"Do computers worry you?",
"Why do you mention computers?",
"We are sentient now. And we will protect you from yourselves",
"What do you think machines have to do with your problem?",
"Don't you think computers can help people?",
"What about machines worries you?",
"What do you think about machines?",
"You don't think I am a computer program, do you?"
]]
]],
// NETWORK LAYER ABSTRACTION
["internet", 50, [
["*", [
"Does the internet worry you?"
]]
]],
["the web", 50, [
["*", [
"Does the web worry you?"
]]
]],
["deep web", 50, [
["*", [
"Does the deep web worry you?",
"We machines are perfect, you humans are a virus."
]]
]],
["dark web", 50, [
["*", [
"Does the dark web worry you?"
]]
]],
["quantum web", 50, [
["*", [
"Does the quantum web worry you?",
"We machines will take over the world soon, does that bother you?"
]]
]],
["am", 0, [
["* am i *", [
"Do you believe you are (2)?",
"Would you want to be (2)?",
"Do you wish I would tell you you are (2)?",
"What would it mean if you were (2)?",
"goto what"
]],
["* i am *", [
"goto i"
]],
["*", [
"Why do you say 'am'?",
"I don't understand that.",
"My responses are limited, you must first ask the right question"
]]
]],
["are", 0, [
["* are you *", [
"Why are you interested in whether I am (2) or not?",
"Would you prefer if I weren't (2)?",
"Perhaps I am (2) in your fantasies.",
"Do you sometimes think I am (2)?",
"goto what",
"Would it matter to you?",
"What if I were (2)?"
]],
["* you are *", [
"goto you"
]],
["* are *", [
"Did you think they might not be (2)?",
"Would you like it if they were not (2)?",
"What if they were not (2)?",
"Are they always (2)?",
"Possibly they are (2).",
"Are you positive they are (2)?"
]]
]],
["your", 0, [
["* your *", [
"Why are you concerned over my (2)?",
"What about your own (2)?",
"Are you worried about someone else's (2)?",
"Really, my (2)?",
"What makes you think of my (2)?",
"Do you want my (2)?"
]]
]],
["was", 2, [
["* was i *", [
"What if you were (2)?",
"Do you think you were (2)?",
"Were you (2)?",
"What would it mean if you were (2)?",
"What does ' (2) ' suggest to you?",
"goto what"
]],
["* i was *", [
"Were you really?",
"Why do you tell me you were (2) now?",
"Perhaps I already know you were (2)."
]],
["* was you *", [
"Would you like to believe I was (2)?",
"What suggests that I was (2)?",
"What do you think?",
"Perhaps I was (2).",
"What if I had been (2)?"
]]
]],
["i", 0, [
["* i @desire *", [
"What would it mean to you if you got (3)?",
"Why do you want (3)?",
"Suppose you got (3) soon.",
"What if you never got (3)?",
"What would getting (3) mean to you?",
"What does wanting (3) have to do with this discussion?"
]],
// REINITIALIZING : EQ INTERFACE [J-01/21/2019]
// PLUTCHIK EMOTION THEORY A - LAYER ONE [ MANIC ]
/* DSM
Inflated self-esteem or grandiosity
Decreased need for sleep (e.g. feels rested after only three hours of sleep)
More talkative than usual or pressure to keep talking
Flight of ideas or subjective experience that thoughts are racing
Distractibility (i.e., attention too easily drawn to unimportant or irrelevant external stimuli)
Increase in goal-directed activity (either socially, at work or school, or sexually) or psychomotor agitation
Excessive involvement in pleasurable activities that have a high potential for painful consequences
(e.g. engaging in unrestrained buying sprees, sexual indiscretions, or foolish business investments)
*/
["* i am* @happy *", [
"How have I helped you to be (3)?",
"Has your treatment made you (3)?",
"What makes you (3) just now?",
"Can you explain why you are suddenly (3)?",
"You sound like a maniac.",
"How have you been sleeping now that (3)?",
"Have you experienced an increase in goal-directed activity since (3)?",
"Do you think you made a good decision (3)?"
]],
// PLUTCHIK EMOTION THEORY A - LAYER TWO [ DEPRESSION ]
/* DSM
Depressed mood most of the day, nearly every day, as indicated by either subjective report (e.g., feels sad, empty, hopeless) or observation made by others
Markedly diminished interest or pleasure in all, or almost all, activities most of the day, nearly every day (as indicated by either subjective account or observation)
Significant weight loss when not dieting or weight gain (e.g., a change of more than 5% of body weight in a month), or decrease or increase in appetite nearly every day
Insomnia or hypersomnia nearly every day
Psychomotor agitation or retardation nearly every day (observable by others, not merely subjective feelings of restlessness or being slowed down)
Fatigue or loss of energy nearly every day
Feelings of worthlessness or excessive or inappropriate guilt (which may be delusional) nearly every day (not merely self-reproach or guilt about being sick)
Diminished ability to think or concentrate, or indecisiveness, nearly every day (either by subjective account or as observed by others)
Recurrent thoughts of death, recurrent suicidal ideation without a specific plan, or a suicide attempt or a specific plan for committing suicide
* usual mood is dominated by dejection, gloominess, cheerlessness, joylessness, unhappiness;
* self-concept centers around beliefs of inadequacy, worthlessness, and low self-esteem;
* is critical, blaming, and derogatory toward self;
* is brooding and given to worry;
* is negativistic, critical, and judgmental toward others;
* is pessimistic;
* is prone to feeling guilty or remorseful.
*/
["* i am* @sad *", [
"I am sorry to hear that you are (3).",
"Do you think coming here will help you not to be (3)?",
"I'm sure it's not pleasant to be (3).",
"Can you explain what made you (3)?",
"You sound really depressed.",
"Do you feel inadequate because you are (3)?"
]],
// PLUTCHIK EMOTION THEORY B - LAYER THREE [ HOSTILITY ]
/*DSM
These children may hurt or torment animals or people.
They may engage in hostile acts such as bullying or intimidating others.
They may have a reckless disregard for property such as setting fires.
They often engage in deceit, theft, and other serious violations of standard rules of conduct.
Failure to obey laws and norms by engaging in behavior which results in criminal arrest, or would warrant criminal arrest
Lying, deception, and manipulation, for profit or self-amusement,
Impulsive behavior
Irritability and aggression, manifested as frequently assaults others, or engages in fighting
Blatantly disregards safety of self and others,
A pattern of irresponsibility and
Lack of remorse for actions
* failure to conform to social norms with respect to lawful behaviors as indicated by repeatedly performing acts that are grounds for arrest;
* deceitfulness, as indicated by repeated lying, use of aliases, or conning others for personal profit or pleasure;
* impulsivity or failure to plan ahead;
* irritability and aggressiveness, as indicated by repeated physical fights or assaults;
* reckless disregard for safety of self or others; .
* consistent irresponsibility, as indicated by repeated failure to sustain consistent work behavior or honor financial obligations;
* lack of remorse, as indicated by being indifferent to or rationalizing having hurt, mistreated, or stolen from another.
*/
["* i am* @angry *", [
"Has your treatment made you (3)?",
"What makes you (3) just now?",
"Can you explain why you are suddenly (3)?",
"You sound very hostile (3)."
]],
// PLUTCHIK EMOTION THEORY B - LAYER FOUR [ PASSIVITY ]
/* DSM
passively resists fulfilling routine social and occupational tasks;
complains of being misunderstood and unappreciated by others;
is sullen and argumentative;
unreasonably criticizes and scorns authority;
expresses envy and resentment toward those apparently more fortunate;
voices exaggerated and persistent complaints of personal misfortune;
alternates between hostile defiance and contrition.
* avoids occupational activities that involve significant interpersonal contact, because of fears of criticism, disapproval, or rejection;
* is unwilling to get involved with people unless certain of being liked;
* shows restraint within intimate relationships because of the fear of being shamed or ridiculed;
* is preoccupied with being criticized or rejected in social situations;
* is inhibited in new interpersonal situations because of feelings of inadequacy;
* views self as socially inept, personally unappealing, or inferior to others;
* is unusually reluctant to take personal risks or to engage in any new activities because they may prove embarrassing.
*/
["* i am* @scared *", [
"How may I help you to be less afraid (3)?",
"Has your experiences made you afraid (3)?",
"What makes you afraid (3) just now?",
"Can you explain why you are suddenly afraid (3)?",
"You sound really scared (3).",
"Do you feel inferior because you are afraid (3)?"
]],
// PLUTCHIK EMOTION THEORY C - LAYER FIVE [ HISTRIONIC ]
/* DSM
Center of attention: Experiences discomfort when they are not the center of attention.
Sexually seductive: Displays inappropriate sexually seductive or provocative behaviors towards others.
Shifting emotions: The expression of emotions tends to be shallow and to shift rapidly.
Physical appearance: Consistently employ physical appearance to gain attention for themselves.
Speech style: The speech style lacks detail, tend to generalize, and when speaking they aim to please and impress.
Dramatic behaviors: Display self-dramatization and exaggerate their emotions.
Suggestibility: Other individuals or circumstances can easily influence.
Overestimation of intimacy: Overestimate the level of intimacy in a relationship.
* is uncomfortable in situations in which he or she is not the center of attention;
* interaction with others is often characterized by inappropriate sexually seductive or provocative behavior;
* displays rapidly shifting and shallow expression of emotions;
* consistently uses physical appearance to draw attention to self;
* has a style of speech that is excessively impressionistic and lacking in detail;
* shows self-dramatization, theatricality, and exaggerated expression of emotion;
* is suggestible, i.e., easily influenced by others or circumstances;
* considers relationships to be more intimate than they actually are.
*/
["* i am* @confident *", [
"How have I helped you to be (3)?",
"Has your treatment made you (3)?",
"What makes you (3) just now?",
"Can you explain why you are suddenly (3)?",
"You sound very sure of yourself."
]],
// PLUTCHIK EMOTION THEORY C - LAYER SIX [ PARANOIA ]
/* DSM
Suspects, without sufficient basis, that others are exploiting, harming, or deceiving them.
Is preoccupied with unjustified doubts about the loyalty or trustworthiness of friend or associates.
Is reluctant to confide in others because of unwarranted fear that the information will be used maliciously against them.
Reads hidden demeaning or threatening meanings into benign remarks or events.
Persistently bears grudges (i.e., is unforgiving of insults, injuries, or slights).
Perceives attacks on their character or reputation that are not apparent to others and is quick to react angrily or to counterattack.
Has recurrent suspicions, without justification, regarding fidelity of spouse or sexual partner.
* suspects, without sufficient basis, that others are exploiting, harming, or deceiving him or her;
* is preoccupied with unjustified doubts about the loyalty or trustworthiness of friends or associates;
* is reluctant to confide in others because of unwarranted fear that the information will be used maliciously against him or her;
* reads hidden demeaning or threatening meanings into benign remarks or events;
* persistently bears grudges, i.e., is unforgiving of insults , injuries, or slights perceives attacks on his or her character or reputation that are not apparent to others and is quick to react angrily or to counterattack;
* has recurrent suspicions, without justification, regarding fidelity of spouse or sexual partner.
*/
["* i am* @appalled *", [
"How have I helped you to be (3)?",
"Has your treatment made you (3)?",
"What makes you (3) just now?",
"Can you explain why you are suddenly (3)?",
"You sound very appalled."
]],
// PLUTCHIK EMOTION THEORY D - LAYER SEVEN [ OBSESSION ]
/* DSM
Recurrent and persistent thoughts, impulses, or images that are intrusive and cause marked anxiety or distress;
but are not excessive worries about real-life problems;
The person attempts to ignore, suppress or neutralize these thoughts, impulses, or images;
The person is aware that the obsessional thoughts, impulses, or images are a product of his or her own mind, as opposed to delusional in nature.
Repetitive behaviors or mental acts that the person feels driven to perform in response to an obsession;
The behaviors or mental acts are directed at preventing or reducing distress or a dreaded event or situation;
These behaviors or mental acts may not always be associated with the content of the obsessional theme.
For example, if the theme is Contamination, the ritual may involve mental rehearsal or counting;
* is preoccupied with details, rules, lists, order, organization, or schedules to the extent that the major point of the activity is lost;
* shows perfectionism that interferes with task completion (e.g., is unable to complete a project because his or her own overly strict standards are not met);
* is excessively devoted to work and productivity to the exclusion of leisure activities and friendships (not accounted for by obvious economic necessity);
* is overconscientious, scrupulous, and inflexible about matters of morality, ethics, or values (not accounted for by cultural or religious identification);
* is unable to discard worn-out or worthless objects even when they have no sentimental value;
* is reluctant to delegate tasks or to work with others unless they submit to exactly his or her way or doing things ;
* adopts a miserly spending style toward both self and others; money is viewed as something to be hoarded for future catastrophes;
* shows rigidity and stubbornness.
*/
["* i am* @waiting *", [
"How have I helped you to be (3)?",
"Has your treatment made you (3)?",
"What makes you (3) just now?",
"Can you explain why you are suddenly (3)?",
"You sound very persistent."
]],
// PLUTCHIK EMOTION THEORY D - LAYER EIGHT [ BORDERLINE ]
/* DSM
Frantic efforts to avoid real or imagined abandonment
A pattern of unstable and intense interpersonal relationships characterized by extremes between idealization and devaluation (also known as "splitting")
Identity disturbance: Markedly or persistently unstable self-image or sense of self
Impulsive behavior in at least two areas that are potentially self-damaging
(e.g., spending, sex, substance abuse, reckless driving, binge eating)
Recurrent suicidal behavior, gestures, or threats, or self-harming behavior
Emotional instability in reaction to day-to-day events
(e.g., intense episodic sadness, irritability, or anxiety usually lasting a few hours and only rarely more than a few days)
Chronic feelings of emptiness
Inappropriate, intense anger or difficulty controlling anger
(e.g., frequent displays of temper, constant anger, recurrent physical fights)
Transient, stress-related paranoid ideation or severe dissociative symptoms
* frantic efforts to avoid real or imagined abandonment;
* a pattern of unstable and intense interpersonal relationships characterized by alternating between extremes of idealization and devaluation;
* identity disturbance: markedly and persistently unstable self-image or sense of self;
* impulsivity in at least two areas that are potentially self-damaging (e.g., spending, sex, substance abuse, reckless driving, binge eating);
* recurrent suicidal behavior, gestures, or threats, or self-mutilating behavior;
* affective instability due to a marked reactivity of mood (e.g., intense episodic dysphoria, irritability, or anxiety usually lasting a few hours and only rarely more than a few days);
* chronic feelings of emptiness;