#!/usr/bin/env swipl

% :- module(t123,[]).

% Load with  ?- consult(pack(logicmoo_base/t/examples/fol/'sanity_at_least_most_exactly_02.pfc')).

:- include(test_header).
%:- module(t123).   
%:- '$set_source_module'(t123).

:- set_prolog_flag(logicmoo_modality,full).

:- process_this_script.

:- statistics.



subtest([subtest_assert(tHuman(joe)),
        mpred_test(isa(_,tHeart))]).

subtest([subtest_assert(tHuman(joe)),
        mpred_test(hasOrgan(joe,_))]).

subtest([subtest_assert(tHeart(_)),
        mpred_test(~hasOrgan(jack,_))]).



:- ain(tHuman(iBob)).

testable_quants(X,Fml,Q,Name):-member(QF,[exactly,atmost,atleast]),member(QN,[0,1,2,3,5,10]),Q=..[QF,QN,X,Fml],atom_concat(QF,QN,Name).
testable_quants(X,Fml,Q,Name):-member(QF,[all,exists]),Q=..[QF,X,Fml],atom_concat(QF,'1',Name).
testable_quants(X,Fml,~Q,Name):-member(QF,[all,exists]),Q=..[QF,X,Fml],atom_concat(QF,'0',Name).


:- add_test(most3, (all([[Human,tHuman]],atmost(3,[[M3Meal,tMeal]],hasMeal(Human,M3Meal))))).
:- add_test(least3, (all([[Human,tHuman]],atleast(3,[[L3Dream,tDream]],hasDream(Human,L3Dream))))).
:- add_test(exactly3, (all([[Human,tHuman]],exactly(3,[[E3ye,tEye]],hasEye(Human,E3ye))))).
:- add_test(most1, (all([[Human,tHuman]],atmost(1,[[M1Spouse,tSpouse]],hasSpouse(Human,M1Spouse))))).
:- add_test(least1, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea))))).
:- add_test(exactly1, (all([[Human,tHuman]],exactly(1,[[Heart,tHeart]],hasHeart(Human,Heart))))).
:- add_test(exists1, (all([[Human,tHuman]],exists([[SomeClue,tClue]],hasClue(Human,SomeClue))))).

/*

% single lit

:- add_test(most2, (all([[Human,tHuman]],atmost(2,[[M2Kidney,tKidney]],hasKidney(Human,M2Kidney))))).
:- add_test(least2, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream))))).
:- add_test(exactly2, (all([[Human,tHuman]],exactly(2,[[E2ye,tEye]],hasEye(Human,E2ye))))).
:- add_test(exists2, (all([[Human,tHuman]],exists([[Lung1,tLung],[Lung2,tLung]],hasLung(Human,Lung1)&hasLung(Human,Lung2)&leftOf(Lung1,Lung2))))).

:- add_test(most0, (all([[Human,tHuman]],atmost(0,[[M0Wing,tWing]],hasWing(Human,M0Wing))))).
:- add_test(least0, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar))))).
:- add_test(exactly0, (all([[Human,tHuman]],exactly(0,[[E0Coin,tCoin]],hasCoin(Human,E0Coin))))).
:- add_test(exists0, (all([[Human,tHuman]],~exists([[CommonSense,tCommonSense]],hasCommonSense(Human,CommonSense))))).

:- add_test(most3, (all([[Human,tHuman]],atmost(3,[[M3Meal,tMeal]],hasMeal(Human,M3Meal))))).
:- add_test(least3, (all([[Human,tHuman]],atleast(3,[[L3Dream,tDream]],hasDream(Human,L3Dream))))).
:- add_test(exactly3, (all([[Human,tHuman]],exactly(3,[[E3ye,tEye]],hasEye(Human,E3ye))))).

% or
:- add_test(most1b, (all([[Human,tHuman]],atmost(1,[[M1Spouse,tSpouse]],hasSpouse(Human,M1Spouse) v controls(Human,M1Spouse))))).
:- add_test(least1b, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea) v controls(Human,LeastIdea))))).
:- add_test(exactly1b, (all([[Human,tHuman]],exactly(1,[[Heart,tHeart]],hasHeart(Human,Heart) v controls(Human,Heart))))).
:- add_test(exists1b, (all([[Human,tHuman]],exists([[SomeClue,tClue]],hasClue(Human,SomeClue) v controls(Human,SomeClue))))).

:- add_test(most2b, (all([[Human,tHuman]],atmost(2,[[M2Kidney,tKidney]],hasKidney(Human,M2Kidney) v controls(Human,M2Kidney))))).
:- add_test(least2b, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream) v controls(Human,L2Dream))))).
:- add_test(exactly2b, (all([[Human,tHuman]],exactly(2,[[E2ye,tEye]],hasEye(Human,E2ye) v controls(Human,E2ye))))).
:- add_test(exists2b, (all([[Human,tHuman]],exists([[Lung1,tLung],[Lung2,tLung]],hasLung(Human,Lung1) v hasLung(Human,Lung2) v leftOf(Lung1,Lung2) v controls(Human,Lung1) v controls(Human,Lung2))))).

:- add_test(most0b, (all([[Human,tHuman]],atmost(0,[[M0Wing,tWing]],hasWing(Human,M0Wing) v controls(Human,M0Wing))))).
:- add_test(least0b, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar) v controls(Human,L0Dollar))))).
:- add_test(exactly0b, (all([[Human,tHuman]],exactly(0,[[E0Coin,tCoin]],hasCoin(Human,E0Coin) v controls(Human,E0Coin))))).
:- add_test(exists0b, (all([[Human,tHuman]],~exists([[CommonSense,tCommonSense]],hasCommonSense(Human,CommonSense) v controls(Human,CommonSense))))).

% implies
:- add_test(most1c, (all([[Human,tHuman]],atmost(1,[[M1Spouse,tSpouse]],hasSpouse(Human,M1Spouse) => controls(Human,M1Spouse))))).
:- add_test(least1c, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea) => controls(Human,LeastIdea))))).
:- add_test(exactly1c, (all([[Human,tHuman]],exactly(1,[[Heart,tHeart]],hasHeart(Human,Heart) => controls(Human,Heart))))).
:- add_test(exists1c, (all([[Human,tHuman]],exists([[SomeClue,tClue]],hasClue(Human,SomeClue) => controls(Human,SomeClue))))).

:- add_test(most2c, (all([[Human,tHuman]],atmost(2,[[M2Kidney,tKidney]],hasKidney(Human,M2Kidney) => controls(Human,M2Kidney))))).
:- add_test(least2c, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream) => controls(Human,L2Dream))))).
:- add_test(exactly2c, (all([[Human,tHuman]],exactly(2,[[E2ye,tEye]],hasEye(Human,E2ye) => controls(Human,E2ye))))).
:- add_test(exists2c, (all([[Human,tHuman]],exists([[Lung1,tLung],[Lung2,tLung]],
  (hasLung(Human,Lung1) & hasLung(Human,Lung2) & leftOf(Lung1,Lung2)) => (controls(Human,Lung1) & controls(Human,Lung2)))))).

:- add_test(most0c, (all([[Human,tHuman]],atmost(0,[[M0Wing,tWing]],hasWing(Human,M0Wing) => controls(Human,M0Wing))))).
:- add_test(least0c, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar) => controls(Human,L0Dollar))))).
:- add_test(exactly0c, (all([[Human,tHuman]],exactly(0,[[E0Coin,tCoin]],hasCoin(Human,E0Coin) => controls(Human,E0Coin))))).
:- add_test(exists0c, (all([[Human,tHuman]],~exists([[CommonSense,tCommonSense]],hasCommonSense(Human,CommonSense) => controls(Human,CommonSense))))).


% and
:- add_test(most0a, (all([[Human,tHuman]],atmost(0,[[M0Wing,tWing]],hasWing(Human,M0Wing)&controls(Human,M0Wing))))).
:- add_test(least0a, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar)&controls(Human,L0Dollar))))).
:- add_test(exactly0a, (all([[Human,tHuman]],exactly(0,[[E0Coin,tCoin]],hasCoin(Human,E0Coin)&controls(Human,E0Coin))))).
:- add_test(exists0a, (all([[Human,tHuman]],~exists([[CommonSense,tCommonSense]],hasCommonSense(Human,CommonSense)&controls(Human,CommonSense))))).

:- add_test(most2a, (all([[Human,tHuman]],atmost(2,[[M2Kidney,tKidney]],hasKidney(Human,M2Kidney)&controls(Human,M2Kidney))))).
:- add_test(least2a, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream)&controls(Human,L2Dream))))).
:- add_test(exactly2a, (all([[Human,tHuman]],exactly(2,[[E2ye,tEye]],hasEye(Human,E2ye)&controls(Human,E2ye))))).
:- add_test(exists2a, (all([[Human,tHuman]],exists([[Lung1,tLung],[Lung2,tLung]],hasLung(Human,Lung1)&hasLung(Human,Lung2)&leftOf(Lung1,Lung2)&controls(Human,Lung1)&controls(Human,Lung2))))).


:- add_test(most1a, (all([[Human,tHuman]],atmost(1,[[M1Spouse,tSpouse]],hasSpouse(Human,M1Spouse)&controls(Human,M1Spouse))))).
:- add_test(least1a, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea)&controls(Human,LeastIdea))))).
:- add_test(exactly1a, (all([[Human,tHuman]],exactly(1,[[Heart,tHeart]],hasHeart(Human,Heart)&controls(Human,Heart))))).
:- add_test(exists1a, (all([[Human,tHuman]],exists([[SomeClue,tClue]],hasClue(Human,SomeClue)&controls(Human,SomeClue))))).

*/


:- cls.

rats:- forall(is_test(Test),call(Test)).

end_of_file.


:- mpred_test(\+ tHeart(_)).
:- mpred_test(\+ hasOrgan(iBob,_)).


:- 
 ain(hasOrgan(iBob,iBobsHeart)).
:- 
 ain(tHeart(iBobsHeart)).





% You''ve proved Animal does not exist when:
% 1) you dont need skolems and
%    1a) no hearts exists or
%    1b) Human has no organs
% 2) when you need skolems and 
%    2a) no skolem hearts exist or
%    2b) no skolem organs for Human 
prove_not_isa(Human, tHuman) :-
        (   prove_not_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)),
            (   prove_not_isa(Heart, tHeart)
            ;   prove_not_holds_t(hasOrgan, Human, Heart)
            )
        ;   prove_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)),
            (   prove_not_isa(skIsHeartInArg2ofHasorgan_1FnSk(Human), tHeart)
            ;   prove_not_holds_t(hasOrgan,
                                  Human,
                                  skIsHeartInArg2ofHasorgan_1FnSk(Human))
            )
        ).

% Good:
% You need skolems for Human when no hearte exist for anyone
%  or that human has no organs
% plus confirm this is indeed a human
prove_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)) :-
        (   prove_not_isa(Heart, tHeart)
        ;   prove_not_holds_t(hasOrgan, Human, Heart)
        ),
        prove_isa(Human, tHuman).

% This is broken:  Everything is a heart of you dont need skolems and you have and what you dont need a skolems for was human
prove_isa(Heart, tHeart) :-
        prove_not_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)),
        prove_isa(Human, tHuman).

% This is broken:  Everything is an orgam of you dont need skolems and you have and what you dont need a skolems for was human
prove_holds_t(hasOrgan, Human, Heart) :-
        prove_not_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)),
        prove_isa(Human, tHuman).

% This is broken:
prove_not_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)) :-
        (   prove_not_isa(skIsHeartInArg2ofHasorgan_1FnSk(Human), tHeart)
        ;   prove_not_holds_t(hasOrgan,
                              Human,
                              skIsHeartInArg2ofHasorgan_1FnSk(Human))
        ),
        prove_isa(Human, tHuman).

% Good:
prove_isa(skIsHeartInArg2ofHasorgan_1FnSk(Human), tHeart) :-
        prove_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)),
        prove_isa(Human, tHuman).
prove_holds_t(hasOrgan, Human, skIsHeartInArg2ofHasorgan_1FnSk(Human)) :-
        prove_need(skIsHeartInArg2ofHasorgan_1FnSk(Human)),
        prove_isa(Human, tHuman).


end_of_file.

the other year.. i was creating a helpsystem for a commandline util for playing as a robot in secondlife.. 
so human controlled commands had crazy help system .. i had written this in C#
what i was going to say about why cyc ended up the way it did was jus tthe concxept that you know there can be  many cfg for english out there and temproary onces



Find all "atleast", Subfolders, "<Workspace>", "*.*"
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\common_logic\common_logic_compiler.pl
  150 4:   atleast(X,N,A)
  718 17:	 Fml = (atleast(N,X,F)) -> Fml1 = atmost(N,X,F);
  719 42:	 Fml = (atmost(N,X,F)) -> Fml1 = atleast(N,X,F);
  720 23:         Fml = (quant(atleast(N),X,F)) -> Fml1 = quant(atmost(N),X,F);
  721 55:         Fml = (quant(atmost(N),X,F)) -> Fml1 = quant(atleast(N),X,F);
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\common_logic\common_logic_exists.pl
  571 17:expandQuants(KB,atleast(N,X,NNF),FmlO):- expandQuants(KB,quant(atleast(N),X,NNF),FmlO).
  571 64:expandQuants(KB,atleast(N,X,NNF),FmlO):- expandQuants(KB,quant(atleast(N),X,NNF),FmlO).
  635 25:% Typed (Exactly/AtMost/AtLeast 2 ((?x Man)(?y Woman)(?z Child)) ...                     )
  646 11:nnf_ex(KB,atleast(N,XL,NNF),FreeV,FmlO,Paths):- is_list(XL),
  648 14:      nnf(KB,atleast(N,X,isa(X,Col) & NNF),FreeV,FmlO,Paths);
  651 20:            nnf(KB,atleast(N,X,NNF),FreeV,FmlO,Paths);
  652 20:            nnf(KB,atleast(N,X,atleast(N,MORE,NNF)),FreeV,FmlO,Paths)))).
  652 32:            nnf(KB,atleast(N,X,atleast(N,MORE,NNF)),FreeV,FmlO,Paths)))).
  900 8:% ==== AtLeast N ========
  904 3:% AtLeast 1:  We simply create the existence of 1
  905 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- N==1, !,
  908 22:nnf_ex(KB,thereExistsAtLeast(N,X,Fml),FreeV,NNF,Paths):-!, nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths).
  908 70:nnf_ex(KB,thereExistsAtLeast(N,X,Fml),FreeV,NNF,Paths):-!, nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths).
  910 3:% AtLeast 2: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule)
  910 78:% AtLeast 2: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule)
  911 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):-  N==2, !,  
  920 3:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  920 18:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  920 50:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  921 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):-  is_using_feature(list_macros),!,
  927 3:% AtLeast 3: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule)
  927 78:% AtLeast 3: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule)
  928 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):-  N==3, !,
  933 3:% AtLeast 4: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule)
  933 78:% AtLeast 4: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule)
  934 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):-   N =4, fail, is_using_feature(list_macros),!,
  941 3:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  941 18:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  941 50:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  942 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- % is_using_feature(list_macros),!,
  944 17:      nnf_ex(KB,atleastInSet(N,X,Fml,N,SET),FreeV,NNF,Paths).
  946 12:nnf_ex(_KB,atleastInSet(0,_X,_Fml,_S,_Set),_FreeV,true,1):- !.
  948 11:nnf_ex(KB,atleastInSet(N,X,Fml,S,SET),FreeV,NNF,Paths):- % is_using_feature(list_macros),!,
  952 27:   nnf_ex(KB, ( NEWFORM & atleastInSet(N2,X2,Fml2,S,SET)),[X|FreeV],NNF,Paths).
  955 3:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  955 18:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  955 50:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  956 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- % is_using_feature(list_macros),!,
  963 3:% AtLeast N:  This constructs N separate Skolems.. but did i name them the same?
  964 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- NewN is N - 1, !,
  966 81:    NEWFORM =  ~ (~ (different(X,Y) v ( ~ skId(Y,N) v ((exists(Y, FmlY )))))) v atleast(NewN,X,Fml),
  970 3:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  970 18:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  970 50:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  971 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- %%  is_using_feature(list_macros),!,
  976 3:% AtLeast N:  Non list macro PFCLog version (Might prefer this?)
  977 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- is_using_feature(inline_prolog),!,
  986 3:% AtLeast N:  This constructs N separate Skolems.. but did i name them the same?
  987 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- fail, NewN is N - 1, !,
  989 82:     NEWFORM =  ( ~(different(X,Y) & exists(Y, ~skolem(Y,skIDFn(Y,N)) v FmlY)) v atleast(NewN,X,Fml)),
  990 55:    % NEWFORM =  ( ~different(X,Y) v exists(Y, FmlY & atleast(NewN,X,Fml))),
  993 3:% AtLeast N:  "Non list macro version (Might prefer this?)"
  994 11:nnf_ex(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- NewN is N - 1, !,
  996 50:    NEWFORM = exists(Y, (FmlY & different(X,Y) & atleast(NewN,X,Fml))),
  1018 27:% AtMost N: "If there are AtLeast N then  There Exists No More"
  1019 74:nnf_ex(KB,atmost(N,X,Fml),FreeV,NNF,Paths):- fail,  % wont work due to ~(atleast) = atmost (creating a loop (when in NNF))
  1021 15:   NEWFORM = (atleast(N,X,Fml) => ~(exists(Y, FmlY & different(X,Y)))),
  1043 42:% Exactly 1: states "There is AtMost and AtLeast 1"
  1049 43:% Exactly N: states "There is AtMost N /\ AtLeast N"
  1051 15:   NEWFORM = (atleast(N,X,Fml) & atmost(N,X,Fml)),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\common_logic\common_logic_snark.pl
  292 15:kif_hook_skel(atleast(_,_,_)).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\common_logic\common_logic_unused.txt
  31 7:%=    atleast(X,N,A)
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\motel\examples.pl
  37 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  91 23:	defconcept(c1,atleast(3,r)),
  92 69:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  92 91:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  117 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  140 28:	defconcept(c1,and([atleast(2,child),atmost(1,child)])),
  150 35:	defconcept(c1,and([person,atleast(2,child)])),
  151 35:	defconcept(c2,and([person,atleast(3,restr(child,lawyer))])).
  168 45:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  168 59:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  169 35:	defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))).
  176 79:	defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])),
  177 46:	defconcept(c2,and([person,all(friend,atleast(1,speciality))])).
  184 28:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  184 59:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  185 27:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  185 44:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  202 44:	defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])),
  569 36:	defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])),
  570 36:	defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])),
  629 35:	defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])),
  638 32:	defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])),
  639 31:	defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])),
  640 31:	defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\motel\mpred_motel.pl
  3427 13: *      not(atleast(N,R)) -> atmost(N-1,R)
  3428 30: *      not(atmost(N,R))  -> atleast(N+1,R)
  3457 18:normalizeNot(not(atleast(N,R)),atmost(M,R)) :-
  3459 31:normalizeNot(not(atmost(N,R)),atleast(M,R)) :-
  3523 15:motel_flatten(atleast(N,R1),atleast(N,R2)) :-
  3523 29:motel_flatten(atleast(N,R1),atleast(N,R2)) :-
  5162 41:	% Assert X in some(r,c) => X in atleast(1,r)
  5165 23:	% Assert X in atleast(1,r) => X in some(r,'top')
  5369 45:	% Assert x in some(R,'top') => x in atleast(1,R)
  5377 30:			     atleast(1,R),X,HYPS,AB,CALLS,PT1,InHead1),
  5382 23:	% Assert x in atleast(1,R) => x in some(R,'top')
  5391 29:			    atleast(1,R),X,HYPS,AB,CALLS,PT1,Body),
  8024 13:namesInTerm(atleast(_N,R),L,_) :-
  8166 23:malcToFOL(Trans,U,[X],atleast(N,R),F) :-
  8167 23:	nrToFOL(U,[X],atleast(N,R),F).
  8235 17:nrToFOL(_U,[_X],atleast(0,_R),true) :-
  8237 15:nrToFOL(U,[X],atleast(1,R),exists(Y,F1)) :-
  8240 15:nrToFOL(U,[X],atleast(N,R),F) :-
  9570 46:	defconcept(EnvName,MS,CNameDom, and([atleast(MinNr,RName1),atmost(MaxNr,RName1)])),
  9574 46:%	defconcept(EnvName,MS,CNameDef, and([atleast(DefNr,RName1),atmost(DefNr,RName1)])),
  9726 46:	defconcept(EnvName,MS,CNameDom, and([atleast(MinNr,RName1),atmost(MaxNr,RName1)])),
  9729 46:%	defconcept(EnvName,MS,CNameDef, and([atleast(DefNr,RName1),atmost(DefNr,RName1)])),
  9741 40:	defconcept(EnvName,MS,CNameDom,atleast(1,RName1)),
  9981 50:%	                                    and([atleast(MinNr,RName),
  10008 23:                     [atleast(MinNr,'top'), atmost(MaxNr,'top') | L2]) :-
  10482 30:			and([atleast(MinNr,R1),atmost(MaxNr,R1)]),AX),
  10483 47:        undefconcept(EnvName,MS,CNameDom,and([atleast(MinNr,R1),
  10580 52:	conceptEqualSets(Env,_usr,MS,CNameDom,and([atleast(MinNr,R1),
  10582 47:        undefconcept(EnvName,MS,CNameDom,and([atleast(MinNr,R1),
  10597 47:	conceptEqualSets(Env,_usr,MS,CNameDom,atleast(1,R1),AX),
  10598 42:	undefconcept(EnvName,MS,CNameDom,atleast(1,R1)),
  10799 58:	roleSubsets(Env,_user,MS,IRName,restr(RName,and([atleast(MinNr,RName),
  10804 52:					      and([atleast(MinNr,RName),
  11089 58:assertConceptLInR(Env,rn(AxiomName,_S,Orientation),MS,CN,atleast(N,R)) :-
  11096 50:	convertInConsequence(Env,pr(3),RN1,MS,W1,atleast(N,R),X,
  11360 21:	            atleast(N,R),X,HYPS,AB,CALLS,PT1,Body) :-
  11463 42:convertInConsequence(Env,_Pr,Name,_MS,W1,atleast(N,R),X,
  12096 31:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :-
  12096 72:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :-
  12096 85:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :-
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\motel\test_motel_env.txt
  1398 52:conceptEqualSets(env(t5570),user,[],concept12,and([atleast(1,truth_mod),atmost(1,truth_mod)]),axiom109):-true.
  1400 49:conceptEqualSets(env(t5570),system,[],concept13,atleast(1,truth_mod),axiom111):-true.
  1403 39:conceptEqualSets(env(t5570),system,[],atleast(2,truth_mod),not(concept14),axiom114):-true.
  1406 52:conceptEqualSets(env(t5570),user,[],concept20,and([atleast(1,det),atmost(1,det)]),axiom124):-true.
  1408 49:conceptEqualSets(env(t5570),system,[],concept21,atleast(1,det),axiom126):-true.
  1411 39:conceptEqualSets(env(t5570),system,[],atleast(2,det),not(concept22),axiom129):-true.
  1412 52:conceptEqualSets(env(t5570),user,[],concept27,and([atleast(1,deictic_mod),atmost(1,deictic_mod)]),axiom135):-true.
  1414 49:conceptEqualSets(env(t5570),system,[],concept28,atleast(1,deictic_mod),axiom137):-true.
  1417 39:conceptEqualSets(env(t5570),system,[],atleast(2,deictic_mod),not(concept29),axiom140):-true.
  1418 52:conceptEqualSets(env(t5570),user,[],concept34,and([atleast(1,named),atmost(1,named)]),axiom146):-true.
  1420 49:conceptEqualSets(env(t5570),system,[],concept35,atleast(1,named),axiom148):-true.
  1423 39:conceptEqualSets(env(t5570),system,[],atleast(2,named),not(concept36),axiom151):-true.
  1426 52:conceptEqualSets(env(t5570),user,[],concept42,and([atleast(1,subject),atmost(1,subject)]),axiom159):-true.
  1428 49:conceptEqualSets(env(t5570),system,[],concept43,atleast(1,subject),axiom161):-true.
  1431 39:conceptEqualSets(env(t5570),system,[],atleast(2,subject),not(concept44),axiom164):-true.
  1432 52:conceptEqualSets(env(t5570),user,[],concept49,and([atleast(1,purpose),atmost(1,purpose)]),axiom170):-true.
  1434 49:conceptEqualSets(env(t5570),system,[],concept50,atleast(1,purpose),axiom172):-true.
  1437 39:conceptEqualSets(env(t5570),system,[],atleast(2,purpose),not(concept51),axiom175):-true.
  1438 52:conceptEqualSets(env(t5570),user,[],concept56,and([atleast(1,time),atmost(1,time)]),axiom181):-true.
  1440 49:conceptEqualSets(env(t5570),system,[],concept57,atleast(1,time),axiom183):-true.
  1443 39:conceptEqualSets(env(t5570),system,[],atleast(2,time),not(concept58),axiom186):-true.
  1444 52:conceptEqualSets(env(t5570),user,[],concept63,and([atleast(1,illoc),atmost(1,illoc)]),axiom192):-true.
  1446 49:conceptEqualSets(env(t5570),system,[],concept64,atleast(1,illoc),axiom194):-true.
  1449 39:conceptEqualSets(env(t5570),system,[],atleast(2,illoc),not(concept65),axiom197):-true.
  1450 52:conceptEqualSets(env(t5570),user,[],concept70,and([atleast(1,cause),atmost(1,cause)]),axiom203):-true.
  1452 49:conceptEqualSets(env(t5570),system,[],concept71,atleast(1,cause),axiom205):-true.
  1455 39:conceptEqualSets(env(t5570),system,[],atleast(2,cause),not(concept72),axiom208):-true.
  1456 52:conceptEqualSets(env(t5570),user,[],concept77,and([atleast(1,result),atmost(1,result)]),axiom214):-true.
  1458 49:conceptEqualSets(env(t5570),system,[],concept78,atleast(1,result),axiom216):-true.
  1461 39:conceptEqualSets(env(t5570),system,[],atleast(2,result),not(concept79),axiom219):-true.
  1462 52:conceptEqualSets(env(t5570),user,[],concept84,and([atleast(1,location),atmost(1,location)]),axiom225):-true.
  1464 49:conceptEqualSets(env(t5570),system,[],concept85,atleast(1,location),axiom227):-true.
  1467 39:conceptEqualSets(env(t5570),system,[],atleast(2,location),not(concept86),axiom230):-true.
  1468 47:conceptEqualSets(env(t5570),user,[],concept90,atleast(1,subject),axiom231):-true.
  1474 52:conceptEqualSets(env(t5570),user,[],concept96,and([atleast(1,volition),atmost(1,volition)]),axiom248):-true.
  1476 49:conceptEqualSets(env(t5570),system,[],concept97,atleast(1,volition),axiom250):-true.
  1479 39:conceptEqualSets(env(t5570),system,[],atleast(2,volition),not(concept98),axiom253):-true.
  1482 53:conceptEqualSets(env(t5570),user,[],concept104,and([atleast(1,origin_mod),atmost(1,origin_mod)]),axiom261):-true.
  1484 50:conceptEqualSets(env(t5570),system,[],concept105,atleast(1,origin_mod),axiom263):-true.
  1487 39:conceptEqualSets(env(t5570),system,[],atleast(2,origin_mod),not(concept106),axiom266):-true.
  1494 53:conceptEqualSets(env(t5570),user,[],concept116,and([atleast(1,colour_mod),atmost(1,colour_mod)]),axiom296):-true.
  1496 50:conceptEqualSets(env(t5570),system,[],concept117,atleast(1,colour_mod),axiom298):-true.
  1499 39:conceptEqualSets(env(t5570),system,[],atleast(2,colour_mod),not(concept118),axiom301):-true.
  1502 53:conceptEqualSets(env(t5570),user,[],concept124,and([atleast(1,relative_mod),atmost(1,relative_mod)]),axiom311):-true.
  1504 50:conceptEqualSets(env(t5570),system,[],concept125,atleast(1,relative_mod),axiom313):-true.
  1507 39:conceptEqualSets(env(t5570),system,[],atleast(2,relative_mod),not(concept126),axiom316):-true.
  1512 53:conceptEqualSets(env(t5570),user,[],concept132,and([atleast(1,material_mod),atmost(1,material_mod)]),axiom328):-true.
  1514 50:conceptEqualSets(env(t5570),system,[],concept133,atleast(1,material_mod),axiom330):-true.
  1517 39:conceptEqualSets(env(t5570),system,[],atleast(2,material_mod),not(concept134),axiom333):-true.
  1520 53:conceptEqualSets(env(t5570),user,[],concept140,and([atleast(1,weight_mod),atmost(1,weight_mod)]),axiom343):-true.
  1522 50:conceptEqualSets(env(t5570),system,[],concept141,atleast(1,weight_mod),axiom345):-true.
  1525 39:conceptEqualSets(env(t5570),system,[],atleast(2,weight_mod),not(concept142),axiom348):-true.
  1530 53:conceptEqualSets(env(t5570),user,[],concept150,and([atleast(1,instrument),atmost(1,instrument)]),axiom359):-true.
  1532 50:conceptEqualSets(env(t5570),system,[],concept151,atleast(1,instrument),axiom361):-true.
  1535 39:conceptEqualSets(env(t5570),system,[],atleast(2,instrument),not(concept152),axiom364):-true.
  1536 53:conceptEqualSets(env(t5570),user,[],concept157,and([atleast(1,concerned),atmost(1,concerned)]),axiom370):-true.
  1538 50:conceptEqualSets(env(t5570),system,[],concept158,atleast(1,concerned),axiom372):-true.
  1541 39:conceptEqualSets(env(t5570),system,[],atleast(2,concerned),not(concept159),axiom375):-true.
  1544 53:conceptEqualSets(env(t5570),user,[],concept165,and([atleast(1,destination),atmost(1,destination)]),axiom393):-true.
  1546 50:conceptEqualSets(env(t5570),system,[],concept166,atleast(1,destination),axiom395):-true.
  1549 39:conceptEqualSets(env(t5570),system,[],atleast(2,destination),not(concept167),axiom398):-true.
  1550 53:conceptEqualSets(env(t5570),user,[],concept172,and([atleast(1,source),atmost(1,source)]),axiom404):-true.
  1552 50:conceptEqualSets(env(t5570),system,[],concept173,atleast(1,source),axiom406):-true.
  1555 39:conceptEqualSets(env(t5570),system,[],atleast(2,source),not(concept174),axiom409):-true.
  1558 48:conceptEqualSets(env(t5570),user,[],concept180,atleast(1,means),axiom417):-true.
  1568 48:conceptEqualSets(env(t5570),user,[],concept186,atleast(1,concerned),axiom427):-true.
  1574 48:conceptEqualSets(env(t5570),user,[],concept190,atleast(1,result),axiom438):-true.
  1578 48:conceptEqualSets(env(t5570),user,[],concept194,atleast(1,concerned),axiom447):-true.
  1588 53:conceptEqualSets(env(t5570),user,[],concept202,and([atleast(1,beneficative),atmost(1,beneficative)]),axiom472):-true.
  1590 50:conceptEqualSets(env(t5570),system,[],concept203,atleast(1,beneficative),axiom474):-true.
  1593 39:conceptEqualSets(env(t5570),system,[],atleast(2,beneficative),not(concept204),axiom477):-true.
  1596 48:conceptEqualSets(env(t5570),user,[],concept209,atleast(1,concerned),axiom480):-true.
  1600 48:conceptEqualSets(env(t5570),user,[],concept212,atleast(1,concerned),axiom488):-true.
  1606 53:conceptEqualSets(env(t5570),user,[],concept218,and([atleast(1,measure),atmost(1,measure)]),axiom512):-true.
  1608 50:conceptEqualSets(env(t5570),system,[],concept219,atleast(1,measure),axiom514):-true.
  1611 39:conceptEqualSets(env(t5570),system,[],atleast(2,measure),not(concept220),axiom517):-true.
  1614 48:conceptEqualSets(env(t5570),user,[],concept226,atleast(1,measure),axiom525):-true.
  1624 48:conceptEqualSets(env(t5570),user,[],concept234,atleast(1,quantity),axiom587):-true.
  1634 53:conceptEqualSets(env(t5570),user,[],concept241,and([atleast(1,physis_mod),atmost(1,physis_mod)]),axiom648):-true.
  1636 50:conceptEqualSets(env(t5570),system,[],concept242,atleast(1,physis_mod),axiom650):-true.
  1639 39:conceptEqualSets(env(t5570),system,[],atleast(2,physis_mod),not(concept243),axiom653):-true.
  1652 53:conceptEqualSets(env(t5570),user,[],concept254,and([atleast(1,volition),atmost(1,volition)]),axiom689):-true.
  1670 53:conceptEqualSets(env(t5570),user,[],concept265,and([atleast(1,worth_mod),atmost(1,worth_mod)]),axiom726):-true.
  1672 50:conceptEqualSets(env(t5570),system,[],concept266,atleast(1,worth_mod),axiom728):-true.
  1675 39:conceptEqualSets(env(t5570),system,[],atleast(2,worth_mod),not(concept267),axiom731):-true.
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\motel\test_motel_examples_63.pl
  39 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  93 23:	defconcept(c1,atleast(3,r)),
  94 69:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  94 91:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  119 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  142 28:	defconcept(c1,and([atleast(2,child),atmost(1,child)])),
  152 35:	defconcept(c1,and([person,atleast(2,child)])),
  153 35:	defconcept(c2,and([person,atleast(3,restr(child,lawyer))])).
  170 45:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  170 59:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  171 35:	defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))).
  178 79:	defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])),
  179 46:	defconcept(c2,and([person,all(friend,atleast(1,speciality))])).
  186 28:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  186 59:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  187 27:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  187 44:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  204 44:	defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])),
  571 36:	defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])),
  572 36:	defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])),
  631 35:	defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])),
  640 32:	defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])),
  641 31:	defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])),
  642 31:	defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\motel\test_motel_examples_76.pl
  37 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  91 23:	defconcept(c1,atleast(3,r)),
  92 69:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  92 91:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  117 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  140 28:	defconcept(c1,and([atleast(2,child),atmost(1,child)])),
  150 35:	defconcept(c1,and([person,atleast(2,child)])),
  151 35:	defconcept(c2,and([person,atleast(3,restr(child,lawyer))])).
  168 45:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  168 59:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  169 35:	defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))).
  176 79:	defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])),
  177 46:	defconcept(c2,and([person,all(friend,atleast(1,speciality))])).
  184 28:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  184 59:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  185 27:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  185 44:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  202 44:	defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])),
  569 36:	defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])),
  570 36:	defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])),
  629 35:	defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])),
  638 32:	defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])),
  639 31:	defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])),
  640 31:	defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\motel\test_motel_fssKb.txt
  21 36:defconcept(fssKB,[],concept12,and([atleast(1,truth_mod),atmost(1,truth_mod)])).
  23 36:defconcept(fssKB,[],concept20,and([atleast(1,det),atmost(1,det)])).
  24 36:defconcept(fssKB,[],concept27,and([atleast(1,deictic_mod),atmost(1,deictic_mod)])).
  25 36:defconcept(fssKB,[],concept34,and([atleast(1,named),atmost(1,named)])).
  27 36:defconcept(fssKB,[],concept42,and([atleast(1,subject),atmost(1,subject)])).
  28 36:defconcept(fssKB,[],concept49,and([atleast(1,purpose),atmost(1,purpose)])).
  29 36:defconcept(fssKB,[],concept56,and([atleast(1,time),atmost(1,time)])).
  30 36:defconcept(fssKB,[],concept63,and([atleast(1,illoc),atmost(1,illoc)])).
  31 36:defconcept(fssKB,[],concept70,and([atleast(1,cause),atmost(1,cause)])).
  32 36:defconcept(fssKB,[],concept77,and([atleast(1,result),atmost(1,result)])).
  33 36:defconcept(fssKB,[],concept84,and([atleast(1,location),atmost(1,location)])).
  34 31:defconcept(fssKB,[],concept90,atleast(1,subject)).
  37 36:defconcept(fssKB,[],concept96,and([atleast(1,volition),atmost(1,volition)])).
  39 37:defconcept(fssKB,[],concept104,and([atleast(1,origin_mod),atmost(1,origin_mod)])).
  43 37:defconcept(fssKB,[],concept116,and([atleast(1,colour_mod),atmost(1,colour_mod)])).
  45 37:defconcept(fssKB,[],concept124,and([atleast(1,relative_mod),atmost(1,relative_mod)])).
  48 37:defconcept(fssKB,[],concept132,and([atleast(1,material_mod),atmost(1,material_mod)])).
  50 37:defconcept(fssKB,[],concept140,and([atleast(1,weight_mod),atmost(1,weight_mod)])).
  53 37:defconcept(fssKB,[],concept150,and([atleast(1,instrument),atmost(1,instrument)])).
  54 37:defconcept(fssKB,[],concept157,and([atleast(1,concerned),atmost(1,concerned)])).
  56 37:defconcept(fssKB,[],concept165,and([atleast(1,destination),atmost(1,destination)])).
  57 37:defconcept(fssKB,[],concept172,and([atleast(1,source),atmost(1,source)])).
  59 32:defconcept(fssKB,[],concept180,atleast(1,means)).
  64 32:defconcept(fssKB,[],concept186,atleast(1,concerned)).
  67 32:defconcept(fssKB,[],concept190,atleast(1,result)).
  69 32:defconcept(fssKB,[],concept194,atleast(1,concerned)).
  74 37:defconcept(fssKB,[],concept202,and([atleast(1,beneficative),atmost(1,beneficative)])).
  76 32:defconcept(fssKB,[],concept209,atleast(1,concerned)).
  78 32:defconcept(fssKB,[],concept212,atleast(1,concerned)).
  81 37:defconcept(fssKB,[],concept218,and([atleast(1,measure),atmost(1,measure)])).
  83 32:defconcept(fssKB,[],concept226,atleast(1,measure)).
  88 32:defconcept(fssKB,[],concept234,atleast(1,quantity)).
  93 37:defconcept(fssKB,[],concept241,and([atleast(1,physis_mod),atmost(1,physis_mod)])).
  100 37:defconcept(fssKB,[],concept254,and([atleast(1,volition),atmost(1,volition)])).
  109 37:defconcept(fssKB,[],concept265,and([atleast(1,worth_mod),atmost(1,worth_mod)])).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\plarkc\logicmoo_i_cyc_rewriting.pl
  225 24:builtin_rn('thereExistsAtLeast', 'atleast').
  225 35:builtin_rn('thereExistsAtLeast', 'atleast').
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\plarkc\logicmoo_u_cyc_api.txt
  5356 12:'thereExistAtLeast'/5,
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\plarkc\logicmoo_u_cyc_kb_tinykb.pl
  391 40:exactlyAssertedEL_first(isa, thereExistAtLeast, 'ExistentialQuantifier-Bounded', 'UniversalVocabularyMt', vStrDef).
  2485 42:exactlyAssertedEL_first(arity, thereExistAtLeast, 3, 'UniversalVocabularyMt', vStrDef).
  3232 50:exactlyAssertedEL_next(quotedArgument, thereExistAtLeast, 3, 'UniversalVocabularyMt', vStrDef).
  3233 50:exactlyAssertedEL_next(quotedArgument, thereExistAtLeast, 2, 'UniversalVocabularyMt', vStrDef).
  3419 49:exactlyAssertedEL_first(argQuotedIsa, thereExistAtLeast, 3, 'CycLSentence-Assertible', 'UniversalVocabularyMt', vStrDef).
  3420 49:exactlyAssertedEL_first(argQuotedIsa, thereExistAtLeast, 2, ftVar, 'UniversalVocabularyMt', vStrDef).
  3615 43:exactlyAssertedEL_first(argIsa, thereExistAtLeast, 1, 'PositiveInteger', 'UniversalVocabularyMt', vStrDef).
  4502 50:exactlyAssertedEL_first(arg3QuotedIsa, thereExistAtLeast, 'CycLSentence-Assertible', 'UniversalVocabularyMt', vStrDef).
  4711 50:exactlyAssertedEL_first(arg2QuotedIsa, thereExistAtLeast, ftVar, 'UniversalVocabularyMt', vStrDef).
  5457 44:exactlyAssertedEL_first(arg1Isa, thereExistAtLeast, 'PositiveInteger', 'UniversalVocabularyMt', vStrDef).
  6087 46:exactlyAssertedEL_next(scopingArg, thereExistAtLeast, 2, 'BaseKB', vStrDef).
  6653 51:exactlyAssertedEL_next(oldConstantName, thereExistAtLeast, "ThereExistAtLeast", 'BookkeepingMt', vStrDef).
  6653 71:exactlyAssertedEL_next(oldConstantName, thereExistAtLeast, "ThereExistAtLeast", 'BookkeepingMt', vStrDef).
  6976 46:exactlyAssertedEL_next(genKeyword, thereExistAtLeast, ((':THERE_EXIST_AT_LEAST')), 'EnglishParaphraseMt', vStrDef).
  7033 45:exactlyAssertedEL_next(genFormat, thereExistAtLeast, "there ~a at least ~a ~a such that ~a", 'TheList'('TheList'("is", "are"), 1, 2, 3), 'EnglishParaphraseMt', vStrDef).
  7564 124:exactlyAssertedEL_next(comment, thereExistExactly, "An ExistentialQuantifier (q.v.) and a specialization of both thereExistAtLeast and  thereExistAtMost (qq.v.).  Compared to the standard existential quantifier thereExists, thereExistExactly has an extra argument-place for specifying exactly how many things satisfy a given condition (specified by an CycLSentence-Assertible, in which the also-specified CycLVariable will typically occur free).  A closed sentence of the form <code>(thereExistExactly NUM VAR SENT)</code> means that there are exactly<code> NUM</code> distinct things that satisfy <code>SENT</code>, i.e. that render <code>SENT</code> true when taken as the value of <code>VAR</code>.  For example, the sentence\n<p>\n<pre>\n  (thereExistExactly 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are exactly seven seas.\n<p>\nIn the degenerate case where <code>VAR</code> does not appear free in <code>SENT</code>, then <code>(thereExistExactly NUM VAR SENT)</code> is equivalent to <code>SENT</code>.", 'UniversalVocabularyMt', vStrDef).
  7565 223:exactlyAssertedEL_next(comment, thereExistAtMost, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the most) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtMost NUM VAR SENT) means that there are at most NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtMost 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at most seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtMost NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtLeast, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7565 915:exactlyAssertedEL_next(comment, thereExistAtMost, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the most) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtMost NUM VAR SENT) means that there are at most NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtMost 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at most seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtMost NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtLeast, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7566 43:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at least seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7566 224:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at least seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7566 481:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at least seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7566 684:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at least seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7566 852:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at least seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7603 573:exactlyAssertedEL_next(comment, relationExistsMinAll, "A quaternary RuleMacroPredicate (q.v.) that can be used to state that a given binary predicate stands in a certain numerical relation with respect to two collections.  (relationExistsMinAll BINPRED COL1 COL2 N) means that for any instance INST of COL2, there are at least N instances of (INST(1), ..., INST(N)) of COL1 such that (BINPRED INST(i) INST) holds (for 1 <= i <= N).  This is equivalent to (and can thus be used in effect as shorthand for) the more complex form:\n<p>\n(implies\n(isa INST COL2)\n(thereExistAtLeast N ?INST-I\n(and\n(isa ?INST-I COL1)\n(BINPRED ?INST-I INST)))) .\n<p>\nFor example, `(relationExistsMinAll physicalParts Hand Finger 1)' means that every finger is part of at least one hand.  Cf. relationAllExistsMin, and see the shared NoteAboutUseOfRuleMacroPredicates.", 'UniversalVocabularyMt', vStrDef).
  7609 567:exactlyAssertedEL_next(comment, relationAllExistsMin, "A quaternary RuleMacroPredicate that can be used to state that a given binary predicate stands in a certain numerical relationship with respect to two collections.  (relationAllExistsMin BINPRED COL1 COL2 N) means that for any instance INST of COL1 there are at least N instances (INST(1), ..., INST(N)) of COL2 such that (BINPRED INST INST(i)) holds (for 1 <= i <= N).  This is equivalent to (and can thus be used in effect as shorthand for) the more complex form:\n<p>\n(implies\n(isa ?INST COL1)\n(thereExistAtLeast N ?INST-I\n(and\n(isa ?INST-I COL2)\n(BINPRED ?INST ?INST-I)))) .\n<p>\nFor example, `(relationAllExistsMin subEvents EatingEvent Swallowing 1)' means that every act of eating includes at least one swallowing. Cf. relationExistsMinAll, and see NoteAboutUseOfRuleMacroPredicates.", 'UniversalVocabularyMt', vStrDef).
  7780 1529:exactlyAssertedEL_next(comment, commutativeInArgs, "A variable-arity MetaRelation used for stating that a given PartiallyCommutativeRelation (q.v.) is \"commutative\" with respect to two or more specified argument-places.\n<p>\n<code>(commutativeInArgs RELN ARGNUM-1 ... ARGNUM-N)</code> means that  <code>RELN</code> is commutative in its <code>ARGNUM-1</code>th, ..., and <code>ARGNUM-N</code>th arguments.  Thus <code>RELN</code> admits unrestricted permutation among  these arguments.  More precisely: (i) if <code>RELN</code> is a Predicate that  holds of a given argument-sequence <code>SEQ</code>, then <code>RELN</code> also holds of any other sequence <code>SEQ-PERMUTE</code> obtainable from <code>SEQ</code> by permuting some or all of <code>SEQ</code>'s <code>ARGNUM-1</code>th, ..., and <code>ARGNUM-N</code>th items (while leaving all of <code>SEQ</code>'s other items unchanged).  (ii) if <code>RELN</code> is a Function-Denotational that associates a given argument-sequence <code>SEQ</code> with the value <code>VALUE</code>, then <code>RELN</code> also associates any sequence <code>SEQ-PERMUTE</code> (as described above) with <code>VALUE</code>.\n<p>\nFor example, <code>(commutativeInArgs formsBorderBetween 2 3)</code> has as a consequence that whenever a sentence of the form <code>(formsBorderBetween BORDER REG1 REG2)</code> holds, so does the corresponding sentence  <code>(formsBorderBetween BORDER REG2 REG1)</code>.\n<p>\nIf <code>RELN</code> is commutative in at least two argument-places it is an AtLeastPartiallyCommutativeRelation.  If <code>RELN</code> is commutative in <i>all</i> argument-places it is, more specifically, a CommutativeRelation.  If <code>RELN</code> is commutative in at least two, but <i> not all</i>,\nargument-places it is, instead, a PartiallyCommutativeRelation.\n<p>\nNote that the fact that each argument-place of a given relation commutes with some other argument-place is not sufficient for its being fully commutative.  For example, a partially-commutative quaternary relation might be such that its first and third places commute with each other and its second and fourth places commute with each other.", 'UniversalVocabularyMt', vStrDef).
  7919 377:exactlyAssertedEL_next(comment, 'SkolemFuncNFn', "SkolemFuncNFn is used by the CycCanonicalizer and should rarely\n(if ever) need to be seen by users or referenced in assertions entered\nat the EL level.  It is used by the canonicalizer to denote a skolem\nfunction before it is reified, when the skolem is derived from a formula\nasserted at the EL level that uses thereExistAtLeast,\nthereExistAtMost, or thereExistExactly.  Its arity is 4: the first\nargument is a list of the term variable arguments of the denoted skolem function,\n(term variables which are in the scope of the bounded existential).\nThe second argument is a variable which uniquely identifies the\nexistentially quantified variable by which the denoted skolem will\nbe represented in the canonical version of the formula.\nThe third is a sequence variable if there is a sequence variable\nargument of the denoted skolem function (which there will be iff there\nis a sequence variable in the scope of the bounded existential), and NIL otherwise.\nThe fourth is an interval specifying the number of things which may satisfy the formula.", 'UniversalVocabularyMt', vStrDef).
  7920 246:exactlyAssertedEL_next(comment, 'SkolemFuncN', "SkolemFuncN is a collection of Cyc system-generated functions that partially implement existential quantifications in Cyc.  Whenever someone asserts to Cyc an expression that contains a 'thereExistAtLeast', a 'thereExistAtMost', or a 'thereExistExactly' quantifier, Cyc automatically creates a new instance of SkolemFuncN and rewrites the assertion using this skolem function instead of that existential quantifier.  See also termOfUnit. At this time (3/98), skolem functions are automatically named by the Cyc system using the prefix 'SKF-' followed by a number.", 'UniversalVocabularyMt', vStrDef).
  7968 943:exactlyAssertedEL_next(comment, 'Quantifier', "A specialization of SententialRelation and ScopingRelation (qq.v.).  Each instance of Quantifier takes as its arguments (at least) a variable (see CycLVariable) and a sentence (see CycLSentence-Assertible), and is used to make a certain kind of generic quantitative statement regarding the things that satisfy the sentence.  Typically, the variable VAR will occur free in the sentence SENT, and in the quantified sentence (QUANT VAR SENT ...) these occurrences of VAR are bound by that occurrence of QUANT.  (If VAR does not occur free in SENT, then the quantified sentence is a \"vacuous quantification\" that is equivalent to SENT by itself.  For the definitions of 'free' and 'bound' occurrences of variables, see ScopingRelation.)  For example, '(thereExists ?X (isa ?X Dog))' means that there exists at least one dog.  Other instances of Quantifier are forAll, thereExistExactly, thereExistAtLeast, and thereExistAtMost.", 'UniversalVocabularyMt', vStrDef).
  7978 141:exactlyAssertedEL_next(comment, 'PartiallyCommutativeRelation', "An instance of RelationTypeByLogicalFeature (q.v.) and a specialization of AtLeastPartiallyCommutativeRelation.  Each instance  of PartiallyCommutativeRelation <code>PARTCOMRELN</code> is a predicate or function that is commutative in some, but not all, of its argument-places (see  commutativeInArgs).  More precisely, suppose for example that <code>PARTCOMRELN</code> is a predicate (function) that is commutative only in its odd-numbered  argument-places, and that <code>PARTCOMRELN</code> holds among (has the value <code>VAL</code> for) a given sequence of arguments <code>SEQ</code>.  It follows that <code>PARTCOMRELN</code> also holds among (has the same value <code>VAL</code> for) any other sequence <code>SEQ-PRIME</code> obtainable from <code>SEQ</code> by permuting some or all of the odd-numbered members of <code>SEQ</code> while keeping all of its even-numbered members fixed.\n<p>\nNote that <code>PARTCOMRELN</code> must  have an arity (see arity) of at least three and <i>cannot</i> be an instance of CommutativeRelation (as any instance of the latter is commutative in <i>all</i> of its argument-places).\n<p>\nInstances of PartiallyCommutativeRelation include pathsJoinAt, formsBorderBetween, and BlockOfStreetBetweenFn.", 'UniversalVocabularyMt', vStrDef).
  8081 351:exactlyAssertedEL_next(comment, 'ExistentialQuantifier-Bounded', "A specialization of ExistentialQuantifier (q.v.).  Each instance of ExistentialQuantifier-Bounded is a ternary relation that can be used to make a certain kind of statement about the existence of a given bounded quantity of things meeting a given criterion.  For example, '(thereExistAtLeast 9 ?X (isa ?X Cat))' means that there exist at least nine cats.  What distinguishes _bounded_ existential quantifiers from existential quantifiers generally is that the former require one to specify explicitly (at least a boundary for) how many things exist that meet the specified criterion.", 'UniversalVocabularyMt', vStrDef).
  8082 284:exactlyAssertedEL_next(comment, 'ExistentialQuantifier', "A specialization of Quantifier (q.v.).  Each instance of ExistentialQuantifier can be used to make a certain kind of assertion regarding the existence of some thing(s) meeting a specified criterion.  For example, `(thereExistAtLeast 9 ?X (isa ?X Cat))' means that there exist at least nine cats.  Other instances of this collection are thereExists and thereExistExactly.  Cf. forAll.", 'UniversalVocabularyMt', vStrDef).
  8172 132:exactlyAssertedEL_next(comment, 'CommutativeRelation', "An instance of RelationTypeByLogicalFeature (q.v.) and a specialization of AtLeastPartiallyCommutativeRelation (q.v.).  Each instance of CommutativeRelation <code>COMRELN</code> is a predicate or function that is commutative in all of its argument-places.  That is, if <code>COMRELN</code> is a predicate (function) that holds among (has a value <code>VAL</code> for) a given sequence of arguments, then <code>COMRELN</code> also holds among (has the same value <code>VAL</code> for) any permutation of that  sequence.  \n<p>\nExamples of commutative relations include PlusFn, or, bordersOn, temporallyIntersects, and teammates.  Specialization include SymmetricBinaryPredicate.  \n<p>\nNote that most relations are <i>not</i> commutative.  Cf. the disjoint collection  PartiallyCommutativeRelation.", 'UniversalVocabularyMt', vStrDef).
  8777 46:assertedTinyKB_not_first(quotedIsa(thereExistAtLeast, 'InferenceSupportedTerm'), 'UniversalVocabularyMt', vStrDef).
  9144 188:assertedTinyKB_implies( and(isa('$VAR'('ARG2'), '$VAR'('UNIV_COL')), relationExistsMinAll('$VAR'('SLOT'), '$VAR'('EXIST_COL'), '$VAR'('UNIV_COL'), '$VAR'('NUM'))), trueSentence(thereExistAtLeast('$VAR'('NUM'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), '$VAR'('EXIST_COL')), holds('$VAR'('SLOT'), '$VAR'('ARG'), '$VAR'('ARG2'))))), 'BaseKB', vStrDef).
  9147 188:assertedTinyKB_implies( and(isa('$VAR'('ARG1'), '$VAR'('UNIV_COL')), relationAllExistsMin('$VAR'('SLOT'), '$VAR'('UNIV_COL'), '$VAR'('EXIST_COL'), '$VAR'('NUM'))), trueSentence(thereExistAtLeast('$VAR'('NUM'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), '$VAR'('EXIST_COL')), holds('$VAR'('SLOT'), '$VAR'('ARG1'), '$VAR'('ARG'))))), 'BaseKB', vStrDef).
  9376 112:exactlyAssertedEL_with_vars(expansion, relationExistsMinAll, implies(isa('$VAR'('ARG2'), (':ARG3')), thereExistAtLeast((':ARG4'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), (':ARG2')), holds((':ARG1'), '$VAR'('ARG'), '$VAR'('ARG2'))))), 'BaseKB', vStrDef).
  9382 112:exactlyAssertedEL_with_vars(expansion, relationAllExistsMin, implies(isa('$VAR'('ARG1'), (':ARG2')), thereExistAtLeast((':ARG4'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), (':ARG3')), holds((':ARG1'), '$VAR'('ARG1'), '$VAR'('ARG'))))), 'BaseKB', vStrDef).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo\typesystem\mpred_type_wff.pl
  531 25:    member(OtherExists,[atleast,atmost,exactly]),
  534 25:is_quant_f(Q):- arg(_,v(atleast,atmost,exactly,all,exists),Q).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog\logicmoo_clif.pl
  173 7:%=    atleast(X,N,A)
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\common_logic\common_logic_compiler.pl
  154 4:   atleast(X,N,A)
  419 25:% Typed (Exactly/AtMost/AtLeast 2 ((?x Man)(?y Woman)(?z Child)) ...                     )
  434 17:expandQuants(KB,atleast(N,X,NNF),FmlO):- expandQuants(KB,quant(atleast(N),X,NNF),FmlO).
  434 64:expandQuants(KB,atleast(N,X,NNF),FmlO):- expandQuants(KB,quant(atleast(N),X,NNF),FmlO).
  645 25:% Typed (Exactly/AtMost/AtLeast 2 ((?x Man)(?y Woman)(?z Child)) ...                     )
  656 9:nnf1(KB,atleast(N,XL,NNF),FreeV,FmlO,Paths):- is_list(XL),
  658 14:      nnf(KB,atleast(N,X,isa(X,Col) & NNF),FreeV,FmlO,Paths);
  661 20:            nnf(KB,atleast(N,X,NNF),FreeV,FmlO,Paths);
  662 20:            nnf(KB,atleast(N,X,atleast(N,MORE,NNF)),FreeV,FmlO,Paths)))).
  662 32:            nnf(KB,atleast(N,X,atleast(N,MORE,NNF)),FreeV,FmlO,Paths)))).
  921 8:% ==== AtLeast N ========
  925 3:% AtLeast 1:  We simply create the existence of 1
  926 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- N==1, !,
  929 20:nnf1(KB,thereExistsAtLeast(N,X,Fml),FreeV,NNF,Paths):-!, nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths).
  929 66:nnf1(KB,thereExistsAtLeast(N,X,Fml),FreeV,NNF,Paths):-!, nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths).
  931 3:% AtLeast 2: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule)
  931 78:% AtLeast 2: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule)
  932 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):-  N==2, !,  
  941 3:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  941 18:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  941 50:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  942 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):-  is_using_feature(list_macros),!,
  948 3:% AtLeast 3: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule)
  948 78:% AtLeast 3: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule)
  949 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):-  N==3, !,
  954 3:% AtLeast 4: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule)
  954 78:% AtLeast 4: (This is just to confirm code .. thus, will comment out to use "AtLeast X:" rule)
  955 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):-   N =4, fail, is_using_feature(list_macros),!,
  962 3:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  962 18:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  962 50:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  963 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- % is_using_feature(list_macros),!,
  965 15:      nnf1(KB,atleastInSet(N,X,Fml,N,SET),FreeV,NNF,Paths).
  967 10:nnf1(_KB,atleastInSet(0,_X,_Fml,_S,_Set),_FreeV,true,1):- !.
  969 9:nnf1(KB,atleastInSet(N,X,Fml,S,SET),FreeV,NNF,Paths):- % is_using_feature(list_macros),!,
  973 25:   nnf1(KB, ( NEWFORM & atleastInSet(N2,X2,Fml2,S,SET)),[X|FreeV],NNF,Paths).
  976 3:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  976 18:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  976 50:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  977 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- % is_using_feature(list_macros),!,
  984 3:% AtLeast N:  This constructs N separate Skolems.. but did i name them the same?
  985 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- NewN is N - 1, !,
  987 81:    NEWFORM =  ~ (~ (different(X,Y) v ( ~ skId(Y,N) v ((exists(Y, FmlY )))))) v atleast(NewN,X,Fml),
  991 3:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  991 18:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  991 50:% AtLeast N:  If AtLeast 4 above is correct than AtLeast N is correcT?
  992 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- %%  is_using_feature(list_macros),!,
  997 3:% AtLeast N:  Non list macro PFCLog version (Might prefer this?)
  998 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- is_using_feature(inline_prolog),!,
  1007 3:% AtLeast N:  This constructs N separate Skolems.. but did i name them the same?
  1008 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- fail, NewN is N - 1, !,
  1010 82:     NEWFORM =  ( ~(different(X,Y) & exists(Y, ~skolem(Y,skIDFn(Y,N)) v FmlY)) v atleast(NewN,X,Fml)),
  1011 55:    % NEWFORM =  ( ~different(X,Y) v exists(Y, FmlY & atleast(NewN,X,Fml))),
  1014 3:% AtLeast N:  "Non list macro version (Might prefer this?)"
  1015 9:nnf1(KB,atleast(N,X,Fml),FreeV,NNF,Paths):- NewN is N - 1, !,
  1017 50:    NEWFORM = exists(Y, (FmlY & different(X,Y) & atleast(NewN,X,Fml))),
  1039 27:% AtMost N: "If there are AtLeast N then  There Exists No More"
  1040 72:nnf1(KB,atmost(N,X,Fml),FreeV,NNF,Paths):- fail,  % wont work due to ~(atleast) = atmost (creating a loop (when in NNF))
  1042 15:   NEWFORM = (atleast(N,X,Fml) => ~(exists(Y, FmlY & different(X,Y)))),
  1064 42:% Exactly 1: states "There is AtMost and AtLeast 1"
  1070 43:% Exactly N: states "There is AtMost N /\ AtLeast N"
  1072 15:   NEWFORM = (atleast(N,X,Fml) & atmost(N,X,Fml)),
  1228 17:	 Fml = (atleast(N,X,F)) -> Fml1 = atmost(N,X,F);
  1229 42:	 Fml = (atmost(N,X,F)) -> Fml1 = atleast(N,X,F);
  1230 23:         Fml = (quant(atleast(N),X,F)) -> Fml1 = quant(atmost(N),X,F);
  1231 55:         Fml = (quant(atmost(N),X,F)) -> Fml1 = quant(atleast(N),X,F);
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\common_logic\common_logic_snark.pl
  265 15:kif_hook_skel(atleast(_,_,_)).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\common_logic\common_logic_unused.txt
  31 7:%=    atleast(X,N,A)
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\motel\examples.pl
  37 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  91 23:	defconcept(c1,atleast(3,r)),
  92 69:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  92 91:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  117 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  140 28:	defconcept(c1,and([atleast(2,child),atmost(1,child)])),
  150 35:	defconcept(c1,and([person,atleast(2,child)])),
  151 35:	defconcept(c2,and([person,atleast(3,restr(child,lawyer))])).
  168 45:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  168 59:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  169 35:	defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))).
  176 79:	defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])),
  177 46:	defconcept(c2,and([person,all(friend,atleast(1,speciality))])).
  184 28:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  184 59:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  185 27:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  185 44:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  202 44:	defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])),
  569 36:	defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])),
  570 36:	defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])),
  629 35:	defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])),
  638 32:	defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])),
  639 31:	defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])),
  640 31:	defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\motel\mpred_motel.pl
  3427 13: *      not(atleast(N,R)) -> atmost(N-1,R)
  3428 30: *      not(atmost(N,R))  -> atleast(N+1,R)
  3457 18:normalizeNot(not(atleast(N,R)),atmost(M,R)) :-
  3459 31:normalizeNot(not(atmost(N,R)),atleast(M,R)) :-
  3523 15:motel_flatten(atleast(N,R1),atleast(N,R2)) :-
  3523 29:motel_flatten(atleast(N,R1),atleast(N,R2)) :-
  5162 41:	% Assert X in some(r,c) => X in atleast(1,r)
  5165 23:	% Assert X in atleast(1,r) => X in some(r,'top')
  5369 45:	% Assert x in some(R,'top') => x in atleast(1,R)
  5377 30:			     atleast(1,R),X,HYPS,AB,CALLS,PT1,InHead1),
  5382 23:	% Assert x in atleast(1,R) => x in some(R,'top')
  5391 29:			    atleast(1,R),X,HYPS,AB,CALLS,PT1,Body),
  8024 13:namesInTerm(atleast(_N,R),L,_) :-
  8166 23:malcToFOL(Trans,U,[X],atleast(N,R),F) :-
  8167 23:	nrToFOL(U,[X],atleast(N,R),F).
  8235 17:nrToFOL(_U,[_X],atleast(0,_R),true) :-
  8237 15:nrToFOL(U,[X],atleast(1,R),exists(Y,F1)) :-
  8240 15:nrToFOL(U,[X],atleast(N,R),F) :-
  9570 46:	defconcept(EnvName,MS,CNameDom, and([atleast(MinNr,RName1),atmost(MaxNr,RName1)])),
  9574 46:%	defconcept(EnvName,MS,CNameDef, and([atleast(DefNr,RName1),atmost(DefNr,RName1)])),
  9726 46:	defconcept(EnvName,MS,CNameDom, and([atleast(MinNr,RName1),atmost(MaxNr,RName1)])),
  9729 46:%	defconcept(EnvName,MS,CNameDef, and([atleast(DefNr,RName1),atmost(DefNr,RName1)])),
  9741 40:	defconcept(EnvName,MS,CNameDom,atleast(1,RName1)),
  9981 50:%	                                    and([atleast(MinNr,RName),
  10008 23:                     [atleast(MinNr,'top'), atmost(MaxNr,'top') | L2]) :-
  10482 30:			and([atleast(MinNr,R1),atmost(MaxNr,R1)]),AX),
  10483 47:        undefconcept(EnvName,MS,CNameDom,and([atleast(MinNr,R1),
  10580 52:	conceptEqualSets(Env,_usr,MS,CNameDom,and([atleast(MinNr,R1),
  10582 47:        undefconcept(EnvName,MS,CNameDom,and([atleast(MinNr,R1),
  10597 47:	conceptEqualSets(Env,_usr,MS,CNameDom,atleast(1,R1),AX),
  10598 42:	undefconcept(EnvName,MS,CNameDom,atleast(1,R1)),
  10799 58:	roleSubsets(Env,_user,MS,IRName,restr(RName,and([atleast(MinNr,RName),
  10804 52:					      and([atleast(MinNr,RName),
  11089 58:assertConceptLInR(Env,rn(AxiomName,_S,Orientation),MS,CN,atleast(N,R)) :-
  11096 50:	convertInConsequence(Env,pr(3),RN1,MS,W1,atleast(N,R),X,
  11360 21:	            atleast(N,R),X,HYPS,AB,CALLS,PT1,Body) :-
  11463 42:convertInConsequence(Env,_Pr,Name,_MS,W1,atleast(N,R),X,
  12096 31:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :-
  12096 72:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :-
  12096 85:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :-
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\motel\test_motel_env.txt
  1398 52:conceptEqualSets(env(t5570),user,[],concept12,and([atleast(1,truth_mod),atmost(1,truth_mod)]),axiom109):-true.
  1400 49:conceptEqualSets(env(t5570),system,[],concept13,atleast(1,truth_mod),axiom111):-true.
  1403 39:conceptEqualSets(env(t5570),system,[],atleast(2,truth_mod),not(concept14),axiom114):-true.
  1406 52:conceptEqualSets(env(t5570),user,[],concept20,and([atleast(1,det),atmost(1,det)]),axiom124):-true.
  1408 49:conceptEqualSets(env(t5570),system,[],concept21,atleast(1,det),axiom126):-true.
  1411 39:conceptEqualSets(env(t5570),system,[],atleast(2,det),not(concept22),axiom129):-true.
  1412 52:conceptEqualSets(env(t5570),user,[],concept27,and([atleast(1,deictic_mod),atmost(1,deictic_mod)]),axiom135):-true.
  1414 49:conceptEqualSets(env(t5570),system,[],concept28,atleast(1,deictic_mod),axiom137):-true.
  1417 39:conceptEqualSets(env(t5570),system,[],atleast(2,deictic_mod),not(concept29),axiom140):-true.
  1418 52:conceptEqualSets(env(t5570),user,[],concept34,and([atleast(1,named),atmost(1,named)]),axiom146):-true.
  1420 49:conceptEqualSets(env(t5570),system,[],concept35,atleast(1,named),axiom148):-true.
  1423 39:conceptEqualSets(env(t5570),system,[],atleast(2,named),not(concept36),axiom151):-true.
  1426 52:conceptEqualSets(env(t5570),user,[],concept42,and([atleast(1,subject),atmost(1,subject)]),axiom159):-true.
  1428 49:conceptEqualSets(env(t5570),system,[],concept43,atleast(1,subject),axiom161):-true.
  1431 39:conceptEqualSets(env(t5570),system,[],atleast(2,subject),not(concept44),axiom164):-true.
  1432 52:conceptEqualSets(env(t5570),user,[],concept49,and([atleast(1,purpose),atmost(1,purpose)]),axiom170):-true.
  1434 49:conceptEqualSets(env(t5570),system,[],concept50,atleast(1,purpose),axiom172):-true.
  1437 39:conceptEqualSets(env(t5570),system,[],atleast(2,purpose),not(concept51),axiom175):-true.
  1438 52:conceptEqualSets(env(t5570),user,[],concept56,and([atleast(1,time),atmost(1,time)]),axiom181):-true.
  1440 49:conceptEqualSets(env(t5570),system,[],concept57,atleast(1,time),axiom183):-true.
  1443 39:conceptEqualSets(env(t5570),system,[],atleast(2,time),not(concept58),axiom186):-true.
  1444 52:conceptEqualSets(env(t5570),user,[],concept63,and([atleast(1,illoc),atmost(1,illoc)]),axiom192):-true.
  1446 49:conceptEqualSets(env(t5570),system,[],concept64,atleast(1,illoc),axiom194):-true.
  1449 39:conceptEqualSets(env(t5570),system,[],atleast(2,illoc),not(concept65),axiom197):-true.
  1450 52:conceptEqualSets(env(t5570),user,[],concept70,and([atleast(1,cause),atmost(1,cause)]),axiom203):-true.
  1452 49:conceptEqualSets(env(t5570),system,[],concept71,atleast(1,cause),axiom205):-true.
  1455 39:conceptEqualSets(env(t5570),system,[],atleast(2,cause),not(concept72),axiom208):-true.
  1456 52:conceptEqualSets(env(t5570),user,[],concept77,and([atleast(1,result),atmost(1,result)]),axiom214):-true.
  1458 49:conceptEqualSets(env(t5570),system,[],concept78,atleast(1,result),axiom216):-true.
  1461 39:conceptEqualSets(env(t5570),system,[],atleast(2,result),not(concept79),axiom219):-true.
  1462 52:conceptEqualSets(env(t5570),user,[],concept84,and([atleast(1,location),atmost(1,location)]),axiom225):-true.
  1464 49:conceptEqualSets(env(t5570),system,[],concept85,atleast(1,location),axiom227):-true.
  1467 39:conceptEqualSets(env(t5570),system,[],atleast(2,location),not(concept86),axiom230):-true.
  1468 47:conceptEqualSets(env(t5570),user,[],concept90,atleast(1,subject),axiom231):-true.
  1474 52:conceptEqualSets(env(t5570),user,[],concept96,and([atleast(1,volition),atmost(1,volition)]),axiom248):-true.
  1476 49:conceptEqualSets(env(t5570),system,[],concept97,atleast(1,volition),axiom250):-true.
  1479 39:conceptEqualSets(env(t5570),system,[],atleast(2,volition),not(concept98),axiom253):-true.
  1482 53:conceptEqualSets(env(t5570),user,[],concept104,and([atleast(1,origin_mod),atmost(1,origin_mod)]),axiom261):-true.
  1484 50:conceptEqualSets(env(t5570),system,[],concept105,atleast(1,origin_mod),axiom263):-true.
  1487 39:conceptEqualSets(env(t5570),system,[],atleast(2,origin_mod),not(concept106),axiom266):-true.
  1494 53:conceptEqualSets(env(t5570),user,[],concept116,and([atleast(1,colour_mod),atmost(1,colour_mod)]),axiom296):-true.
  1496 50:conceptEqualSets(env(t5570),system,[],concept117,atleast(1,colour_mod),axiom298):-true.
  1499 39:conceptEqualSets(env(t5570),system,[],atleast(2,colour_mod),not(concept118),axiom301):-true.
  1502 53:conceptEqualSets(env(t5570),user,[],concept124,and([atleast(1,relative_mod),atmost(1,relative_mod)]),axiom311):-true.
  1504 50:conceptEqualSets(env(t5570),system,[],concept125,atleast(1,relative_mod),axiom313):-true.
  1507 39:conceptEqualSets(env(t5570),system,[],atleast(2,relative_mod),not(concept126),axiom316):-true.
  1512 53:conceptEqualSets(env(t5570),user,[],concept132,and([atleast(1,material_mod),atmost(1,material_mod)]),axiom328):-true.
  1514 50:conceptEqualSets(env(t5570),system,[],concept133,atleast(1,material_mod),axiom330):-true.
  1517 39:conceptEqualSets(env(t5570),system,[],atleast(2,material_mod),not(concept134),axiom333):-true.
  1520 53:conceptEqualSets(env(t5570),user,[],concept140,and([atleast(1,weight_mod),atmost(1,weight_mod)]),axiom343):-true.
  1522 50:conceptEqualSets(env(t5570),system,[],concept141,atleast(1,weight_mod),axiom345):-true.
  1525 39:conceptEqualSets(env(t5570),system,[],atleast(2,weight_mod),not(concept142),axiom348):-true.
  1530 53:conceptEqualSets(env(t5570),user,[],concept150,and([atleast(1,instrument),atmost(1,instrument)]),axiom359):-true.
  1532 50:conceptEqualSets(env(t5570),system,[],concept151,atleast(1,instrument),axiom361):-true.
  1535 39:conceptEqualSets(env(t5570),system,[],atleast(2,instrument),not(concept152),axiom364):-true.
  1536 53:conceptEqualSets(env(t5570),user,[],concept157,and([atleast(1,concerned),atmost(1,concerned)]),axiom370):-true.
  1538 50:conceptEqualSets(env(t5570),system,[],concept158,atleast(1,concerned),axiom372):-true.
  1541 39:conceptEqualSets(env(t5570),system,[],atleast(2,concerned),not(concept159),axiom375):-true.
  1544 53:conceptEqualSets(env(t5570),user,[],concept165,and([atleast(1,destination),atmost(1,destination)]),axiom393):-true.
  1546 50:conceptEqualSets(env(t5570),system,[],concept166,atleast(1,destination),axiom395):-true.
  1549 39:conceptEqualSets(env(t5570),system,[],atleast(2,destination),not(concept167),axiom398):-true.
  1550 53:conceptEqualSets(env(t5570),user,[],concept172,and([atleast(1,source),atmost(1,source)]),axiom404):-true.
  1552 50:conceptEqualSets(env(t5570),system,[],concept173,atleast(1,source),axiom406):-true.
  1555 39:conceptEqualSets(env(t5570),system,[],atleast(2,source),not(concept174),axiom409):-true.
  1558 48:conceptEqualSets(env(t5570),user,[],concept180,atleast(1,means),axiom417):-true.
  1568 48:conceptEqualSets(env(t5570),user,[],concept186,atleast(1,concerned),axiom427):-true.
  1574 48:conceptEqualSets(env(t5570),user,[],concept190,atleast(1,result),axiom438):-true.
  1578 48:conceptEqualSets(env(t5570),user,[],concept194,atleast(1,concerned),axiom447):-true.
  1588 53:conceptEqualSets(env(t5570),user,[],concept202,and([atleast(1,beneficative),atmost(1,beneficative)]),axiom472):-true.
  1590 50:conceptEqualSets(env(t5570),system,[],concept203,atleast(1,beneficative),axiom474):-true.
  1593 39:conceptEqualSets(env(t5570),system,[],atleast(2,beneficative),not(concept204),axiom477):-true.
  1596 48:conceptEqualSets(env(t5570),user,[],concept209,atleast(1,concerned),axiom480):-true.
  1600 48:conceptEqualSets(env(t5570),user,[],concept212,atleast(1,concerned),axiom488):-true.
  1606 53:conceptEqualSets(env(t5570),user,[],concept218,and([atleast(1,measure),atmost(1,measure)]),axiom512):-true.
  1608 50:conceptEqualSets(env(t5570),system,[],concept219,atleast(1,measure),axiom514):-true.
  1611 39:conceptEqualSets(env(t5570),system,[],atleast(2,measure),not(concept220),axiom517):-true.
  1614 48:conceptEqualSets(env(t5570),user,[],concept226,atleast(1,measure),axiom525):-true.
  1624 48:conceptEqualSets(env(t5570),user,[],concept234,atleast(1,quantity),axiom587):-true.
  1634 53:conceptEqualSets(env(t5570),user,[],concept241,and([atleast(1,physis_mod),atmost(1,physis_mod)]),axiom648):-true.
  1636 50:conceptEqualSets(env(t5570),system,[],concept242,atleast(1,physis_mod),axiom650):-true.
  1639 39:conceptEqualSets(env(t5570),system,[],atleast(2,physis_mod),not(concept243),axiom653):-true.
  1652 53:conceptEqualSets(env(t5570),user,[],concept254,and([atleast(1,volition),atmost(1,volition)]),axiom689):-true.
  1670 53:conceptEqualSets(env(t5570),user,[],concept265,and([atleast(1,worth_mod),atmost(1,worth_mod)]),axiom726):-true.
  1672 50:conceptEqualSets(env(t5570),system,[],concept266,atleast(1,worth_mod),axiom728):-true.
  1675 39:conceptEqualSets(env(t5570),system,[],atleast(2,worth_mod),not(concept267),axiom731):-true.
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\motel\test_motel_examples_63.pl
  39 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  93 23:	defconcept(c1,atleast(3,r)),
  94 69:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  94 91:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  119 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  142 28:	defconcept(c1,and([atleast(2,child),atmost(1,child)])),
  152 35:	defconcept(c1,and([person,atleast(2,child)])),
  153 35:	defconcept(c2,and([person,atleast(3,restr(child,lawyer))])).
  170 45:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  170 59:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  171 35:	defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))).
  178 79:	defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])),
  179 46:	defconcept(c2,and([person,all(friend,atleast(1,speciality))])).
  186 28:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  186 59:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  187 27:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  187 44:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  204 44:	defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])),
  571 36:	defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])),
  572 36:	defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])),
  631 35:	defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])),
  640 32:	defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])),
  641 31:	defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])),
  642 31:	defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\motel\test_motel_examples_76.pl
  37 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  91 23:	defconcept(c1,atleast(3,r)),
  92 69:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  92 91:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  117 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  140 28:	defconcept(c1,and([atleast(2,child),atmost(1,child)])),
  150 35:	defconcept(c1,and([person,atleast(2,child)])),
  151 35:	defconcept(c2,and([person,atleast(3,restr(child,lawyer))])).
  168 45:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  168 59:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  169 35:	defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))).
  176 79:	defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])),
  177 46:	defconcept(c2,and([person,all(friend,atleast(1,speciality))])).
  184 28:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  184 59:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  185 27:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  185 44:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  202 44:	defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])),
  569 36:	defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])),
  570 36:	defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])),
  629 35:	defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])),
  638 32:	defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])),
  639 31:	defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])),
  640 31:	defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\motel\test_motel_fssKb.txt
  21 36:defconcept(fssKB,[],concept12,and([atleast(1,truth_mod),atmost(1,truth_mod)])).
  23 36:defconcept(fssKB,[],concept20,and([atleast(1,det),atmost(1,det)])).
  24 36:defconcept(fssKB,[],concept27,and([atleast(1,deictic_mod),atmost(1,deictic_mod)])).
  25 36:defconcept(fssKB,[],concept34,and([atleast(1,named),atmost(1,named)])).
  27 36:defconcept(fssKB,[],concept42,and([atleast(1,subject),atmost(1,subject)])).
  28 36:defconcept(fssKB,[],concept49,and([atleast(1,purpose),atmost(1,purpose)])).
  29 36:defconcept(fssKB,[],concept56,and([atleast(1,time),atmost(1,time)])).
  30 36:defconcept(fssKB,[],concept63,and([atleast(1,illoc),atmost(1,illoc)])).
  31 36:defconcept(fssKB,[],concept70,and([atleast(1,cause),atmost(1,cause)])).
  32 36:defconcept(fssKB,[],concept77,and([atleast(1,result),atmost(1,result)])).
  33 36:defconcept(fssKB,[],concept84,and([atleast(1,location),atmost(1,location)])).
  34 31:defconcept(fssKB,[],concept90,atleast(1,subject)).
  37 36:defconcept(fssKB,[],concept96,and([atleast(1,volition),atmost(1,volition)])).
  39 37:defconcept(fssKB,[],concept104,and([atleast(1,origin_mod),atmost(1,origin_mod)])).
  43 37:defconcept(fssKB,[],concept116,and([atleast(1,colour_mod),atmost(1,colour_mod)])).
  45 37:defconcept(fssKB,[],concept124,and([atleast(1,relative_mod),atmost(1,relative_mod)])).
  48 37:defconcept(fssKB,[],concept132,and([atleast(1,material_mod),atmost(1,material_mod)])).
  50 37:defconcept(fssKB,[],concept140,and([atleast(1,weight_mod),atmost(1,weight_mod)])).
  53 37:defconcept(fssKB,[],concept150,and([atleast(1,instrument),atmost(1,instrument)])).
  54 37:defconcept(fssKB,[],concept157,and([atleast(1,concerned),atmost(1,concerned)])).
  56 37:defconcept(fssKB,[],concept165,and([atleast(1,destination),atmost(1,destination)])).
  57 37:defconcept(fssKB,[],concept172,and([atleast(1,source),atmost(1,source)])).
  59 32:defconcept(fssKB,[],concept180,atleast(1,means)).
  64 32:defconcept(fssKB,[],concept186,atleast(1,concerned)).
  67 32:defconcept(fssKB,[],concept190,atleast(1,result)).
  69 32:defconcept(fssKB,[],concept194,atleast(1,concerned)).
  74 37:defconcept(fssKB,[],concept202,and([atleast(1,beneficative),atmost(1,beneficative)])).
  76 32:defconcept(fssKB,[],concept209,atleast(1,concerned)).
  78 32:defconcept(fssKB,[],concept212,atleast(1,concerned)).
  81 37:defconcept(fssKB,[],concept218,and([atleast(1,measure),atmost(1,measure)])).
  83 32:defconcept(fssKB,[],concept226,atleast(1,measure)).
  88 32:defconcept(fssKB,[],concept234,atleast(1,quantity)).
  93 37:defconcept(fssKB,[],concept241,and([atleast(1,physis_mod),atmost(1,physis_mod)])).
  100 37:defconcept(fssKB,[],concept254,and([atleast(1,volition),atmost(1,volition)])).
  109 37:defconcept(fssKB,[],concept265,and([atleast(1,worth_mod),atmost(1,worth_mod)])).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\plarkc\logicmoo_i_cyc_rewriting.pl
  225 24:builtin_rn('thereExistsAtLeast', 'atleast').
  225 35:builtin_rn('thereExistsAtLeast', 'atleast').
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\plarkc\logicmoo_u_cyc_api.txt
  5356 12:'thereExistAtLeast'/5,
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\plarkc\logicmoo_u_cyc_kb_tinykb.pl
  391 40:exactlyAssertedEL_first(isa, thereExistAtLeast, 'ExistentialQuantifier-Bounded', 'UniversalVocabularyMt', vStrDef).
  2485 42:exactlyAssertedEL_first(arity, thereExistAtLeast, 3, 'UniversalVocabularyMt', vStrDef).
  3232 50:exactlyAssertedEL_next(quotedArgument, thereExistAtLeast, 3, 'UniversalVocabularyMt', vStrDef).
  3233 50:exactlyAssertedEL_next(quotedArgument, thereExistAtLeast, 2, 'UniversalVocabularyMt', vStrDef).
  3419 49:exactlyAssertedEL_first(argQuotedIsa, thereExistAtLeast, 3, 'CycLSentence-Assertible', 'UniversalVocabularyMt', vStrDef).
  3420 49:exactlyAssertedEL_first(argQuotedIsa, thereExistAtLeast, 2, ftVar, 'UniversalVocabularyMt', vStrDef).
  3615 43:exactlyAssertedEL_first(argIsa, thereExistAtLeast, 1, 'PositiveInteger', 'UniversalVocabularyMt', vStrDef).
  4502 50:exactlyAssertedEL_first(arg3QuotedIsa, thereExistAtLeast, 'CycLSentence-Assertible', 'UniversalVocabularyMt', vStrDef).
  4711 50:exactlyAssertedEL_first(arg2QuotedIsa, thereExistAtLeast, ftVar, 'UniversalVocabularyMt', vStrDef).
  5457 44:exactlyAssertedEL_first(arg1Isa, thereExistAtLeast, 'PositiveInteger', 'UniversalVocabularyMt', vStrDef).
  6087 46:exactlyAssertedEL_next(scopingArg, thereExistAtLeast, 2, 'BaseKB', vStrDef).
  6653 51:exactlyAssertedEL_next(oldConstantName, thereExistAtLeast, "ThereExistAtLeast", 'BookkeepingMt', vStrDef).
  6653 71:exactlyAssertedEL_next(oldConstantName, thereExistAtLeast, "ThereExistAtLeast", 'BookkeepingMt', vStrDef).
  6976 46:exactlyAssertedEL_next(genKeyword, thereExistAtLeast, ((':THERE_EXIST_AT_LEAST')), 'EnglishParaphraseMt', vStrDef).
  7033 45:exactlyAssertedEL_next(genFormat, thereExistAtLeast, "there ~a at least ~a ~a such that ~a", 'TheList'('TheList'("is", "are"), 1, 2, 3), 'EnglishParaphraseMt', vStrDef).
  7564 124:exactlyAssertedEL_next(comment, thereExistExactly, "An ExistentialQuantifier (q.v.) and a specialization of both thereExistAtLeast and  thereExistAtMost (qq.v.).  Compared to the standard existential quantifier thereExists, thereExistExactly has an extra argument-place for specifying exactly how many things satisfy a given condition (specified by an CycLSentence-Assertible, in which the also-specified CycLVariable will typically occur free).  A closed sentence of the form <code>(thereExistExactly NUM VAR SENT)</code> means that there are exactly<code> NUM</code> distinct things that satisfy <code>SENT</code>, i.e. that render <code>SENT</code> true when taken as the value of <code>VAR</code>.  For example, the sentence\n<p>\n<pre>\n  (thereExistExactly 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are exactly seven seas.\n<p>\nIn the degenerate case where <code>VAR</code> does not appear free in <code>SENT</code>, then <code>(thereExistExactly NUM VAR SENT)</code> is equivalent to <code>SENT</code>.", 'UniversalVocabularyMt', vStrDef).
  7565 223:exactlyAssertedEL_next(comment, thereExistAtMost, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the most) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtMost NUM VAR SENT) means that there are at most NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtMost 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at most seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtMost NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtLeast, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7565 915:exactlyAssertedEL_next(comment, thereExistAtMost, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the most) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtMost NUM VAR SENT) means that there are at most NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtMost 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at most seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtMost NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtLeast, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7566 43:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at least seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7566 224:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at least seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7566 481:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at least seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7566 684:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at least seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7566 852:exactlyAssertedEL_next(comment, thereExistAtLeast, "An ExistentialQuantifier (q.v.) and a specialized (albeit higher arity) version of thereExists (q.v.).  Compared to the latter, standard existential quantifier, thereExistAtLeast has an extra argument-place for specifying how many things (at the least) satisfy a given condition (specified by an ELSentence-Assertible, in which the also-specified ELVariable will typically occur free).  A closed sentence of the form (thereExistAtLeast NUM VAR SENT) means that there are at least NUM distinct things that satisfy SENT, i.e. that render SENT true when taken as the value of VAR.  For example, the sentence\n<p>\n<pre>\n  (thereExistAtLeast 7 ?X (isa ?X Sea))\n</pre>\n<p>\nmeans that there are at least seven seas.\n<p>\nIn the degenerate case where VAR does not appear free in SENT, then (thereExistAtLeast NUM VAR SENT) is equivalent to SENT.\n<p>\nSee also thereExistAtMost, thereExistExactly.", 'UniversalVocabularyMt', vStrDef).
  7603 573:exactlyAssertedEL_next(comment, relationExistsMinAll, "A quaternary RuleMacroPredicate (q.v.) that can be used to state that a given binary predicate stands in a certain numerical relation with respect to two collections.  (relationExistsMinAll BINPRED COL1 COL2 N) means that for any instance INST of COL2, there are at least N instances of (INST(1), ..., INST(N)) of COL1 such that (BINPRED INST(i) INST) holds (for 1 <= i <= N).  This is equivalent to (and can thus be used in effect as shorthand for) the more complex form:\n<p>\n(implies\n(isa INST COL2)\n(thereExistAtLeast N ?INST-I\n(and\n(isa ?INST-I COL1)\n(BINPRED ?INST-I INST)))) .\n<p>\nFor example, `(relationExistsMinAll physicalParts Hand Finger 1)' means that every finger is part of at least one hand.  Cf. relationAllExistsMin, and see the shared NoteAboutUseOfRuleMacroPredicates.", 'UniversalVocabularyMt', vStrDef).
  7609 567:exactlyAssertedEL_next(comment, relationAllExistsMin, "A quaternary RuleMacroPredicate that can be used to state that a given binary predicate stands in a certain numerical relationship with respect to two collections.  (relationAllExistsMin BINPRED COL1 COL2 N) means that for any instance INST of COL1 there are at least N instances (INST(1), ..., INST(N)) of COL2 such that (BINPRED INST INST(i)) holds (for 1 <= i <= N).  This is equivalent to (and can thus be used in effect as shorthand for) the more complex form:\n<p>\n(implies\n(isa ?INST COL1)\n(thereExistAtLeast N ?INST-I\n(and\n(isa ?INST-I COL2)\n(BINPRED ?INST ?INST-I)))) .\n<p>\nFor example, `(relationAllExistsMin subEvents EatingEvent Swallowing 1)' means that every act of eating includes at least one swallowing. Cf. relationExistsMinAll, and see NoteAboutUseOfRuleMacroPredicates.", 'UniversalVocabularyMt', vStrDef).
  7780 1529:exactlyAssertedEL_next(comment, commutativeInArgs, "A variable-arity MetaRelation used for stating that a given PartiallyCommutativeRelation (q.v.) is \"commutative\" with respect to two or more specified argument-places.\n<p>\n<code>(commutativeInArgs RELN ARGNUM-1 ... ARGNUM-N)</code> means that  <code>RELN</code> is commutative in its <code>ARGNUM-1</code>th, ..., and <code>ARGNUM-N</code>th arguments.  Thus <code>RELN</code> admits unrestricted permutation among  these arguments.  More precisely: (i) if <code>RELN</code> is a Predicate that  holds of a given argument-sequence <code>SEQ</code>, then <code>RELN</code> also holds of any other sequence <code>SEQ-PERMUTE</code> obtainable from <code>SEQ</code> by permuting some or all of <code>SEQ</code>'s <code>ARGNUM-1</code>th, ..., and <code>ARGNUM-N</code>th items (while leaving all of <code>SEQ</code>'s other items unchanged).  (ii) if <code>RELN</code> is a Function-Denotational that associates a given argument-sequence <code>SEQ</code> with the value <code>VALUE</code>, then <code>RELN</code> also associates any sequence <code>SEQ-PERMUTE</code> (as described above) with <code>VALUE</code>.\n<p>\nFor example, <code>(commutativeInArgs formsBorderBetween 2 3)</code> has as a consequence that whenever a sentence of the form <code>(formsBorderBetween BORDER REG1 REG2)</code> holds, so does the corresponding sentence  <code>(formsBorderBetween BORDER REG2 REG1)</code>.\n<p>\nIf <code>RELN</code> is commutative in at least two argument-places it is an AtLeastPartiallyCommutativeRelation.  If <code>RELN</code> is commutative in <i>all</i> argument-places it is, more specifically, a CommutativeRelation.  If <code>RELN</code> is commutative in at least two, but <i> not all</i>,\nargument-places it is, instead, a PartiallyCommutativeRelation.\n<p>\nNote that the fact that each argument-place of a given relation commutes with some other argument-place is not sufficient for its being fully commutative.  For example, a partially-commutative quaternary relation might be such that its first and third places commute with each other and its second and fourth places commute with each other.", 'UniversalVocabularyMt', vStrDef).
  7919 377:exactlyAssertedEL_next(comment, 'SkolemFuncNFn', "SkolemFuncNFn is used by the CycCanonicalizer and should rarely\n(if ever) need to be seen by users or referenced in assertions entered\nat the EL level.  It is used by the canonicalizer to denote a skolem\nfunction before it is reified, when the skolem is derived from a formula\nasserted at the EL level that uses thereExistAtLeast,\nthereExistAtMost, or thereExistExactly.  Its arity is 4: the first\nargument is a list of the term variable arguments of the denoted skolem function,\n(term variables which are in the scope of the bounded existential).\nThe second argument is a variable which uniquely identifies the\nexistentially quantified variable by which the denoted skolem will\nbe represented in the canonical version of the formula.\nThe third is a sequence variable if there is a sequence variable\nargument of the denoted skolem function (which there will be iff there\nis a sequence variable in the scope of the bounded existential), and NIL otherwise.\nThe fourth is an interval specifying the number of things which may satisfy the formula.", 'UniversalVocabularyMt', vStrDef).
  7920 246:exactlyAssertedEL_next(comment, 'SkolemFuncN', "SkolemFuncN is a collection of Cyc system-generated functions that partially implement existential quantifications in Cyc.  Whenever someone asserts to Cyc an expression that contains a 'thereExistAtLeast', a 'thereExistAtMost', or a 'thereExistExactly' quantifier, Cyc automatically creates a new instance of SkolemFuncN and rewrites the assertion using this skolem function instead of that existential quantifier.  See also termOfUnit. At this time (3/98), skolem functions are automatically named by the Cyc system using the prefix 'SKF-' followed by a number.", 'UniversalVocabularyMt', vStrDef).
  7968 943:exactlyAssertedEL_next(comment, 'Quantifier', "A specialization of SententialRelation and ScopingRelation (qq.v.).  Each instance of Quantifier takes as its arguments (at least) a variable (see CycLVariable) and a sentence (see CycLSentence-Assertible), and is used to make a certain kind of generic quantitative statement regarding the things that satisfy the sentence.  Typically, the variable VAR will occur free in the sentence SENT, and in the quantified sentence (QUANT VAR SENT ...) these occurrences of VAR are bound by that occurrence of QUANT.  (If VAR does not occur free in SENT, then the quantified sentence is a \"vacuous quantification\" that is equivalent to SENT by itself.  For the definitions of 'free' and 'bound' occurrences of variables, see ScopingRelation.)  For example, '(thereExists ?X (isa ?X Dog))' means that there exists at least one dog.  Other instances of Quantifier are forAll, thereExistExactly, thereExistAtLeast, and thereExistAtMost.", 'UniversalVocabularyMt', vStrDef).
  7978 141:exactlyAssertedEL_next(comment, 'PartiallyCommutativeRelation', "An instance of RelationTypeByLogicalFeature (q.v.) and a specialization of AtLeastPartiallyCommutativeRelation.  Each instance  of PartiallyCommutativeRelation <code>PARTCOMRELN</code> is a predicate or function that is commutative in some, but not all, of its argument-places (see  commutativeInArgs).  More precisely, suppose for example that <code>PARTCOMRELN</code> is a predicate (function) that is commutative only in its odd-numbered  argument-places, and that <code>PARTCOMRELN</code> holds among (has the value <code>VAL</code> for) a given sequence of arguments <code>SEQ</code>.  It follows that <code>PARTCOMRELN</code> also holds among (has the same value <code>VAL</code> for) any other sequence <code>SEQ-PRIME</code> obtainable from <code>SEQ</code> by permuting some or all of the odd-numbered members of <code>SEQ</code> while keeping all of its even-numbered members fixed.\n<p>\nNote that <code>PARTCOMRELN</code> must  have an arity (see arity) of at least three and <i>cannot</i> be an instance of CommutativeRelation (as any instance of the latter is commutative in <i>all</i> of its argument-places).\n<p>\nInstances of PartiallyCommutativeRelation include pathsJoinAt, formsBorderBetween, and BlockOfStreetBetweenFn.", 'UniversalVocabularyMt', vStrDef).
  8081 351:exactlyAssertedEL_next(comment, 'ExistentialQuantifier-Bounded', "A specialization of ExistentialQuantifier (q.v.).  Each instance of ExistentialQuantifier-Bounded is a ternary relation that can be used to make a certain kind of statement about the existence of a given bounded quantity of things meeting a given criterion.  For example, '(thereExistAtLeast 9 ?X (isa ?X Cat))' means that there exist at least nine cats.  What distinguishes _bounded_ existential quantifiers from existential quantifiers generally is that the former require one to specify explicitly (at least a boundary for) how many things exist that meet the specified criterion.", 'UniversalVocabularyMt', vStrDef).
  8082 284:exactlyAssertedEL_next(comment, 'ExistentialQuantifier', "A specialization of Quantifier (q.v.).  Each instance of ExistentialQuantifier can be used to make a certain kind of assertion regarding the existence of some thing(s) meeting a specified criterion.  For example, `(thereExistAtLeast 9 ?X (isa ?X Cat))' means that there exist at least nine cats.  Other instances of this collection are thereExists and thereExistExactly.  Cf. forAll.", 'UniversalVocabularyMt', vStrDef).
  8172 132:exactlyAssertedEL_next(comment, 'CommutativeRelation', "An instance of RelationTypeByLogicalFeature (q.v.) and a specialization of AtLeastPartiallyCommutativeRelation (q.v.).  Each instance of CommutativeRelation <code>COMRELN</code> is a predicate or function that is commutative in all of its argument-places.  That is, if <code>COMRELN</code> is a predicate (function) that holds among (has a value <code>VAL</code> for) a given sequence of arguments, then <code>COMRELN</code> also holds among (has the same value <code>VAL</code> for) any permutation of that  sequence.  \n<p>\nExamples of commutative relations include PlusFn, or, bordersOn, temporallyIntersects, and teammates.  Specialization include SymmetricBinaryPredicate.  \n<p>\nNote that most relations are <i>not</i> commutative.  Cf. the disjoint collection  PartiallyCommutativeRelation.", 'UniversalVocabularyMt', vStrDef).
  8777 46:assertedTinyKB_not_first(quotedIsa(thereExistAtLeast, 'InferenceSupportedTerm'), 'UniversalVocabularyMt', vStrDef).
  9144 188:assertedTinyKB_implies( and(isa('$VAR'('ARG2'), '$VAR'('UNIV_COL')), relationExistsMinAll('$VAR'('SLOT'), '$VAR'('EXIST_COL'), '$VAR'('UNIV_COL'), '$VAR'('NUM'))), trueSentence(thereExistAtLeast('$VAR'('NUM'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), '$VAR'('EXIST_COL')), holds('$VAR'('SLOT'), '$VAR'('ARG'), '$VAR'('ARG2'))))), 'BaseKB', vStrDef).
  9147 188:assertedTinyKB_implies( and(isa('$VAR'('ARG1'), '$VAR'('UNIV_COL')), relationAllExistsMin('$VAR'('SLOT'), '$VAR'('UNIV_COL'), '$VAR'('EXIST_COL'), '$VAR'('NUM'))), trueSentence(thereExistAtLeast('$VAR'('NUM'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), '$VAR'('EXIST_COL')), holds('$VAR'('SLOT'), '$VAR'('ARG1'), '$VAR'('ARG'))))), 'BaseKB', vStrDef).
  9376 112:exactlyAssertedEL_with_vars(expansion, relationExistsMinAll, implies(isa('$VAR'('ARG2'), (':ARG3')), thereExistAtLeast((':ARG4'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), (':ARG2')), holds((':ARG1'), '$VAR'('ARG'), '$VAR'('ARG2'))))), 'BaseKB', vStrDef).
  9382 112:exactlyAssertedEL_with_vars(expansion, relationAllExistsMin, implies(isa('$VAR'('ARG1'), (':ARG2')), thereExistAtLeast((':ARG4'), '$VAR'('ARG'), and(isa('$VAR'('ARG'), (':ARG3')), holds((':ARG1'), '$VAR'('ARG1'), '$VAR'('ARG'))))), 'BaseKB', vStrDef).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo\typesystem\mpred_type_wff.pl
  617 25:    member(OtherExists,[atleast,atmost,exactly]),
  620 25:is_quant_f(Q):- arg(_,v(atleast,atmost,exactly,all,exists),Q).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\prolog-tip\logicmoo_clif.pl
  173 7:%=    atleast(X,N,A)
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\attvar_dict_existentials.pl
  313 16:f2:- assert_ex(atleast(1,X,(male(X),isNamed(X,"Johnathan")))).
  319 16:f5:- assert_ex(atleast(1,X,(male(X),isNamed(X,"Joe")))).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\attvar_existentials.pfc
  60 20:f(1.2):- assert_ex(atleast(1,X,(man(X),isNamed(X,"John")))).   % constraining by identity relly meant only 1
  64 20:f(2.2):- assert_ex(atleast(1,X,(man(X),isNamed(X,"Joe")))).   % constraining by identity relly meant only 1
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\attvar_existentials.pl
  60 20:f(1.2):- assert_ex(atleast(1,X,(man(X),isNamed(X,"John")))).   % constraining by identity relly meant only 1
  64 20:f(2.2):- assert_ex(atleast(1,X,(man(X),isNamed(X,"Joe")))).   % constraining by identity relly meant only 1
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\boxlog_sanity_01.pfc.pl
  96 16::- test_boxlog(atleast(1,X,man(X))).
  102 16::- test_boxlog(atleast(3,X,man(X))).
  391 16::- test_boxlog(atleast(2,X,man(X))=>exists(G,god(G))).
  550 16::- test_boxlog(atleast(4,X, puppy(X) & cute(X))).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\fol_cardinaity_axiomitized_01.pfc.pl
  78 9:containsAtLeastOneUnique(paper1,paper2) <->
  96 17:     & ~containsAtLeastOneUnique(paper,scratchpad))
  129 15:   ( ~containsAtLeastOneUnique(paper1,paper2)
  130 17:     & ~containsAtLeastOneUnique(paper2,paper1)
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\sanity_at_least_most_exactly_01.pfc.pl
  33 58:testable_quants(X,Fml,Q,Name):-member(QF,[exactly,atmost,atleast]),member(QN,[0,1,2,3,5,10]),Q=..[QF,QN,X,Fml],atom_concat(QF,QN,Name).
  40 43::- add_test(least1, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea))))).
  41 43::- add_test(least3, (all([[Human,tHuman]],atleast(3,[[L3Dream,tDream]],hasDream(Human,L3Dream))))).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\sanity_at_least_most_exactly_02.pfc.pl
  32 58:testable_quants(X,Fml,Q,Name):-member(QF,[exactly,atmost,atleast]),member(QN,[0,1,2,3,5,10]),Q=..[QF,QN,X,Fml],atom_concat(QF,QN,Name).
  38 43::- add_test(least3, (all([[Human,tHuman]],atleast(3,[[L3Dream,tDream]],hasDream(Human,L3Dream))))).
  41 43::- add_test(least1, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea))))).
  50 43::- add_test(least2, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream))))).
  55 43::- add_test(least0, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar))))).
  60 43::- add_test(least3, (all([[Human,tHuman]],atleast(3,[[L3Dream,tDream]],hasDream(Human,L3Dream))))).
  65 44::- add_test(least1b, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea) v controls(Human,LeastIdea))))).
  70 44::- add_test(least2b, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream) v controls(Human,L2Dream))))).
  75 44::- add_test(least0b, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar) v controls(Human,L0Dollar))))).
  81 44::- add_test(least1c, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea) => controls(Human,LeastIdea))))).
  86 44::- add_test(least2c, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream) => controls(Human,L2Dream))))).
  92 44::- add_test(least0c, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar) => controls(Human,L0Dollar))))).
  99 44::- add_test(least0a, (all([[Human,tHuman]],atleast(0,[[L0Dollar,tDollar]],hasDollar(Human,L0Dollar)&controls(Human,L0Dollar))))).
  104 44::- add_test(least2a, (all([[Human,tHuman]],atleast(2,[[L2Dream,tDream]],hasDream(Human,L2Dream)&controls(Human,L2Dream))))).
  110 44::- add_test(least1a, (all([[Human,tHuman]],atleast(1,[[LeastIdea,tIdea]],hasIdea(Human,LeastIdea)&controls(Human,LeastIdea))))).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\sanity_atleast_01.pfc.pl
  26 42::- add_test(t121, (all([[Human,tAnimal]],atleast(1,[[Heart,tHeart]],hasOrgan(Human,Heart))))).
  27 21::- add_test(t121a, (atleast(1,[[Heart,tHeart]],all([[Human,tAnimal]],hasOrgan(Human,Heart))))).
  32 10:      => atleast(1,Heart,(isa(Heart,tHeart) & hasOrgan(Human,Heart)))))).
  35 3: (atleast(1,Heart,
  43 4:   atleast(1,Heart,
  48 3:  atleast(1,Heart,
  56 7:      atleast(1, Heart, (isa(Heart,tHeart)  =>  hasOrgan(Human,Heart)))))).
  60 4:  (atleast(1, Heart,
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\fol\tiny_kb_cache
  959 32:tiny_kb(argQuotedIsa(thereExistAtLeast,3,ftSentenceAssertible),iUniversalVocabularyMt,vStrDef).
  960 32:tiny_kb(argQuotedIsa(thereExistAtLeast,2,ftVar),iUniversalVocabularyMt,vStrDef).
  1124 26:tiny_kb(argIsa(thereExistAtLeast,1,ftPositiveInteger),iUniversalVocabularyMt,vStrDef).
  2024 49:tiny_kb(vExistentialQuantifierBounded(thereExistAtLeast),iUniversalVocabularyMt,vStrDef).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\pfc\pfc_sanity.pl.txt
  298 1:atLeastOneParent(X,Y) :- (motherOf(Z,X), motherOf(Z,Y) ; fatherOf(W,X), fatherOf(W,Y) ).
  299 1:atLeastTwoParents(X,Y) :- (motherOf(Z,X), motherOf(Z,Y) , fatherOf(W,X), fatherOf(W,Y) ).
  300 21:stepSibling(X,Y) :- atLeastOneParent(X,Y), \+atLeastTwoParents(X,Y), \+pet(X), \+pet(Y), X \= Y.
  300 46:stepSibling(X,Y) :- atLeastOneParent(X,Y), \+atLeastTwoParents(X,Y), \+pet(X), \+pet(Y), X \= Y.
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_base\t\examples\pfc\pfc_test1.pl.txt
  182 1:atLeastOneParent(X,Y) :- (motherOf(Z,X), motherOf(Z,Y) ; fatherOf(W,X), fatherOf(W,Y) ).
  183 1:atLeastTwoParents(X,Y) :- (motherOf(Z,X), motherOf(Z,Y) , fatherOf(W,X), fatherOf(W,Y) ).
  184 21:stepSibling(X,Y) :- atLeastOneParent(X,Y), \+atLeastTwoParents(X,Y), \+pet(X), \+pet(Y), X \= Y.
  184 46:stepSibling(X,Y) :- atLeastOneParent(X,Y), \+atLeastTwoParents(X,Y), \+pet(X), \+pet(Y), X \= Y.
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\abox.pl
  942 11:a5obj_add_atleast(X,Obj,Min,Role,N_Obj) :- 
  944 18:        b5nf_add_atleast(NF,Min,Role,N_NF).
  3209 22:        a5rev_getall_atleast_one_role(Role, nfi, Objs),
  3229 17:%% a5rev_getall_atleast_one_role(+RoleName, +NFx, -Objs).
  3230 14:a5rev_getall_atleast_one_role(Role, nfi, Objs) :-
  3231 24:	b5par_aa_parse(atleast(1,Role),(c,0),[],FI,BQ,RQ),
  3426 21:a5rev_is_in_p(Name, atleast(_, Role)) :-
  6120 5:%%  Atleast in case of disjunctions a local check is required.
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\backmacros
  8 17:		atleast(N,R) and atmost(N,R)).
  11 17:		atleast(1, Role and range(ValueRestriction))).
  14 17:		atleast(1, Role)).
  18 21:		and atleast(1, Role)
  27 11:backmacro(atleast(N, Role, ValueRestriction) *=
  28 17:		atleast(N, Role and range(ValueRestriction))).
  34 17:		atleast(N,R and range(C))
  38 17:		atleast(1,Role1 and Role2)).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\BACK-V5.ps
  695 37:(:)g(:)h(:)40 b FS(53)263 2116 y FT(atleast)28 b FM(:)23 b(:)f(:)h(:)f(:)g(:)
  1105 4:FT(atleast)p FS(\(n,)p FE(r)q FS(,)p FE(c)p FS(\))i(or)f FT(atmost)p
  1168 20:b(:)p FA(<)62 b Fz(atleast)p FB(\(1,produces,product\))269
  1953 44:FQ(B)o(A)o(CK)i FS(with)f(the)g(meaning)f(`atleast\(1,r)i(and)f
  1993 46:w(plant)147 b(:=)11 b(plant)g(and)715 2626 y(atleast\(1,produces\))h(and)715
  2000 19:b FS(17)655 199 y(atleast\(1,co)p 867 199 14 2 v 17 w(produces,toxic)p
  2005 7:425 y(atleast\(2,contains\).)245 482 y(assembled)p 439 482
  2006 39:V 16 w(product)j(:=)e(product)g(and)h(atleast\(1,contains\).)135
  2012 30:b(The)8 b(e)o(xpression)g FT(atleast)f Fx(\(1,co)p 1280 714
  2014 52:771 y FS(uses)16 b(the)h(prede\256ned)g(macro)g FT(atleast)p
  2016 62:(into)f(the)g(more)135 827 y(comple)o(x)8 b(e)o(xpression)h(`atleast\(n,r)g
  2018 57:(prede\256ned)h(macro)135 884 y(with)h(the)g(meaning)f(`atleast\(n,r\))j(and)
  2023 16:1116 y(form)f(`atleast\(n,r\))h(and)g(all\(r)n(,c\)')h(states)e(that)g(all)g
  2026 29:(,)h(the)e(e)o(xpression)g(`atleast\(n,r)h(and)f(range\(c\)\)')135
  2058 3:y(atleast\(1,uses)p 944 2497 V 16 w(up,radioacti)o(v)o(e)p
  2059 46:1218 2497 V 17 w(material\))h(and)696 2553 y(atleast\(1,co)p
  2063 45:1101 2666 V 16 w(product\))g(and)696 2723 y(atleast\(1,produces\))g(and)696
  2106 23:(prede\256ned)h(as)f(`atleast\(1,r)g(and)195 1456 y(range\(c\)\)'.)20
  2505 3:y(atleast\(1,responsible\).)195 980 y(As)h(should)g(be)g(ob)o(vious)g
  2765 18:567 1502 y(and)g(atleast\(1,in)n(v\(co)p 896 1502 V 14 w(produces\)\))567
  2770 14:1702 y(and)h(atleast\(1,in)n(v\(prim\(co)p 989 1702 V 13 w(produces\)\))f
  2783 58:V 14 w(of)p 773 2248 V 14 w(type,type\))567 2298 y(and)g(atleast\(1,is)p
  2786 45:816 2398 V 14 w(at,place\))567 2447 y(and)g(atleast\(1,located)p
  2789 18:567 2597 y(and)g(atleast\(1,co)p 830 2597 V 15 w(produces\))567
  2798 30:14 w(waste\))507 249 y(and)g(atleast\(1,co)p 770 249 V 15 w(produces)f(and)g
  2805 51:w(of)p 713 578 V 14 w(type,type\))507 628 y(and)g(atleast\(1,is)p
  2808 43:756 728 V 14 w(at,place\))507 778 y(and)g(atleast\(1,located)p
  2819 43:(v\(contains\),product\))507 1356 y(and)g(atleast\(3,in)n(v\(contains\)\))507
  2823 49:(range\(product\),)f(product\))507 1555 y(and)i(atleast\(3,trans\(in)n
  2830 14:1854 y(and)g(atleast\(1,in)n(v\(uses)p 868 1854 V 14 w(up\)\))507
  2838 43:(v\(contains\),product\))507 2383 y(and)g(atleast\(1,in)n(v\(contains\)\))507
  2842 14:2582 y(and)i(atleast\(1,trans\(in)n(v\(directly)p 1020 2582
  3111 9:(ything,atleast\(2,contains\))g(and)g(all\(contains,material\)])195
  3447 11:1113 y FT(atleast)p FS(\(12,r\))g FT(and)g(all)p FS(\(r)n(,d\))g(?)p
  3448 11:FM(<)g FT(atleast)p FS(\(12,s\).)502 1169 y(c1)421 b(?)p FM(<)12
  3799 26:b(MANU)n(AL)195 199 y FG(atleast)1044 b(Concept)16 b(T)-5 b(erm)197
  3802 4:FT(atleast)p FS(\()p FJ(h)p FQ(INTEGER)10 b FJ(i)p FS(,)p FJ(h)p
  3804 10:b([)p Fl(atleast)q FK(\()p FM(n;)8 b FE(r)q FK(\)])-8 b(])789
  3810 43:2 v 16 w(plant)10 b(:=)h(plant)g FT(and)h(atleast)p FS(\(1,product\))f
  3812 12:b(4:)108 b(atleast)16 b FS(can)h(be)g(used)f(an)o(ywhere)i(in)e(ABox)g
  3818 40:55 60 bop 1649 50 a FS(55)135 199 y FG(atleast)1235 b(Macr)o(o)137
  3821 15:b FB(::=)g Fz(atleast)p FB(\()p Ff(h)p FC(INTEGER)7 b Ff(i)p
  3823 60:Ff(i)p FB(\))137 590 y FT(Semantics:)93 b FK([)-8 b([)p Fl(atleast)q
  3832 10:FT(and)h(atleast)p FS(\(2,contains,material\).)137 953 y FT(V)-5
  3834 53:1073 y FT(Idiosyncrasy:)41 b FS(The)14 b(macro)g FT(atleast)p
  3836 4:FT(atleast)p FS(\(n,)p FE(r)h FT(and)442 1130 y(range)p FS(\()p
  3852 43:2 v 16 w(plant)10 b(:=)h(plant)g FT(and)h(atleast)p FS(\(1,product\))f
  3857 24:y FT(See)h(also:)136 b(atleast)p FS(,)12 b FT(exactly)p eop
  3878 56:FS(\()p FE(c)p FS(\)\))137 1251 y FT(See)g(also:)136 b(atleast)p
  4021 10:FT(and)f(atleast)p FS(\(1,R\)\).)442 937 y FT(backmacr)o(o)p
  4022 44:FS(\(min\(N,R\))6 b FJ(\003)15 b FK(=)c FT(atleast)p FS(\(N,R\)\).)137
  4480 27:FS(\))612 1332 y FT(and)g(atleast)p FS(\(2,r\))612 1388 y FT(and)g(atmost)p
  4530 24:1219 y(c5)i(:=)21 b FT(atleast)p FS(\(1,r1\).)502 1276 y(backretrie)o(v)o
  4532 4:FT(atleast)p FS(\(1,r1\),)p FT(all)p FS(\(r1,p3\)])197 1453
  4631 4:FT(atleast)p FS(\(n,r\))h FT(and)502 1174 y(atmost)p FS(\(n,r\).)50
  4633 29:(xpanded)h(to)502 1230 y FT(atleast)p FS(\(n,r)12 b FT(and)g(range)p
  4635 45:FS(\(c\)\).)197 1351 y FT(See)g(also:)136 b(atleast)p FS(,)12
  4725 52:FS(z\).)502 1828 y(yes)502 1884 y(?-)g(x)f(?:)h FT(atleast)p
  4728 16:FS(x)g(::)e FT(atleast)p FS(\(2,r\)\).)502 2166 y(ERR)n(OR)36
  4729 6:b FT(atleast)p FS(\(2,r\))12 b(was)f(not)g(told)f(for)i(x)502
  4816 46:FT(Example:)118 b(incoher)o(ent)p FS(\()p FT(atleast)p FS(\(2,r\))15
  4818 55:FS(\(ener)o(gy)i FT(and)e FS(material\).)442 993 y FT(atleast)p
  4978 10:FT(and)g(atleast)p FS(\(2,r\))623 1445 y FT(and)g FS(r)g(:)k(uc\(24\))623
  5058 42:FE(c)h FS(:)p FM(<)f FT(anything)h(and)g(atleast)p FS(\(1,r\),)h(than)e
  5127 10:937 y FT(atleast)p FS(\(2,r\))h FT(and)g(atmost)p FS(\(3,s\))g
  5244 51:23 b(Thus)13 b(a)h(query)f FT(getall)p FS(\()p FT(atleast)p
  5405 12:(into)e FT(atleast)p FS(\(1,)p FE(r)1472 1193 y FC(1)1502 1186
  5490 22:(xpanded)h(into)f FT(atleast)p FS(\(1,)p FE(r)q FS(\).)42 b(The)502
  5492 39:(internally)f(e)o(xpanded)i(into)f FT(atleast)p FS(\(1,)p FE(r)h
  5494 37:b(all)p FS(,)11 b FT(no)p FS(,)h FT(atleast)p eop
  5577 4:FT(atleast)p FS(\(12,s\),)p FT(atleast)p FS(\(12,r\))15 b FT(and)d(all)p
  5577 32:FT(atleast)p FS(\(12,s\),)p FT(atleast)p FS(\(12,r\))15 b FT(and)d(all)p
  6176 37:FJ(i)p FS(\))742 751 y FJ(j)50 b FT(atleast)p FS(\()p FJ(h)p
  6253 14:FJ(j)49 b FT(atleast)p FS(\()p FJ(h)p FQ(INTEGER)9 b FJ(i)p
  6283 27:y FS(\))23 b FJ(j)11 b FT(atleast)p FS(\(n,)p FE(r)q FS(,)p
  6325 10:b([)p Fl(atleast)q FK(\()p FM(n;)8 b FE(r)q FM(;)g FE(c)p FK(\)])-8
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\btl.pl
  791 20:b5par_analyze_term(atleast(N,Role),Mode,(c,0),PN,Vartermin,Vartermout,Namesin,Namesout,FIin,FIout) :-
  794 36:	b5par_analyze_concept_term(atleast(N,Role),Mode,(c,0),PN,Vartermin,Vartermout,Namesin,Namesout,FIin,FIout).
  918 28:b5par_analyze_concept_term(atleast(N,Role),Mode,(c,0),PN,Varterm,[atleast(N,Key)|Varterm],Namesin,Namesout,FIin,FIout) :-
  918 67:b5par_analyze_concept_term(atleast(N,Role),Mode,(c,0),PN,Varterm,[atleast(N,Key)|Varterm],Namesin,Namesout,FIin,FIout) :-
  1521 25:b5par_tt_send_conc_term(atleast(N,RoleKey),CPF,CPFnew) :- !, 
  1522 18:	b5nf_add_atleast(CPF,N,RoleKey,CPFnew).
  1819 21:b5par_at_parse_term(atleast(N,R),(c,0),VKT,[atleast(N,RK)|VKT],atleast(N,RDef),Namesin,Namesout,FIin,FIout) :-
  1819 45:b5par_at_parse_term(atleast(N,R),(c,0),VKT,[atleast(N,RK)|VKT],atleast(N,RDef),Namesin,Namesout,FIin,FIout) :-
  1819 64:b5par_at_parse_term(atleast(N,R),(c,0),VKT,[atleast(N,RK)|VKT],atleast(N,RDef),Namesin,Namesout,FIin,FIout) :-
  5839 11:b5par_da3(atleast(N,Role),conc,Triple) :-
  5842 43:	    Triple = wrong_argument(wrong_atleast_number(atleast(N,Role)))
  5842 58:	    Triple = wrong_argument(wrong_atleast_number(atleast(N,Role)))
  5847 26:	Triple = compute(atleast(N,Role))-conc-term)).
  6310 35:b5par_transform_term_to_key((c,0),atleast(N,R),Key) :-
  6313 41:	b5par_introduce_internal((c,0),[atleast(N,RKey)],Key,_).	
  6939 23:b5desc_desc_conc_atom(atleast(N,ROLE),atleast(N,RR)) :- 
  6939 39:b5desc_desc_conc_atom(atleast(N,ROLE),atleast(N,RR)) :- 
  7398 19:	append(I,[atleast(Min,DR)],O).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tbox1.pl
  1664 11:t5cpf_add_atleast(CPF1,Min,Role,CPF3) :-
  1665 18:	b5nf_add_atleast(CPF1,Min,Role,CPF3).
  2320 37:t5res_atomize(RES,res(atmost(Max,R),atleast(Min,R),all(R,VR),Tail)) :-
  4326 18:	b5nf_add_atleast(NF,1,Role,NF1),
  4332 18:	b5nf_add_atleast(NF,1,Role,NF1),
  4349 18:	b5nf_add_atleast(NF,N,Role,NF1),
  4354 18:	b5nf_add_atleast(NF,1,Role,NF1),
  4360 18:	b5nf_add_atleast(NF,1,Role,NF1),
  4969 10:b5nf_add_atleast(NF1,Min,Role,NF3) :-
  4984 10:b5nf_add_atleast(NF1,Min,Role,NF3) :-
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tbox2.pl
  2675 9:%% c := atleast(1,r) and all(r,c) --> c ?< atleast(1,r and range(c))
  2675 44:%% c := atleast(1,r) and all(r,c) --> c ?< atleast(1,r and range(c))
  2676 9:%% c := atleast(1,r) and d --> c ?< atleast(1,r and domain(d))
  2676 37:%% c := atleast(1,r) and d --> c ?< atleast(1,r and domain(d))
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\cmk.abox
  41 23:	c3 :=   c and atleast(2, r),
  43 39:	c5 :=   c and all(s3, d2) and atleast(1,r), 
  82 19:	father := atleast(1,child) and not(female),
  83 19:	mother := atleast(1,child) and female,
  120 30:	backtell(o3 :: c and atleast(1,r)),
  129 31:	\+ backask(c1_2obj ?: atleast(1,r)),
  144 26:	backask(cobj1 ?: atleast(1,r)),
  221 30:%%  up-propgation: ... C5obj:atleast(2,r)
  291 16:%% Propagating atleast(2,r) via o2 to o1.
  296 48:	backtell(o1 :: c and all(cyc, all(cyc, atleast(2,r)))),
  355 21:%%  but c3 := c and atleast(2,r) => X isa nothing.
  520 17:	\+ x ?: atleast(1,r) noibox,
  532 17:	\+ z ?: atleast(1,inv(r)),
  719 23:		      atleast(3,raeder,rad) and
  720 23:		      atleast(1,aufbau,ladeflaeche),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\displaytest.pl
  93 33:	backretrieve([self] for atleast(1,r) and atmost(2,r) and all(r,conc1) and oneof([a,b,c,d,e])).
  105 34:	backretrieve([self] for [atleast(1,r) and atmost(2,r) and all(r,conc1)
  179 41:	backretrieve([self] for  getall(atleast(1,r) and atmost(1,r) and all(r,conc1) and oneof([a,b,c,d,e,o]))).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\ibox_tests.pl
  96 15:    c1   :=   atleast(4,r1),
  99 5:    atleast(2,r1)  => atmost(4,r2),
  102 5:    atleast(2,r1) ?< c2,
  134 15:    c1   :=   atleast(6,r) and atmost(7,r),
  136 5:    atleast(5,r) => atleast(10,r),
  136 21:    atleast(5,r) => atleast(10,r),
  153 15:    no   :=   atleast(1,r) and atmost(0,r),
  176 15:    no   :=   atleast(1,r) and atmost(0,r),
  198 15:    no   :=   atleast(1,r) and atmost(0,r),
  200 5:    atleast(1,s)   =>   atmost(0,s),
  203 5:    atleast(1,s) ?< no,
  240 5:    atleast(2,r)   =>   atleast(5,s) and atmost(8,s),
  240 25:    atleast(2,r)   =>   atleast(5,s) and atmost(8,s),
  241 5:    atleast(2,r)   =>   atleast(3,s) and atmost(6,s),
  241 25:    atleast(2,r)   =>   atleast(3,s) and atmost(6,s),
  244 5:    atleast(2,r) ?< atleast(5,s) and atmost(6,s),
  244 21:    atleast(2,r) ?< atleast(5,s) and atmost(6,s),
  281 25:     atmost(3,r)   =>   atleast(4,s),
  282 6:     atleast(4,s)  =>   atleast(6,t),
  282 25:     atleast(4,s)  =>   atleast(6,t),
  285 20:    atmost(3,r) ?< atleast(4,s) and atleast(6,t),
  285 37:    atmost(3,r) ?< atleast(4,s) and atleast(6,t),
  300 15:    no   :=   atleast(1,r) and atmost(0,r),
  321 15:    no   :=   atleast(1,t) and atmost(0,t),
  323 24:    atmost(3,r)   =>   atleast(4,s),
  324 5:    atleast(4,s)  =>   atleast(4,r),
  324 24:    atleast(4,s)  =>   atleast(4,r),
  342 15:    no   :=   atleast(1,t) and atmost(0,t),
  344 24:    atmost(3,r)   =>   atleast(4,s),
  345 5:    atleast(2,s)  =>   atleast(4,r),
  345 24:    atleast(2,s)  =>   atleast(4,r),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\jantest.abox
  43 22:	c1 := p1 and atleast(2,r4),
  44 22:	c2 := p1 and atleast(3,r4),
  81 15:	o3 :: atleast(1,r1),
  97 15:	o5 :: atleast(1,r3),
  120 22:        o7 ?: p1 and atleast(1,r2) noibox,  
  137 22:        o9 ?: p1 and atleast(3,r2),  %% ok
  155 23:        o13 ?: p1 and atleast(3,r2) noibox ,  %% ok
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\jantest.iabox
  52 20:     	c1      := atleast(2,r1),
  65 9:     	atleast(1,r1) => atmost(2,r2),
  69 50:     	atmost(2,r4) and all(r1,p4)  =>  all(r1, atleast(4,r2)).
  90 43:     	o2 :: c1,               %% c1 ::: atleast(2,r1)         
  92 42:     	o2 ?: atmost(2,r2),           %% atleast(1,r1) => atmost(2,r2)
  100 15:     	o3 :: atleast(1,r1),           
  101 39:     	o3 ?: atmost(2,r2),        %% atleast(1,r1) => atmost(2,r2)
  133 22:     	o7 ?: p1 and atleast(1,r1),  
  136 39:     	o7 ?: atmost(2,r2),        %% atleast(1,r1) => atmost(2,r2)
  144 50:     	o9 :: c1 and r1: (o8 :: p1),   %% c1 ::: atleast(2,r1)
  146 39:     	o9 ?: atmost(2,r2),        %% atleast(1,r1) => atmost(2,r2) 
  174 16:     	o15 ?: atleast(2,r1) and all(r1,p3),
  180 16:     	o13 ?: atleast(4,r2),      %% atmost(2,r4) and all(r1,p4) 
  181 58:                                     %%      =>  all(r1, atleast(4,r2)).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\jantest.ibox-abox-rev
  52 9:	atleast(1,r) => p2,  %% keep 2nd i-link when 1st is deleted
  71 9:	atleast(1,r) => p2, 
  90 15:        c1 := atleast(1,r),
  92 9:	atleast(1,r) => p2, 
  135 9:	atleast(1,r) => p3,
  153 14:	x ?: atleast(2,r),
  169 14:	z ?: atleast(3,r1),
  181 9:        atleast(1,r) => p2,
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\jantest.tbox
  82 24:    backtell(no   :=   atleast(1,r2)  and atmost(0,r2)),
  87 31:    backtell(c4   :=   c3 and atleast(1,r1)),
  109 24:    backtell(p1   :<   atleast(1,r3)),
  111 24:    backtell(no   :=   atleast(1,r2) and atmost(0,r2)),
  116 31:    backtell(c4   :=   c3 and atleast(1,r1)),
  160 26:    backtell(  p1   :<   atleast(1,r)),
  161 26:    backtell(  p2   :<   atleast(2,r)),
  184 27:     backtell(  c1   :=   atleast(1,r) and atmost(3,r)),
  185 27:     backtell(  c2   :=   atleast(2,r) and atmost(4,r)),
  189 26:     backask(   subsumes(atleast(2,r) and atmost(3,r), c3)),
  206 27:     backtell(  c1   :=   atleast(1,r) and atmost(2,r)),
  207 27:     backtell(  c2   :=   atleast(3,r) and atmost(4,r)),
  240 21:%%   Propagation of atleast restrictions to superroles
  249 27:     backtell(  c1   :=   atleast(1, r2)),
  252 26:     backask(   subsumes(atleast(1,r1), c1)),
  272 27:     backtell(  c1   :=   atleast(2, r4)),
  277 26:     backask(   subsumes(atleast(2,r1), c1)),
  296 27:     backtell(  no   :=   atleast(1,r)  and atmost(0,r)),
  302 27:     backtell(  c1   :=   atleast(1,r3)),
  321 27:     backtell(  p1   :<   atleast(1,r1)),
  329 27:     backtell(  c3   :=   atleast(1,r4)),
  348 27:     backtell(  c1   :=   atleast(1,r1)),
  353 27:     backtell(  c3   :=   atleast(1,r2)),      %% --> disjoint(c3,c1)
  374 27:     backtell(  c1   :<   atleast(1,r)),
  391 27:     backtell(  c1   :=   atleast(1,r1)),      %% c1 < p1
  393 27:     backtell(  c2   :=   atleast(1,r2)),      %% c2 < c1 <p1
  416 27:     backtell(  c1   :=   atleast(1,r1)),
  417 27:     backtell(  c2   :=   atleast(1,r2)),
  448 27:     backtell(  c1   :=   atleast(1,r1)),          %% c1 < p1
  470 27:     backtell(  p1   :<   atleast(2, r1)),
  476 27:     backtell(  c1   :=   atleast(1,r2)),
  519 27:     backtell(  c1   :=   atleast(1,r1)),
  540 27:     backtell(  no   :=   atleast(1,r)  and atmost(0,r)),
  559 27:     backtell(  p1   :<   atleast(2,r1)),
  621 27:     backtell(  p1   :<   atleast(2,r1)),
  622 27:     backtell(  p2   :<   atleast(4,r1)),
  652 27:     backtell(  c1   :=   atleast(1,r2) and atleast(1,r3)),
  652 45:     backtell(  c1   :=   atleast(1,r2) and atleast(1,r3)),
  656 26:     backask(   subsumes(atleast(2,r1),c1)),
  671 23:     backtell(  c1 := atleast(1,r1)),                 %% --> c1 < p1
  721 27:     backtell(  c3   :=   atleast(2, r)),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\jantest.tbox-abox-rev
  153 18:     d  := c and atleast(1,r),
  175 18:     d  := c and atleast(1,r),
  779 27:    backretrieve(X=getall(atleast(1,hasAbnormalPart))), X == [[car1]],
  797 25:    abnormalCar     :=	atleast(1,hasPart and range(all(temp, gt(50)))),
  825 33:    	abnormalCar     :=	atleast(1,hasAbnormalPart),
  888 14:	c := atleast(1,r),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\macro_tests.pl
  6 19:	backmacro(atleast5(R) *= atleast(5,R)),
  6 34:	backmacro(atleast5(R) *= atleast(5,R)),
  7 45:	backmacro(all1(R,C) *= all(R,C) and atleast(1,R)),
  24 16:	c11 ?< atleast(5,r),
  48 16:	c41 :< atleast5(r),
  49 16:	c41 ?< atleast(5,r),
  51 16:	c42 ?< atleast(1,r) and all(r,c),
  52 23:	c43 := all1(r,atleast5(r)),
  53 22:	c43 ?< all(r,atleast(3,r)),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\retrievaltest.pl
  98 37:	backretrieve(X = [self] for atleast(1,r) and atmost(2,r) and all(r,conc1) and oneof([a,b,c,d,e])),
  114 38:	backretrieve(X = [self] for [atleast(1,r) and atmost(2,r) and all(r,conc1)
  209 45:	backretrieve(X = [self] for  getall(atleast(1,r) and atmost(1,r) and all(r,conc1) and oneof([a,b,c,d,e,o]))),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\revision_tests.pl
  45 17:	atl1 := atleast(3,r1),
  106 17:	atl1 ?< atleast(3,r3),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\role_tests.pl
  150 26:	\+ backask(o2 ?: atleast(1,r1domain)),
  151 26:	\+ backask(o1 ?: atleast(1,r12)),
  174 24:	backask(o04 ?: atleast(5,tr1)),
  175 24:	backask(o01 ?: atleast(4,inv(tr1))),
  176 23:	backask(o1 ?: atleast(3,tr1) and atleast(3,inv(tr1))),
  176 42:	backask(o1 ?: atleast(3,tr1) and atleast(3,inv(tr1))),
  206 23:	backask(o3 ?: atleast(3,c123)),
  249 23:	backask(o1 ?: atleast(3,tr1)),
  250 26:	\+ backask(o2 ?: atleast(1,tr1)),
  251 23:	backask(o2 ?: atleast(1,ir1)),
  252 25:	\+backask(o2 ?: atleast(2,ir1)),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\Back52\tests\value_tests.pl
  98 15:	o1 ?: atleast(1,r1r2aset),
  99 15:	o4 ?: atleast(2,r1d_closed),
  100 15:	o4 ?: atleast(1,r1a1),
  101 18:	\+ o4 ?: atleast(2,r1a1),
  102 15:	o4 ?: atleast(1,r1aintersection1),
  103 18:	\+ o4 ?: atleast(2,r1aintersection1),
  150 15:	o1 ?: atleast(1,rnr),
  151 15:	o1 ?: atleast(1,rnr3),
  152 15:	o1 ?: atleast(1,rnr6),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\MaLARea\bin\NumberVars
  1264 8396:���
��륐��&�������9T$��%����Í�������'�������L$QhT����R�����T$����%������Ð�t&���
���������������j�v�����É��j�T$R��R�������H����u1ҊT$�Ѓ�Ív�S���\$K���t���jK��������u��[Í�&����VSP�\$K����t$t'�
���������������1ҊRK���F�����u�X[^Ít&�VSQ�\$K����t$t'�
���������������1ҊRK���F�����u�Z[^Ít&�S���\$���u��[Í�������'������%����PC��������u��Ӑ�t&�VSS�t$�^����t���j K��������u��V�x���[^Ð�������������jP������������$���������Ív���'�������T$h`�
j����o�����Ív�S������\$S�'���XZ��$����RS�������j�Sj�j����������t6��h@N����Y���P�5������������������Ę���[Ð�
�����
���������Q�������ƐU��WV1�S������g������M��������������E�)���9�s�����E��)����9�r��[^_]�U����]�����������u�}���������)�����������u��J����]�u�}��]Ð������������U��S����^��^���t�v���'�������Ћ���u�X[]�U��S�/����Ó������)�����[]������������������������� ( ~p : ~p) � (! ~p : ~p) � (? ~p : ~p) � (~p != ~p) � (~p & ~p) � (~p <=> ~p) � (~p => ~p) � (~p | ~p) � ~ (�!�$�$number_vars/0_$aux1�&�) �+�++�--�.�..�/home/urban/TPTPWorld.old1/ServiceTools/CompareClauses/NumberVars.pl�:�<=�<=>�<~>�=�=>�?�char_conversion�end_of_file�fx�fy�number_vars�on�portray�write_fof�xf�xfx�xfy�|�~�~&�~=�~|�$use_all_pl_bips�/home/spa/work/maint/gprolog/gprolog-1.2.18/src/src/BipsPl/all_pl_bips.pl�$use_all_fd_bips�/build/buildd/gprolog-1.2.18/src/src/BipsFD/all_fd_bips.pl� ? ��$$exec_cmd_line_goal/1_$aux1�$$exec_query/2_$aux1�$$exec_query/2_$aux2�$$read_query/2_$aux1�$$reinit_after_exception/0_$aux1�$$remove_underscore_vars/2_$aux1�$$top_level2/0_$aux1�$$top_level2/0_$aux2�$$top_level2/0_$aux3�$$top_level2/0_$aux4�$$top_level2/0_$aux5�$$write_indicator/0_$aux1�$$write_indicator/0_$aux2�$$write_solution/3_$aux1�$VARNAME�$all_solutions�$break/0_$aux1�$break/0_$aux2�$cmd_line_entry_goal�$cmd_line_query_goal�$dbg_indicator�$debug_mode�$debug_next�$exec_cmd1�$exec_cmd_err�$exec_cmd_line_entry_goals�$exec_cmd_line_goal�$exec_query�$read_query�$read_return�$reinit_after_exception�$remove_underscore_vars�$set_query_vars_names�$top_level1�$top_level2�$top_level_abort�$top_level_exception�$top_level_stop�$user_prompt�$write_indicator�$write_solution�$write_solution1�(~d ms) �/home/spa/work/maint/gprolog/gprolog-1.2.18/src/src/BipsPl/top_level.pl�=�>�Action (; for next solution, a for all solutions, RET to stop) ? �By Daniel Diaz�_�break�command-line�debug�end_of_file�end_of_term�eof�exclude�execution aborted~n�f�false�is�namevars�no�nodebug�numbervars�prolog_copyright�prolog_name�prolog_version�quoted�t�top_level�top_level_input�top_level_output�trace�true�variable_names�yes�{~a,~d}~n�{~a}~n�{~d}~n�| ?- �~N�~Nuncaught exception: �~Nwarning: command-line goal ~q caused exception: ~q~n�~Nwarning: command-line goal ~q failed~n�~N{Break Level ~d}~n�~N{End Break}~n�~N~a ~a~n�~N~n�~a.~n�~a~n�~ntrue�~n~a = �                    �   +  spy this     *  spy conditionally~n�   -  nospy this   L  listing~n�   @  command      <  set printdepth~n�   a  abort        b  break~n�   g  ancestors    A  alternatives~n�   n  nodebug      =  debugging~n�   p  print        e  exception~n�   r  retry        f  fail~n�   s  skip         G  goto~n�   u  unify        .  father file~n�   w  write        d  display~n�   ~a/~d~n�  h/? help         W  WAM debugger~n� � ? ��$�$$debug_call/2_$aux1�$$debug_call1/8_$aux1�$$debug_call_port/5_$aux1�$$debug_disp_alt1/3_$aux1�$$debug_disp_alt1/3_$aux2�$$debug_exec_cmd/6_$aux1�$$debug_exec_cmd/6_$aux2�$$debug_exec_cmd/6_$aux3�$$debug_exec_cmd/6_$aux4�$$debug_exec_cmd/6_$aux5�$$debug_exec_cmd/6_$aux6�$$debug_exec_cmd/6_$aux7�$$debug_list_of_pred1/4_$aux1�$$debug_list_of_pred1/4_$aux2�$$debug_list_of_pred1/4_$aux3�$$debug_port_ignore/4_$aux1�$$debug_port_ignore/4_$aux2�$$debug_port_ignore/4_$aux3�$$debug_port_prompt/6_$aux1�$$debug_spy_reset/1_$aux1�$$debug_spy_set/2_$aux1�$$debug_write_goal/4_$aux1�$$spy_test_condition/3_$aux1�$$spypoint_condition1/3_$aux1�$catch_internal1�$choice_point_arg�$choice_point_info�$debug_�$debug_ball�$debug_call�$debug_call1�$debug_call_port�$debug_check_bip�$debug_depth�$debug_disp_alt�$debug_disp_alt1�$debug_disp_alt2�$debug_disp_alternatives�$debug_disp_alternatives1�$debug_disp_anc_lst�$debug_disp_anc_lst1�$debug_disp_help�$debug_end_call�$debug_exception_port�$debug_exec_cmd�$debug_info�$debug_is_debug_predicate�$debug_is_not_leashed�$debug_leash�$debug_list_of_pred�$debug_list_of_pred1�$debug_mode�$debug_next�$debug_port�$debug_port1�$debug_port2�$debug_port_ignore�$debug_port_mask�$debug_port_pretty�$debug_port_prompt�$debug_read_cmd�$debug_read_integer�$debug_skip�$debug_spy_point�$debug_spy_reset�$debug_spy_set�$debug_switch_off�$debug_switch_on�$debug_unify�$debug_work�$debug_write_goal�$has_no_spy_point�$has_spy_point�$init_debugger�$leash_make_mask�$show_debugger_mode�$show_debugger_mode1�$show_leashing_info�$show_leashing_info1�$show_leashing_info2�$show_spy_points�$show_undefined_action�$show_undefined_action1�$spy_test_condition�$spypoint_condition1�$trail_handler�*�+�,�-�.�/�/home/spa/work/maint/gprolog/gprolog-1.2.18/src/src/BipsPl/debugger.pl�<�=�?�@�A�All spypoints removed�Alternatives:�Ancestors:�Call: �Command: �Debugging commands:~n~n�Exception raised: ~q~n�Exception: �Exit: �Fail: �G�Goal,Port,Test: �Head: �Inovcation nb: �L�No leashing�Option not applicable at this port�Print Depth: �RET/c creep        l  leap ~n�Redo: �Spypoint placed on�Spypoint removed from�Spypoints:�The debugger is switched off�The debugger will first creep -- �The debugger will first leap -- �There is already a spypoint on�There is no spypoint on�Undefined predicates will �Unknown command (type h for help)�Using leashing stopping at �W�Warning: The predicate ~a/~d is undefined~n�Warning: spy ~a/~w - no matching predicate~n�Warning: ~w - exception raised ~w~n�Warning: ~w - goal failed~n�] ports�a�any�b�built_in�built_in_fd�c�call�callable�cannot find any info on ~a/~d~n�d�debug�debugger_exec_cmd�debugger_input�debugger_output�debugging�display a warning message and fail�e�error�exception�exit�f�fail�false�format�full�g�h�half�l�leash�leash_ports�loose�max_arity�max_depth�n�native code predicate ~a/~d~n�native_code�no file information for ~a/~d~n�no_port�nodebug�none�nospy�nospyall�notrace�p�quoted�r�raise an existence_error�redo�retry�s�showing everything (trace)�showing spypoints (debug)�skip�spy�spy_conditional�spypoint_condition�system predicate�tight�trace�true�u�unknown�w�wam_debug�warning�~N   1 choice-point for ~w~n�~N ~a %4d %4d  ~a�~N�~N--------------~n�~a ~a/~d~n�~a/~d defined in ~a:~d~n�~c~a�$use_fd_infos�/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_infos.pl�fd_dom�fd_domain�fd_has_extra_cstr�fd_has_vector�fd_max�fd_max_integer�fd_min�fd_set_vector_max�fd_size�fd_use_vector�fd_vector_max�$$fd_labeling/2_$aux1�$$fd_labeling/2_$aux2�$$get_labeling_options2/1_$aux1�$$get_labeling_options2/1_$aux2�$$get_labeling_options2/1_$aux3�$backtracks�$extra_cstr_alt�$fd_domain�$fd_labeling�$fd_labeling1�$fd_labeling_mth�$fd_labeling_std�$fd_sel_array_from_list�$fd_sel_array_pick_var�$get_labeling_options�$get_labeling_options1�$get_labeling_options2�$indomain�$indomain_limits_alt�$indomain_max_alt�$indomain_middle_alt�$indomain_min_alt�$indomain_random_alt�$set_labeling_defaults�$use_fd_values�/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_values.pl�backtracks�false�fd_domain�fd_domain_bool�fd_labeling�fd_labeling_option�fd_labelingff�ff�first_fail�largest�limits�max�max_regret�middle�min�most_constrained�random�reorder�smallest�standard�true�value_method�variable_method����w���������0�"�i�v�������#<�#<#�#=�#=#�#=<�#=<#�#>�#>#�#>=�#>=#�#\=�#\=#�$use_fd_math�/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_math.pl�#�##�#/\�#<=>�#==>�#\�#\/�#\/\�#\<=>�#\==>�#\\/�$fd_cardinality�$fd_cardinality1�$truth_of�$use_fd_bool�+�/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_bool.pl�fd_at_least_one�fd_at_most_one�fd_cardinality�fd_only_one�#\�#<=>�#\<=>�#==>�#\==>�#/\�#\/\�#\/�#\\/�#=�#\=�#<�#>=�#>�#=<�#=#�#\=#�#<#�#>=#�#>#�#=<#�##����/'p(')�)@*�*+l+�+$use_fd_prime�/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_prime.pl�fd_not_prime�fd_prime�$create_column�$fd_element�$fd_relationc1�$lines_to_columns�$use_fd_symbolic�/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_symbolic.pl�fd_all_different�fd_atleast�fd_atmost�fd_element�fd_element_var�fd_exactly�fd_relation�fd_relationc�$cur_max�$cur_min�$fd_maximize/2_$aux1�$fd_minimize/2_$aux1�$use_fd_optim�/build/buildd/gprolog-1.2.18/src/src/BipsFD/fd_optim.pl�fd_maximize�fd_minimize�is�true������������k��`�  5�i���0h��H���,j**�min�max�dist�//�quot_rem�fd_prime_c.c��������������������Warning: Vector too small - maybe lost solutions (FD Var:_%d)
  2171 16724:5�OA������abi-note.S�../sysdeps/i386/elf/start.S�init.c�initfini.c�/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crti.S�call_gmon_start�crtstuff.c�__CTOR_LIST__�__DTOR_LIST__�__JCR_LIST__�p.0�completed.1�__do_global_dtors_aux�frame_dummy�__CTOR_END__�__DTOR_END__�__FRAME_END__�__JCR_END__�__do_global_ctors_aux�/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crtn.S�obj_begin.c�fail�Lpred1_3�Lpred1_1�st�Lpred1_2�Lpred1_sub_0�Lpred1_14�Lpred1_sub_1�Lpred1_16�Lpred1_18�Lpred1_5�Lpred1_4�fn�ta�Lpred1_7�Lpred1_6�Lpred1_9�Lpred1_8�Lpred1_11�Lpred1_10�Lpred1_13�Lpred1_12�Lpred1_15�Lpred1_17�Lpred1_19�Lpred1_20�Lpred4_1�directive_1�directive_2�directive_3�directive_4�directive_5�directive_6�directive_7�directive_8�directive_9�directive_10�directive_11�directive_12�directive_13�directive_14�directive_15�directive_16�directive_17�directive_18�directive_19�directive_20�Object_Initializer�System_Directives�User_Directives�at�obj_chain_start�obj_chain_stop�Lpred3_1�Lpred10_1�Lpred12_1�Lpred13_1�Lpred14_1�Lpred15_1�Lpred16_1�Lpred17_1�Lpred18_1�Lpred18_2�Lpred19_1�Lpred20_2�Lpred20_1�Lpred20_4�Lpred20_3�Lpred20_6�Lpred20_5�Lpred20_7�Lpred21_1�Lpred22_1�Lpred24_1�Lpred25_1�Lpred27_2�Lpred27_3�Lpred27_1�Lpred27_sub_0�Lpred27_5�Lpred27_7�Lpred27_4�Lpred27_6�Lpred28_1�Lpred29_1�Lpred30_1�Lpred31_1�Lpred31_2�Lpred31_4�Lpred31_3�Lpred33_10�Lpred33_2�Lpred33_1�Lpred33_5�Lwork0�Lpred33_3�Lpred33_9�Lpred33_7�Lpred33_4�Lpred33_6�Lpred33_8�Lpred34_1�Lpred36_1�ensure_linked�Lpred10_2�Lpred10_4�Lpred10_3�Lpred10_6�Lpred10_5�Lpred10_7�Lpred12_13�Lpred12_3�Lpred12_2�Lpred12_5�Lpred12_4�Lpred12_7�Lpred12_6�Lpred12_9�Lpred12_8�Lpred12_11�Lpred12_10�Lpred12_12�Lpred12_14�Lpred13_2�Lpred13_4�Lpred13_3�Lpred18_4�Lpred18_3�Lpred18_6�Lpred18_5�Lpred18_8�Lpred18_7�Lpred18_10�Lpred18_9�Lpred18_11�Lpred21_2�Lpred23_1�Lpred26_1�Lpred29_2�Lpred29_4�Lpred29_3�Lpred32_1�Lpred35_1�Lpred36_8�Lpred36_2�Lpred36_3�Lpred36_5�Lpred36_7�Lpred36_4�Lpred36_6�Lpred36_9�Lpred37_1�Lpred37_2�Lpred37_3�Lpred38_1�Lpred39_1�Lpred39_2�Lpred40_1�Lpred41_23�Lpred41_3�Lpred41_1�Lpred41_2�Lpred41_5�Lpred41_4�Lpred41_7�Lpred41_6�Lpred41_9�Lpred41_8�Lpred41_11�Lpred41_10�Lpred41_13�Lpred41_12�Lpred41_15�Lpred41_14�Lpred41_17�Lpred41_16�Lpred41_19�Lpred41_18�Lpred41_21�Lpred41_20�Lpred41_22�Lpred42_1�Lpred42_2�Lpred42_4�Lpred42_3�Lpred43_1�Lpred43_2�Lpred44_1�Lpred46_1�Lpred47_1�Lpred50_1�Lpred51_1�Lpred52_4�Lpred52_1�Lpred52_3�Lpred52_2�Lpred52_sub_0�Lpred52_7�Lpred52_9�Lpred52_6�Lpred52_5�Lpred52_8�Lpred52_10�Lpred52_12�Lpred52_11�Lpred52_14�Lpred52_13�Lpred52_15�Lpred53_1�Lpred54_1�Lpred55_1�Lpred57_1�Lpred60_1�Lpred60_66�Lpred60_6�Lpred60_2�Lpred60_3�Lpred60_sub_0�Lpred60_11�Lpred60_13�Lpred60_4�Lpred60_sub_1�Lpred60_17�Lpred60_19�Lpred60_5�Lpred60_sub_2�Lpred60_21�Lpred60_23�Lpred60_8�Lpred60_7�Lpred60_10�Lpred60_9�Lpred60_12�Lpred60_14�Lpred60_16�Lpred60_15�Lpred60_18�Lpred60_20�Lpred60_22�Lpred60_24�Lpred60_26�Lpred60_25�Lpred60_28�Lpred60_27�Lpred60_30�Lpred60_29�Lpred60_32�Lpred60_31�Lpred60_34�Lpred60_33�Lpred60_36�Lpred60_35�Lpred60_38�Lpred60_37�Lpred60_40�Lpred60_39�Lpred60_42�Lpred60_41�Lpred60_44�Lpred60_43�Lpred60_46�Lpred60_45�Lpred60_48�Lpred60_47�Lpred60_50�Lpred60_49�Lpred60_52�Lpred60_51�Lpred60_54�Lpred60_53�Lpred60_56�Lpred60_55�Lpred60_58�Lpred60_57�Lpred60_60�Lpred60_59�Lpred60_62�Lpred60_61�Lpred60_64�Lpred60_63�Lpred60_65�Lpred61_1�Lpred62_1�Lpred63_1�Lpred64_1�Lpred65_1�Lpred66_1�Lpred67_2�Lpred67_1�Lpred67_4�Lpred67_3�Lpred67_6�Lpred67_5�Lpred67_7�Lpred69_1�Lpred70_2�Lpred70_1�Lpred70_4�Lpred70_3�Lpred70_6�Lpred70_5�Lpred70_8�Lpred70_7�Lpred70_10�Lpred70_9�Lpred70_12�Lpred70_11�Lpred70_13�Lpred72_1�Lpred72_2�Lpred72_4�Lpred72_3�Lpred74_1�Lpred74_2�Lpred74_4�Lpred74_3�Lpred75_1�Lpred76_1�Lpred76_2�Lpred76_8�Lpred76_4�Lpred76_3�Lpred76_6�Lpred76_5�Lpred76_7�Lpred76_9�Lpred77_1�Lpred78_1�Lpred81_1�Lpred11_1�Lpred14_2�Lpred14_4�Lpred14_3�Lpred15_11�Lpred15_3�Lpred15_2�Lpred15_5�Lpred15_4�Lpred15_7�Lpred15_6�Lpred15_9�Lpred15_8�Lpred15_10�Lpred16_2�Lpred16_4�Lpred16_3�Lpred16_5�Lpred17_2�Lpred17_4�Lpred17_3�Lpred17_6�Lpred17_5�Lpred17_8�Lpred17_7�Lpred17_10�Lpred17_9�Lpred17_11�Lpred18_12�Lpred18_14�Lpred18_13�Lpred18_16�Lpred18_15�Lpred18_17�Indomain_Min�Indomain_Max�Indomain_Middle�Indomain_Limits�Indomain_Random�Cmp_First_Fail�Cmp_Most_Constrained�Cmp_Smallest�Cmp_Largest�Cmp_Max_Regret�fd_domain_bloc_1�fd_domain_r_bloc_1�x_plus_c_eq_y_bloc_1�x_plus_c_eq_y_bloc_2�x_plus_c_eq_y_F_bloc_1�x_plus_c_eq_y_F_bloc_2�x_plus_c_neq_y_bloc_1�x_plus_c_neq_y_bloc_2�x_plus_c_lte_y_bloc_1�x_plus_c_lte_y_bloc_2�x_plus_c_gte_y_bloc_1�x_plus_c_gte_y_bloc_2�ax_eq_y_bloc_1�ax_eq_y_bloc_2�x_plus_y_eq_z_bloc_1�x_plus_y_eq_z_bloc_2�x_plus_y_eq_z_bloc_3�ax_plus_y_eq_z_bloc_1�ax_plus_y_eq_z_bloc_2�ax_plus_y_eq_z_bloc_3�ax_plus_by_eq_z_bloc_1�ax_plus_by_eq_z_bloc_2�ax_plus_by_eq_z_bloc_3�x_plus_y_plus_z_eq_t_bloc_1�x_plus_y_plus_z_eq_t_bloc_2�x_plus_y_plus_z_eq_t_bloc_3�x_plus_y_plus_z_eq_t_bloc_4�ax_plus_y_plus_z_eq_t_bloc_1�ax_plus_y_plus_z_eq_t_bloc_2�ax_plus_y_plus_z_eq_t_bloc_3�ax_plus_y_plus_z_eq_t_bloc_4�ax_plus_by_plus_z_eq_t_bloc_1�ax_plus_by_plus_z_eq_t_bloc_2�ax_plus_by_plus_z_eq_t_bloc_3�ax_plus_by_plus_z_eq_t_bloc_4�ax_eq_y_F_bloc_1�ax_eq_y_F_bloc_2�x_plus_y_eq_z_F_bloc_1�x_plus_y_eq_z_F_bloc_2�x_plus_y_eq_z_F_bloc_3�ax_plus_y_eq_z_F_bloc_1�ax_plus_y_eq_z_F_bloc_2�ax_plus_y_eq_z_F_bloc_3�ax_plus_by_eq_z_F_bloc_1�ax_plus_by_eq_z_F_bloc_2�ax_plus_by_eq_z_F_bloc_3�x_plus_y_plus_z_eq_t_F_bloc_1�x_plus_y_plus_z_eq_t_F_bloc_2�x_plus_y_plus_z_eq_t_F_bloc_3�x_plus_y_plus_z_eq_t_F_bloc_4�ax_plus_y_plus_z_eq_t_F_bloc_1�ax_plus_y_plus_z_eq_t_F_bloc_2�ax_plus_y_plus_z_eq_t_F_bloc_3�ax_plus_y_plus_z_eq_t_F_bloc_4�ax_plus_by_plus_z_eq_t_F_bloc_1�ax_plus_by_plus_z_eq_t_F_bloc_2�ax_plus_by_plus_z_eq_t_F_bloc_3�ax_plus_by_plus_z_eq_t_F_bloc_4�a_power_n_eq_y_bloc_1�a_power_n_eq_y_bloc_2�x_power_a_eq_y_bloc_1�x_power_a_eq_y_bloc_2�xy_eq_z_bloc_1�xy_eq_z_bloc_2�xy_eq_z_bloc_3�a_power_n_eq_y_F_bloc_1�a_power_n_eq_y_F_bloc_2�x_power_a_eq_y_F_bloc_1�x_power_a_eq_y_F_bloc_2�xy_eq_z_F_bloc_1�xy_eq_z_F_switch_1_inst�min_x_y_eq_z_bloc_1�min_x_y_eq_z_bloc_2�min_x_y_eq_z_bloc_3�min_x_y_eq_z_bloc_4�min_x_y_eq_z_bloc_5�min_x_y_eq_z_switch_1_inst�min_x_a_eq_z_bloc_1�min_x_a_eq_z_bloc_2�min_x_a_eq_z_bloc_3�min_x_a_eq_z_bloc_4�min_x_a_eq_z_switch_1�min_x_a_eq_z_case_group_1�min_x_y_eq_z_F_bloc_1�min_x_y_eq_z_F_bloc_2�min_x_y_eq_z_F_bloc_3�min_x_y_eq_z_F_bloc_4�min_x_y_eq_z_F_bloc_5�min_x_y_eq_z_F_switch_1_inst�min_x_a_eq_z_F_bloc_1�min_x_a_eq_z_F_bloc_2�min_x_a_eq_z_F_bloc_3�min_x_a_eq_z_F_bloc_4�min_x_a_eq_z_F_switch_1�min_x_a_eq_z_F_case_group_1�max_x_y_eq_z_bloc_1�max_x_y_eq_z_bloc_2�max_x_y_eq_z_bloc_3�max_x_y_eq_z_bloc_4�max_x_y_eq_z_bloc_5�max_x_y_eq_z_switch_1_inst�max_x_a_eq_z_bloc_1�max_x_a_eq_z_bloc_2�max_x_a_eq_z_bloc_3�max_x_a_eq_z_bloc_4�max_x_a_eq_z_switch_1�max_x_a_eq_z_case_group_1�max_x_y_eq_z_F_bloc_1�max_x_y_eq_z_F_bloc_2�max_x_y_eq_z_F_bloc_3�max_x_y_eq_z_F_bloc_4�max_x_y_eq_z_F_bloc_5�max_x_y_eq_z_F_switch_1_inst�max_x_a_eq_z_F_bloc_1�max_x_a_eq_z_F_bloc_2�max_x_a_eq_z_F_bloc_3�max_x_a_eq_z_F_bloc_4�max_x_a_eq_z_F_switch_1�max_x_a_eq_z_F_case_group_1�abs_x_minus_y_eq_z_bloc_1�abs_x_minus_y_eq_z_bloc_2�abs_x_minus_y_eq_z_bloc_3�abs_x_minus_y_eq_z_switch_1_inst�abs_x_minus_a_eq_z_bloc_1�abs_x_minus_a_eq_z_bloc_2�abs_x_minus_a_eq_z_switch_1�abs_x_minus_a_eq_z_case_group_2�abs_x_minus_a_eq_z_case_group_1�abs_x_minus_y_eq_z_F_bloc_1�abs_x_minus_y_eq_z_F_bloc_2�abs_x_minus_y_eq_z_F_bloc_3�abs_x_minus_y_eq_z_F_switch_1_inst�abs_x_minus_a_eq_z_F_bloc_1�abs_x_minus_a_eq_z_F_bloc_2�abs_x_minus_a_eq_z_F_switch_1�abs_x_minus_a_eq_z_F_case_group_2�abs_x_minus_a_eq_z_F_case_group_1�quot_rem_x_y_r_eq_z_bloc_1�quot_rem_x_y_r_eq_z_bloc_2�quot_rem_x_y_r_eq_z_bloc_3�quot_rem_x_y_r_eq_z_bloc_4�quot_rem_x_y_r_eq_z_bloc_5�quot_rem_x_y_r_eq_z_bloc_6�quot_rem_x_y_r_eq_z_bloc_7�quot_rem_x_y_r_eq_z_switch_1�quot_rem_x_y_r_eq_z_bloc_8_inst�quot_rem_a_y_r_eq_z_bloc_1�quot_rem_a_y_r_eq_z_bloc_2�quot_rem_a_y_r_eq_z_bloc_3�quot_rem_a_y_r_eq_z_bloc_4�quot_rem_a_y_r_eq_z_bloc_5�quot_rem_a_y_r_eq_z_switch_1�quot_rem_a_y_r_eq_z_bloc_6_inst�quot_rem_x_a_r_eq_z_bloc_1�quot_rem_x_a_r_eq_z_bloc_2�quot_rem_x_a_r_eq_z_bloc_3�quot_rem_x_a_r_eq_z_bloc_4�quot_rem_x_a_r_eq_z_bloc_5�quot_rem_x_y_r_eq_z_F_bloc_1�quot_rem_x_y_r_eq_z_F_bloc_2�quot_rem_x_y_r_eq_z_F_bloc_3�quot_rem_x_y_r_eq_z_F_bloc_4�quot_rem_x_y_r_eq_z_F_bloc_5�quot_rem_x_y_r_eq_z_F_bloc_6�quot_rem_x_y_r_eq_z_F_bloc_7�quot_rem_x_y_r_eq_z_F_switch_1�quot_rem_x_y_r_eq_z_F_bloc_8_inst�quot_rem_a_y_r_eq_z_F_bloc_1�quot_rem_a_y_r_eq_z_F_bloc_2�quot_rem_a_y_r_eq_z_F_bloc_3�quot_rem_a_y_r_eq_z_F_bloc_4�quot_rem_a_y_r_eq_z_F_bloc_5�quot_rem_a_y_r_eq_z_F_switch_1�quot_rem_a_y_r_eq_z_F_bloc_6_inst�quot_rem_x_a_r_eq_z_F_bloc_1�quot_rem_x_a_r_eq_z_F_bloc_2�quot_rem_x_a_r_eq_z_F_bloc_3�quot_rem_x_a_r_eq_z_F_bloc_4�quot_rem_x_a_r_eq_z_F_bloc_5�x_eq_y_bloc_1�x_eq_y_bloc_2�x_eq_y_F_bloc_1�x_eq_y_F_bloc_2�x_neq_y_bloc_1_inst�x_neq_y_bloc_2_inst�x_lt_y_bloc_1�x_lt_y_bloc_2�x_lte_c_bloc_1�x_lte_y_bloc_1�x_lte_y_bloc_2�x_gte_c_bloc_1�zero_power_n_eq_y_bloc_1�zero_power_n_eq_y_bloc_2�x2_eq_y_bloc_1�x2_eq_y_bloc_2�x2_eq_y_F_bloc_1�x2_eq_y_F_bloc_2�x_neq_y_bloc_1�x_neq_y_bloc_2�xy_eq_z_F_switch_1�min_x_y_eq_z_switch_1�min_x_y_eq_z_case_group_2�min_x_y_eq_z_case_group_1�min_x_a_eq_z_bloc_5�min_x_a_eq_z_bloc_6�min_x_y_eq_z_F_switch_1�min_x_a_eq_z_F_bloc_5�min_x_a_eq_z_F_bloc_6�max_x_y_eq_z_switch_1�max_x_y_eq_z_case_group_2�max_x_y_eq_z_case_group_1�max_x_a_eq_z_bloc_5�max_x_a_eq_z_bloc_6�max_x_y_eq_z_F_switch_1�max_x_a_eq_z_F_bloc_5�max_x_a_eq_z_F_bloc_6�abs_x_minus_y_eq_z_switch_1�abs_x_minus_y_eq_z_case_group_2�abs_x_minus_y_eq_z_case_group_1�abs_x_minus_a_eq_z_bloc_3�abs_x_minus_a_eq_z_bloc_4�abs_x_minus_a_eq_z_bloc_5�abs_x_minus_a_eq_z_bloc_6�abs_x_minus_y_eq_z_F_switch_1�abs_x_minus_y_eq_z_F_case_group_2�abs_x_minus_y_eq_z_F_case_group_1�abs_x_minus_a_eq_z_F_bloc_3�abs_x_minus_a_eq_z_F_bloc_4�abs_x_minus_a_eq_z_F_bloc_5�abs_x_minus_a_eq_z_F_bloc_6�quot_rem_x_y_r_eq_z_bloc_8�quot_rem_a_y_r_eq_z_bloc_6�quot_rem_x_y_r_eq_z_F_bloc_8�quot_rem_a_y_r_eq_z_F_bloc_6�xy_eq_z_F_case_group_1�xy_eq_z_F_bloc_5�xy_eq_z_F_bloc_6�min_x_y_eq_z_bloc_6�min_x_y_eq_z_bloc_7�min_x_y_eq_z_bloc_8�min_x_y_eq_z_bloc_9�min_x_y_eq_z_F_case_group_1�min_x_y_eq_z_F_case_group_2�max_x_y_eq_z_bloc_6�max_x_y_eq_z_bloc_7�max_x_y_eq_z_bloc_8�max_x_y_eq_z_bloc_9�max_x_y_eq_z_F_case_group_1�max_x_y_eq_z_F_case_group_2�abs_x_minus_y_eq_z_bloc_4�abs_x_minus_y_eq_z_bloc_5�abs_x_minus_y_eq_z_bloc_6�abs_x_minus_y_eq_z_bloc_7�abs_x_minus_y_eq_z_bloc_8�abs_x_minus_y_eq_z_bloc_9�abs_x_minus_y_eq_z_F_bloc_4�abs_x_minus_y_eq_z_F_bloc_5�abs_x_minus_y_eq_z_F_bloc_6�abs_x_minus_y_eq_z_F_bloc_7�abs_x_minus_y_eq_z_F_bloc_8�abs_x_minus_y_eq_z_F_bloc_9�xy_eq_z_F_bloc_2�xy_eq_z_F_bloc_3�xy_eq_z_F_bloc_4�min_x_y_eq_z_F_bloc_6�min_x_y_eq_z_F_bloc_7�min_x_y_eq_z_F_bloc_8�min_x_y_eq_z_F_bloc_9�max_x_y_eq_z_F_bloc_6�max_x_y_eq_z_F_bloc_7�max_x_y_eq_z_F_bloc_8�max_x_y_eq_z_F_bloc_9�Fd_Bool_Initializer�bool_tbl�bool_xor�Set_Not�func_tbl�Set_Equiv�Set_Nequiv�Set_Imply�Set_Nimply�Set_And�Set_Nand�Set_Or�Set_Nor�Set_Eq�Set_Neq�Set_Lt�Set_Lte�Set_Zero�Set_One�stack�sp�vars_tbl�vars_sp�Simplify�Load_Bool_Into_Word�Add_Fd_Variables�Set_Var�x_equiv_y_eq_b_bloc_1�x_equiv_y_eq_b_bloc_2�x_equiv_y_eq_b_bloc_3�x_nequiv_y_eq_b_bloc_1�x_nequiv_y_eq_b_bloc_2�x_nequiv_y_eq_b_bloc_3�x_imply_y_eq_b_bloc_1�x_imply_y_eq_b_bloc_2�x_imply_y_eq_b_bloc_3�x_nimply_y_eq_b_bloc_1�x_nimply_y_eq_b_bloc_2�x_nimply_y_eq_b_bloc_3�x_and_y_eq_b_bloc_1�x_and_y_eq_b_bloc_2�x_and_y_eq_b_bloc_3�x_nand_y_eq_b_bloc_1�x_nand_y_eq_b_bloc_2�x_nand_y_eq_b_bloc_3�x_or_y_eq_b_bloc_1�x_or_y_eq_b_bloc_2�x_or_y_eq_b_bloc_3�x_nor_y_eq_b_bloc_1�x_nor_y_eq_b_bloc_2�x_nor_y_eq_b_bloc_3�truth_x_eq_c_switch_1_inst�truth_x_eq_y_switch_1_inst�truth_x_plus_c_eq_y_switch_1_inst�truth_x_eq_c_F_switch_1_inst�truth_x_eq_y_F_switch_1_inst�truth_x_plus_c_eq_y_F_switch_1_inst�truth_x_neq_c_switch_1_inst�truth_x_neq_y_switch_1_inst�truth_x_plus_c_neq_y_switch_1_inst�truth_x_neq_c_F_switch_1_inst�truth_x_neq_y_F_switch_1_inst�truth_x_plus_c_neq_y_F_switch_1_inst�truth_x_lt_y_switch_1_inst�truth_x_lte_c_switch_1_inst�truth_x_lte_y_switch_1_inst�truth_x_plus_c_lte_y_switch_1_inst�truth_x_gte_c_switch_1_inst�truth_x_plus_c_gte_y_switch_1_inst�not_x_eq_b_bloc_1_inst�not_x_eq_b_bloc_2_inst�x_imply_y_eq_1_bloc_1�x_imply_y_eq_1_bloc_2�x_and_y_eq_0_bloc_1�x_and_y_eq_0_bloc_2�x_or_y_eq_1_bloc_1�x_or_y_eq_1_bloc_2�not_x_eq_b_bloc_1�not_x_eq_b_bloc_2�truth_x_eq_c_switch_1�truth_x_eq_y_switch_1�truth_x_plus_c_eq_y_switch_1�truth_x_eq_c_F_switch_1�truth_x_eq_y_F_switch_1�truth_x_plus_c_eq_y_F_switch_1�truth_x_neq_c_switch_1�truth_x_neq_y_switch_1�truth_x_plus_c_neq_y_switch_1�truth_x_neq_c_F_switch_1�truth_x_neq_y_F_switch_1�truth_x_plus_c_neq_y_F_switch_1�truth_x_lt_y_switch_1�truth_x_lte_c_switch_1�truth_x_lte_y_switch_1�truth_x_plus_c_lte_y_switch_1�truth_x_gte_c_switch_1�truth_x_plus_c_gte_y_switch_1�truth_x_eq_c_bloc_3�truth_x_eq_c_bloc_4�truth_x_eq_c_bloc_2�truth_x_eq_c_bloc_1�truth_x_eq_y_bloc_5�truth_x_eq_y_bloc_6�truth_x_eq_y_case_group_2�truth_x_eq_y_case_group_1�truth_x_plus_c_eq_y_bloc_5�truth_x_plus_c_eq_y_bloc_6�truth_x_plus_c_eq_y_case_group_2�truth_x_plus_c_eq_y_case_group_1�truth_x_eq_c_F_bloc_4�truth_x_eq_c_F_bloc_3�truth_x_eq_c_F_bloc_2�truth_x_eq_c_F_bloc_1�truth_x_eq_y_F_bloc_6�truth_x_eq_y_F_bloc_5�truth_x_eq_y_F_case_group_2�truth_x_eq_y_F_case_group_1�truth_x_plus_c_eq_y_F_bloc_6�truth_x_plus_c_eq_y_F_bloc_5�truth_x_plus_c_eq_y_F_case_group_2�truth_x_plus_c_eq_y_F_case_group_1�truth_x_neq_c_bloc_4�truth_x_neq_c_bloc_3�truth_x_neq_c_bloc_2�truth_x_neq_c_bloc_1�truth_x_neq_y_bloc_6�truth_x_neq_y_bloc_5�truth_x_neq_y_case_group_2�truth_x_neq_y_case_group_1�truth_x_plus_c_neq_y_bloc_6�truth_x_plus_c_neq_y_bloc_5�truth_x_plus_c_neq_y_case_group_2�truth_x_plus_c_neq_y_case_group_1�truth_x_neq_c_F_bloc_4�truth_x_neq_c_F_bloc_3�truth_x_neq_c_F_bloc_2�truth_x_neq_c_F_bloc_1�truth_x_neq_y_F_bloc_6�truth_x_neq_y_F_bloc_5�truth_x_neq_y_F_case_group_2�truth_x_neq_y_F_case_group_1�truth_x_plus_c_neq_y_F_bloc_6�truth_x_plus_c_neq_y_F_bloc_5�truth_x_plus_c_neq_y_F_case_group_2�truth_x_plus_c_neq_y_F_case_group_1�truth_x_lt_y_bloc_6�truth_x_lt_y_bloc_5�truth_x_lt_y_case_group_2�truth_x_lt_y_case_group_1�truth_x_lte_c_bloc_4�truth_x_lte_c_bloc_3�truth_x_lte_c_bloc_2�truth_x_lte_c_bloc_1�truth_x_lte_y_bloc_6�truth_x_lte_y_bloc_5�truth_x_lte_y_case_group_2�truth_x_lte_y_case_group_1�truth_x_plus_c_lte_y_bloc_6�truth_x_plus_c_lte_y_bloc_5�truth_x_plus_c_lte_y_case_group_2�truth_x_plus_c_lte_y_case_group_1�truth_x_gte_c_bloc_4�truth_x_gte_c_bloc_3�truth_x_gte_c_bloc_2�truth_x_gte_c_bloc_1�truth_x_plus_c_gte_y_bloc_6�truth_x_plus_c_gte_y_bloc_5�truth_x_plus_c_gte_y_case_group_2�truth_x_plus_c_gte_y_case_group_1�truth_x_eq_y_bloc_1_inst�truth_x_eq_y_bloc_2_inst�truth_x_eq_y_bloc_3�truth_x_eq_y_bloc_4�truth_x_plus_c_eq_y_bloc_1_inst�truth_x_plus_c_eq_y_bloc_2_inst�truth_x_plus_c_eq_y_bloc_3�truth_x_plus_c_eq_y_bloc_4�truth_x_eq_y_F_bloc_1_inst�truth_x_eq_y_F_bloc_2_inst�truth_x_eq_y_F_bloc_3�truth_x_eq_y_F_bloc_4�truth_x_plus_c_eq_y_F_bloc_1_inst�truth_x_plus_c_eq_y_F_bloc_2_inst�truth_x_plus_c_eq_y_F_bloc_3�truth_x_plus_c_eq_y_F_bloc_4�truth_x_neq_y_bloc_1�truth_x_neq_y_bloc_2�truth_x_neq_y_bloc_3_inst�truth_x_neq_y_bloc_4_inst�truth_x_plus_c_neq_y_bloc_1�truth_x_plus_c_neq_y_bloc_2�truth_x_plus_c_neq_y_bloc_3_inst�truth_x_plus_c_neq_y_bloc_4_inst�truth_x_neq_y_F_bloc_1�truth_x_neq_y_F_bloc_2�truth_x_neq_y_F_bloc_3_inst�truth_x_neq_y_F_bloc_4_inst�truth_x_plus_c_neq_y_F_bloc_1�truth_x_plus_c_neq_y_F_bloc_2�truth_x_plus_c_neq_y_F_bloc_3_inst�truth_x_plus_c_neq_y_F_bloc_4_inst�truth_x_lt_y_bloc_1�truth_x_lt_y_bloc_2�truth_x_lt_y_bloc_3�truth_x_lt_y_bloc_4�truth_x_lte_y_bloc_1�truth_x_lte_y_bloc_2�truth_x_lte_y_bloc_3�truth_x_lte_y_bloc_4�truth_x_plus_c_lte_y_bloc_1�truth_x_plus_c_lte_y_bloc_2�truth_x_plus_c_lte_y_bloc_3�truth_x_plus_c_lte_y_bloc_4�truth_x_plus_c_gte_y_bloc_1�truth_x_plus_c_gte_y_bloc_2�truth_x_plus_c_gte_y_bloc_3�truth_x_plus_c_gte_y_bloc_4�truth_x_eq_y_bloc_1�truth_x_eq_y_bloc_2�truth_x_plus_c_eq_y_bloc_1�truth_x_plus_c_eq_y_bloc_2�truth_x_eq_y_F_bloc_1�truth_x_eq_y_F_bloc_2�truth_x_plus_c_eq_y_F_bloc_1�truth_x_plus_c_eq_y_F_bloc_2�truth_x_neq_y_bloc_3�truth_x_neq_y_bloc_4�truth_x_plus_c_neq_y_bloc_3�truth_x_plus_c_neq_y_bloc_4�truth_x_neq_y_F_bloc_3�truth_x_neq_y_F_bloc_4�truth_x_plus_c_neq_y_F_bloc_3�truth_x_plus_c_neq_y_F_bloc_4�prime_x_bloc_1�not_prime_x_bloc_1�Lpred11_2�Lpred11_4�Lpred11_3�Fd_All_Different_Rec�fd_element_bloc_1�fd_element_bloc_2�fd_element_bloc_3�fd_element_var_bloc_1�fd_element_var_bloc_2�fd_element_var_bloc_3�fd_element_var_bloc_4�fd_atmost_bloc_1_inst�fd_atleast_bloc_1_inst�fd_exactly_bloc_1_inst�fd_atmost_bloc_1�fd_atleast_bloc_1�fd_exactly_bloc_1�Lpred5_1�Math_Supp_Initializer�delay_cstr_stack�delay_sp�Load_Delay_Cstr_Part�Normalize�arith_tbl�sort�Load_Term_Into_Word�Load_Poly�Load_Poly_Rec�Load_Left_Right_Rec�Compar_Monom�txp.0�Find_Expon_General�prime_vec_size�Compute_Prime_Range�prime_range�not_prime_range�always_date�never_date�All_Propagations�dummy_fd_var�buff.0�nb_bits_in_byte.1�unify_x_y_bloc_1�unify_x_y_bloc_2�Error_Supp_Initializer�last_err_file�c_bip_func_str�c_bip_arity�cur_bip_func�cur_bip_arity�last_err_col�last_err_line�last_err_msg�Init_Stream_Supp�static_str_stream_rd�static_str_stream_wr�tty_ptr�stream_1�atom_constant_term_stream�word_current_input_stream�word_current_output_stream�TTY_Getc�TTY_Clearerr�Find_Free_Stream�tty_linedit_depth.0�tty_buff�tty_first_buff�Str_Stream_Getc�Str_Stream_Putc�h.1�Lpred2_1�Lpred3_9�Lpred3_3�Lpred3_2�Lpred3_5�Lpred3_4�Lpred3_7�Lpred3_6�Lpred3_8�Lpred5_2�Lpred6_1�Lpred7_1�Lpred8_1�Lpred8_6�Lpred8_2�Lpred8_3�Lpred8_5�Lpred8_4�Lpred9_1�Lpred9_2�Lpred7_2�Clause_Alt�last_clause�Retract_Alt�Lpred9_4�Lpred9_3�Lpred10_13�Lpred10_9�Lpred10_8�Lpred10_11�Lpred10_10�Lpred10_12�Lpred11_5�Lpred15_19�Lpred15_13�Lpred15_12�Lpred15_15�Lpred15_14�Lpred15_17�Lpred15_16�Lpred15_18�Lpred19_2�Lpred19_4�Lpred19_3�Lpred19_5�Lpred21_4�Lpred21_3�Lpred21_5�Lpred4_2�Lpred4_4�Lpred4_3�Oper_Initializer�atom_specif_tbl�Detect_Oper_Specif�Lpred10_24�Lpred10_14�Lpred10_16�Lpred10_15�Lpred10_18�Lpred10_17�Lpred10_20�Lpred10_19�Lpred10_22�Lpred10_21�Lpred10_23�Lpred11_7�Lpred11_6�Lpred11_9�Lpred11_8�Lpred11_11�Lpred11_10�Lpred11_13�Lpred11_12�Lpred11_15�Lpred11_14�Lpred11_17�Lpred11_16�Lpred11_19�Lpred11_18�Lpred11_21�Lpred11_20�Lpred11_22�Lpred23_18�Lpred23_4�Lpred23_2�Lpred23_3�Lpred23_6�Lpred23_5�Lpred23_8�Lpred23_7�Lpred23_10�Lpred23_9�Lpred23_12�Lpred23_11�Lpred23_14�Lpred23_13�Lpred23_16�Lpred23_15�Lpred23_17�Lpred24_3�Lpred24_2�Lpred24_5�Lpred24_4�Lpred24_7�Lpred24_6�Lpred24_9�Lpred24_8�Lpred24_11�Lpred24_10�Lpred24_13�Lpred24_12�Lpred24_15�Lpred24_14�Lpred24_16�Create_Malloc_Atom�Compute_Next_BLA�String_To_Number�Lpred13_21�Lpred13_5�Lpred13_7�Lpred13_6�Lpred13_9�Lpred13_8�Lpred13_11�Lpred13_10�Lpred13_13�Lpred13_12�Lpred13_15�Lpred13_14�Lpred13_17�Lpred13_16�Lpred13_19�Lpred13_18�Lpred13_20�Call_With_Args�Flag_Initializer�atom_flag_tbl�atom_down�atom_toward_zero�atom_on�atom_off�atom_error�atom_warning�atom_fail�atom_chars�atom_codes�atom_atom�atom_chars_no_escape�atom_codes_no_escape�atom_atom_no_escape�atom_prolog�Unif_Flag�cv.0�Arith_Initializer�Load_Math_Expression�fix_bug.0�G_Var_Initializer�G_Assign_Array�G_Alloc_Array�G_Assign_Element�G_Free_Element�G_Copy_Element�Get_Target_From_Selector�Get_Target_From_Gvar�Get_Int_From_Word�Get_Term_Addr_From_Target�Get_Int_Addr_From_Gvar�g_target�atom_g_array�G_Trail_For_Backtrack�G_Untrail�G_Read_Element�atom_g_array_auto�atom_g_array_extend�g_var_tbl�All_Solut_Initializer�dummy�sol�Existential_Variables�exist_2�Bound_Var�key_var_ptr�Handle_Key_Variables�save_key_var_ptr�next_key_var_ptr�Link_Key_Var�Group�bound_var_ptr�Free_Var�new_gen_word�free_var_base�Sort_Initializer�Merge_Sort�Keysort_Cmp�minus_2�Lpred2_2�Lpred2_4�Lpred2_3�Lpred7_4�Lpred7_3�Lpred9_sub_0�Lpred9_5�Lpred9_7�Lpred9_6�Lpred15_sub_0�Lpred23_sub_0�Lpred25_2�Lpred25_3�Lpred25_sub_0�Lpred25_5�Lpred25_7�Lpred25_4�Lpred25_6�Lpred5_21�Lpred5_3�Lpred5_5�Lpred5_4�Lpred5_7�Lpred5_6�Lpred5_9�Lpred5_8�Lpred5_11�Lpred5_10�Lpred5_13�Lpred5_12�Lpred5_15�Lpred5_14�Lpred5_17�Lpred5_16�Lpred5_19�Lpred5_18�Lpred5_20�Lpred6_3�Lpred6_2�Lpred6_5�Lpred6_4�Lpred6_7�Lpred6_6�Lpred6_9�Lpred6_8�Lpred6_11�Lpred6_10�Lpred6_13�Lpred6_12�Lpred6_15�Lpred6_14�Lpred6_16�last_user_time�last_system_time�last_cpu_time�last_real_time�n.0�Stack_Size�Lpred21_6�Lpred21_7�Lpred22_2�Lpred22_4�Lpred22_3�Lpred22_6�Lpred22_5�Lpred22_7�Lpred26_2�Lpred26_4�Lpred26_3�Lpred32_2�Lpred38_2�Lpred38_4�Lpred38_3�Lpred38_5�Lpred44_2�Lpred44_4�Lpred44_3�Lpred44_6�Lpred44_5�Lpred44_7�Lpred45_1�Lpred53_28�Lpred53_4�Lpred53_2�Lpred53_3�Lpred53_6�Lpred53_5�Lpred53_8�Lpred53_7�Lpred53_10�Lpred53_9�Lpred53_12�Lpred53_11�Lpred53_14�Lpred53_13�Lpred53_16�Lpred53_15�Lpred53_18�Lpred53_17�Lpred53_20�Lpred53_19�Lpred53_22�Lpred53_21�Lpred53_24�Lpred53_23�Lpred53_26�Lpred53_25�Lpred53_27�Lpred54_3�Lpred54_2�Lpred54_5�Lpred54_4�Lpred54_7�Lpred54_6�Lpred54_9�Lpred54_8�Lpred54_11�Lpred54_10�Lpred54_13�Lpred54_12�Lpred54_15�Lpred54_14�Lpred54_17�Lpred54_16�Lpred54_19�Lpred54_18�Lpred54_21�Lpred54_20�Lpred54_23�Lpred54_22�Lpred54_25�Lpred54_24�Lpred54_26�Lpred58_1�Lpred2_11�Lpred2_sub_0�Lpred2_8�Lpred2_5�Lpred2_7�Lpred2_6�Lpred2_9�Lpred2_10�Lpred2_12�Format�Arg_Atom�Arg_Integer�Arg_Float�Read_Arg�Lpred14_6�Lpred14_5�Lpred14_8�Lpred14_7�Lpred14_10�Lpred14_9�Lpred14_12�Lpred14_11�Lpred14_14�Lpred14_13�Lpred14_16�Lpred14_15�Lpred14_17�Os_Interf_Initializer�atom_dt�atom_read�atom_write�atom_execute�atom_search�atom_regular�atom_directory�atom_fifo�atom_socket�atom_character_device�atom_block_device�atom_unknown�tsig�nb_sig�Get_Path_Name�Flag_Of_Permission�Date_Time_To_Prolog�atom_host_name.0�Select_Init_Set�Select_Init_Ready_List�Expand_Initializer�dcg_2�top�opt_term_unif�Dcg_Head�Dcg_Body�atom_clause�Dcg_Body_On_Stack�Dcg_Term_List_On_Stack�Dcg_Compound2�atom_phrase�atom_if�Lpred30_2�Lpred30_4�Lpred30_3�Pretty_Initializer�Check_Structure�prec.0�Show_Body�Start_Line�equal_2�atom_dollar_varname�nb_to_try�Collect_Excluded_Rec�Var_Name_To_Var_Number�Exclude_A_Var_Number�Bind_Variable�dollar_var_1�dollar_varname_1�Portray_Clause�Collect_Singleton�singl_var_ptr�nb_singl_var�atom_dcg�atom_dollar_var�Ctrl_C_Manager�Debug_Initializer�envir_name�choice_name�trail_tag_name�pstm_i�pstm_o�dbg_jumper�Debugger_Signal_Handler�Scan_Command�Find_Function�nb_read_arg�read_arg�cmd.0�Write_Data_Modify�Where�What�Dereference�Environment�Backtrack�Help�Read_Bank_Adr�reg_copy�Print_Bank_Name_Offset�Print_Wam_Word�Modify_Wam_Word�Read_An_Integer�Detect_Stack�Detect_Pred_From_Code�My_System_Directives�Lpred8_14�Lpred8_8�Lpred8_7�Lpred8_10�Lpred8_9�Lpred8_12�Lpred8_11�Lpred8_13�Lpred28_2�Lpred28_4�Lpred28_3�Lpred28_6�Lpred28_5�Lpred28_8�Lpred28_7�Lpred28_10�Lpred28_9�Lpred28_12�Lpred28_11�Lpred28_14�Lpred28_13�Lpred28_16�Lpred28_15�Lpred28_17�Lpred32_4�Lpred32_3�Lpred32_6�Lpred32_5�Lpred32_8�Lpred32_7�Lpred32_10�Lpred32_9�Lpred32_12�Lpred32_11�Lpred32_14�Lpred32_13�Lpred32_15�Lpred56_1�Lpred58_8�Lpred58_2�Lpred58_4�Lpred58_3�Lpred58_6�Lpred58_5�Lpred58_7�Lpred61_7�Lpred61_3�Lpred61_2�Lpred61_sub_0�Lpred61_4�Lpred61_6�Lpred61_5�sr_tbl�sr_tbl_size�sr_last_used�cur_sr�Get_Descriptor�Common_Clean�Exec_One_Directive�Undo_Directives�Close_Current_Module�Write_Location�Socket_Initializer�atom_AF_UNIX�atom_AF_INET�Create_Socket_Streams�end_vars�vars�Copy_Term_Rec�base_copy�top_vars�Parse_Supp_Initializer�jumper�tok_present�buff_save_machine_regs�Parse_Term�Parse_Error�Lookup_In_Dico_Var�Create_Structure�Parse_Args_Of_Functor�Parse_Bracketed_Term�Parse_List�atom_var�atom_string�atom_back_quotes�atom_punct�atom_full_stop�atom_extend�Write_Supp_Initializer�last_prefix_op�Show_Term�Show_Global_Var�ignore_op�Show_List_Arg�Show_Structure�Show_Atom�Show_Float�Show_Fd_Variable�Show_Integer�Try_Portray�atom_dots�quoted�space_args�name_vars�number_vars�curly_brackets_1�try_portray_code.1�portrayed�Out_Char�erase_stamp�first_dyn_with_erase�size_of_erased�Add_To_2Chain�Index_From_First_Arg�Alloc_Init_Dyn_Info�Unlink_Clause�Free_Clause�Get_Scan_Choice_Point�Scan_Dynamic_Pred_Next�Clean_Erased_Clauses�save_call_info�Byte_Code_Initializer�op_tbl�Compar_Inst_Code_Op�nb_op�bc_nb_block�bc�atom_dynamic�atom_public�atom_built_in�atom_built_in_fd�caller_arity�caller_func�bc_sp�BC_Arg_X_Or_Y�BC_Arg_Func_Arity�debug_call�BC_Emulate_Pred_Alt�BC_Emulate_Clause�glob_func�glob_dyn�BC_Emulate_Byte_Code�Prep_Debug_Call�err_msg�c�c_orig�c_type�Scan_Quoted�Scan_Number�Scan_Quoted_Char�obj_end.c�start_user_time�start_system_time�start_real_time�cur_seed�page_size�SIGSEGV_Handler�buff.1�cur_work_dir.2�msg.3�buff.4�arg.0�nb_arg.1�value.2�letters.3�arg.4�Hash_Locate�nb_obj�obj_tbl�nb_user_directives�init_buff_regs�heap_actual_start�Call_Prolog_Fail�Call_Prolog_Success�Call_Next�p_buff_save�p_jumper�cont_jmp�Check_If_Var_Occurs�hash_weight_tbl�hash_inv_tbl�str_char�Locate_Atom�Hash_String�gen_sym_buff�Fd_Solver_Missing�separators�ins_mode�clipboard�hist_start�hist_end�comp_start�prompt_length�global_str�Tab_To_Spaces�History_Add_Line�global_pos�global_end�Display_Help�New_Char�Completion_Print_All�Skip�Completion_Do_Match�comp_last_match�comp_first_match�History_Update_Line�History_Get_Line�hist_tbl�Is_A_Separator�ctrl_c_ret_val�comp_nb_match�comp_match_max_lg�comp_cur_match�use_gui�use_ansi�fd_in�fd_out�initialized.0�le_hook_present.1�Parse_Env_Var�Choose_Fd_Out�LE_Get_Char0�Backd�Forwd�Displ�Erase�Displ_Str�pos�nb_cols�old_stty_in�old_stty_out�is_tty_in�is_tty_out�interrupt_key�new_stty_out�nb_rows�new_stty_in�from_callback�ret_val�Wrapper_Handler�ctrl_c_handler�inside_ctrl_c�_DYNAMIC�__fini_array_end�__fini_array_start�__init_array_end�_GLOBAL_OFFSET_TABLE_�__init_array_start�X736B6970_1�Fct_Shr�X6765745F63686172_2�Fd_Eq_2�X24696E646F6D61696E5F6C696D6974735F616C74_0�stm_debugger_input�Write_1�Wait_2�Nth_Root_Up�X72656E616D655F66696C65_2�Remove_Stream_Mirror_2�X2473686F775F6C65617368696E675F696E666F31_1�X247573655F6F706572_0�domain_socket_address�fd_domain�X636861725F636F6465_2�X242473725F74726561745F7465726D2F325F2461757832_4�Write_Pl_State_File�X756E6765745F636F6465_2�Vector_Sub_Vector�Full_Coeff_Power_Var�Write_Canonical_To_Chars_2�Math_Fast_Load_Value�X757365725F74696D65_1�evluation_int_overflow�Fd_Tell_Int_Range�X2424636865636B5F73747265616D5F6F725F7661722F325F2461757831_1�Fd_Reset_Solver�X247573655F657870616E64_0�X246C696E65735F746F5F636F6C756D6E73_2�Read_Token_1�Copy_Term_2�X666F726D6174_3�X246765745F7072656469636174655F66696C655F696E666F_3�X24247265696E69745F61667465725F657863657074696F6E2F305F2461757831_0�max_x_a_eq_z_F�Print_2�atom_curly_brackets�Fd_Lt_2�quot_rem_x_y_r_eq_z_F�X2463757272656E745F6F705F616C74_0�X63616C6C5F776974685F61726773_10�Os_Version_1�Blt_Fd_Var�Rd_Number_Check�Put_Atom_Tagged�Init_Oper�Add_Stream_For_Stdio_Desc�X74656C6C_1�X233C_2�X6F6E6365_1�X777269746571_2�Fd_Element_V_To_Xi�pred_tbl�x_nand_y_eq_b�X24636F6E73756C7431_1�X247365745F73725F64656661756C7473_0�Vector_Mod_Value�X242464656275675F63616C6C312F385F2461757831_3�Blt_G_Dec_2�Un_Term�X235C5C3D23_2�X2464656275675F69735F6E6F745F6C656173686564_1�usleep@@GLIBC_2.0�BC_Start_Emit_0�mkdir@@GLIBC_2.0�X6E6F6465627567_0�Read_1�Blt_Fast_Gt�X61746F6D5F70726F7065727479_2�Blt_Lte�fd_reset_solver�ttyname@@GLIBC_2.0�X247465726D5F746F5F676F616C31_2�Current_Predicate_Alt_0�x2_eq_y_F�X61746F6D5F6C656E677468_2�cos@@GLIBC_2.0�Fct_Min�Init_Pred�X247465726D5F746F5F676F616C_3�X6C6F7765725F7570706572_2�X2424706F72747261795F636C617573652F325F2461757832_1�X2464656275675F706F72745F6D61736B_2�X66756E63746F72_3�X6D656D626572_2�Create_Oper�Init_Machine1�Install_Ctrl_C_Handler�X7365745F6F7574707574_1�type_list�Switch_On_Term_Var_Atm�X6E65775F61746F6D_2�Call_With_Args_4�X2466645F73656C5F61727261795F66726F6D5F6C697374_2�Mk_Atom�Vector_Next_Before�X2464656275675F646973705F616C7465726E61746976657331_2�SR_Get_File_Name_2�Fct_Abs�Sys_Var_Dec_1�X24657865632F355F2461757831_1�Full_Var_Power_Coeff�Fd_Variable_Size0�X247365746172675F696E5F6C6173745F666F756E64_2�Cut�X73725F77726974655F6572726F72_6�X2473725F64697265637469766531_2�domain_not_less_than_zero�LE_Initialize�existence_source_sink�Load_Call_Info_Arg_1�X2463616C6C31_2�X246C697374696E675F616C6C_1�X73725F6765745F73747265616D_2�X24246765745F726561645F6F7074696F6E73322F315F2461757831_1�Read_Term_5�File_Prop_Date_2�def_trail_size�rename@@GLIBC_2.0�X235C5C2F5C5C_2�Put_Structure_Tagged�X247573655F7772697465_0�X242473746F72655F736F6C7574696F6E732F345F2461757831_3�X24636F6E73756C7433_2�Set_Predicate_File_Info_3�Write_Term_2�X726561645F746F6B656E_1�Vector_Compl�Fd_Tell_Not_Value�Os_Error�X2464656275675F7370795F7265736574_1�Set_Debug_Call_Code_0�X77726974655F746F5F61746F6D_2�Aux_Name_1�Exec_5�atom_append�domain_term_stream_or_alias�X2464656275675F6C6973745F6F665F70726564_2�X756E6765745F62797465_1�Mk_Chars�X246765745F726561645F6F7074696F6E7331_1�Check_For_Un_Compound�ax_plus_by_eq_z�Delete_Choice_Point1�Unget_Char_1�fd_unify_with_fd_var�atom_false�not_prime_x�X247573655F736F636B657473_0�LE_Compl_Add_Word�Vector_Add_Vector�Blt_Fast_Lt�x_lte_c�Init_Machine�Test_Alias_Not_Assigned_1�X68616C74_1�X66645F6D696E696D697A65_2�X2466645F6D696E696D697A652F325F2461757831_5�X246765745F6C6162656C696E675F6F7074696F6E7332_1�X66645F616C6C5F646966666572656E74_1�vsprintf@@GLIBC_2.0�strchr@@GLIBC_2.0�Fd_Unify_With_Fd_Var0�Blt_Univ�X756E6765745F636F6465_1�truth_x_plus_c_lte_y�X2424706F72747261795F636C617573652F325F2461757831_1�Create_Atom_Tagged�X63616C6C5F776974685F61726773_2�X2472656D6F76655F756E64657273636F72655F76617273_2�X646562756767696E67_0�Rd_In_Char�X756E6765745F63686172_1�Fd_Variable_To_String0�Unget_Code_2�Blt_G_Read�x_eq_y_F�Stream_Puts�Rd_Codes_Str�X24246765745F726561645F6F7074696F6E73322F315F2461757832_1�X24706C5F6572725F726570726573656E746174696F6E_1�X6C6173745F726561645F73746172745F6C696E655F636F6C756D6E_2�X24706C5F6572725F73796E746178_1�X7075745F636F6465_1�Range_Nb_Elem�Nth_Root_Dn�Current_Atom_Alt_0�Pred_Prop_Public_1�Atom_Property_6�fdopen@@GLIBC_2.1�Stream_Putc�X6E6F737079_1�X66645F6F6E6C795F6F6E65_1�Unget_Char_2�System_Time_1�X233E23_2�Name_Singleton_Vars_1�X246765745F726561645F6F7074696F6E73_4�X2463616C6C5F696E7465726E616C31_2�X246C6F61645F70726564_2�X706F72747261795F636C61757365_1�Read_Atom�X242477726974655F696E64696361746F722F305F2461757831_2�Blt_Compound�permission_type_past_end_of_stream�Sys_Var_Inc_1�SR_Get_Stm_For_Read_Term_1�X2477726974655F736F6C7574696F6E_3�X24627265616B2F305F2461757831_1�Write_Canonical_2�Open_Output_Term_Stream_1�Rd_Proper_List�Statistics_Global_Stack_2�Get_Char_1�alias_tbl�Current_Bip_Name_2�Halt_1�X2473747265616D5F70726F70657274792F325F2461757831_3�Blt_G_Reset_Bit�X24247370795F746573745F636F6E646974696F6E2F335F2461757831_2�X73725F7365745F6572726F725F636F756E74657273_3�atan@@GLIBC_2.0�X246C6F61645F66696C65_1�Fct_Fast_Sign�X3D3A3D_2�X737061776E_3�X247365745F746F705F6C6576656C5F73747265616D73_2�X7065656B5F62797465_1�X7065656B5F636F6465_1�Retractall_If_Empty_Head_1�type_byte�evluation_zero_divisor�Find_Linked_Objects�Read_Integer_1�x_imply_y_eq_b�Delete_Choice_Point3�X726561645F7465726D_2�X24706C5F6572725F696E7374616E74696174696F6E_0�fd_init_solver�X666F726D61745F746F5F61746F6D_3�X66645F6C6162656C696E676666_1�reg_tbl�M_Real_Time�Fd_Unify_With_Integer0�X72657665727365_2�SR_Write_Message_8�X746162_1�atom_debugger_output�X247573655F66645F6F7074696D_0�Malloc_Check�Nth_Root_Exact�X246765745F6C696E656469745F70726F6D7074_1�X6E6F6E5F67656E657269635F766172_1�X2424636F6E73756C74322F315F2461757831_2�X24696E646F6D61696E5F72616E646F6D5F616C74_0�getpid@@GLIBC_2.0�X666F726D61745F746F5F636F646573_3�X246D696E5F6C69737431_3�Blt_Number�Fatal_Error�Range_Test_Null_Inter�Rd_String_Check�Open_Input_Term_Stream_2�X246765745F636C6F73655F6F7074696F6E73_1�Nl_1�Rd_Float�Fork_Prolog_1�X2463617463685F696E7465726E616C31_5�X2424636865636B5F686561642F315F2461757831_1�X2463757272656E745F6D6972726F72_2�X247573655F73746174_0�__ctype_tolower_loc@@GLIBC_2.3�domain_stream_position�Create_Choice_Point3�X2464656275675F63616C6C_2�X246164645F636C617573655F7465726D_1�init_stream_supp�Range_Compl�SR_Init_Open_2�X242464656275675F657865635F636D642F365F2461757833_2�Read_Number_1�Un_In_Code�Vector_Union�LE_Get_Current_Word�X2473725F63757272656E745F64657363726970746F725F616C74_0�atom_bof�Write_Term_To_Atom_2�X66645F646F6D61696E_3�X246D656D6265722F325F2461757831_3�X66645F656C656D656E745F766172_3�Put_Nil�X66645F6D6178_2�Switch_On_Term_Var_Stc�X7365745F73747265616D5F6C696E655F636F6C756D6E_3�X675F696E63_1�Fct_Truncate�last_writing�Math_Load_Value�le_hook_exit_process�Set_Seed_1�Hash_Alloc_Table�X2463616C6C_4�X66645F72656C6174696F6E_2�X6F70656E5F696E7075745F636F6465735F73747265616D_2�X247365745F73747265616D5F627566666572696E672F325F2461757831_1�Stream_Close�Fct_Fast_Or�type_fd_evaluable�Put_X_Variable�X247468726F77_4�X24696E646F6D61696E5F6D61785F616C74_0�X247365745F7072656469636174655F66696C655F696E666F_3�stm_last_used�atom_stream�X246765745F77726974655F6F7074696F6E73_1�x_equiv_y_eq_b�representation_min_integer�Fd_Stop_Constraint�X66645F63617264696E616C697479_2�X736F7274_1�Reset_Prolog�Un_Boolean_Check�type_evaluable�Range_From_Vector�X2472657472616374_2�domain_stream_property�Rd_In_Code�Range_Div_Value�Fct_Fast_Dec�Sys_Var_Get_Bit_3�X776F726B696E675F6469726563746F7279_1�Blt_G_Assignb�M_Create_Shell_Command�Read_Token_From_Atom_2�Un_Code_Check�X6C696E655F636F756E74_2�X72616E646F6D_3�Argument_List_1�write@@GLIBC_2.0�X2424636F6E73756C74322F315F2461757832_2�localtime@@GLIBC_2.0�Scan_Peek_Char�X2462635F656D756C6174655F636F6E74_0�Flush_Output_1�Update_Water_Mark�Fct_Sign�X24246765745F77726974655F6F7074696F6E73322F315F2461757833_1�Pred_Prop_User_1�X2464656275675F726561645F636D64_1�X242466645F6C6162656C696E672F325F2461757832_1�Exit_With_Exception�fileno@@GLIBC_2.0�X403E3D_2�Set_Stream_Eof_Action_2�Statistics_Trail_Stack_2�Op_3�X66645F6D6178696D697A65_2�X5C5C3D3D_2�SR_Get_Position_3�X7365745F73747265616D5F627566666572696E67_2�X6370755F74696D65_1�X2424636865636B5F6F776E65725F66696C65732F335F2461757831_6�strcmp@@GLIBC_2.0�X6F70656E5F6F75747075745F61746F6D5F73747265616D_1�Choice_Point_Info_4�Fd_Exactly�Set_Stream_Buffering_2�stm_tbl�Current_Stream_1�representation_character_code�X24657870616E645F7465726D31_2�X726561645F66726F6D5F61746F6D_2�base_fd�X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757831_1�use_le_prompt�Fd_Prolog_To_Value�Switch_On_Term_Var_Atm_Lst�X666F72_3�X246361746368_6�X2473725F6765745F666F726D61745F617267735F6572726F72_6�last_output_sora�Store_Solution_1�close@@GLIBC_2.0�asin@@GLIBC_2.0�Range_Mul_Value�Fd_Check_For_Bool_Var�x_plus_c_lte_y�Fd_Math_Unify_X_Y�X2466645F6C6162656C696E675F737464_2�Fd_Tell_Interv_Interv�Stream_Getc�_fp_hw�Peek_Char_2�fd_domain_r�Read_Term_From_Codes_5�byte_code�Fd_Sel_Array_From_List_2�X24246765745F73725F6F7074696F6E73322F315F2461757832_1�Unify_Integer�Check_Stream_Type�X246861735F6E6F5F7370795F706F696E74_1�X246C6F61645F6469726563746976655F657863657074696F6E_3�Fd_Element_V_To_I�X6E756D6265725F6368617273_2�Fd_Element_Var_V_To_I�X66645F61746C65617374_3�Read_Integer�Fd_Element_I_To_V�X242464656275675F6C6973745F6F665F70726564312F345F2461757831_4�Rd_Chars_Check�atom_line�X242464656275675F657865635F636D642F365F2461757836_1�X6E616D655F73696E676C65746F6E5F76617273_1�X73725F6765745F6D6F64756C65_3�Rd_In_Char_Check�X246765745F6F70656E5F6F7074696F6E7332_1�X73756D5F6C697374_2�permission_type_stream�Sleep_1�X247573655F675F7661725F696E6C_0�SR_Current_Descriptor_1�X2463757272656E745F7072656469636174655F616E79_1�fprintf@@GLIBC_2.0�X2473725F6572726F725F66726F6D5F657863657074696F6E_2�fork@@GLIBC_2.0�M_Tempnam�X246765745F73725F6F7074696F6E7331_1�Unify_Structure_Tagged�Fct_Fast_Neg�Delete_Choice_Point4�Father_Pred_Of_Aux�getenv@@GLIBC_2.0�M_Random_Float�X63757272656E745F61746F6D_1�X6765745F73656564_1�X6B6579736F7274_1�signal@@GLIBC_2.0�X6765745F6C696E656469745F70726F6D7074_1�Fd_New_Variable�fmod@@GLIBC_2.0�Range_Becomes_Sparse�Rd_Float_Check�Fct_Fast_Inc�X2464656275675F7370795F736574_2�fd_variable_to_string�X246765745F636C6F73655F6F7074696F6E7332_1�Atom_Length_2�Fd_Use_Vector�fflush@@GLIBC_2.0�X247573655F636F6E73756C74_0�Stream_Prop_Type_2�domain_g_argument_selector�Blt_G_Inc_2�X247365745F71756572795F766172735F6E616D6573_2�pclose@@GLIBC_2.1�SR_Get_Error_Counters_3�X2473725F726561645F7465726D2F345F2461757832_2�Display_To_Atom_2�Range_Mul_Range�X2473725F6E65775F706173732F315F2461757831_1�Write_Simple�Read_Atom_2�X233D3C23_2�Fct_Ceiling�X7075745F62797465_2�X6C697374696E67_1�Call_Info_Bip_Name_1�X247573655F666C6167_0�X24247468726F775F696E7465726E616C2F325F2461757831_2�X247573655F747970655F696E6C_0�Blt_G_Link�Mk_In_Char�X403C_2�Get_Predicate_File_Info_3�Bind_Variables_4�Fd_Before_Add_Cstr�Get_Pred_Indic_3�Range_Next_Before�quot_rem_x_a_r_eq_z_F�Fct_Add�Fd_Element_I�X247573655F63616C6C_0�mallopt@@GLIBC_2.0�X24746F705F6C6576656C31_0�ax_plus_by_eq_z_F�X686F73745F6E616D65_1�Pl_Err_Instantiation�unlink@@GLIBC_2.0�Pred_Prop_Built_In_Fd_1�Decompose_File_Name_4�Fd_Init_Solver0�M_Cmd_Line_To_Argv�domain_source_sink�X63757272656E745F707265646963617465_1�Un_Atom�Fd_Init_Solver�X617267756D656E745F636F756E746572_1�X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757832_1�Current_Stream_Alt_0�X247365745F73747265616D5F747970652F325F2461757832_2�X66645F72656C6174696F6E63_2�Arith_Eval_2�Fd_Prolog_To_Fd_Var�getrusage@@GLIBC_2.0�Delete_File_1�X636F6D70617265_3�Name_2�Mk_List�Rd_Code�Atom_Concat_Alt_0�X2462635F656D6974_1�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757835_1�X24636865636B5F61746F6D5F6F725F61746F6D5F6C69737431_1�X247573655F63616C6C5F61726773_0�X6173736572747A_1�X247573655F66696C65_0�Current_Alias_2�X246C6F616432_1�Stream_Prop_Buffering_2�X242464656275675F6C6973745F6F665F70726564312F345F2461757832_5�Update_Choice_Point3�X2473725F6572726F725F66726F6D5F657863657074696F6E2F325F2461757831_1�Set_Stream_Position_2�Un_Byte_Check�X3D3D_2�Retract_2�fd_exactly�le_initialize�X66645F7573655F766563746F72_1�X68616C74_0�X6765745F6B6579_1�X77726974655F63616E6F6E6963616C5F746F5F61746F6D_2�X247365656E2F305F2461757831_1�X2467726F75705F736F6C7574696F6E73_3�X24246765745F73725F6F7074696F6E73322F315F2461757833_1�X73725F6E65775F70617373_1�X6F735F76657273696F6E_1�BC_Start_Pred_7�X24246C6F6164322F315F2461757832_2�Check_For_Un_Boolean�X247265696E69745F61667465725F657863657074696F6E_0�permission_operation_open�Last_Read_Start_Line_Column_2�Mk_Variable�X24737079706F696E745F636F6E646974696F6E31_3�x_imply_y_eq_1�X63616C6C5F776974685F61726773_5�Stream_Ungetc�Un_Float_Check�Mk_In_Byte�Stream_Position_2�Writeq_1�Remove_One_Choice_Point_1�select@@GLIBC_2.0�type_fd_variable�Vector_From_Interval�X756E6765745F62797465_2�X247573655F66645F6D617468_0�X24247465726D5F746F5F676F616C322F325F2461757831_3�Line_Position_2�X7465726D5F726566_2�Mk_Number�Lower_Upper_2�x_plus_y_plus_z_eq_t_F�Pred_Without_Aux�X235C5C_1�query_exception�X24246C6F61645F66696C652F315F2461757831_3�Pl_Err_Syntax�X6D616B655F6469726563746F7279_1�Remove_Predicate_2�wmark_count�X72657472616374_1�X77726974655F746F5F6368617273_2�domain_socket_domain�Blt_G_Dec_3�x_and_y_eq_b�Un_Integer�Sqrt_Up�Allocate�X24696E646F6D61696E_2�File_Permission_2�vsnprintf@@GLIBC_2.0�X24246765745F77726974655F6F7074696F6E73322F315F2461757834_1�X246765745F6C6162656C696E675F6F7074696F6E7331_1�strerror@@GLIBC_2.0�X707574_1�Execute_Directive�Cpu_Time_1�Term_Math_Loading�BC_Emit_Inst_1�Check_For_Un_Number�Fct_Fast_Shr�__dso_handle�Stream_Get_Position�Check_For_Un_Atom�Rd_Code_Check�representation_max_integer�X247573655F66645F696E666F73_0�Set_Linedit_Prompt_1�Stream_Prop_Input_1�x_plus_y_eq_z_F�Global_Push_Float�Hash_Delete�Put_Integer_Tagged�Call_With_Args_3�SR_Current_Descriptor_Alt_0�X636C6F73655F696E7075745F636F6465735F73747265616D_1�Fd_New_Bool_Variable�X706F72747261795F636C61757365_2�Call_With_Args_9�truth_x_gte_c�Blt_G_Deco�base_fl�X246164645F6D6972726F72735F746F5F73747265616D_2�X2472656D6F76655F707265646963617465_2�X63757272656E745F636861725F636F6E76657273696F6E_2�mmap@@GLIBC_2.0�X24636865636B5F61746F6D5F70726F70_1�X6E6F737079616C6C_0�Check_For_Un_Variable�Unify_Occurs_Check�__libc_csu_fini�X2461746F6D5F636F6E6361745F616C74_0�Fd_After_Add_Cstr�Set_Prolog_Flag_2�Reassign_Alias�Check_For_Un_Char�X61746F6D5F636F6E636174_3�X24706C5F6572725F646F6D61696E_2�Call_Prolog�X2473747265616D5F706F736974696F6E_2�Get_Key_2�X246765742F315F2461757831_2�tcsetattr@@GLIBC_2.0�Add_Stream_For_Stdio_File�permission_type_flag�obj_chain_begin�Argument_Counter_1�Pred_Prop_Prolog_Line_2�Sys_Var_Write_2�X2474656C6C2F315F2461757831_2�Blt_Generic_Var�Fct_Fast_Not�Put_Unsafe_Value�setlocale@@GLIBC_2.0�wmark�X2466645F6C6162656C696E6731_4�query_top_b�X66645F6861735F65787472615F63737472_1�X2473725F7365745F74726561745F706173735F62697473_3�X73656C656374_3�Extend_Table_If_Needed�X242464656275675F706F72745F70726F6D70742F365F2461757831_5�X70726F6C6F675F706964_1�X2467726F75705F736F6C7574696F6E735F616C74_0�X6469726563746F72795F66696C6573_2�X2464656275675F646973705F616C74_2�X242464656275675F657865635F636D642F365F2461757835_3�X61745F656E645F6F665F73747265616D_0�X2473686F775F7370795F706F696E7473_0�Fct_Shl�X24746F705F6C6576656C5F657863657074696F6E_1�Hash_Realloc_Table�domain_operator_priority�X686F73746E616D655F61646472657373_2�Fd_New_Int_Variable�Free_Variables_4�X2473686F775F64656275676765725F6D6F646531_1�X247365745F73747265616D5F627566666572696E672F325F2461757832_2�Fd_Neq_2�X676574_1�representation_in_character_code�Prolog_File_Name_2�X2473746174_3�Fd_Add_Dependency�buff_signal_reg�truth_x_neq_y_F�Un_Compound_Check�X73725F77726974655F6D657373616765_8�X242473725F74726561745F7465726D2F325F2461757833_2�Un_Atom_Check�Term_Write_Str_Stream�X2466645F63617264696E616C69747931_2�Make_Stream_Tagged_Word�X246661746865725F6F665F6175785F6E616D65_3�Scan_Choice_Point_Pred�Write_2�X7365745F6269705F6E616D65_2�X2464656275675F646973705F616C7431_3�Fct_Float_Div�X242463617463685F73796E635F666F725F6661696C5F61742F315F2461757831_2�X247573655F7072696E74_0�unify_x_y�__errno_location@@GLIBC_2.0�pow@@GLIBC_2.0�quot_rem_x_y_r_eq_z�Write_A_Char�X2466696C655F70726F70_2�environ@@GLIBC_2.0�X726561645F61746F6D_1�xy_eq_z_F�existence_stream�resource_too_big_fd_constraint�X246D616B655F6175785F6E616D65_4�X2473686F775F64656275676765725F6D6F6465_0�X6F70656E5F6F75747075745F636F6465735F73747265616D_1�Check_For_Un_Codes�X6E65775F61746F6D_1�X63757272656E745F6D6972726F72_2�X242477726974655F736F6C7574696F6E2F335F2461757831_2�x2_eq_y�Get_Stream_Or_Alias�Indomain_Middle_Alt_0�X7265616C5F74696D65_1�X24627265616B2F305F2461757832_1�Find_Next_Atom�Update_Dynamic_Pred�Vector_Next_After�Hostname_Address_2�BC_Emulate_Cont_0�X707265666978_2�X63757272656E745F6F7574707574_1�Fd_Has_Vector_1�ftell@@GLIBC_2.0�SR_Write_Message_6�max_x_y_eq_z�List_Length�X246F7032_3�X2473725F6F70656E2F335F2461757831_1�Shell_2�SR_Get_Include_List_2�X6765745F6B65795F6E6F5F6563686F_2�Stdio_Is_Repositionable�X246463675F7472616E735F72756C65_2�X2464656275675F706F7274_5�X233C3D3E_2�Consult_2�Blt_G_Array_Size�representation_character�Write_Canonical_To_Codes_2�X24696E646F6D61696E5F6D6964646C655F616C74_0�System_2�domain_non_empty_list�Range_Union�Writeq_2�domain_g_array_index�Fd_Use_Vector_1�accept@@GLIBC_2.0�gethostbyaddr@@GLIBC_2.0�Random_1�Blt_Eq�system@@GLIBC_2.0�zero_power_n_eq_y�X247379735F7661725F7365745F626974_2�X242466696E645F6578697374696E675F73747265616D2F335F2461757831_3�X675F696E63_2�Read_Number_2�Mk_Callable�domain_read_option�X247573655F617373657274_0�LE_Is_Interrupt_Key�X2473725F73746F705F6D6F64756C65_3�X66645F61745F6C656173745F6F6E65_1�X2463757272656E745F616C6961732F325F2461757831_2�X247379735F7661725F72656164_2�Set_Current_B_1�Get_Integer�X63757272656E745F70726F6C6F675F666C6167_2�X247573655F736F7274_0�SR_Get_Size_Counters_3�X2464656275675F726561645F696E7465676572_1�X66645F646F6D61696E5F626F6F6C_1�Blt_Atom�X247573655F7465726D5F696E6C_0�access@@GLIBC_2.0�Prolog_Pid_1�X736F636B6574_2�X72656D6F76655F73747265616D5F6D6972726F72_2�Stream_Flush�setvbuf@@GLIBC_2.0�X73725F6765745F696E636C7564655F73747265616D5F6C697374_2�X246765745F73725F6F7074696F6E7332_1�X242464656275675F657865635F636D642F365F2461757837_3�Put_Byte_2�os_argc�Writeq_To_Chars_2�X233E3D_2�Rd_Chars_Str�inet_ntoa@@GLIBC_2.0�Pl_Err_System�Write_To_Codes_2�X63757272656E745F73747265616D_1�X2461726974685F6576616C_2�LE_Compl_Find_Match�domain_stream�X7075745F63686172_2�X3E3D_2�Current_Op_3�M_Set_Seed�X6F70656E5F6F75747075745F63686172735F73747265616D_1�X63616C6C_2�Blt_Callable�X66645F6C6162656C696E67_1�Pred_Prop_Dynamic_1�Load_Cut_Level�Change_Directory_1�Sys_Var_Get_2�type_float�puts@@GLIBC_2.0�X24636865636B5F73747265616D5F6F725F766172_2�le_prompt�Select_5�Term_Compare�_init�X6E6C_1�X5C5C3D_2�X2466645F656C656D656E74_3�Setarg_Of_Last_Found_2�X247573655F73747265616D_0�popen@@GLIBC_2.1�X247573655F756E696679_0�Current_Mirror_2�truth_x_plus_c_neq_y_F�Rd_Positive_Check�Create_Pipe_2�X246462675F696E64696361746F72_2�Call_Compiled�X247379735F7661725F707574_2�Switch_On_Atom�X2462635F73746F705F656D6974_0�X6261676F66_3�Write_Term_To_Chars_2�x_neq_c�X24657865635F636D645F657272_2�X2466645F73656C5F61727261795F7069636B5F766172_4�Architecture_1�listen@@GLIBC_2.0�X74656C6C696E67_1�Current_Output_1�Unlink_1�stk_tbl�X706F70656E_3�Print_To_Codes_2�Indomain_Random_Alt_0�permission_type_static_procedure�Create_Choice_Point1�X73725F6368616E67655F6F7074696F6E73_2�X247573655F7468726F77_0�X7365745F73747265616D5F656F665F616374696F6E_2�X7065656B5F62797465_2�nb_atom�X675F61737369676E_2�type_compound�X2473725F657865635F646972656374697665_2�Seek_4�ax_plus_y_eq_z�Scan_Next_Atom�stm_top_level_input�X736C656570_1�Get_Atom�x_nequiv_y_eq_b�malloc@@GLIBC_2.0�type_predicate_indicator�X726561645F706C5F73746174655F66696C65_1�X7072696E745F746F5F61746F6D_2�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757836_1�X6E65775F61746F6D_3�last_read_line�Fct_Mul�X5C5C2B_1�Random_3�X246C6F61642F315F2461757831_1�X242464656275675F657865635F636D642F365F2461757834_2�Socket_Accept_4�Call_With_Args_6�Pl_Err_Existence�domain_prolog_flag�X646973706C6179_2�X2473756D5F6C69737431_3�X3D3C_2�Range_Inter�Rename_File_2�glob_buff�X247465726D5F746F5F676F616C32_2�domain_selectable_item�X7065656B5F63686172_2�X246765745F77726974655F6F7074696F6E7332_1�Rd_List_Check�X24696E7374616E63655F666F725F736574617267_2�debug_call_code�Date_Time_1�Fct_Identity�X737079706F696E745F636F6E646974696F6E_3�X73725F726561645F7465726D_4�X63757272656E745F616C696173_2�X61745F656E645F6F665F73747265616D_1�abs_x_minus_y_eq_z_F�Create_Water_Mark�X24657865635F636D645F6C696E655F656E7472795F676F616C73_1�X242464656275675F657865635F636D642F365F2461757832_1�Vector_Mul_Vector�abs_x_minus_a_eq_z_F�Delete_Pred�atom_user_input�munmap@@GLIBC_2.0�M_Get_Status�Fct_Max�Retract_Last_Found_0�X746F6C64_0�X6368616E67655F6469726563746F7279_1�prime_x�Rd_Integer_Check�X77726974655F7465726D5F746F5F6368617273_3�Blt_Var�Find_Stream_By_Alias�permission_type_private_procedure�X247365745F6C696E656469745F70726F6D7074_1�X24726561645F72657475726E_1�pipe@@GLIBC_2.0�not_x_eq_b�Group_Solutions_3�Setarg_4�Blt_Functor�x_and_y_eq_0�Get_Integer_Tagged�Unify_List�X24617373657274_3�X246765745F6C6162656C696E675F6F7074696F6E73_2�X737061776E_2�Rd_Char�ax_plus_by_plus_z_eq_t_F�X7772697465715F746F5F6368617273_2�Un_Boolean�X646973706C6179_1�X2477726974655F736F6C7574696F6E31_1�fread@@GLIBC_2.0�Check_For_Un_Chars�Rd_Compound�quot_rem_a_y_r_eq_z�LE_FGets�Get_List�X77726974655F7465726D5F746F5F61746F6D_3�Rd_Byte�Atom_Chars_2�clearerr@@GLIBC_2.0�X617267_3�Keep_Rest_For_Prolog�Statistics_Real_Time_2�At_End_Of_Stream_0�X2473725F6F705F74797065_2�X766172_1�X2462635F656D69745F696E7374_1�M_Absolute_Path_Name�Current_Predicate_2�Extra_Cstr_Alt_0�Fd_Reset_Solver0�X63616C6C5F776974685F61726773_8�X246F702F335F2461757831_3�X656E7669726F6E_2�X247573655F666F726D6174_0�Create_Swt_Stc_Element�Create_Swt_Atm_Element�X6E756D6265725F76617273_0�Put_Y_Variable�atom_text�wmp�X242463616C6C5F696E7465726E616C5F6F722F345F2461757831_6�X3D5C5C3D_2�Un_Number�X746F705F6C6576656C_0�X6C6973745F6F725F7061727469616C5F6C697374_1�X72656164_2�X63616C6C61626C65_1�X242464656275675F646973705F616C74312F335F2461757832_3�Host_Name_1�X77726974655F7465726D_2�x_power_a_eq_y�X246D656D62657263686B2F325F2461757831_4�X246164645F616C69617365735F746F5F73747265616D_2�Atom_Hash_2�X2463757272656E745F61746F6D_1�Character_Count_2�X2424737461742F335F2461757831_2�Call_With_Args_5�Reset_Debug_Call_Code_0�rint@@GLIBC_2.0�X657870616E645F7465726D_2�X2464656275675F646973705F616E635F6C7374_1�X242464656275675F6C6973745F6F665F70726564312F345F2461757833_4�X247370795F746573745F636F6E646974696F6E_3�LE_Get_Current_Position�fixed_sizes�X6164645F73747265616D5F6D6972726F72_2�X247072656469636174655F70726F70657274795F616E79_2�X73725F63757272656E745F64657363726970746F72_1�Switch_On_Structure�atom_at�X6E6F6E766172_1�X24246765745F73725F6F7074696F6E73322F315F2461757834_1�Indomain_Limits_Alt_0�Name_Query_Vars_2�X66645F61745F6D6F73745F6F6E65_1�X247573655F72656164_0�X7772697465_2�X6E756D62657276617273_1�X247375625F61746F6D5F616C74_0�Recover_Solutions_2�X726561645F746F6B656E5F66726F6D5F636F646573_2�Add_Stream�X726561645F66726F6D5F636F646573_2�X6765745F6B6579_2�X246765745F726561645F6F7074696F6E7332_1�Range_Add_Value�X247365745F73747265616D5F747970652F325F2461757831_1�X2464656275675F6C6973745F6F665F7072656431_4�Un_Chars_Check�LE_Close_Terminal�Blt_Term_Gt�Fd_Domain_3�X6465636F6D706F73655F66696C655F6E616D65_4�X63757272656E745F696E707574_1�Peek_Code_1�le_hook_set_line_buffering�permission_type_binary_stream�stm_tbl_size�X2473725F77726974655F6572726F722F365F2461757831_4�X666C7573685F6F7574707574_1�stdout@@GLIBC_2.0�Current_Prolog_Flag_Alt_0�Fd_Tell_Value�stderr@@GLIBC_2.0�Blt_G_Set_Bit�X2424746F705F6C6576656C322F305F2461757835_1�def_local_size�Read_Token�Check_For_Un_In_Byte�Unify_Integer_Tagged�Delete_Choice_Point2�X24706C5F6572725F7265736F75726365_1�truth_x_plus_c_eq_y_F�X66645F7072696D65_1�Indomain_Max_Alt_0�X66645F61746D6F7374_3�Indomain_Min_Alt_0�SR_Get_Stm_2�Fct_And�X247573655F616C6C5F736F6C7574_0�Delete_Directory_1�X666F726B5F70726F6C6F67_1�atom_reposition�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757834_1�Rd_Positive�Blt_Fast_Lte�Get_Float�domain_flag_value�X2461746F6D5F70726F706572747932_7�Fct_Pow�mprotect@@GLIBC_2.0�Close_Stm�X2465787472615F637374725F616C74_0�X636C6F7365_1�Read_Term�le_hook_backd�X73725F77726974655F6D657373616765_4�X77726974655F706C5F73746174655F66696C65_1�X73746F70_0�le_hook_forwd�Mk_Positive�Un_Codes�Un_In_Byte_Check�stm_debugger_output�X246261676F66_4�Blt_Neq�X63616C6C5F776974685F61726773_6�X242463617463685F696E7465726E616C312F355F2461757831_3�File_Prop_Real_File_Name_2�Unget_Code_1�min_x_y_eq_z_F�X6E6F7472616365_0�SR_Change_Options_0�atom_eof�Range_Div_Range�X2463757272656E745F616C6961735F616C74_0�__xstat@@GLIBC_2.0�X617070656E64_1�Fd_Prolog_To_Array_Int�X6F70656E_3�Fct_Log�X77726974655F63616E6F6E6963616C5F746F5F636F646573_2�Un_In_Byte�Delete_Choice_Point�Environ_2�X675F72656164_2�getpagesize@@GLIBC_2.0�For_Alt_0�X2463616C6C5F696E7465726E616C5F776974685F637574_3�type_atom�Send_Signal_2�X247379735F7661725F646563_1�X726561645F61746F6D_2�X6765745F7072696E745F73747265616D_1�X706872617365_3�Prop_And_Stdio_Mode�execv@@GLIBC_2.0�inet_aton@@GLIBC_2.0�For_3�X247573655F636F6E74726F6C_0�Fd_Max_2�X2461746F6D5F70726F70657274795F616E79_2�Get_Pred_Indicator�X66645F6D696E_2�Init_Atom�DATE�Display_To_Codes_2�X777269746571_1�X247072656469636174655F70726F706572747931_2�stm_stdout�X6C697374696E67_0�Vector_Div_Vector�Format_To_Atom_3�X24636865636B5F73747265616D5F70726F70_1�Read_Term_4�Define_Math_Bip_2�Update_Choice_Point�Stream_Prop_End_Of_Stream_2�X2464656275675F63616C6C5F706F7274_5�LE_Set_Separators�X627265616B_0�abs_x_minus_a_eq_z�Add_Stream_Alias_2�domain_write_option�X2462635F73746172745F70726564_7�fseek@@GLIBC_2.0�waitpid@@GLIBC_2.0�x_lte_y�X675F61727261795F73697A65_2�X61737365727461_1�Check_For_Un_Callable�X247573655F616C6C5F66645F62697073_0�X2463757272656E745F6D6972726F725F616C74_0�X73797374656D_1�X24726561645F7175657279_2�Fct_Fast_Div�Rd_Atom�X247573655F70726564_0�Statistics_System_Time_2�X24726561645F7465726D_3�Abolish_1�Fct_Not�Scan_Dynamic_Pred�SR_EOF_Reached_1�Read_Integer_2�Un_Float�Treat_Vars_Of_Term�X646973706C61795F746F5F61746F6D_2�Read_From_Codes_2�Get_Byte_1�Un_Callable_Check�Flush_Output_0�Pred_Prop_Native_Code_1�X24657865635F636D645F6C696E655F676F616C_1�X6D696E5F6C697374_2�ax_plus_y_plus_z_eq_t�X7061727469616C5F6C697374_1�X24706C5F6572726F72_1�time@@GLIBC_2.0�X7772697465_1�X726561645F746F6B656E5F66726F6D5F61746F6D_2�Check_For_Un_Code�Get_Seed_1�X6E756D6265725F61746F6D_2�X2323_2�X2464656275675F657863657074696F6E5F706F7274_5�X2464656275675F77726974655F676F616C_4�X66645F6E6F745F7072696D65_1�Fct_Fast_Add�X636C6F73655F6F75747075745F636F6465735F73747265616D_2�Un_In_Char_Check�Un_String�Full_Var_Power_2�X235C5C3D_2�Pl_Err_Evaluation�_start�Vector_Nb_Elem�le_hook_ins_mode�X24246765745F77726974655F6F7074696F6E73322F315F2461757831_1�X247573655F61746F6D_0�x_gte_c�Un_List�X247379735F7661725F676574_2�Stream_Gets�X2424746F705F6C6576656C322F305F2461757831_2�Un_Positive�x_nor_y_eq_b�Blt_Fast_Neq�Obtain_Float�X636C6F73655F696E7075745F61746F6D5F73747265616D_1�X246E746831_3�SR_Is_Bit_Set_1�Spawn_3�Vector_Ith_Elem�X636C6F73655F6F75747075745F61746F6D5F73747265616D_2�Blt_Term_Lte�X24706C5F6572725F7065726D697373696F6E_3�M_Host_Name_From_Name�X247573655F72616E646F6D_0�Lookup_Pred�Fct_Sqrt�Print_To_Atom_2�Number_Chars_2�X6E756D6265725F636F646573_2�X242464656275675F7370795F72657365742F315F2461757831_3�le_hook_flush�domain_stream_option�Blt_Integer�X24636865636B5F737461745F6B6579_1�SR_New_Pass_1�Pl_Err_Permission�Range_Add_Range�evluation_undefined�Read_Atom_1�Create_Choice_Point�Debug_Wam�X246765745F62696E645F7661726961626C65735F6F7074696F6E7331_1�X66645F7365745F766563746F725F6D6178_1�Gen_New_Atom�Write_Canonical_1�X2463757272656E745F7072656469636174655F616C74_0�le_hook_put_char�Find_Expon_Dn�X2424657865635F71756572792F325F2461757832_2�X247072656469636174655F70726F706572747932_2�Find_Atom�def_cstr_size�X66645F63617264696E616C697479_3�X24636865636B5F66696C655F70726F70_1�X245C5C2B2F315F2461757831_1�le_hook_start�Put_Code_1�chdir@@GLIBC_2.0�Scan_Choice_Point_Info_3�M_Allocate_Stacks�Vector_Copy�X61746F6D5F68617368_2�X77726974655F746F5F636F646573_2�X77726974655F7465726D_3�Throw_2�pi_name_word�Set_Stream_Buffering�X66645F6D61785F696E7465676572_1�Fct_Fast_And�X737079_1�LE_Get_Prompt_Length�Sort_List_2�Check_Prop_Perm_And_File_2�Pl_Err_Domain�Blt_List_Or_Partial_List�X6C656E677468_2�X24706C5F6572725F6578697374656E6365_2�Make_Aux_Name�X2424636865636B5F707265645F747970652F335F2461757831_4�File_Exists_1�le_hook_confirm_box�Update_Choice_Point1�Socket_Close_1�X6E756D626572_1�LE_Get_Ctrl_C_Return_Value�strstr@@GLIBC_2.0�permission_type_source_sink�strlen@@GLIBC_2.0�X247365745F63757272656E745F42_1�longjmp@@GLIBC_2.0�X72657472616374616C6C_1�permission_operation_output�X24706C5F6572725F73797374656D_1�Rd_Atom_Check�X73797374656D5F74696D65_1�SR_Write_Message_4�From_Alias_To_Stream_2�X2464656275675F646973705F616C7432_1�X2463616C6C2F325F2461757831_1�X24246C6F61645F707265642F325F2461757831_3�LE_Get_Char�sigaddset@@GLIBC_2.0�Rd_Boolean�X233D3C_2�obj_chain_end�le_hook_get_line_buffering�Add_Linedit_Completion_1�Set_Stream_Line_Column_3�Assert_4�X2466645F63617264696E616C697479_2�X24636F6E73756C742F315F2461757831_1�X6F70656E_4�X6D61785F6C697374_2�type_atomic�Set_Heap_Actual_Start�le_hook_screen_size�Put_Float�X2466645F6D6178696D697A652F325F2461757831_6�Term_Size�X66645F766172_1�X706872617365_2�X6D656D62657263686B_2�Atom_Codes_2�Range_Copy�__lxstat@@GLIBC_2.0�X636C61757365_2�Pred_Prop_Private_1�X66645F766563746F725F6D6178_1�X246765745F6F70656E5F73746D_2�Fct_Float_Fract_Part�X73747265616D5F706F736974696F6E_2�Put_Char_1�atom_none�X6765745F6B65795F6E6F5F6563686F_1�Unify�X246F70656E_4�X73747265616D5F6C696E655F636F6C756D6E_3�X246F7031_3�Least_Significant_Bit�X2464656275675F656E645F63616C6C_6�uname@@GLIBC_2.0�oper_tbl�X2466696E645F6578697374696E675F73747265616D_3�Fct_Xor�atom_block�Un_Positive_Check�__strtol_internal@@GLIBC_2.0�Current_Char_Conversion_2�Blt_Partial_List�X61746F6D5F6368617273_2�X242464656275675F646973705F616C74312F335F2461757831_2�qsort@@GLIBC_2.0�Statistics_Cstr_Stack_2�X242473725F646972656374697665312F325F2461757832_2�X666C7573685F6F7574707574_0�x_plus_y_plus_z_eq_t�Hash_Nb_Elements�Mk_Integer�X2424737079706F696E745F636F6E646974696F6E312F335F2461757831_5�X24246261676F662F345F2461757831_2�X6164645F6C696E656469745F636F6D706C6574696F6E_1�BC_Stop_Emit_0�Rd_Codes�X2473725F74726561745F706173735F6E6F_3�Number_Atom_2�M_Random_Integer�X24706872617365_4�X73725F6765745F66696C655F6E616D65_2�X61746F6D6963_1�domain_date_time�X2474727574685F6F66_2�X2461746F6D5F70726F706572747931_2�Fct_Mod�Display_To_Chars_2�X2463617463685F73796E635F666F725F6661696C5F6174_1�Close_1�LE_Get_Separators�evluation_float_overflow�X7375625F61746F6D_5�X726570656174_0�Make_Aux_Name_4�representation_max_arity�X233E_2�X736F636B65745F616363657074_4�X7072696E745F746F5F636F646573_2�last_input_sora�X736F636B65745F636C6F7365_1�Mk_Char�Fd_Set_Full_Ac_Flag_1�Fd_Has_Extra_Cstr_1�X6164645F73747265616D5F616C696173_2�LE_Gets�Range_Ith_Elem�X24746F6C642F305F2461757831_1�xy_eq_z�X246164645F636C617573655F7465726D5F616E645F6263_2�X675F61737369676E62_2�x_plus_y_eq_z�X67657430_1�Find_Expon_Up�X2473746F72655F736F6C7574696F6E73_4�X24246C6F61645F707265642F325F2461757832_3�Lookup_Oper�execvp@@GLIBC_2.0�X24636865636B5F707265645F74797065_3�X247265766572736531_3�le_hook_emit_beep�Get_Structure�X636861725F636F6E76657273696F6E_2�tzset@@GLIBC_2.0�Find_Linedit_Completion_2�X675F7365745F626974_2�Stream_Prop_Mode_2�X24246C6F6164322F315F2461757831_3�X61746F6D_1�X736F7274_2�X246765745F6F70656E5F6F7074696F6E7331_1�Execute_A_Continuation�Blt_G_Assign�Set_Stream_Type_2�Stream_Peekc�X2463616C6C2F325F2461757832_3�char_conv�X2466645F6C6162656C696E675F6D7468_4�X2464656275675F7377697463685F6F6666_0�setlinebuf@@GLIBC_2.0�X6E616D655F71756572795F76617273_2�X246765745F73725F6F7074696F6E73_2�X7065656B5F63686172_1�x_plus_c_eq_y_F�M_Get_Working_Dir�atom_not�X242473725F646972656374697665312F325F2461757831_4�m_os_version�X246175785F6E616D65_1�max_x_y_eq_z_F�X246D616B655F6C697374_2�Update_Choice_Point4�X64656C657465_3�atom_current�X7772697465715F746F5F61746F6D_2�Choice_Point_Arg_3�Fct_Fast_Xor�X2477726974655F696E64696361746F72_0�sigprocmask@@GLIBC_2.0�X246C697374696E675F6F6E65_1�Get_Code_2�Range_Mod_Value�atom_eof_code�X242464656275675F63616C6C2F325F2461757831_2�strncmp@@GLIBC_2.0�X242473725F73746F705F6D6F64756C652F335F2461757831_2�Popen_3�Fct_Or�Fct_Fast_Shl�X24636865636B5F61746F6D5F6F725F61746F6D5F6C697374_1�X66696E64616C6C_3�Get_Current_B_1�atom_reset�X7075745F63686172_1�Fd_Copy_Variable0�Deallocate�SR_Open_File_2�X2464656275675F646973705F616C7465726E617469766573_2�X6C617374_2�Stream_Prop_Eof_Action_2�last_read_col�X7365745F73747265616D5F74797065_2�Clause_3�fputc@@GLIBC_2.0�User_Time_1�__libc_csu_init�Temporary_Name_2�truth_x_eq_y�vec_max_integer�Number_Codes_2�X247573655F66645F626F6F6C_0�Working_Directory_1�X242463617463685F615F7468726F772F355F2461757831_2�Mk_In_Code�Rd_Byte_Check�Vector_Div_Value�Blt_Fast_Eq�stm_input�X242473725F73746172745F6D6F64756C652F335F2461757831_2�X2473725F74726561745F7465726D_2�X74656D706F726172795F6E616D65_2�Unget_Byte_2�X6765745F63686172_1�Set_Output_1�X7365745F696E707574_1�Fd_Display_Extra_Cstr�X737566666978_2�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757832_1�Argument_Value_2�Char_Code_2�Unify_Value�X2424746F705F6C6576656C322F305F2461757833_3�X247573655F616C6C5F706C5F62697073_0�Write_Term�X247573655F66645F73796D626F6C6963_0�Add_Dynamic_Clause�SR_Add_Directive_7�type_character�__bss_start�Unify_Local_Value�X242464656275675F7370795F7365742F325F2461757831_3�X63616C6C5F776974685F61726773_1�Assoc_Socket_Streams_3�Write_Term_To_Codes_2�Stream_Prop_Output_1�Mk_Boolean�X6765745F636F6465_2�main�Try_Execute_Top_Level�M_Set_Working_Dir�Read_Token_2�Check_For_Un_List�Vector_Empty�Un_List_Check�X246E756D6265725F766172732F305F2461757831_1�X7075745F636F6465_2�Statistics_Cpu_Time_2�X636F6D706F756E64_1�X2466645F72656C6174696F6E6331_3�Set_Top_Level_Streams_2�X233C23_2�X7072696E74_1�Pred_Without_Aux_4�Rd_In_Byte�X646973706C61795F746F5F636F646573_2�type_in_character�Syntax_Error_Info_4�X2463757272656E745F707265646963617465_1�type_variable�Fct_Fast_Mod�domain_operator_specifier�X24707265645F776974686F75745F617578_4�X63616C6C5F776974685F61726773_11�X233E3D23_2�Socket_Bind_2�Switch_On_Term_Var_Atm_Stc�X247573655F6465633130696F_0�os_argv�X77726974655F63616E6F6E6963616C_2�domain_format_control_sequence�a_power_n_eq_y�Halt_If_No_Top_Level_1�X246765745F63757272656E745F42_1�Fct_Rem�X63757272656E745F6269705F6E616D65_2�Un_In_Code_Check�Hash_Delete_All�Vector_Test_Null_Inter�fd_element�LE_Compl_Init_Match�Get_Code_1�Write_Canonical_To_Atom_2�X675F646563_3�X6C697374_1�Fd_Atmost�Portray_Clause_1�X235C5C3C3D3E_2�Fct_Cos�X246861735F7370795F706F696E74_2�X675F6465636F_2�__libc_start_main@@GLIBC_2.0�X73656C656374_5�permission_type_text_stream�Get_Atom_Tagged�X247468726F7731_2�X2463617463685F6661696C5F6E6F77_1�Call_With_Args_11�Fd_Sel_Array_Pick_Var_4�Find_Linedit_Completion_Alt_0�X64656C6574655F66696C65_1�Blt_Float�X247365745F6C6162656C696E675F64656661756C7473_0�X7072696E74_2�X73746174697374696373_0�Sqrt_Dn�M_User_Time�X63616C6C5F776974685F61726773_9�X24246765745F73725F6F7074696F6E73322F315F2461757831_1�X2424737461742F335F2461757832_1�Put_Structure�X6E6F6E5F66645F766172_1�New_Object�Fd_Max_Integer_1�Blt_Non_Generic_Var�X61626F7274_0�Set_Input_1�X24246C697374696E675F616C6C2F315F2461757831_2�X242463616C6C5F696E7465726E616C2F325F2461757831_1�X2473747265616D5F70726F706572747931_2�truth_x_eq_c_F�type_callable�Close_Input_Term_Stream_1�X66645F656C656D656E74_3�X726561645F7465726D5F66726F6D5F61746F6D_3�Add_Str_Stream�BC_Call_Terminal_Pred_3�File_Prop_Absolute_File_Name_2�exp@@GLIBC_2.0�X73725F77726974655F6572726F72_2�X246C656173685F6D616B655F6D61736B_2�X2466645F6C6162656C696E67_2�X6E756D62657276617273_3�Display_2�X7472616365_0�permission_operation_access�atom_past�X2466696C655F70726F705F7065726D_2�fd_atleast�X24636C6F7365_2�Fct_Floor�Put_Byte_1�X2463757272656E745F61746F6D5F616E79_1�Mk_Code�New_Atom_3�x_nimply_y_eq_b�reg_bank�Current_Alias_Alt_0�Rd_Compound_Check�X2464656275675F706F727432_6�M_Host_Name_From_Adr�SR_Close_1�dup2@@GLIBC_2.0�X7368656C6C_0�ax_plus_by_plus_z_eq_t�X7065656B5F636F6465_2�X2464656275675F646973705F616E635F6C737431_1�X246765745F707265645F696E646963_3�Read_Token_From_Chars_2�SR_Update_Position_0�M_Randomize�Fct_Round�X675F6C696E6B_2�truth_x_neq_y�Rd_Chars�realloc@@GLIBC_2.0�Statistics_User_Time_2�X6465627567_0�Statistics_0�M_Get_Seed�X246765745F77726974655F6F7074696F6E7331_1�X24746F705F6C6576656C5F61626F7274_0�strcat@@GLIBC_2.0�Print_1�Get_Linedit_Prompt_1�permission_operation_close�Del_Mirror_From_Stream�__environ@@GLIBC_2.0�permission_operation_reposition�X73725F636C6F7365_1�Close_Output_Term_Stream_2�fd_variable_size�X675F696E636F_2�X636F70795F7465726D_2�Check_For_Un_Positive�truth_x_neq_c�Exit_With_Value�X24736F636B65745F6163636570742F345F2461757831_1�Rd_Boolean_Check�data_start�Fct_Fast_Mul�X73725F77726974655F6D657373616765_6�File_Prop_Type_2�Fct_Acos�X2466696E64616C6C_4�Stream_End_Of_Stream�Pl_Err_Representation�X7075745F62797465_1�X7072656469636174655F70726F7065727479_2�existence_procedure�Fct_Div�Fd_Min_2�Fct_Fast_Rem�Current_Atom_2�Power�Scan_Token�Delete_Stream�Put_Atom�X2473725F6F70656E2F335F2461757832_1�X6F70656E5F696E7075745F63686172735F73747265616D_2�Extend_Array�Vector_Add_Value�X7065726D75746174696F6E_2�max_x_a_eq_z�ax_eq_y�X66645F65786163746C79_3�Pl_Err_Resource�X736F727430_2�X403D3C_2�X66645F646F6D61696E_2�truth_x_neq_c_F�Peek_Byte_1�X726561645F7465726D5F66726F6D5F6368617273_3�X6162736F6C7574655F66696C655F6E616D65_2�Write_To_Chars_2�bind@@GLIBC_2.0�X736574617267_4�Format_2�X24246765745F77726974655F6F7074696F6E73322F315F2461757832_1�fd_element_var�X24666F726B5F70726F6C6F672F315F2461757831_1�Check_For_Un_In_Code�_fini�X24636865636B5F61746F6D5F6F725F61746F6D5F6C69737432_1�X2473686F775F6C65617368696E675F696E666F_0�lseek@@GLIBC_2.0�fcntl@@GLIBC_2.0�Put_Integer�X24636F6E73756C7432_1�memcpy@@GLIBC_2.0�Get_Byte_2�Unknown_Pred_Error�sqrt@@GLIBC_2.0�def_global_size�Stream_Get_Key�type_boolean�truth_x_plus_c_gte_y�x_or_y_eq_b�X73725F6572726F725F66726F6D5F657863657074696F6E_2�X24636865636B5F696E5F6368617261637465725F636F6465_1�permission_operation_create�X24746F705F6C6576656C32_0�Set_C_Bip_Name�X66696C655F70726F7065727479_2�X2473725F77726974655F6572726F722F325F2461757831_6�X2424657865635F71756572792F325F2461757831_3�X2473725F726561645F7465726D2F345F2461757831_3�Lookup_Oper_Any_Type�X7365746F66_3�ax_eq_y_F�X73725F6765745F696E636C7564655F6C697374_2�Blt_G_Test_Set_Bit�Fd_Element_Var_I_To_V�BC_Emulate_Pred�fclose@@GLIBC_2.1�Rd_Callable�X24747261696C5F68616E646C6572_1�Fd_Domain_Bool_1�X65786563_4�X247365745F77726974655F64656661756C7473_0�Blt_Term_Lt�M_Mktemp�X242477726974655F696E64696361746F722F305F2461757832_2�__ctype_toupper_loc@@GLIBC_2.3�Socket_Connect_4�LE_Printf�le_hook_displ_str�getsockname@@GLIBC_2.0�strrchr@@GLIBC_2.0�Unify_Nil�a_power_n_eq_y_F�X24706C5F6572725F74797065_2�X736565696E67_1�Delete_Str_Stream�X2473686F775F6C65617368696E675F696E666F32_1�Unify_Variable�Pred_Prop_Prolog_File_2�Rd_In_Byte_Check�X726561645F6E756D626572_1�Unify_Atom_Tagged�Create_Choice_Point4�X696E7465676572_1�ensure_reserved�X2473686F775F756E646566696E65645F616374696F6E_0�Current_Char_Conversion_Alt_0�__strdup@@GLIBC_2.0�Read_Number�x_eq_y�X675F746573745F7365745F626974_2�X675F646563_2�X24246765745F636C6F73655F6F7074696F6E73322F315F2461757831_1�Open_3�Stream_Set_Position_LC�Strdup_Check�rmdir@@GLIBC_2.0�Pred_Prop_Static_1�Temporary_File_3�X74656D706F726172795F66696C65_3�Stdio_Set_Buffering�Fd_Element_Var_I�X233D23_2�X6765745F636F6465_1�le_hook_kbd_is_not_empty�Mk_Codes�X6372656174655F70697065_2�type_integer�Current_Mirror_Alt_0�Stream_Line_Column_3�truth_x_eq_y_F�Read_Term_From_Chars_5�Check_For_Un_In_Char�Sys_Var_Put_2�Delete_Dynamic_Clause�domain_io_mode�closedir@@GLIBC_2.0�X6B6579736F7274_2�domain_close_option�X2463616C6C5F696E7465726E616C_2�Call_With_Args_7�gettimeofday@@GLIBC_2.0�X7365745F73656564_1�Make_Directory_1�Blt_Term_Eq�Fct_Exp�M_System_Time�Add_Stream_Mirror_2�X24706C5F6572725F6576616C756174696F6E_1�X726561645F6E756D626572_2�m_os_type�X736F636B65745F6C697374656E_2�X247573655F6361746368_0�Blt_G_Inco�X247379735F7661725F72657365745F626974_2�srand@@GLIBC_2.0�Display_1�Fd_Prolog_To_Array_Fdv�X247365745F64656275676765725F73747265616D73_2�Range_Mod_Range�LE_Emit_Beep�x_neq_y�Blt_G_Dec�X247379735F7661725F696E63_1�X246463675F7472616E735F626F6479_4�X2473686F775F756E646566696E65645F616374696F6E31_1�X7368656C6C_2�X247573655F6C697374_0�Stream_Gets_Prompt�X2473725F73696D706C5F6572726F72_5�opendir@@GLIBC_2.0�Rd_Callable_Check�X77726974655F7465726D5F746F5F636F646573_3�domain_stream_or_alias�X6F70656E5F696E7075745F61746F6D5F73747265616D_2�X235C5C5C5C2F_2�gethostname@@GLIBC_2.0�Get_Char_2�Hash_Find�Fd_Create_C_Frame�X24246261676F662F345F2461757832_2�open@@GLIBC_2.0�Mk_String�X24656E7669726F6E5F616C74_0�X736F636B65745F636F6E6E656374_4�Write_To_Atom_2�X242464656275675F706F72745F69676E6F72652F345F2461757831_3�X66645F6861735F766563746F72_1�X2463757272656E745F616C696173_2�type_in_byte�X73747265616D5F70726F7065727479_2�atom_top_level_input�X2473725F77726974655F6572726F722F345F2461757831_4�X246C656E677468_3�Un_In_Char�abs_x_minus_y_eq_z�x_eq_c�X246173736F635F736F636B65745F73747265616D73_3�vec_size�X7772697465715F746F5F636F646573_2�m_architecture�X72616E646F6D_1�X6E616D65_2�Stream_Prop_Reposition_2�LE_Compl_Del_Word�X24636865636B5F68656164_1�Rd_Proper_List_Check�Mk_Float�X24756E77696E64_1�X247365745F62696E645F7661726961626C65735F64656661756C7473_0�LE_Get_Key�X6F70_3�M_Spawn_Redirect�stm_stdin�gethostbyname@@GLIBC_2.0�atom_binary�sigemptyset@@GLIBC_2.0�atom_debugger_input�Fct_Asin�Un_Integer_Check�At_End_Of_Stream_1�Blt_G_Inc�Rd_String�LE_Open_Terminal�Nl_0�Stream_Prop_File_Name_2�X2463757272656E745F73747265616D5F616C74_0�X24636C61757365_3�X232F5C5C_2�X6E7468_3�X242464656275675F657865635F636D642F365F2461757831_1�X7365745F6C696E656469745F70726F6D7074_1�Switch_On_Integer�Fct_Float_Integ_Part�Fd_Assign_Value�X24706F72747261795F636C61757365_2�X242466645F6C6162656C696E672F325F2461757831_4�Full_Var_Div_Var�Stream_Printf�X24246765745F77726974655F6F7074696F6E73322F315F2461757836_1�byte_len�Hash_Table_Size�Current_Op_Alt_0�Blt_Non_Fd_Var�Copy_Term�getpwnam@@GLIBC_2.0�X2464656275675F69735F64656275675F707265646963617465_1�Stop_Prolog�X247573655F7372635F726472_0�X73725F6765745F6572726F725F636F756E74657273_3�X6E6C_0�exit@@GLIBC_2.0�Format_To_Codes_3�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757831_1�atom_top_level_output�X2463616C6C5F696E7465726E616C5F6F72_4�X24746F705F6C6576656C5F73746F70_0�Fct_Atan�Mk_Proper_List�Add_Alias_To_Stream�X242473725F74726561745F7465726D2F325F2461757831_2�X66645F73697A65_2�X24617070656E642F315F2461757831_2�Check_For_Un_Float�Get_Print_Stm_1�X73656E645F7369676E616C_2�X73725F6F70656E_3�X247365652F315F2461757831_2�calloc@@GLIBC_2.0�Read_Pl_State_File�X6973_2�X247573655F66645F76616C756573_0�X246D61785F6C69737431_3�Vector_Full�X2464656275675F706F72745F707265747479_2�atom_stream_position�X2463686F6963655F706F696E745F696E666F_4�Environ_Alt_0�Rd_Codes_Check�Father_Of_Aux_Name_3�Get_Key_No_Echo_1�ax_plus_y_eq_z_F�X6C696E655F706F736974696F6E_2�Un_String_Check�Full_Nth_Root�X65786563_5�Create_Allocate_Atom�X247573655F707265747479_0�X736F727430_1�Line_Count_2�Mk_Byte�X2464656275675F706F72745F69676E6F7265_4�X666C6F6174_1�X2464656275675F7377697463685F6F6E_1�Hash_First�Define_Vector_Size�Un_Chars�Atom_Concat_3�Range_To_String�sscanf@@GLIBC_2.0�X70726F6C6F675F66696C655F6E616D65_2�Get_Current_Bip�_edata�X3E_2�X246765745F636C6F73655F6F7074696F6E7331_1�X247363616E5F64796E5F6A756D705F616C74_0�atom_tbl�min_x_y_eq_z�__i686.get_pc_thunk.bx�_IO_putc@@GLIBC_2.0�Sub_Atom_Alt_0�Sqrt_Exact�X66645F6C6162656C696E67_2�Switch_On_Term�Sys_Var_Set_Bit_2�X736F636B65745F62696E64_2�fd_atmost�free@@GLIBC_2.0�Create_Atom�Read_2�Fd_Add_List_Dependency�_end�X2E_2�Get_Key_1�ioctl@@GLIBC_2.0�X2463757272656E745F7072656469636174655F62697073_1�X66696E645F6C696E656469745F636F6D706C6574696F6E_2�X675F72657365745F626974_2�Start_Prolog�X63616C6C5F776974685F61726773_4�Prime_Range�X756E6765745F63686172_2�X61626F6C697368_1�truth_x_lt_y�X73725F6765745F706F736974696F6E_3�Stream_Set_Position�Check_For_Un_String�X72616E646F6D697A65_0�X2465786563_5�X3C_2�min_x_a_eq_z�Un_Callable�X675F746573745F72657365745F626974_2�X2463757272656E745F61746F6D5F616C74_0�Blt_Non_Var�X24636865636B5F707265645F70726F70_1�getcwd@@GLIBC_2.0�X24726574726163745F6C6173745F666F756E64_0�X24246765745F77726974655F6F7074696F6E73322F315F2461757835_1�Copy_Clause_To_Heap�Fd_Atleast�Un_Proper_List_Check�X2424657870616E645F7465726D312F325F2461757831_2�Peek_Byte_2�Blt_Gte�Realloc_Check�isatty@@GLIBC_2.0�X24246765745F6F70656E5F73746D2F325F2461757831_2�stm_top_level_output�Un_Char�Range_Sub_Range�X77726974655F666F66_1�Create_Swt_Table�acos@@GLIBC_2.0�memset@@GLIBC_2.0�X726561645F696E7465676572_1�Un_Code�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757833_1�connect@@GLIBC_2.0�Rd_List�X233D3D3E_2�stdin@@GLIBC_2.0�X2463686F6963655F706F696E745F617267_3�X247573655F636F6E73745F696F_0�X2464656275675F636865636B5F626970_2�X66696C655F7065726D697373696F6E_2�X235C5C2F_2�Un_Proper_List�X736565_1�X666F726D6174_2�Create_Pred�X62696E645F7661726961626C6573_2�resource_print_object_not_linked�Unify_Void�Write_Term_1�X6C6F6164_1�X2466696E645F6C696E656469745F636F6D706C6574696F6E5F616C74_0�Call_With_Args_10�X72656164_1�X617267756D656E745F76616C7565_2�Detect_If_Aux_Name�X6C65617368_1�atom_true�X246E746832_4�existence_sr_descriptor�Most_Significant_Bit�Reset_Prolog_In_Signal�Create_Functor_Arity_Tagged�X246C61737431_3�Format_To_Chars_3�Full_Sqrt_Var�X617263686974656374757265_1�X247468726F775F696E7465726E616C_2�Globalize_If_In_Local�X66645F646F6D_2�X2463757272656E745F636861725F636F6E76657273696F6E5F616C74_0�Sys_Var_Read_2�Vector_Mul_Value�SR_Set_Error_Counters_3�Range_Next_After�X247365745F6F70656E5F64656661756C7473_0�Calloc_Check�Rd_Chars_Str_Check�Sub_Atom_5�truth_x_lte_c�X73725F77726974655F6572726F72_4�Fd_All_Different_1�X246C6F616431_1�X242464656275675F706F72745F69676E6F72652F345F2461757833_3�Syntax_Error�Blt_Atomic�X726561645F696E7465676572_2�M_Spawn�Fct_Fast_Abs�Statistics_Local_Stack_2�X246765745F686561645F616E645F626F6479_3�X2464656275675F63616C6C31_8�strncpy@@GLIBC_2.0�Range_Set_Value�X24636865636B5F6C697374_1�domain_character_code_list�Un_Number_Check�X2424636F6E73756C74322F315F2461757833_2�X247573655F6C655F696E74657266_0�Group_Solutions_Alt_0�Writeq_To_Codes_2�X24636174636831_4�Set_Last_Syntax_Error�X24657865635F636D6431_1�X24726561645F72657475726E_0�X636C6F73655F696E7075745F63686172735F73747265616D_1�Fct_Dec�x_plus_c_eq_y�Dcg_Trans_Body_4�Format_3�Blt_Compare�Fct_Sin�fopen@@GLIBC_2.1�dup@@GLIBC_2.0�Call_With_Args_2�type_fd_bool_evaluable�Fct_Inc�X3D_2�domain_os_path�permission_operation_input�Call_With_Args_8�Put_List�X67656E657269635F766172_1�X61746F6D5F636F646573_2�Mk_Compound�X2424657865635F636D645F6C696E655F676F616C2F315F2461757831_1�_setjmp@@GLIBC_2.0�X24666F725F616C74_0�Fct_Sub�truth_x_plus_c_neq_y�X675F696E63_3�X6765745F62797465_2�Put_Char_2�SR_Get_Include_Stream_List_2�Context_Error_1�Vector_Mod_Vector�X242473725F646972656374697665312F325F2461757833_2�X7368656C6C_1�X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757833_1�X2464656275675F646973705F68656C70_0�M_Shell�X646973706C61795F746F5F6368617273_2�le_hook_get_char0�Hash_Next�SR_Stop_Module_3�X7375626C697374_2�M_Sys_Err_String�tag_tbl�Check_For_Un_Integer�SR_Get_Module_3�Fd_Bool_Meta_3�X726561645F7465726D5F66726F6D5F636F646573_3�X24636865636B5F6C6973745F6F725F7061727469616C5F6C697374_1�X63616C6C5F776974685F61726773_3�Peek_Code_2�Rd_In_Code_Check�escape_char�Blt_G_Test_Reset_Bit�Un_Compound�Set_Debugger_Streams_2�_IO_stdin_used�X7365745F73747265616D5F706F736974696F6E_2�X726561645F746F6B656E5F66726F6D5F6368617273_2�X726561645F746F6B656E_2�Directory_Files_2�X2463616C6C5F7465726D5F657870616E73696F6E_2�Put_Code_2�Stdio_Desc_Of_Stream�char_type�X233D_2�X756E6C696E6B_1�Blt_Term_Gte�Fd_Tell_Range_Range�X247363616E5F64796E5F746573745F616C74_0�Blt_Term_Neq�X2464656275675F706F72745F70726F6D7074_6�X242472656D6F76655F756E64657273636F72655F766172732F325F2461757831_2�X247472795F706F7274726179_1�Unset_C_Bip_Name�X726561645F7465726D_3�Call_Prolog_Next_Sol�X247573655F636861725F696F_0�strtok@@GLIBC_2.0�X2473725F73746172745F6D6F64756C65_3�sys_var�kill@@GLIBC_2.0�X77726974655F63616E6F6E6963616C_1�X246765745F62696E645F7661726961626C65735F6F7074696F6E73_4�X2424726561645F71756572792F325F2461757831_1�permission_type_operator�Delete_Oper�truth_x_lte_y�Update_Choice_Point2�SR_Check_Descriptor_1�Blt_Fast_Gte�X2463617463685F615F7468726F77_5�X77616974_2�getc@@GLIBC_2.0�SR_Start_Module_3�domain_os_file_permission�le_hook_message_box�truth_x_plus_c_eq_y�parse_dico_var�token�X2463757272656E745F70726F6C6F675F666C61675F616C74_0�Un_Char_Check�Dcg_Trans_Rule_2�permission_operation_modify�X24737461746973746963732F325F2461757831_3�Check_For_Un_Byte�Blt_G_Inc_3�X756E6966795F776974685F6F63637572735F636865636B_2�Set_Bip_Name_2�X247365745F726561645F64656661756C7473_0�Add_Mirror_To_Stream�atom_end_of_file�x_power_a_eq_y_F�X63757272656E745F6F70_3�Set_Ctrl_C_Handler_0�Hash_Insert�stm_output�Blt_List�Flush_All_Streams�X7365656B_4�Find_Stream_From_PStm�parse_nb_var�X7072696E745F746F5F6368617273_2�domain_stream_seek_method�X726561645F66726F6D5F6368617273_2�Rd_Number�Full_Find_Expon�Float_To_String�atom_user_output�Rd_Integer�Load_Left_Right�X2464656275675F706F727431_6�sprintf@@GLIBC_2.0�X403E_2�Fd_Lte_2�x_lt_y�Untrail�Read_From_Chars_2�fwrite@@GLIBC_2.0�Scan_Dynamic_Pred_Alt_0�X6368617261637465725F636F756E74_2�X247573655F66645F7072696D65_0�Fd_Size_2�Unify_Atom�Fct_Fast_Sub�X77726974655F63616E6F6E6963616C5F746F5F6368617273_2�X246372656174655F636F6C756D6E_3�__data_start�Scan_Next_Number�Blt_Gt�Fd_Dom_2�realpath@@GLIBC_2.3�sin@@GLIBC_2.0�X617267756D656E745F6C697374_1�Read_Term_From_Atom_5�Fd_Domain_2�X706F7274726179_1�X2462696E645F7661726961626C6573_4�Fd_Prolog_To_Array_Any�X73725F6765745F73697A655F636F756E74657273_3�socket@@GLIBC_2.0�Current_Prolog_Flag_2�X24636865636B5F6F776E65725F66696C6573_3�Fd_Set_Vector_Max_1�Term_Ref_2�Not_Prime_Range�X617070656E64_3�X247365745F73747265616D5F656F665F616374696F6E2F325F2461757831_1�X646174655F74696D65_1�File_Prop_Size_2�Un_Byte�_IO_getc@@GLIBC_2.0�Vector_Inter�readdir@@GLIBC_2.0�X246765745F62696E645F7661726961626C65735F6F7074696F6E7332_1�Check_Valid_Mirror_1�X24636865636B5F6C6973745F617267_2�_Jv_RegisterClasses�__ctype_b_loc@@GLIBC_2.3�X2463616C6C5F66726F6D5F6465627567676572_2�Fct_Float�le_hook_erase�X247379735F7661725F6765745F626974_3�X736574617267_3�Unify_Structure�Find_Expon_Exact�X2462635F73746172745F656D6974_0�Pl_Err_Type�X7365656E_0�Socket_2�rand@@GLIBC_2.0�Fd_List_Int_To_Range�truth_x_eq_c�X6765745F62797465_1�Recover_Generator_1�X2473725F6F70656E5F6E65775F70726F6C6F675F66696C65_1�X73796E7461785F6572726F725F696E666F_4�Read_Token_From_Codes_2�evluation_underflow�x_plus_c_neq_y�full_ac�Hash_Free_Table�Fct_Neg�X235C5C3D3D3E_2�X247573655F61726974685F696E6C_0�Blt_Arg�Rd_Codes_Str_Check�X2464656275675F657865635F636D64_6�X636C6F7365_2�X242464656275675F63616C6C5F706F72742F355F2461757831_3�Writeq_To_Atom_2�Save_Call_Info_3�X636F6E73756C74_1�Rd_Char_Check�bsearch@@GLIBC_2.0�log@@GLIBC_2.0�fd_copy_variable�X2424746F705F6C6576656C322F305F2461757832_1�X7365745F70726F6C6F675F666C6167_2�X73797374656D_2�quot_rem_x_a_r_eq_z�X77616D5F6465627567_0�Real_Time_1�fd_unify_with_integer�X3D2E2E_2�X242464656275675F706F72745F69676E6F72652F345F2461757832_5�X242464656275675F77726974655F676F616C2F345F2461757831_2�Emit_Ctrl_C�X24696E69745F6465627567676572_0�X247365745F73747265616D5F656F665F616374696F6E2F325F2461757832_2�Call_With_Args_1�Fd_Prolog_To_Range�escape_symbol�Char_Conversion_2�tcgetattr@@GLIBC_2.0�LE_Put_Char�Un_Codes_Check�X2424636865636B5F696E5F6368617261637465725F636F64652F315F2461757831_1�read@@GLIBC_2.0�Print_To_Chars_2�representation_too_many_variables�Indomain_2�quot_rem_a_y_r_eq_z_F�X736F636B65745F616363657074_3�Blt_Lt�glob_dico_var�X247379735F7661725F7772697465_2�X24696E646F6D61696E5F6D696E5F616C74_0�Stop_Mark_1�Copy_Contiguous_Term�TP�X24657865635F7175657279_2�Current_Input_1�X2463617463685F696E7465726E616C_4�x_plus_c_gte_y�X675F646563_1�Get_Structure_Tagged�LE_Ins_Mode�Range_Reset_Value�pi_arity_word�Portray_Clause_2�X2463757272656E745F73747265616D_1�Io_Fileno_Of_Stream�X63616C6C5F776974685F61726773_7�X246765745F6F70656E5F6F7074696F6E73_1�X666F726D61745F746F5F6368617273_3�Create_Choice_Point2�Peek_Char_1�LE_Kbd_Is_Not_Empty�Get_Key_No_Echo_2�Sys_Var_Reset_Bit_2�Range_Test_Value�X64656C6574655F6469726563746F7279_1�X2466645F646F6D61696E_3�Socket_Listen_2�X247375626C69737431_3�X66696C655F657869737473_1�X2424746F705F6C6576656C322F305F2461757834_3�ax_plus_y_plus_z_eq_t_F�Get_Nil�x_or_y_eq_1�LE_Screen_Size�Pred_Prop_Built_In_1�Read_From_Atom_2�X73746174697374696373_2�X636C6F73655F6F75747075745F63686172735F73747265616D_2�Absolute_File_Name_2�type_number�Fd_Vector_Max_1�Sort_List_1�atom_void�__gmon_start__�strcpy@@GLIBC_2.0�Recover_After_Error�min_x_a_eq_z_F�X247573655F6F735F696E74657266_0�le_hook_displ�Unget_Byte_1�
  2171 16787:5�OA������abi-note.S�../sysdeps/i386/elf/start.S�init.c�initfini.c�/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crti.S�call_gmon_start�crtstuff.c�__CTOR_LIST__�__DTOR_LIST__�__JCR_LIST__�p.0�completed.1�__do_global_dtors_aux�frame_dummy�__CTOR_END__�__DTOR_END__�__FRAME_END__�__JCR_END__�__do_global_ctors_aux�/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crtn.S�obj_begin.c�fail�Lpred1_3�Lpred1_1�st�Lpred1_2�Lpred1_sub_0�Lpred1_14�Lpred1_sub_1�Lpred1_16�Lpred1_18�Lpred1_5�Lpred1_4�fn�ta�Lpred1_7�Lpred1_6�Lpred1_9�Lpred1_8�Lpred1_11�Lpred1_10�Lpred1_13�Lpred1_12�Lpred1_15�Lpred1_17�Lpred1_19�Lpred1_20�Lpred4_1�directive_1�directive_2�directive_3�directive_4�directive_5�directive_6�directive_7�directive_8�directive_9�directive_10�directive_11�directive_12�directive_13�directive_14�directive_15�directive_16�directive_17�directive_18�directive_19�directive_20�Object_Initializer�System_Directives�User_Directives�at�obj_chain_start�obj_chain_stop�Lpred3_1�Lpred10_1�Lpred12_1�Lpred13_1�Lpred14_1�Lpred15_1�Lpred16_1�Lpred17_1�Lpred18_1�Lpred18_2�Lpred19_1�Lpred20_2�Lpred20_1�Lpred20_4�Lpred20_3�Lpred20_6�Lpred20_5�Lpred20_7�Lpred21_1�Lpred22_1�Lpred24_1�Lpred25_1�Lpred27_2�Lpred27_3�Lpred27_1�Lpred27_sub_0�Lpred27_5�Lpred27_7�Lpred27_4�Lpred27_6�Lpred28_1�Lpred29_1�Lpred30_1�Lpred31_1�Lpred31_2�Lpred31_4�Lpred31_3�Lpred33_10�Lpred33_2�Lpred33_1�Lpred33_5�Lwork0�Lpred33_3�Lpred33_9�Lpred33_7�Lpred33_4�Lpred33_6�Lpred33_8�Lpred34_1�Lpred36_1�ensure_linked�Lpred10_2�Lpred10_4�Lpred10_3�Lpred10_6�Lpred10_5�Lpred10_7�Lpred12_13�Lpred12_3�Lpred12_2�Lpred12_5�Lpred12_4�Lpred12_7�Lpred12_6�Lpred12_9�Lpred12_8�Lpred12_11�Lpred12_10�Lpred12_12�Lpred12_14�Lpred13_2�Lpred13_4�Lpred13_3�Lpred18_4�Lpred18_3�Lpred18_6�Lpred18_5�Lpred18_8�Lpred18_7�Lpred18_10�Lpred18_9�Lpred18_11�Lpred21_2�Lpred23_1�Lpred26_1�Lpred29_2�Lpred29_4�Lpred29_3�Lpred32_1�Lpred35_1�Lpred36_8�Lpred36_2�Lpred36_3�Lpred36_5�Lpred36_7�Lpred36_4�Lpred36_6�Lpred36_9�Lpred37_1�Lpred37_2�Lpred37_3�Lpred38_1�Lpred39_1�Lpred39_2�Lpred40_1�Lpred41_23�Lpred41_3�Lpred41_1�Lpred41_2�Lpred41_5�Lpred41_4�Lpred41_7�Lpred41_6�Lpred41_9�Lpred41_8�Lpred41_11�Lpred41_10�Lpred41_13�Lpred41_12�Lpred41_15�Lpred41_14�Lpred41_17�Lpred41_16�Lpred41_19�Lpred41_18�Lpred41_21�Lpred41_20�Lpred41_22�Lpred42_1�Lpred42_2�Lpred42_4�Lpred42_3�Lpred43_1�Lpred43_2�Lpred44_1�Lpred46_1�Lpred47_1�Lpred50_1�Lpred51_1�Lpred52_4�Lpred52_1�Lpred52_3�Lpred52_2�Lpred52_sub_0�Lpred52_7�Lpred52_9�Lpred52_6�Lpred52_5�Lpred52_8�Lpred52_10�Lpred52_12�Lpred52_11�Lpred52_14�Lpred52_13�Lpred52_15�Lpred53_1�Lpred54_1�Lpred55_1�Lpred57_1�Lpred60_1�Lpred60_66�Lpred60_6�Lpred60_2�Lpred60_3�Lpred60_sub_0�Lpred60_11�Lpred60_13�Lpred60_4�Lpred60_sub_1�Lpred60_17�Lpred60_19�Lpred60_5�Lpred60_sub_2�Lpred60_21�Lpred60_23�Lpred60_8�Lpred60_7�Lpred60_10�Lpred60_9�Lpred60_12�Lpred60_14�Lpred60_16�Lpred60_15�Lpred60_18�Lpred60_20�Lpred60_22�Lpred60_24�Lpred60_26�Lpred60_25�Lpred60_28�Lpred60_27�Lpred60_30�Lpred60_29�Lpred60_32�Lpred60_31�Lpred60_34�Lpred60_33�Lpred60_36�Lpred60_35�Lpred60_38�Lpred60_37�Lpred60_40�Lpred60_39�Lpred60_42�Lpred60_41�Lpred60_44�Lpred60_43�Lpred60_46�Lpred60_45�Lpred60_48�Lpred60_47�Lpred60_50�Lpred60_49�Lpred60_52�Lpred60_51�Lpred60_54�Lpred60_53�Lpred60_56�Lpred60_55�Lpred60_58�Lpred60_57�Lpred60_60�Lpred60_59�Lpred60_62�Lpred60_61�Lpred60_64�Lpred60_63�Lpred60_65�Lpred61_1�Lpred62_1�Lpred63_1�Lpred64_1�Lpred65_1�Lpred66_1�Lpred67_2�Lpred67_1�Lpred67_4�Lpred67_3�Lpred67_6�Lpred67_5�Lpred67_7�Lpred69_1�Lpred70_2�Lpred70_1�Lpred70_4�Lpred70_3�Lpred70_6�Lpred70_5�Lpred70_8�Lpred70_7�Lpred70_10�Lpred70_9�Lpred70_12�Lpred70_11�Lpred70_13�Lpred72_1�Lpred72_2�Lpred72_4�Lpred72_3�Lpred74_1�Lpred74_2�Lpred74_4�Lpred74_3�Lpred75_1�Lpred76_1�Lpred76_2�Lpred76_8�Lpred76_4�Lpred76_3�Lpred76_6�Lpred76_5�Lpred76_7�Lpred76_9�Lpred77_1�Lpred78_1�Lpred81_1�Lpred11_1�Lpred14_2�Lpred14_4�Lpred14_3�Lpred15_11�Lpred15_3�Lpred15_2�Lpred15_5�Lpred15_4�Lpred15_7�Lpred15_6�Lpred15_9�Lpred15_8�Lpred15_10�Lpred16_2�Lpred16_4�Lpred16_3�Lpred16_5�Lpred17_2�Lpred17_4�Lpred17_3�Lpred17_6�Lpred17_5�Lpred17_8�Lpred17_7�Lpred17_10�Lpred17_9�Lpred17_11�Lpred18_12�Lpred18_14�Lpred18_13�Lpred18_16�Lpred18_15�Lpred18_17�Indomain_Min�Indomain_Max�Indomain_Middle�Indomain_Limits�Indomain_Random�Cmp_First_Fail�Cmp_Most_Constrained�Cmp_Smallest�Cmp_Largest�Cmp_Max_Regret�fd_domain_bloc_1�fd_domain_r_bloc_1�x_plus_c_eq_y_bloc_1�x_plus_c_eq_y_bloc_2�x_plus_c_eq_y_F_bloc_1�x_plus_c_eq_y_F_bloc_2�x_plus_c_neq_y_bloc_1�x_plus_c_neq_y_bloc_2�x_plus_c_lte_y_bloc_1�x_plus_c_lte_y_bloc_2�x_plus_c_gte_y_bloc_1�x_plus_c_gte_y_bloc_2�ax_eq_y_bloc_1�ax_eq_y_bloc_2�x_plus_y_eq_z_bloc_1�x_plus_y_eq_z_bloc_2�x_plus_y_eq_z_bloc_3�ax_plus_y_eq_z_bloc_1�ax_plus_y_eq_z_bloc_2�ax_plus_y_eq_z_bloc_3�ax_plus_by_eq_z_bloc_1�ax_plus_by_eq_z_bloc_2�ax_plus_by_eq_z_bloc_3�x_plus_y_plus_z_eq_t_bloc_1�x_plus_y_plus_z_eq_t_bloc_2�x_plus_y_plus_z_eq_t_bloc_3�x_plus_y_plus_z_eq_t_bloc_4�ax_plus_y_plus_z_eq_t_bloc_1�ax_plus_y_plus_z_eq_t_bloc_2�ax_plus_y_plus_z_eq_t_bloc_3�ax_plus_y_plus_z_eq_t_bloc_4�ax_plus_by_plus_z_eq_t_bloc_1�ax_plus_by_plus_z_eq_t_bloc_2�ax_plus_by_plus_z_eq_t_bloc_3�ax_plus_by_plus_z_eq_t_bloc_4�ax_eq_y_F_bloc_1�ax_eq_y_F_bloc_2�x_plus_y_eq_z_F_bloc_1�x_plus_y_eq_z_F_bloc_2�x_plus_y_eq_z_F_bloc_3�ax_plus_y_eq_z_F_bloc_1�ax_plus_y_eq_z_F_bloc_2�ax_plus_y_eq_z_F_bloc_3�ax_plus_by_eq_z_F_bloc_1�ax_plus_by_eq_z_F_bloc_2�ax_plus_by_eq_z_F_bloc_3�x_plus_y_plus_z_eq_t_F_bloc_1�x_plus_y_plus_z_eq_t_F_bloc_2�x_plus_y_plus_z_eq_t_F_bloc_3�x_plus_y_plus_z_eq_t_F_bloc_4�ax_plus_y_plus_z_eq_t_F_bloc_1�ax_plus_y_plus_z_eq_t_F_bloc_2�ax_plus_y_plus_z_eq_t_F_bloc_3�ax_plus_y_plus_z_eq_t_F_bloc_4�ax_plus_by_plus_z_eq_t_F_bloc_1�ax_plus_by_plus_z_eq_t_F_bloc_2�ax_plus_by_plus_z_eq_t_F_bloc_3�ax_plus_by_plus_z_eq_t_F_bloc_4�a_power_n_eq_y_bloc_1�a_power_n_eq_y_bloc_2�x_power_a_eq_y_bloc_1�x_power_a_eq_y_bloc_2�xy_eq_z_bloc_1�xy_eq_z_bloc_2�xy_eq_z_bloc_3�a_power_n_eq_y_F_bloc_1�a_power_n_eq_y_F_bloc_2�x_power_a_eq_y_F_bloc_1�x_power_a_eq_y_F_bloc_2�xy_eq_z_F_bloc_1�xy_eq_z_F_switch_1_inst�min_x_y_eq_z_bloc_1�min_x_y_eq_z_bloc_2�min_x_y_eq_z_bloc_3�min_x_y_eq_z_bloc_4�min_x_y_eq_z_bloc_5�min_x_y_eq_z_switch_1_inst�min_x_a_eq_z_bloc_1�min_x_a_eq_z_bloc_2�min_x_a_eq_z_bloc_3�min_x_a_eq_z_bloc_4�min_x_a_eq_z_switch_1�min_x_a_eq_z_case_group_1�min_x_y_eq_z_F_bloc_1�min_x_y_eq_z_F_bloc_2�min_x_y_eq_z_F_bloc_3�min_x_y_eq_z_F_bloc_4�min_x_y_eq_z_F_bloc_5�min_x_y_eq_z_F_switch_1_inst�min_x_a_eq_z_F_bloc_1�min_x_a_eq_z_F_bloc_2�min_x_a_eq_z_F_bloc_3�min_x_a_eq_z_F_bloc_4�min_x_a_eq_z_F_switch_1�min_x_a_eq_z_F_case_group_1�max_x_y_eq_z_bloc_1�max_x_y_eq_z_bloc_2�max_x_y_eq_z_bloc_3�max_x_y_eq_z_bloc_4�max_x_y_eq_z_bloc_5�max_x_y_eq_z_switch_1_inst�max_x_a_eq_z_bloc_1�max_x_a_eq_z_bloc_2�max_x_a_eq_z_bloc_3�max_x_a_eq_z_bloc_4�max_x_a_eq_z_switch_1�max_x_a_eq_z_case_group_1�max_x_y_eq_z_F_bloc_1�max_x_y_eq_z_F_bloc_2�max_x_y_eq_z_F_bloc_3�max_x_y_eq_z_F_bloc_4�max_x_y_eq_z_F_bloc_5�max_x_y_eq_z_F_switch_1_inst�max_x_a_eq_z_F_bloc_1�max_x_a_eq_z_F_bloc_2�max_x_a_eq_z_F_bloc_3�max_x_a_eq_z_F_bloc_4�max_x_a_eq_z_F_switch_1�max_x_a_eq_z_F_case_group_1�abs_x_minus_y_eq_z_bloc_1�abs_x_minus_y_eq_z_bloc_2�abs_x_minus_y_eq_z_bloc_3�abs_x_minus_y_eq_z_switch_1_inst�abs_x_minus_a_eq_z_bloc_1�abs_x_minus_a_eq_z_bloc_2�abs_x_minus_a_eq_z_switch_1�abs_x_minus_a_eq_z_case_group_2�abs_x_minus_a_eq_z_case_group_1�abs_x_minus_y_eq_z_F_bloc_1�abs_x_minus_y_eq_z_F_bloc_2�abs_x_minus_y_eq_z_F_bloc_3�abs_x_minus_y_eq_z_F_switch_1_inst�abs_x_minus_a_eq_z_F_bloc_1�abs_x_minus_a_eq_z_F_bloc_2�abs_x_minus_a_eq_z_F_switch_1�abs_x_minus_a_eq_z_F_case_group_2�abs_x_minus_a_eq_z_F_case_group_1�quot_rem_x_y_r_eq_z_bloc_1�quot_rem_x_y_r_eq_z_bloc_2�quot_rem_x_y_r_eq_z_bloc_3�quot_rem_x_y_r_eq_z_bloc_4�quot_rem_x_y_r_eq_z_bloc_5�quot_rem_x_y_r_eq_z_bloc_6�quot_rem_x_y_r_eq_z_bloc_7�quot_rem_x_y_r_eq_z_switch_1�quot_rem_x_y_r_eq_z_bloc_8_inst�quot_rem_a_y_r_eq_z_bloc_1�quot_rem_a_y_r_eq_z_bloc_2�quot_rem_a_y_r_eq_z_bloc_3�quot_rem_a_y_r_eq_z_bloc_4�quot_rem_a_y_r_eq_z_bloc_5�quot_rem_a_y_r_eq_z_switch_1�quot_rem_a_y_r_eq_z_bloc_6_inst�quot_rem_x_a_r_eq_z_bloc_1�quot_rem_x_a_r_eq_z_bloc_2�quot_rem_x_a_r_eq_z_bloc_3�quot_rem_x_a_r_eq_z_bloc_4�quot_rem_x_a_r_eq_z_bloc_5�quot_rem_x_y_r_eq_z_F_bloc_1�quot_rem_x_y_r_eq_z_F_bloc_2�quot_rem_x_y_r_eq_z_F_bloc_3�quot_rem_x_y_r_eq_z_F_bloc_4�quot_rem_x_y_r_eq_z_F_bloc_5�quot_rem_x_y_r_eq_z_F_bloc_6�quot_rem_x_y_r_eq_z_F_bloc_7�quot_rem_x_y_r_eq_z_F_switch_1�quot_rem_x_y_r_eq_z_F_bloc_8_inst�quot_rem_a_y_r_eq_z_F_bloc_1�quot_rem_a_y_r_eq_z_F_bloc_2�quot_rem_a_y_r_eq_z_F_bloc_3�quot_rem_a_y_r_eq_z_F_bloc_4�quot_rem_a_y_r_eq_z_F_bloc_5�quot_rem_a_y_r_eq_z_F_switch_1�quot_rem_a_y_r_eq_z_F_bloc_6_inst�quot_rem_x_a_r_eq_z_F_bloc_1�quot_rem_x_a_r_eq_z_F_bloc_2�quot_rem_x_a_r_eq_z_F_bloc_3�quot_rem_x_a_r_eq_z_F_bloc_4�quot_rem_x_a_r_eq_z_F_bloc_5�x_eq_y_bloc_1�x_eq_y_bloc_2�x_eq_y_F_bloc_1�x_eq_y_F_bloc_2�x_neq_y_bloc_1_inst�x_neq_y_bloc_2_inst�x_lt_y_bloc_1�x_lt_y_bloc_2�x_lte_c_bloc_1�x_lte_y_bloc_1�x_lte_y_bloc_2�x_gte_c_bloc_1�zero_power_n_eq_y_bloc_1�zero_power_n_eq_y_bloc_2�x2_eq_y_bloc_1�x2_eq_y_bloc_2�x2_eq_y_F_bloc_1�x2_eq_y_F_bloc_2�x_neq_y_bloc_1�x_neq_y_bloc_2�xy_eq_z_F_switch_1�min_x_y_eq_z_switch_1�min_x_y_eq_z_case_group_2�min_x_y_eq_z_case_group_1�min_x_a_eq_z_bloc_5�min_x_a_eq_z_bloc_6�min_x_y_eq_z_F_switch_1�min_x_a_eq_z_F_bloc_5�min_x_a_eq_z_F_bloc_6�max_x_y_eq_z_switch_1�max_x_y_eq_z_case_group_2�max_x_y_eq_z_case_group_1�max_x_a_eq_z_bloc_5�max_x_a_eq_z_bloc_6�max_x_y_eq_z_F_switch_1�max_x_a_eq_z_F_bloc_5�max_x_a_eq_z_F_bloc_6�abs_x_minus_y_eq_z_switch_1�abs_x_minus_y_eq_z_case_group_2�abs_x_minus_y_eq_z_case_group_1�abs_x_minus_a_eq_z_bloc_3�abs_x_minus_a_eq_z_bloc_4�abs_x_minus_a_eq_z_bloc_5�abs_x_minus_a_eq_z_bloc_6�abs_x_minus_y_eq_z_F_switch_1�abs_x_minus_y_eq_z_F_case_group_2�abs_x_minus_y_eq_z_F_case_group_1�abs_x_minus_a_eq_z_F_bloc_3�abs_x_minus_a_eq_z_F_bloc_4�abs_x_minus_a_eq_z_F_bloc_5�abs_x_minus_a_eq_z_F_bloc_6�quot_rem_x_y_r_eq_z_bloc_8�quot_rem_a_y_r_eq_z_bloc_6�quot_rem_x_y_r_eq_z_F_bloc_8�quot_rem_a_y_r_eq_z_F_bloc_6�xy_eq_z_F_case_group_1�xy_eq_z_F_bloc_5�xy_eq_z_F_bloc_6�min_x_y_eq_z_bloc_6�min_x_y_eq_z_bloc_7�min_x_y_eq_z_bloc_8�min_x_y_eq_z_bloc_9�min_x_y_eq_z_F_case_group_1�min_x_y_eq_z_F_case_group_2�max_x_y_eq_z_bloc_6�max_x_y_eq_z_bloc_7�max_x_y_eq_z_bloc_8�max_x_y_eq_z_bloc_9�max_x_y_eq_z_F_case_group_1�max_x_y_eq_z_F_case_group_2�abs_x_minus_y_eq_z_bloc_4�abs_x_minus_y_eq_z_bloc_5�abs_x_minus_y_eq_z_bloc_6�abs_x_minus_y_eq_z_bloc_7�abs_x_minus_y_eq_z_bloc_8�abs_x_minus_y_eq_z_bloc_9�abs_x_minus_y_eq_z_F_bloc_4�abs_x_minus_y_eq_z_F_bloc_5�abs_x_minus_y_eq_z_F_bloc_6�abs_x_minus_y_eq_z_F_bloc_7�abs_x_minus_y_eq_z_F_bloc_8�abs_x_minus_y_eq_z_F_bloc_9�xy_eq_z_F_bloc_2�xy_eq_z_F_bloc_3�xy_eq_z_F_bloc_4�min_x_y_eq_z_F_bloc_6�min_x_y_eq_z_F_bloc_7�min_x_y_eq_z_F_bloc_8�min_x_y_eq_z_F_bloc_9�max_x_y_eq_z_F_bloc_6�max_x_y_eq_z_F_bloc_7�max_x_y_eq_z_F_bloc_8�max_x_y_eq_z_F_bloc_9�Fd_Bool_Initializer�bool_tbl�bool_xor�Set_Not�func_tbl�Set_Equiv�Set_Nequiv�Set_Imply�Set_Nimply�Set_And�Set_Nand�Set_Or�Set_Nor�Set_Eq�Set_Neq�Set_Lt�Set_Lte�Set_Zero�Set_One�stack�sp�vars_tbl�vars_sp�Simplify�Load_Bool_Into_Word�Add_Fd_Variables�Set_Var�x_equiv_y_eq_b_bloc_1�x_equiv_y_eq_b_bloc_2�x_equiv_y_eq_b_bloc_3�x_nequiv_y_eq_b_bloc_1�x_nequiv_y_eq_b_bloc_2�x_nequiv_y_eq_b_bloc_3�x_imply_y_eq_b_bloc_1�x_imply_y_eq_b_bloc_2�x_imply_y_eq_b_bloc_3�x_nimply_y_eq_b_bloc_1�x_nimply_y_eq_b_bloc_2�x_nimply_y_eq_b_bloc_3�x_and_y_eq_b_bloc_1�x_and_y_eq_b_bloc_2�x_and_y_eq_b_bloc_3�x_nand_y_eq_b_bloc_1�x_nand_y_eq_b_bloc_2�x_nand_y_eq_b_bloc_3�x_or_y_eq_b_bloc_1�x_or_y_eq_b_bloc_2�x_or_y_eq_b_bloc_3�x_nor_y_eq_b_bloc_1�x_nor_y_eq_b_bloc_2�x_nor_y_eq_b_bloc_3�truth_x_eq_c_switch_1_inst�truth_x_eq_y_switch_1_inst�truth_x_plus_c_eq_y_switch_1_inst�truth_x_eq_c_F_switch_1_inst�truth_x_eq_y_F_switch_1_inst�truth_x_plus_c_eq_y_F_switch_1_inst�truth_x_neq_c_switch_1_inst�truth_x_neq_y_switch_1_inst�truth_x_plus_c_neq_y_switch_1_inst�truth_x_neq_c_F_switch_1_inst�truth_x_neq_y_F_switch_1_inst�truth_x_plus_c_neq_y_F_switch_1_inst�truth_x_lt_y_switch_1_inst�truth_x_lte_c_switch_1_inst�truth_x_lte_y_switch_1_inst�truth_x_plus_c_lte_y_switch_1_inst�truth_x_gte_c_switch_1_inst�truth_x_plus_c_gte_y_switch_1_inst�not_x_eq_b_bloc_1_inst�not_x_eq_b_bloc_2_inst�x_imply_y_eq_1_bloc_1�x_imply_y_eq_1_bloc_2�x_and_y_eq_0_bloc_1�x_and_y_eq_0_bloc_2�x_or_y_eq_1_bloc_1�x_or_y_eq_1_bloc_2�not_x_eq_b_bloc_1�not_x_eq_b_bloc_2�truth_x_eq_c_switch_1�truth_x_eq_y_switch_1�truth_x_plus_c_eq_y_switch_1�truth_x_eq_c_F_switch_1�truth_x_eq_y_F_switch_1�truth_x_plus_c_eq_y_F_switch_1�truth_x_neq_c_switch_1�truth_x_neq_y_switch_1�truth_x_plus_c_neq_y_switch_1�truth_x_neq_c_F_switch_1�truth_x_neq_y_F_switch_1�truth_x_plus_c_neq_y_F_switch_1�truth_x_lt_y_switch_1�truth_x_lte_c_switch_1�truth_x_lte_y_switch_1�truth_x_plus_c_lte_y_switch_1�truth_x_gte_c_switch_1�truth_x_plus_c_gte_y_switch_1�truth_x_eq_c_bloc_3�truth_x_eq_c_bloc_4�truth_x_eq_c_bloc_2�truth_x_eq_c_bloc_1�truth_x_eq_y_bloc_5�truth_x_eq_y_bloc_6�truth_x_eq_y_case_group_2�truth_x_eq_y_case_group_1�truth_x_plus_c_eq_y_bloc_5�truth_x_plus_c_eq_y_bloc_6�truth_x_plus_c_eq_y_case_group_2�truth_x_plus_c_eq_y_case_group_1�truth_x_eq_c_F_bloc_4�truth_x_eq_c_F_bloc_3�truth_x_eq_c_F_bloc_2�truth_x_eq_c_F_bloc_1�truth_x_eq_y_F_bloc_6�truth_x_eq_y_F_bloc_5�truth_x_eq_y_F_case_group_2�truth_x_eq_y_F_case_group_1�truth_x_plus_c_eq_y_F_bloc_6�truth_x_plus_c_eq_y_F_bloc_5�truth_x_plus_c_eq_y_F_case_group_2�truth_x_plus_c_eq_y_F_case_group_1�truth_x_neq_c_bloc_4�truth_x_neq_c_bloc_3�truth_x_neq_c_bloc_2�truth_x_neq_c_bloc_1�truth_x_neq_y_bloc_6�truth_x_neq_y_bloc_5�truth_x_neq_y_case_group_2�truth_x_neq_y_case_group_1�truth_x_plus_c_neq_y_bloc_6�truth_x_plus_c_neq_y_bloc_5�truth_x_plus_c_neq_y_case_group_2�truth_x_plus_c_neq_y_case_group_1�truth_x_neq_c_F_bloc_4�truth_x_neq_c_F_bloc_3�truth_x_neq_c_F_bloc_2�truth_x_neq_c_F_bloc_1�truth_x_neq_y_F_bloc_6�truth_x_neq_y_F_bloc_5�truth_x_neq_y_F_case_group_2�truth_x_neq_y_F_case_group_1�truth_x_plus_c_neq_y_F_bloc_6�truth_x_plus_c_neq_y_F_bloc_5�truth_x_plus_c_neq_y_F_case_group_2�truth_x_plus_c_neq_y_F_case_group_1�truth_x_lt_y_bloc_6�truth_x_lt_y_bloc_5�truth_x_lt_y_case_group_2�truth_x_lt_y_case_group_1�truth_x_lte_c_bloc_4�truth_x_lte_c_bloc_3�truth_x_lte_c_bloc_2�truth_x_lte_c_bloc_1�truth_x_lte_y_bloc_6�truth_x_lte_y_bloc_5�truth_x_lte_y_case_group_2�truth_x_lte_y_case_group_1�truth_x_plus_c_lte_y_bloc_6�truth_x_plus_c_lte_y_bloc_5�truth_x_plus_c_lte_y_case_group_2�truth_x_plus_c_lte_y_case_group_1�truth_x_gte_c_bloc_4�truth_x_gte_c_bloc_3�truth_x_gte_c_bloc_2�truth_x_gte_c_bloc_1�truth_x_plus_c_gte_y_bloc_6�truth_x_plus_c_gte_y_bloc_5�truth_x_plus_c_gte_y_case_group_2�truth_x_plus_c_gte_y_case_group_1�truth_x_eq_y_bloc_1_inst�truth_x_eq_y_bloc_2_inst�truth_x_eq_y_bloc_3�truth_x_eq_y_bloc_4�truth_x_plus_c_eq_y_bloc_1_inst�truth_x_plus_c_eq_y_bloc_2_inst�truth_x_plus_c_eq_y_bloc_3�truth_x_plus_c_eq_y_bloc_4�truth_x_eq_y_F_bloc_1_inst�truth_x_eq_y_F_bloc_2_inst�truth_x_eq_y_F_bloc_3�truth_x_eq_y_F_bloc_4�truth_x_plus_c_eq_y_F_bloc_1_inst�truth_x_plus_c_eq_y_F_bloc_2_inst�truth_x_plus_c_eq_y_F_bloc_3�truth_x_plus_c_eq_y_F_bloc_4�truth_x_neq_y_bloc_1�truth_x_neq_y_bloc_2�truth_x_neq_y_bloc_3_inst�truth_x_neq_y_bloc_4_inst�truth_x_plus_c_neq_y_bloc_1�truth_x_plus_c_neq_y_bloc_2�truth_x_plus_c_neq_y_bloc_3_inst�truth_x_plus_c_neq_y_bloc_4_inst�truth_x_neq_y_F_bloc_1�truth_x_neq_y_F_bloc_2�truth_x_neq_y_F_bloc_3_inst�truth_x_neq_y_F_bloc_4_inst�truth_x_plus_c_neq_y_F_bloc_1�truth_x_plus_c_neq_y_F_bloc_2�truth_x_plus_c_neq_y_F_bloc_3_inst�truth_x_plus_c_neq_y_F_bloc_4_inst�truth_x_lt_y_bloc_1�truth_x_lt_y_bloc_2�truth_x_lt_y_bloc_3�truth_x_lt_y_bloc_4�truth_x_lte_y_bloc_1�truth_x_lte_y_bloc_2�truth_x_lte_y_bloc_3�truth_x_lte_y_bloc_4�truth_x_plus_c_lte_y_bloc_1�truth_x_plus_c_lte_y_bloc_2�truth_x_plus_c_lte_y_bloc_3�truth_x_plus_c_lte_y_bloc_4�truth_x_plus_c_gte_y_bloc_1�truth_x_plus_c_gte_y_bloc_2�truth_x_plus_c_gte_y_bloc_3�truth_x_plus_c_gte_y_bloc_4�truth_x_eq_y_bloc_1�truth_x_eq_y_bloc_2�truth_x_plus_c_eq_y_bloc_1�truth_x_plus_c_eq_y_bloc_2�truth_x_eq_y_F_bloc_1�truth_x_eq_y_F_bloc_2�truth_x_plus_c_eq_y_F_bloc_1�truth_x_plus_c_eq_y_F_bloc_2�truth_x_neq_y_bloc_3�truth_x_neq_y_bloc_4�truth_x_plus_c_neq_y_bloc_3�truth_x_plus_c_neq_y_bloc_4�truth_x_neq_y_F_bloc_3�truth_x_neq_y_F_bloc_4�truth_x_plus_c_neq_y_F_bloc_3�truth_x_plus_c_neq_y_F_bloc_4�prime_x_bloc_1�not_prime_x_bloc_1�Lpred11_2�Lpred11_4�Lpred11_3�Fd_All_Different_Rec�fd_element_bloc_1�fd_element_bloc_2�fd_element_bloc_3�fd_element_var_bloc_1�fd_element_var_bloc_2�fd_element_var_bloc_3�fd_element_var_bloc_4�fd_atmost_bloc_1_inst�fd_atleast_bloc_1_inst�fd_exactly_bloc_1_inst�fd_atmost_bloc_1�fd_atleast_bloc_1�fd_exactly_bloc_1�Lpred5_1�Math_Supp_Initializer�delay_cstr_stack�delay_sp�Load_Delay_Cstr_Part�Normalize�arith_tbl�sort�Load_Term_Into_Word�Load_Poly�Load_Poly_Rec�Load_Left_Right_Rec�Compar_Monom�txp.0�Find_Expon_General�prime_vec_size�Compute_Prime_Range�prime_range�not_prime_range�always_date�never_date�All_Propagations�dummy_fd_var�buff.0�nb_bits_in_byte.1�unify_x_y_bloc_1�unify_x_y_bloc_2�Error_Supp_Initializer�last_err_file�c_bip_func_str�c_bip_arity�cur_bip_func�cur_bip_arity�last_err_col�last_err_line�last_err_msg�Init_Stream_Supp�static_str_stream_rd�static_str_stream_wr�tty_ptr�stream_1�atom_constant_term_stream�word_current_input_stream�word_current_output_stream�TTY_Getc�TTY_Clearerr�Find_Free_Stream�tty_linedit_depth.0�tty_buff�tty_first_buff�Str_Stream_Getc�Str_Stream_Putc�h.1�Lpred2_1�Lpred3_9�Lpred3_3�Lpred3_2�Lpred3_5�Lpred3_4�Lpred3_7�Lpred3_6�Lpred3_8�Lpred5_2�Lpred6_1�Lpred7_1�Lpred8_1�Lpred8_6�Lpred8_2�Lpred8_3�Lpred8_5�Lpred8_4�Lpred9_1�Lpred9_2�Lpred7_2�Clause_Alt�last_clause�Retract_Alt�Lpred9_4�Lpred9_3�Lpred10_13�Lpred10_9�Lpred10_8�Lpred10_11�Lpred10_10�Lpred10_12�Lpred11_5�Lpred15_19�Lpred15_13�Lpred15_12�Lpred15_15�Lpred15_14�Lpred15_17�Lpred15_16�Lpred15_18�Lpred19_2�Lpred19_4�Lpred19_3�Lpred19_5�Lpred21_4�Lpred21_3�Lpred21_5�Lpred4_2�Lpred4_4�Lpred4_3�Oper_Initializer�atom_specif_tbl�Detect_Oper_Specif�Lpred10_24�Lpred10_14�Lpred10_16�Lpred10_15�Lpred10_18�Lpred10_17�Lpred10_20�Lpred10_19�Lpred10_22�Lpred10_21�Lpred10_23�Lpred11_7�Lpred11_6�Lpred11_9�Lpred11_8�Lpred11_11�Lpred11_10�Lpred11_13�Lpred11_12�Lpred11_15�Lpred11_14�Lpred11_17�Lpred11_16�Lpred11_19�Lpred11_18�Lpred11_21�Lpred11_20�Lpred11_22�Lpred23_18�Lpred23_4�Lpred23_2�Lpred23_3�Lpred23_6�Lpred23_5�Lpred23_8�Lpred23_7�Lpred23_10�Lpred23_9�Lpred23_12�Lpred23_11�Lpred23_14�Lpred23_13�Lpred23_16�Lpred23_15�Lpred23_17�Lpred24_3�Lpred24_2�Lpred24_5�Lpred24_4�Lpred24_7�Lpred24_6�Lpred24_9�Lpred24_8�Lpred24_11�Lpred24_10�Lpred24_13�Lpred24_12�Lpred24_15�Lpred24_14�Lpred24_16�Create_Malloc_Atom�Compute_Next_BLA�String_To_Number�Lpred13_21�Lpred13_5�Lpred13_7�Lpred13_6�Lpred13_9�Lpred13_8�Lpred13_11�Lpred13_10�Lpred13_13�Lpred13_12�Lpred13_15�Lpred13_14�Lpred13_17�Lpred13_16�Lpred13_19�Lpred13_18�Lpred13_20�Call_With_Args�Flag_Initializer�atom_flag_tbl�atom_down�atom_toward_zero�atom_on�atom_off�atom_error�atom_warning�atom_fail�atom_chars�atom_codes�atom_atom�atom_chars_no_escape�atom_codes_no_escape�atom_atom_no_escape�atom_prolog�Unif_Flag�cv.0�Arith_Initializer�Load_Math_Expression�fix_bug.0�G_Var_Initializer�G_Assign_Array�G_Alloc_Array�G_Assign_Element�G_Free_Element�G_Copy_Element�Get_Target_From_Selector�Get_Target_From_Gvar�Get_Int_From_Word�Get_Term_Addr_From_Target�Get_Int_Addr_From_Gvar�g_target�atom_g_array�G_Trail_For_Backtrack�G_Untrail�G_Read_Element�atom_g_array_auto�atom_g_array_extend�g_var_tbl�All_Solut_Initializer�dummy�sol�Existential_Variables�exist_2�Bound_Var�key_var_ptr�Handle_Key_Variables�save_key_var_ptr�next_key_var_ptr�Link_Key_Var�Group�bound_var_ptr�Free_Var�new_gen_word�free_var_base�Sort_Initializer�Merge_Sort�Keysort_Cmp�minus_2�Lpred2_2�Lpred2_4�Lpred2_3�Lpred7_4�Lpred7_3�Lpred9_sub_0�Lpred9_5�Lpred9_7�Lpred9_6�Lpred15_sub_0�Lpred23_sub_0�Lpred25_2�Lpred25_3�Lpred25_sub_0�Lpred25_5�Lpred25_7�Lpred25_4�Lpred25_6�Lpred5_21�Lpred5_3�Lpred5_5�Lpred5_4�Lpred5_7�Lpred5_6�Lpred5_9�Lpred5_8�Lpred5_11�Lpred5_10�Lpred5_13�Lpred5_12�Lpred5_15�Lpred5_14�Lpred5_17�Lpred5_16�Lpred5_19�Lpred5_18�Lpred5_20�Lpred6_3�Lpred6_2�Lpred6_5�Lpred6_4�Lpred6_7�Lpred6_6�Lpred6_9�Lpred6_8�Lpred6_11�Lpred6_10�Lpred6_13�Lpred6_12�Lpred6_15�Lpred6_14�Lpred6_16�last_user_time�last_system_time�last_cpu_time�last_real_time�n.0�Stack_Size�Lpred21_6�Lpred21_7�Lpred22_2�Lpred22_4�Lpred22_3�Lpred22_6�Lpred22_5�Lpred22_7�Lpred26_2�Lpred26_4�Lpred26_3�Lpred32_2�Lpred38_2�Lpred38_4�Lpred38_3�Lpred38_5�Lpred44_2�Lpred44_4�Lpred44_3�Lpred44_6�Lpred44_5�Lpred44_7�Lpred45_1�Lpred53_28�Lpred53_4�Lpred53_2�Lpred53_3�Lpred53_6�Lpred53_5�Lpred53_8�Lpred53_7�Lpred53_10�Lpred53_9�Lpred53_12�Lpred53_11�Lpred53_14�Lpred53_13�Lpred53_16�Lpred53_15�Lpred53_18�Lpred53_17�Lpred53_20�Lpred53_19�Lpred53_22�Lpred53_21�Lpred53_24�Lpred53_23�Lpred53_26�Lpred53_25�Lpred53_27�Lpred54_3�Lpred54_2�Lpred54_5�Lpred54_4�Lpred54_7�Lpred54_6�Lpred54_9�Lpred54_8�Lpred54_11�Lpred54_10�Lpred54_13�Lpred54_12�Lpred54_15�Lpred54_14�Lpred54_17�Lpred54_16�Lpred54_19�Lpred54_18�Lpred54_21�Lpred54_20�Lpred54_23�Lpred54_22�Lpred54_25�Lpred54_24�Lpred54_26�Lpred58_1�Lpred2_11�Lpred2_sub_0�Lpred2_8�Lpred2_5�Lpred2_7�Lpred2_6�Lpred2_9�Lpred2_10�Lpred2_12�Format�Arg_Atom�Arg_Integer�Arg_Float�Read_Arg�Lpred14_6�Lpred14_5�Lpred14_8�Lpred14_7�Lpred14_10�Lpred14_9�Lpred14_12�Lpred14_11�Lpred14_14�Lpred14_13�Lpred14_16�Lpred14_15�Lpred14_17�Os_Interf_Initializer�atom_dt�atom_read�atom_write�atom_execute�atom_search�atom_regular�atom_directory�atom_fifo�atom_socket�atom_character_device�atom_block_device�atom_unknown�tsig�nb_sig�Get_Path_Name�Flag_Of_Permission�Date_Time_To_Prolog�atom_host_name.0�Select_Init_Set�Select_Init_Ready_List�Expand_Initializer�dcg_2�top�opt_term_unif�Dcg_Head�Dcg_Body�atom_clause�Dcg_Body_On_Stack�Dcg_Term_List_On_Stack�Dcg_Compound2�atom_phrase�atom_if�Lpred30_2�Lpred30_4�Lpred30_3�Pretty_Initializer�Check_Structure�prec.0�Show_Body�Start_Line�equal_2�atom_dollar_varname�nb_to_try�Collect_Excluded_Rec�Var_Name_To_Var_Number�Exclude_A_Var_Number�Bind_Variable�dollar_var_1�dollar_varname_1�Portray_Clause�Collect_Singleton�singl_var_ptr�nb_singl_var�atom_dcg�atom_dollar_var�Ctrl_C_Manager�Debug_Initializer�envir_name�choice_name�trail_tag_name�pstm_i�pstm_o�dbg_jumper�Debugger_Signal_Handler�Scan_Command�Find_Function�nb_read_arg�read_arg�cmd.0�Write_Data_Modify�Where�What�Dereference�Environment�Backtrack�Help�Read_Bank_Adr�reg_copy�Print_Bank_Name_Offset�Print_Wam_Word�Modify_Wam_Word�Read_An_Integer�Detect_Stack�Detect_Pred_From_Code�My_System_Directives�Lpred8_14�Lpred8_8�Lpred8_7�Lpred8_10�Lpred8_9�Lpred8_12�Lpred8_11�Lpred8_13�Lpred28_2�Lpred28_4�Lpred28_3�Lpred28_6�Lpred28_5�Lpred28_8�Lpred28_7�Lpred28_10�Lpred28_9�Lpred28_12�Lpred28_11�Lpred28_14�Lpred28_13�Lpred28_16�Lpred28_15�Lpred28_17�Lpred32_4�Lpred32_3�Lpred32_6�Lpred32_5�Lpred32_8�Lpred32_7�Lpred32_10�Lpred32_9�Lpred32_12�Lpred32_11�Lpred32_14�Lpred32_13�Lpred32_15�Lpred56_1�Lpred58_8�Lpred58_2�Lpred58_4�Lpred58_3�Lpred58_6�Lpred58_5�Lpred58_7�Lpred61_7�Lpred61_3�Lpred61_2�Lpred61_sub_0�Lpred61_4�Lpred61_6�Lpred61_5�sr_tbl�sr_tbl_size�sr_last_used�cur_sr�Get_Descriptor�Common_Clean�Exec_One_Directive�Undo_Directives�Close_Current_Module�Write_Location�Socket_Initializer�atom_AF_UNIX�atom_AF_INET�Create_Socket_Streams�end_vars�vars�Copy_Term_Rec�base_copy�top_vars�Parse_Supp_Initializer�jumper�tok_present�buff_save_machine_regs�Parse_Term�Parse_Error�Lookup_In_Dico_Var�Create_Structure�Parse_Args_Of_Functor�Parse_Bracketed_Term�Parse_List�atom_var�atom_string�atom_back_quotes�atom_punct�atom_full_stop�atom_extend�Write_Supp_Initializer�last_prefix_op�Show_Term�Show_Global_Var�ignore_op�Show_List_Arg�Show_Structure�Show_Atom�Show_Float�Show_Fd_Variable�Show_Integer�Try_Portray�atom_dots�quoted�space_args�name_vars�number_vars�curly_brackets_1�try_portray_code.1�portrayed�Out_Char�erase_stamp�first_dyn_with_erase�size_of_erased�Add_To_2Chain�Index_From_First_Arg�Alloc_Init_Dyn_Info�Unlink_Clause�Free_Clause�Get_Scan_Choice_Point�Scan_Dynamic_Pred_Next�Clean_Erased_Clauses�save_call_info�Byte_Code_Initializer�op_tbl�Compar_Inst_Code_Op�nb_op�bc_nb_block�bc�atom_dynamic�atom_public�atom_built_in�atom_built_in_fd�caller_arity�caller_func�bc_sp�BC_Arg_X_Or_Y�BC_Arg_Func_Arity�debug_call�BC_Emulate_Pred_Alt�BC_Emulate_Clause�glob_func�glob_dyn�BC_Emulate_Byte_Code�Prep_Debug_Call�err_msg�c�c_orig�c_type�Scan_Quoted�Scan_Number�Scan_Quoted_Char�obj_end.c�start_user_time�start_system_time�start_real_time�cur_seed�page_size�SIGSEGV_Handler�buff.1�cur_work_dir.2�msg.3�buff.4�arg.0�nb_arg.1�value.2�letters.3�arg.4�Hash_Locate�nb_obj�obj_tbl�nb_user_directives�init_buff_regs�heap_actual_start�Call_Prolog_Fail�Call_Prolog_Success�Call_Next�p_buff_save�p_jumper�cont_jmp�Check_If_Var_Occurs�hash_weight_tbl�hash_inv_tbl�str_char�Locate_Atom�Hash_String�gen_sym_buff�Fd_Solver_Missing�separators�ins_mode�clipboard�hist_start�hist_end�comp_start�prompt_length�global_str�Tab_To_Spaces�History_Add_Line�global_pos�global_end�Display_Help�New_Char�Completion_Print_All�Skip�Completion_Do_Match�comp_last_match�comp_first_match�History_Update_Line�History_Get_Line�hist_tbl�Is_A_Separator�ctrl_c_ret_val�comp_nb_match�comp_match_max_lg�comp_cur_match�use_gui�use_ansi�fd_in�fd_out�initialized.0�le_hook_present.1�Parse_Env_Var�Choose_Fd_Out�LE_Get_Char0�Backd�Forwd�Displ�Erase�Displ_Str�pos�nb_cols�old_stty_in�old_stty_out�is_tty_in�is_tty_out�interrupt_key�new_stty_out�nb_rows�new_stty_in�from_callback�ret_val�Wrapper_Handler�ctrl_c_handler�inside_ctrl_c�_DYNAMIC�__fini_array_end�__fini_array_start�__init_array_end�_GLOBAL_OFFSET_TABLE_�__init_array_start�X736B6970_1�Fct_Shr�X6765745F63686172_2�Fd_Eq_2�X24696E646F6D61696E5F6C696D6974735F616C74_0�stm_debugger_input�Write_1�Wait_2�Nth_Root_Up�X72656E616D655F66696C65_2�Remove_Stream_Mirror_2�X2473686F775F6C65617368696E675F696E666F31_1�X247573655F6F706572_0�domain_socket_address�fd_domain�X636861725F636F6465_2�X242473725F74726561745F7465726D2F325F2461757832_4�Write_Pl_State_File�X756E6765745F636F6465_2�Vector_Sub_Vector�Full_Coeff_Power_Var�Write_Canonical_To_Chars_2�Math_Fast_Load_Value�X757365725F74696D65_1�evluation_int_overflow�Fd_Tell_Int_Range�X2424636865636B5F73747265616D5F6F725F7661722F325F2461757831_1�Fd_Reset_Solver�X247573655F657870616E64_0�X246C696E65735F746F5F636F6C756D6E73_2�Read_Token_1�Copy_Term_2�X666F726D6174_3�X246765745F7072656469636174655F66696C655F696E666F_3�X24247265696E69745F61667465725F657863657074696F6E2F305F2461757831_0�max_x_a_eq_z_F�Print_2�atom_curly_brackets�Fd_Lt_2�quot_rem_x_y_r_eq_z_F�X2463757272656E745F6F705F616C74_0�X63616C6C5F776974685F61726773_10�Os_Version_1�Blt_Fd_Var�Rd_Number_Check�Put_Atom_Tagged�Init_Oper�Add_Stream_For_Stdio_Desc�X74656C6C_1�X233C_2�X6F6E6365_1�X777269746571_2�Fd_Element_V_To_Xi�pred_tbl�x_nand_y_eq_b�X24636F6E73756C7431_1�X247365745F73725F64656661756C7473_0�Vector_Mod_Value�X242464656275675F63616C6C312F385F2461757831_3�Blt_G_Dec_2�Un_Term�X235C5C3D23_2�X2464656275675F69735F6E6F745F6C656173686564_1�usleep@@GLIBC_2.0�BC_Start_Emit_0�mkdir@@GLIBC_2.0�X6E6F6465627567_0�Read_1�Blt_Fast_Gt�X61746F6D5F70726F7065727479_2�Blt_Lte�fd_reset_solver�ttyname@@GLIBC_2.0�X247465726D5F746F5F676F616C31_2�Current_Predicate_Alt_0�x2_eq_y_F�X61746F6D5F6C656E677468_2�cos@@GLIBC_2.0�Fct_Min�Init_Pred�X247465726D5F746F5F676F616C_3�X6C6F7765725F7570706572_2�X2424706F72747261795F636C617573652F325F2461757832_1�X2464656275675F706F72745F6D61736B_2�X66756E63746F72_3�X6D656D626572_2�Create_Oper�Init_Machine1�Install_Ctrl_C_Handler�X7365745F6F7574707574_1�type_list�Switch_On_Term_Var_Atm�X6E65775F61746F6D_2�Call_With_Args_4�X2466645F73656C5F61727261795F66726F6D5F6C697374_2�Mk_Atom�Vector_Next_Before�X2464656275675F646973705F616C7465726E61746976657331_2�SR_Get_File_Name_2�Fct_Abs�Sys_Var_Dec_1�X24657865632F355F2461757831_1�Full_Var_Power_Coeff�Fd_Variable_Size0�X247365746172675F696E5F6C6173745F666F756E64_2�Cut�X73725F77726974655F6572726F72_6�X2473725F64697265637469766531_2�domain_not_less_than_zero�LE_Initialize�existence_source_sink�Load_Call_Info_Arg_1�X2463616C6C31_2�X246C697374696E675F616C6C_1�X73725F6765745F73747265616D_2�X24246765745F726561645F6F7074696F6E73322F315F2461757831_1�Read_Term_5�File_Prop_Date_2�def_trail_size�rename@@GLIBC_2.0�X235C5C2F5C5C_2�Put_Structure_Tagged�X247573655F7772697465_0�X242473746F72655F736F6C7574696F6E732F345F2461757831_3�X24636F6E73756C7433_2�Set_Predicate_File_Info_3�Write_Term_2�X726561645F746F6B656E_1�Vector_Compl�Fd_Tell_Not_Value�Os_Error�X2464656275675F7370795F7265736574_1�Set_Debug_Call_Code_0�X77726974655F746F5F61746F6D_2�Aux_Name_1�Exec_5�atom_append�domain_term_stream_or_alias�X2464656275675F6C6973745F6F665F70726564_2�X756E6765745F62797465_1�Mk_Chars�X246765745F726561645F6F7074696F6E7331_1�Check_For_Un_Compound�ax_plus_by_eq_z�Delete_Choice_Point1�Unget_Char_1�fd_unify_with_fd_var�atom_false�not_prime_x�X247573655F736F636B657473_0�LE_Compl_Add_Word�Vector_Add_Vector�Blt_Fast_Lt�x_lte_c�Init_Machine�Test_Alias_Not_Assigned_1�X68616C74_1�X66645F6D696E696D697A65_2�X2466645F6D696E696D697A652F325F2461757831_5�X246765745F6C6162656C696E675F6F7074696F6E7332_1�X66645F616C6C5F646966666572656E74_1�vsprintf@@GLIBC_2.0�strchr@@GLIBC_2.0�Fd_Unify_With_Fd_Var0�Blt_Univ�X756E6765745F636F6465_1�truth_x_plus_c_lte_y�X2424706F72747261795F636C617573652F325F2461757831_1�Create_Atom_Tagged�X63616C6C5F776974685F61726773_2�X2472656D6F76655F756E64657273636F72655F76617273_2�X646562756767696E67_0�Rd_In_Char�X756E6765745F63686172_1�Fd_Variable_To_String0�Unget_Code_2�Blt_G_Read�x_eq_y_F�Stream_Puts�Rd_Codes_Str�X24246765745F726561645F6F7074696F6E73322F315F2461757832_1�X24706C5F6572725F726570726573656E746174696F6E_1�X6C6173745F726561645F73746172745F6C696E655F636F6C756D6E_2�X24706C5F6572725F73796E746178_1�X7075745F636F6465_1�Range_Nb_Elem�Nth_Root_Dn�Current_Atom_Alt_0�Pred_Prop_Public_1�Atom_Property_6�fdopen@@GLIBC_2.1�Stream_Putc�X6E6F737079_1�X66645F6F6E6C795F6F6E65_1�Unget_Char_2�System_Time_1�X233E23_2�Name_Singleton_Vars_1�X246765745F726561645F6F7074696F6E73_4�X2463616C6C5F696E7465726E616C31_2�X246C6F61645F70726564_2�X706F72747261795F636C61757365_1�Read_Atom�X242477726974655F696E64696361746F722F305F2461757831_2�Blt_Compound�permission_type_past_end_of_stream�Sys_Var_Inc_1�SR_Get_Stm_For_Read_Term_1�X2477726974655F736F6C7574696F6E_3�X24627265616B2F305F2461757831_1�Write_Canonical_2�Open_Output_Term_Stream_1�Rd_Proper_List�Statistics_Global_Stack_2�Get_Char_1�alias_tbl�Current_Bip_Name_2�Halt_1�X2473747265616D5F70726F70657274792F325F2461757831_3�Blt_G_Reset_Bit�X24247370795F746573745F636F6E646974696F6E2F335F2461757831_2�X73725F7365745F6572726F725F636F756E74657273_3�atan@@GLIBC_2.0�X246C6F61645F66696C65_1�Fct_Fast_Sign�X3D3A3D_2�X737061776E_3�X247365745F746F705F6C6576656C5F73747265616D73_2�X7065656B5F62797465_1�X7065656B5F636F6465_1�Retractall_If_Empty_Head_1�type_byte�evluation_zero_divisor�Find_Linked_Objects�Read_Integer_1�x_imply_y_eq_b�Delete_Choice_Point3�X726561645F7465726D_2�X24706C5F6572725F696E7374616E74696174696F6E_0�fd_init_solver�X666F726D61745F746F5F61746F6D_3�X66645F6C6162656C696E676666_1�reg_tbl�M_Real_Time�Fd_Unify_With_Integer0�X72657665727365_2�SR_Write_Message_8�X746162_1�atom_debugger_output�X247573655F66645F6F7074696D_0�Malloc_Check�Nth_Root_Exact�X246765745F6C696E656469745F70726F6D7074_1�X6E6F6E5F67656E657269635F766172_1�X2424636F6E73756C74322F315F2461757831_2�X24696E646F6D61696E5F72616E646F6D5F616C74_0�getpid@@GLIBC_2.0�X666F726D61745F746F5F636F646573_3�X246D696E5F6C69737431_3�Blt_Number�Fatal_Error�Range_Test_Null_Inter�Rd_String_Check�Open_Input_Term_Stream_2�X246765745F636C6F73655F6F7074696F6E73_1�Nl_1�Rd_Float�Fork_Prolog_1�X2463617463685F696E7465726E616C31_5�X2424636865636B5F686561642F315F2461757831_1�X2463757272656E745F6D6972726F72_2�X247573655F73746174_0�__ctype_tolower_loc@@GLIBC_2.3�domain_stream_position�Create_Choice_Point3�X2464656275675F63616C6C_2�X246164645F636C617573655F7465726D_1�init_stream_supp�Range_Compl�SR_Init_Open_2�X242464656275675F657865635F636D642F365F2461757833_2�Read_Number_1�Un_In_Code�Vector_Union�LE_Get_Current_Word�X2473725F63757272656E745F64657363726970746F725F616C74_0�atom_bof�Write_Term_To_Atom_2�X66645F646F6D61696E_3�X246D656D6265722F325F2461757831_3�X66645F656C656D656E745F766172_3�Put_Nil�X66645F6D6178_2�Switch_On_Term_Var_Stc�X7365745F73747265616D5F6C696E655F636F6C756D6E_3�X675F696E63_1�Fct_Truncate�last_writing�Math_Load_Value�le_hook_exit_process�Set_Seed_1�Hash_Alloc_Table�X2463616C6C_4�X66645F72656C6174696F6E_2�X6F70656E5F696E7075745F636F6465735F73747265616D_2�X247365745F73747265616D5F627566666572696E672F325F2461757831_1�Stream_Close�Fct_Fast_Or�type_fd_evaluable�Put_X_Variable�X247468726F77_4�X24696E646F6D61696E5F6D61785F616C74_0�X247365745F7072656469636174655F66696C655F696E666F_3�stm_last_used�atom_stream�X246765745F77726974655F6F7074696F6E73_1�x_equiv_y_eq_b�representation_min_integer�Fd_Stop_Constraint�X66645F63617264696E616C697479_2�X736F7274_1�Reset_Prolog�Un_Boolean_Check�type_evaluable�Range_From_Vector�X2472657472616374_2�domain_stream_property�Rd_In_Code�Range_Div_Value�Fct_Fast_Dec�Sys_Var_Get_Bit_3�X776F726B696E675F6469726563746F7279_1�Blt_G_Assignb�M_Create_Shell_Command�Read_Token_From_Atom_2�Un_Code_Check�X6C696E655F636F756E74_2�X72616E646F6D_3�Argument_List_1�write@@GLIBC_2.0�X2424636F6E73756C74322F315F2461757832_2�localtime@@GLIBC_2.0�Scan_Peek_Char�X2462635F656D756C6174655F636F6E74_0�Flush_Output_1�Update_Water_Mark�Fct_Sign�X24246765745F77726974655F6F7074696F6E73322F315F2461757833_1�Pred_Prop_User_1�X2464656275675F726561645F636D64_1�X242466645F6C6162656C696E672F325F2461757832_1�Exit_With_Exception�fileno@@GLIBC_2.0�X403E3D_2�Set_Stream_Eof_Action_2�Statistics_Trail_Stack_2�Op_3�X66645F6D6178696D697A65_2�X5C5C3D3D_2�SR_Get_Position_3�X7365745F73747265616D5F627566666572696E67_2�X6370755F74696D65_1�X2424636865636B5F6F776E65725F66696C65732F335F2461757831_6�strcmp@@GLIBC_2.0�X6F70656E5F6F75747075745F61746F6D5F73747265616D_1�Choice_Point_Info_4�Fd_Exactly�Set_Stream_Buffering_2�stm_tbl�Current_Stream_1�representation_character_code�X24657870616E645F7465726D31_2�X726561645F66726F6D5F61746F6D_2�base_fd�X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757831_1�use_le_prompt�Fd_Prolog_To_Value�Switch_On_Term_Var_Atm_Lst�X666F72_3�X246361746368_6�X2473725F6765745F666F726D61745F617267735F6572726F72_6�last_output_sora�Store_Solution_1�close@@GLIBC_2.0�asin@@GLIBC_2.0�Range_Mul_Value�Fd_Check_For_Bool_Var�x_plus_c_lte_y�Fd_Math_Unify_X_Y�X2466645F6C6162656C696E675F737464_2�Fd_Tell_Interv_Interv�Stream_Getc�_fp_hw�Peek_Char_2�fd_domain_r�Read_Term_From_Codes_5�byte_code�Fd_Sel_Array_From_List_2�X24246765745F73725F6F7074696F6E73322F315F2461757832_1�Unify_Integer�Check_Stream_Type�X246861735F6E6F5F7370795F706F696E74_1�X246C6F61645F6469726563746976655F657863657074696F6E_3�Fd_Element_V_To_I�X6E756D6265725F6368617273_2�Fd_Element_Var_V_To_I�X66645F61746C65617374_3�Read_Integer�Fd_Element_I_To_V�X242464656275675F6C6973745F6F665F70726564312F345F2461757831_4�Rd_Chars_Check�atom_line�X242464656275675F657865635F636D642F365F2461757836_1�X6E616D655F73696E676C65746F6E5F76617273_1�X73725F6765745F6D6F64756C65_3�Rd_In_Char_Check�X246765745F6F70656E5F6F7074696F6E7332_1�X73756D5F6C697374_2�permission_type_stream�Sleep_1�X247573655F675F7661725F696E6C_0�SR_Current_Descriptor_1�X2463757272656E745F7072656469636174655F616E79_1�fprintf@@GLIBC_2.0�X2473725F6572726F725F66726F6D5F657863657074696F6E_2�fork@@GLIBC_2.0�M_Tempnam�X246765745F73725F6F7074696F6E7331_1�Unify_Structure_Tagged�Fct_Fast_Neg�Delete_Choice_Point4�Father_Pred_Of_Aux�getenv@@GLIBC_2.0�M_Random_Float�X63757272656E745F61746F6D_1�X6765745F73656564_1�X6B6579736F7274_1�signal@@GLIBC_2.0�X6765745F6C696E656469745F70726F6D7074_1�Fd_New_Variable�fmod@@GLIBC_2.0�Range_Becomes_Sparse�Rd_Float_Check�Fct_Fast_Inc�X2464656275675F7370795F736574_2�fd_variable_to_string�X246765745F636C6F73655F6F7074696F6E7332_1�Atom_Length_2�Fd_Use_Vector�fflush@@GLIBC_2.0�X247573655F636F6E73756C74_0�Stream_Prop_Type_2�domain_g_argument_selector�Blt_G_Inc_2�X247365745F71756572795F766172735F6E616D6573_2�pclose@@GLIBC_2.1�SR_Get_Error_Counters_3�X2473725F726561645F7465726D2F345F2461757832_2�Display_To_Atom_2�Range_Mul_Range�X2473725F6E65775F706173732F315F2461757831_1�Write_Simple�Read_Atom_2�X233D3C23_2�Fct_Ceiling�X7075745F62797465_2�X6C697374696E67_1�Call_Info_Bip_Name_1�X247573655F666C6167_0�X24247468726F775F696E7465726E616C2F325F2461757831_2�X247573655F747970655F696E6C_0�Blt_G_Link�Mk_In_Char�X403C_2�Get_Predicate_File_Info_3�Bind_Variables_4�Fd_Before_Add_Cstr�Get_Pred_Indic_3�Range_Next_Before�quot_rem_x_a_r_eq_z_F�Fct_Add�Fd_Element_I�X247573655F63616C6C_0�mallopt@@GLIBC_2.0�X24746F705F6C6576656C31_0�ax_plus_by_eq_z_F�X686F73745F6E616D65_1�Pl_Err_Instantiation�unlink@@GLIBC_2.0�Pred_Prop_Built_In_Fd_1�Decompose_File_Name_4�Fd_Init_Solver0�M_Cmd_Line_To_Argv�domain_source_sink�X63757272656E745F707265646963617465_1�Un_Atom�Fd_Init_Solver�X617267756D656E745F636F756E746572_1�X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757832_1�Current_Stream_Alt_0�X247365745F73747265616D5F747970652F325F2461757832_2�X66645F72656C6174696F6E63_2�Arith_Eval_2�Fd_Prolog_To_Fd_Var�getrusage@@GLIBC_2.0�Delete_File_1�X636F6D70617265_3�Name_2�Mk_List�Rd_Code�Atom_Concat_Alt_0�X2462635F656D6974_1�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757835_1�X24636865636B5F61746F6D5F6F725F61746F6D5F6C69737431_1�X247573655F63616C6C5F61726773_0�X6173736572747A_1�X247573655F66696C65_0�Current_Alias_2�X246C6F616432_1�Stream_Prop_Buffering_2�X242464656275675F6C6973745F6F665F70726564312F345F2461757832_5�Update_Choice_Point3�X2473725F6572726F725F66726F6D5F657863657074696F6E2F325F2461757831_1�Set_Stream_Position_2�Un_Byte_Check�X3D3D_2�Retract_2�fd_exactly�le_initialize�X66645F7573655F766563746F72_1�X68616C74_0�X6765745F6B6579_1�X77726974655F63616E6F6E6963616C5F746F5F61746F6D_2�X247365656E2F305F2461757831_1�X2467726F75705F736F6C7574696F6E73_3�X24246765745F73725F6F7074696F6E73322F315F2461757833_1�X73725F6E65775F70617373_1�X6F735F76657273696F6E_1�BC_Start_Pred_7�X24246C6F6164322F315F2461757832_2�Check_For_Un_Boolean�X247265696E69745F61667465725F657863657074696F6E_0�permission_operation_open�Last_Read_Start_Line_Column_2�Mk_Variable�X24737079706F696E745F636F6E646974696F6E31_3�x_imply_y_eq_1�X63616C6C5F776974685F61726773_5�Stream_Ungetc�Un_Float_Check�Mk_In_Byte�Stream_Position_2�Writeq_1�Remove_One_Choice_Point_1�select@@GLIBC_2.0�type_fd_variable�Vector_From_Interval�X756E6765745F62797465_2�X247573655F66645F6D617468_0�X24247465726D5F746F5F676F616C322F325F2461757831_3�Line_Position_2�X7465726D5F726566_2�Mk_Number�Lower_Upper_2�x_plus_y_plus_z_eq_t_F�Pred_Without_Aux�X235C5C_1�query_exception�X24246C6F61645F66696C652F315F2461757831_3�Pl_Err_Syntax�X6D616B655F6469726563746F7279_1�Remove_Predicate_2�wmark_count�X72657472616374_1�X77726974655F746F5F6368617273_2�domain_socket_domain�Blt_G_Dec_3�x_and_y_eq_b�Un_Integer�Sqrt_Up�Allocate�X24696E646F6D61696E_2�File_Permission_2�vsnprintf@@GLIBC_2.0�X24246765745F77726974655F6F7074696F6E73322F315F2461757834_1�X246765745F6C6162656C696E675F6F7074696F6E7331_1�strerror@@GLIBC_2.0�X707574_1�Execute_Directive�Cpu_Time_1�Term_Math_Loading�BC_Emit_Inst_1�Check_For_Un_Number�Fct_Fast_Shr�__dso_handle�Stream_Get_Position�Check_For_Un_Atom�Rd_Code_Check�representation_max_integer�X247573655F66645F696E666F73_0�Set_Linedit_Prompt_1�Stream_Prop_Input_1�x_plus_y_eq_z_F�Global_Push_Float�Hash_Delete�Put_Integer_Tagged�Call_With_Args_3�SR_Current_Descriptor_Alt_0�X636C6F73655F696E7075745F636F6465735F73747265616D_1�Fd_New_Bool_Variable�X706F72747261795F636C61757365_2�Call_With_Args_9�truth_x_gte_c�Blt_G_Deco�base_fl�X246164645F6D6972726F72735F746F5F73747265616D_2�X2472656D6F76655F707265646963617465_2�X63757272656E745F636861725F636F6E76657273696F6E_2�mmap@@GLIBC_2.0�X24636865636B5F61746F6D5F70726F70_1�X6E6F737079616C6C_0�Check_For_Un_Variable�Unify_Occurs_Check�__libc_csu_fini�X2461746F6D5F636F6E6361745F616C74_0�Fd_After_Add_Cstr�Set_Prolog_Flag_2�Reassign_Alias�Check_For_Un_Char�X61746F6D5F636F6E636174_3�X24706C5F6572725F646F6D61696E_2�Call_Prolog�X2473747265616D5F706F736974696F6E_2�Get_Key_2�X246765742F315F2461757831_2�tcsetattr@@GLIBC_2.0�Add_Stream_For_Stdio_File�permission_type_flag�obj_chain_begin�Argument_Counter_1�Pred_Prop_Prolog_Line_2�Sys_Var_Write_2�X2474656C6C2F315F2461757831_2�Blt_Generic_Var�Fct_Fast_Not�Put_Unsafe_Value�setlocale@@GLIBC_2.0�wmark�X2466645F6C6162656C696E6731_4�query_top_b�X66645F6861735F65787472615F63737472_1�X2473725F7365745F74726561745F706173735F62697473_3�X73656C656374_3�Extend_Table_If_Needed�X242464656275675F706F72745F70726F6D70742F365F2461757831_5�X70726F6C6F675F706964_1�X2467726F75705F736F6C7574696F6E735F616C74_0�X6469726563746F72795F66696C6573_2�X2464656275675F646973705F616C74_2�X242464656275675F657865635F636D642F365F2461757835_3�X61745F656E645F6F665F73747265616D_0�X2473686F775F7370795F706F696E7473_0�Fct_Shl�X24746F705F6C6576656C5F657863657074696F6E_1�Hash_Realloc_Table�domain_operator_priority�X686F73746E616D655F61646472657373_2�Fd_New_Int_Variable�Free_Variables_4�X2473686F775F64656275676765725F6D6F646531_1�X247365745F73747265616D5F627566666572696E672F325F2461757832_2�Fd_Neq_2�X676574_1�representation_in_character_code�Prolog_File_Name_2�X2473746174_3�Fd_Add_Dependency�buff_signal_reg�truth_x_neq_y_F�Un_Compound_Check�X73725F77726974655F6D657373616765_8�X242473725F74726561745F7465726D2F325F2461757833_2�Un_Atom_Check�Term_Write_Str_Stream�X2466645F63617264696E616C69747931_2�Make_Stream_Tagged_Word�X246661746865725F6F665F6175785F6E616D65_3�Scan_Choice_Point_Pred�Write_2�X7365745F6269705F6E616D65_2�X2464656275675F646973705F616C7431_3�Fct_Float_Div�X242463617463685F73796E635F666F725F6661696C5F61742F315F2461757831_2�X247573655F7072696E74_0�unify_x_y�__errno_location@@GLIBC_2.0�pow@@GLIBC_2.0�quot_rem_x_y_r_eq_z�Write_A_Char�X2466696C655F70726F70_2�environ@@GLIBC_2.0�X726561645F61746F6D_1�xy_eq_z_F�existence_stream�resource_too_big_fd_constraint�X246D616B655F6175785F6E616D65_4�X2473686F775F64656275676765725F6D6F6465_0�X6F70656E5F6F75747075745F636F6465735F73747265616D_1�Check_For_Un_Codes�X6E65775F61746F6D_1�X63757272656E745F6D6972726F72_2�X242477726974655F736F6C7574696F6E2F335F2461757831_2�x2_eq_y�Get_Stream_Or_Alias�Indomain_Middle_Alt_0�X7265616C5F74696D65_1�X24627265616B2F305F2461757832_1�Find_Next_Atom�Update_Dynamic_Pred�Vector_Next_After�Hostname_Address_2�BC_Emulate_Cont_0�X707265666978_2�X63757272656E745F6F7574707574_1�Fd_Has_Vector_1�ftell@@GLIBC_2.0�SR_Write_Message_6�max_x_y_eq_z�List_Length�X246F7032_3�X2473725F6F70656E2F335F2461757831_1�Shell_2�SR_Get_Include_List_2�X6765745F6B65795F6E6F5F6563686F_2�Stdio_Is_Repositionable�X246463675F7472616E735F72756C65_2�X2464656275675F706F7274_5�X233C3D3E_2�Consult_2�Blt_G_Array_Size�representation_character�Write_Canonical_To_Codes_2�X24696E646F6D61696E5F6D6964646C655F616C74_0�System_2�domain_non_empty_list�Range_Union�Writeq_2�domain_g_array_index�Fd_Use_Vector_1�accept@@GLIBC_2.0�gethostbyaddr@@GLIBC_2.0�Random_1�Blt_Eq�system@@GLIBC_2.0�zero_power_n_eq_y�X247379735F7661725F7365745F626974_2�X242466696E645F6578697374696E675F73747265616D2F335F2461757831_3�X675F696E63_2�Read_Number_2�Mk_Callable�domain_read_option�X247573655F617373657274_0�LE_Is_Interrupt_Key�X2473725F73746F705F6D6F64756C65_3�X66645F61745F6C656173745F6F6E65_1�X2463757272656E745F616C6961732F325F2461757831_2�X247379735F7661725F72656164_2�Set_Current_B_1�Get_Integer�X63757272656E745F70726F6C6F675F666C6167_2�X247573655F736F7274_0�SR_Get_Size_Counters_3�X2464656275675F726561645F696E7465676572_1�X66645F646F6D61696E5F626F6F6C_1�Blt_Atom�X247573655F7465726D5F696E6C_0�access@@GLIBC_2.0�Prolog_Pid_1�X736F636B6574_2�X72656D6F76655F73747265616D5F6D6972726F72_2�Stream_Flush�setvbuf@@GLIBC_2.0�X73725F6765745F696E636C7564655F73747265616D5F6C697374_2�X246765745F73725F6F7074696F6E7332_1�X242464656275675F657865635F636D642F365F2461757837_3�Put_Byte_2�os_argc�Writeq_To_Chars_2�X233E3D_2�Rd_Chars_Str�inet_ntoa@@GLIBC_2.0�Pl_Err_System�Write_To_Codes_2�X63757272656E745F73747265616D_1�X2461726974685F6576616C_2�LE_Compl_Find_Match�domain_stream�X7075745F63686172_2�X3E3D_2�Current_Op_3�M_Set_Seed�X6F70656E5F6F75747075745F63686172735F73747265616D_1�X63616C6C_2�Blt_Callable�X66645F6C6162656C696E67_1�Pred_Prop_Dynamic_1�Load_Cut_Level�Change_Directory_1�Sys_Var_Get_2�type_float�puts@@GLIBC_2.0�X24636865636B5F73747265616D5F6F725F766172_2�le_prompt�Select_5�Term_Compare�_init�X6E6C_1�X5C5C3D_2�X2466645F656C656D656E74_3�Setarg_Of_Last_Found_2�X247573655F73747265616D_0�popen@@GLIBC_2.1�X247573655F756E696679_0�Current_Mirror_2�truth_x_plus_c_neq_y_F�Rd_Positive_Check�Create_Pipe_2�X246462675F696E64696361746F72_2�Call_Compiled�X247379735F7661725F707574_2�Switch_On_Atom�X2462635F73746F705F656D6974_0�X6261676F66_3�Write_Term_To_Chars_2�x_neq_c�X24657865635F636D645F657272_2�X2466645F73656C5F61727261795F7069636B5F766172_4�Architecture_1�listen@@GLIBC_2.0�X74656C6C696E67_1�Current_Output_1�Unlink_1�stk_tbl�X706F70656E_3�Print_To_Codes_2�Indomain_Random_Alt_0�permission_type_static_procedure�Create_Choice_Point1�X73725F6368616E67655F6F7074696F6E73_2�X247573655F7468726F77_0�X7365745F73747265616D5F656F665F616374696F6E_2�X7065656B5F62797465_2�nb_atom�X675F61737369676E_2�type_compound�X2473725F657865635F646972656374697665_2�Seek_4�ax_plus_y_eq_z�Scan_Next_Atom�stm_top_level_input�X736C656570_1�Get_Atom�x_nequiv_y_eq_b�malloc@@GLIBC_2.0�type_predicate_indicator�X726561645F706C5F73746174655F66696C65_1�X7072696E745F746F5F61746F6D_2�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757836_1�X6E65775F61746F6D_3�last_read_line�Fct_Mul�X5C5C2B_1�Random_3�X246C6F61642F315F2461757831_1�X242464656275675F657865635F636D642F365F2461757834_2�Socket_Accept_4�Call_With_Args_6�Pl_Err_Existence�domain_prolog_flag�X646973706C6179_2�X2473756D5F6C69737431_3�X3D3C_2�Range_Inter�Rename_File_2�glob_buff�X247465726D5F746F5F676F616C32_2�domain_selectable_item�X7065656B5F63686172_2�X246765745F77726974655F6F7074696F6E7332_1�Rd_List_Check�X24696E7374616E63655F666F725F736574617267_2�debug_call_code�Date_Time_1�Fct_Identity�X737079706F696E745F636F6E646974696F6E_3�X73725F726561645F7465726D_4�X63757272656E745F616C696173_2�X61745F656E645F6F665F73747265616D_1�abs_x_minus_y_eq_z_F�Create_Water_Mark�X24657865635F636D645F6C696E655F656E7472795F676F616C73_1�X242464656275675F657865635F636D642F365F2461757832_1�Vector_Mul_Vector�abs_x_minus_a_eq_z_F�Delete_Pred�atom_user_input�munmap@@GLIBC_2.0�M_Get_Status�Fct_Max�Retract_Last_Found_0�X746F6C64_0�X6368616E67655F6469726563746F7279_1�prime_x�Rd_Integer_Check�X77726974655F7465726D5F746F5F6368617273_3�Blt_Var�Find_Stream_By_Alias�permission_type_private_procedure�X247365745F6C696E656469745F70726F6D7074_1�X24726561645F72657475726E_1�pipe@@GLIBC_2.0�not_x_eq_b�Group_Solutions_3�Setarg_4�Blt_Functor�x_and_y_eq_0�Get_Integer_Tagged�Unify_List�X24617373657274_3�X246765745F6C6162656C696E675F6F7074696F6E73_2�X737061776E_2�Rd_Char�ax_plus_by_plus_z_eq_t_F�X7772697465715F746F5F6368617273_2�Un_Boolean�X646973706C6179_1�X2477726974655F736F6C7574696F6E31_1�fread@@GLIBC_2.0�Check_For_Un_Chars�Rd_Compound�quot_rem_a_y_r_eq_z�LE_FGets�Get_List�X77726974655F7465726D5F746F5F61746F6D_3�Rd_Byte�Atom_Chars_2�clearerr@@GLIBC_2.0�X617267_3�Keep_Rest_For_Prolog�Statistics_Real_Time_2�At_End_Of_Stream_0�X2473725F6F705F74797065_2�X766172_1�X2462635F656D69745F696E7374_1�M_Absolute_Path_Name�Current_Predicate_2�Extra_Cstr_Alt_0�Fd_Reset_Solver0�X63616C6C5F776974685F61726773_8�X246F702F335F2461757831_3�X656E7669726F6E_2�X247573655F666F726D6174_0�Create_Swt_Stc_Element�Create_Swt_Atm_Element�X6E756D6265725F76617273_0�Put_Y_Variable�atom_text�wmp�X242463616C6C5F696E7465726E616C5F6F722F345F2461757831_6�X3D5C5C3D_2�Un_Number�X746F705F6C6576656C_0�X6C6973745F6F725F7061727469616C5F6C697374_1�X72656164_2�X63616C6C61626C65_1�X242464656275675F646973705F616C74312F335F2461757832_3�Host_Name_1�X77726974655F7465726D_2�x_power_a_eq_y�X246D656D62657263686B2F325F2461757831_4�X246164645F616C69617365735F746F5F73747265616D_2�Atom_Hash_2�X2463757272656E745F61746F6D_1�Character_Count_2�X2424737461742F335F2461757831_2�Call_With_Args_5�Reset_Debug_Call_Code_0�rint@@GLIBC_2.0�X657870616E645F7465726D_2�X2464656275675F646973705F616E635F6C7374_1�X242464656275675F6C6973745F6F665F70726564312F345F2461757833_4�X247370795F746573745F636F6E646974696F6E_3�LE_Get_Current_Position�fixed_sizes�X6164645F73747265616D5F6D6972726F72_2�X247072656469636174655F70726F70657274795F616E79_2�X73725F63757272656E745F64657363726970746F72_1�Switch_On_Structure�atom_at�X6E6F6E766172_1�X24246765745F73725F6F7074696F6E73322F315F2461757834_1�Indomain_Limits_Alt_0�Name_Query_Vars_2�X66645F61745F6D6F73745F6F6E65_1�X247573655F72656164_0�X7772697465_2�X6E756D62657276617273_1�X247375625F61746F6D5F616C74_0�Recover_Solutions_2�X726561645F746F6B656E5F66726F6D5F636F646573_2�Add_Stream�X726561645F66726F6D5F636F646573_2�X6765745F6B6579_2�X246765745F726561645F6F7074696F6E7332_1�Range_Add_Value�X247365745F73747265616D5F747970652F325F2461757831_1�X2464656275675F6C6973745F6F665F7072656431_4�Un_Chars_Check�LE_Close_Terminal�Blt_Term_Gt�Fd_Domain_3�X6465636F6D706F73655F66696C655F6E616D65_4�X63757272656E745F696E707574_1�Peek_Code_1�le_hook_set_line_buffering�permission_type_binary_stream�stm_tbl_size�X2473725F77726974655F6572726F722F365F2461757831_4�X666C7573685F6F7574707574_1�stdout@@GLIBC_2.0�Current_Prolog_Flag_Alt_0�Fd_Tell_Value�stderr@@GLIBC_2.0�Blt_G_Set_Bit�X2424746F705F6C6576656C322F305F2461757835_1�def_local_size�Read_Token�Check_For_Un_In_Byte�Unify_Integer_Tagged�Delete_Choice_Point2�X24706C5F6572725F7265736F75726365_1�truth_x_plus_c_eq_y_F�X66645F7072696D65_1�Indomain_Max_Alt_0�X66645F61746D6F7374_3�Indomain_Min_Alt_0�SR_Get_Stm_2�Fct_And�X247573655F616C6C5F736F6C7574_0�Delete_Directory_1�X666F726B5F70726F6C6F67_1�atom_reposition�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757834_1�Rd_Positive�Blt_Fast_Lte�Get_Float�domain_flag_value�X2461746F6D5F70726F706572747932_7�Fct_Pow�mprotect@@GLIBC_2.0�Close_Stm�X2465787472615F637374725F616C74_0�X636C6F7365_1�Read_Term�le_hook_backd�X73725F77726974655F6D657373616765_4�X77726974655F706C5F73746174655F66696C65_1�X73746F70_0�le_hook_forwd�Mk_Positive�Un_Codes�Un_In_Byte_Check�stm_debugger_output�X246261676F66_4�Blt_Neq�X63616C6C5F776974685F61726773_6�X242463617463685F696E7465726E616C312F355F2461757831_3�File_Prop_Real_File_Name_2�Unget_Code_1�min_x_y_eq_z_F�X6E6F7472616365_0�SR_Change_Options_0�atom_eof�Range_Div_Range�X2463757272656E745F616C6961735F616C74_0�__xstat@@GLIBC_2.0�X617070656E64_1�Fd_Prolog_To_Array_Int�X6F70656E_3�Fct_Log�X77726974655F63616E6F6E6963616C5F746F5F636F646573_2�Un_In_Byte�Delete_Choice_Point�Environ_2�X675F72656164_2�getpagesize@@GLIBC_2.0�For_Alt_0�X2463616C6C5F696E7465726E616C5F776974685F637574_3�type_atom�Send_Signal_2�X247379735F7661725F646563_1�X726561645F61746F6D_2�X6765745F7072696E745F73747265616D_1�X706872617365_3�Prop_And_Stdio_Mode�execv@@GLIBC_2.0�inet_aton@@GLIBC_2.0�For_3�X247573655F636F6E74726F6C_0�Fd_Max_2�X2461746F6D5F70726F70657274795F616E79_2�Get_Pred_Indicator�X66645F6D696E_2�Init_Atom�DATE�Display_To_Codes_2�X777269746571_1�X247072656469636174655F70726F706572747931_2�stm_stdout�X6C697374696E67_0�Vector_Div_Vector�Format_To_Atom_3�X24636865636B5F73747265616D5F70726F70_1�Read_Term_4�Define_Math_Bip_2�Update_Choice_Point�Stream_Prop_End_Of_Stream_2�X2464656275675F63616C6C5F706F7274_5�LE_Set_Separators�X627265616B_0�abs_x_minus_a_eq_z�Add_Stream_Alias_2�domain_write_option�X2462635F73746172745F70726564_7�fseek@@GLIBC_2.0�waitpid@@GLIBC_2.0�x_lte_y�X675F61727261795F73697A65_2�X61737365727461_1�Check_For_Un_Callable�X247573655F616C6C5F66645F62697073_0�X2463757272656E745F6D6972726F725F616C74_0�X73797374656D_1�X24726561645F7175657279_2�Fct_Fast_Div�Rd_Atom�X247573655F70726564_0�Statistics_System_Time_2�X24726561645F7465726D_3�Abolish_1�Fct_Not�Scan_Dynamic_Pred�SR_EOF_Reached_1�Read_Integer_2�Un_Float�Treat_Vars_Of_Term�X646973706C61795F746F5F61746F6D_2�Read_From_Codes_2�Get_Byte_1�Un_Callable_Check�Flush_Output_0�Pred_Prop_Native_Code_1�X24657865635F636D645F6C696E655F676F616C_1�X6D696E5F6C697374_2�ax_plus_y_plus_z_eq_t�X7061727469616C5F6C697374_1�X24706C5F6572726F72_1�time@@GLIBC_2.0�X7772697465_1�X726561645F746F6B656E5F66726F6D5F61746F6D_2�Check_For_Un_Code�Get_Seed_1�X6E756D6265725F61746F6D_2�X2323_2�X2464656275675F657863657074696F6E5F706F7274_5�X2464656275675F77726974655F676F616C_4�X66645F6E6F745F7072696D65_1�Fct_Fast_Add�X636C6F73655F6F75747075745F636F6465735F73747265616D_2�Un_In_Char_Check�Un_String�Full_Var_Power_2�X235C5C3D_2�Pl_Err_Evaluation�_start�Vector_Nb_Elem�le_hook_ins_mode�X24246765745F77726974655F6F7074696F6E73322F315F2461757831_1�X247573655F61746F6D_0�x_gte_c�Un_List�X247379735F7661725F676574_2�Stream_Gets�X2424746F705F6C6576656C322F305F2461757831_2�Un_Positive�x_nor_y_eq_b�Blt_Fast_Neq�Obtain_Float�X636C6F73655F696E7075745F61746F6D5F73747265616D_1�X246E746831_3�SR_Is_Bit_Set_1�Spawn_3�Vector_Ith_Elem�X636C6F73655F6F75747075745F61746F6D5F73747265616D_2�Blt_Term_Lte�X24706C5F6572725F7065726D697373696F6E_3�M_Host_Name_From_Name�X247573655F72616E646F6D_0�Lookup_Pred�Fct_Sqrt�Print_To_Atom_2�Number_Chars_2�X6E756D6265725F636F646573_2�X242464656275675F7370795F72657365742F315F2461757831_3�le_hook_flush�domain_stream_option�Blt_Integer�X24636865636B5F737461745F6B6579_1�SR_New_Pass_1�Pl_Err_Permission�Range_Add_Range�evluation_undefined�Read_Atom_1�Create_Choice_Point�Debug_Wam�X246765745F62696E645F7661726961626C65735F6F7074696F6E7331_1�X66645F7365745F766563746F725F6D6178_1�Gen_New_Atom�Write_Canonical_1�X2463757272656E745F7072656469636174655F616C74_0�le_hook_put_char�Find_Expon_Dn�X2424657865635F71756572792F325F2461757832_2�X247072656469636174655F70726F706572747932_2�Find_Atom�def_cstr_size�X66645F63617264696E616C697479_3�X24636865636B5F66696C655F70726F70_1�X245C5C2B2F315F2461757831_1�le_hook_start�Put_Code_1�chdir@@GLIBC_2.0�Scan_Choice_Point_Info_3�M_Allocate_Stacks�Vector_Copy�X61746F6D5F68617368_2�X77726974655F746F5F636F646573_2�X77726974655F7465726D_3�Throw_2�pi_name_word�Set_Stream_Buffering�X66645F6D61785F696E7465676572_1�Fct_Fast_And�X737079_1�LE_Get_Prompt_Length�Sort_List_2�Check_Prop_Perm_And_File_2�Pl_Err_Domain�Blt_List_Or_Partial_List�X6C656E677468_2�X24706C5F6572725F6578697374656E6365_2�Make_Aux_Name�X2424636865636B5F707265645F747970652F335F2461757831_4�File_Exists_1�le_hook_confirm_box�Update_Choice_Point1�Socket_Close_1�X6E756D626572_1�LE_Get_Ctrl_C_Return_Value�strstr@@GLIBC_2.0�permission_type_source_sink�strlen@@GLIBC_2.0�X247365745F63757272656E745F42_1�longjmp@@GLIBC_2.0�X72657472616374616C6C_1�permission_operation_output�X24706C5F6572725F73797374656D_1�Rd_Atom_Check�X73797374656D5F74696D65_1�SR_Write_Message_4�From_Alias_To_Stream_2�X2464656275675F646973705F616C7432_1�X2463616C6C2F325F2461757831_1�X24246C6F61645F707265642F325F2461757831_3�LE_Get_Char�sigaddset@@GLIBC_2.0�Rd_Boolean�X233D3C_2�obj_chain_end�le_hook_get_line_buffering�Add_Linedit_Completion_1�Set_Stream_Line_Column_3�Assert_4�X2466645F63617264696E616C697479_2�X24636F6E73756C742F315F2461757831_1�X6F70656E_4�X6D61785F6C697374_2�type_atomic�Set_Heap_Actual_Start�le_hook_screen_size�Put_Float�X2466645F6D6178696D697A652F325F2461757831_6�Term_Size�X66645F766172_1�X706872617365_2�X6D656D62657263686B_2�Atom_Codes_2�Range_Copy�__lxstat@@GLIBC_2.0�X636C61757365_2�Pred_Prop_Private_1�X66645F766563746F725F6D6178_1�X246765745F6F70656E5F73746D_2�Fct_Float_Fract_Part�X73747265616D5F706F736974696F6E_2�Put_Char_1�atom_none�X6765745F6B65795F6E6F5F6563686F_1�Unify�X246F70656E_4�X73747265616D5F6C696E655F636F6C756D6E_3�X246F7031_3�Least_Significant_Bit�X2464656275675F656E645F63616C6C_6�uname@@GLIBC_2.0�oper_tbl�X2466696E645F6578697374696E675F73747265616D_3�Fct_Xor�atom_block�Un_Positive_Check�__strtol_internal@@GLIBC_2.0�Current_Char_Conversion_2�Blt_Partial_List�X61746F6D5F6368617273_2�X242464656275675F646973705F616C74312F335F2461757831_2�qsort@@GLIBC_2.0�Statistics_Cstr_Stack_2�X242473725F646972656374697665312F325F2461757832_2�X666C7573685F6F7574707574_0�x_plus_y_plus_z_eq_t�Hash_Nb_Elements�Mk_Integer�X2424737079706F696E745F636F6E646974696F6E312F335F2461757831_5�X24246261676F662F345F2461757831_2�X6164645F6C696E656469745F636F6D706C6574696F6E_1�BC_Stop_Emit_0�Rd_Codes�X2473725F74726561745F706173735F6E6F_3�Number_Atom_2�M_Random_Integer�X24706872617365_4�X73725F6765745F66696C655F6E616D65_2�X61746F6D6963_1�domain_date_time�X2474727574685F6F66_2�X2461746F6D5F70726F706572747931_2�Fct_Mod�Display_To_Chars_2�X2463617463685F73796E635F666F725F6661696C5F6174_1�Close_1�LE_Get_Separators�evluation_float_overflow�X7375625F61746F6D_5�X726570656174_0�Make_Aux_Name_4�representation_max_arity�X233E_2�X736F636B65745F616363657074_4�X7072696E745F746F5F636F646573_2�last_input_sora�X736F636B65745F636C6F7365_1�Mk_Char�Fd_Set_Full_Ac_Flag_1�Fd_Has_Extra_Cstr_1�X6164645F73747265616D5F616C696173_2�LE_Gets�Range_Ith_Elem�X24746F6C642F305F2461757831_1�xy_eq_z�X246164645F636C617573655F7465726D5F616E645F6263_2�X675F61737369676E62_2�x_plus_y_eq_z�X67657430_1�Find_Expon_Up�X2473746F72655F736F6C7574696F6E73_4�X24246C6F61645F707265642F325F2461757832_3�Lookup_Oper�execvp@@GLIBC_2.0�X24636865636B5F707265645F74797065_3�X247265766572736531_3�le_hook_emit_beep�Get_Structure�X636861725F636F6E76657273696F6E_2�tzset@@GLIBC_2.0�Find_Linedit_Completion_2�X675F7365745F626974_2�Stream_Prop_Mode_2�X24246C6F6164322F315F2461757831_3�X61746F6D_1�X736F7274_2�X246765745F6F70656E5F6F7074696F6E7331_1�Execute_A_Continuation�Blt_G_Assign�Set_Stream_Type_2�Stream_Peekc�X2463616C6C2F325F2461757832_3�char_conv�X2466645F6C6162656C696E675F6D7468_4�X2464656275675F7377697463685F6F6666_0�setlinebuf@@GLIBC_2.0�X6E616D655F71756572795F76617273_2�X246765745F73725F6F7074696F6E73_2�X7065656B5F63686172_1�x_plus_c_eq_y_F�M_Get_Working_Dir�atom_not�X242473725F646972656374697665312F325F2461757831_4�m_os_version�X246175785F6E616D65_1�max_x_y_eq_z_F�X246D616B655F6C697374_2�Update_Choice_Point4�X64656C657465_3�atom_current�X7772697465715F746F5F61746F6D_2�Choice_Point_Arg_3�Fct_Fast_Xor�X2477726974655F696E64696361746F72_0�sigprocmask@@GLIBC_2.0�X246C697374696E675F6F6E65_1�Get_Code_2�Range_Mod_Value�atom_eof_code�X242464656275675F63616C6C2F325F2461757831_2�strncmp@@GLIBC_2.0�X242473725F73746F705F6D6F64756C652F335F2461757831_2�Popen_3�Fct_Or�Fct_Fast_Shl�X24636865636B5F61746F6D5F6F725F61746F6D5F6C697374_1�X66696E64616C6C_3�Get_Current_B_1�atom_reset�X7075745F63686172_1�Fd_Copy_Variable0�Deallocate�SR_Open_File_2�X2464656275675F646973705F616C7465726E617469766573_2�X6C617374_2�Stream_Prop_Eof_Action_2�last_read_col�X7365745F73747265616D5F74797065_2�Clause_3�fputc@@GLIBC_2.0�User_Time_1�__libc_csu_init�Temporary_Name_2�truth_x_eq_y�vec_max_integer�Number_Codes_2�X247573655F66645F626F6F6C_0�Working_Directory_1�X242463617463685F615F7468726F772F355F2461757831_2�Mk_In_Code�Rd_Byte_Check�Vector_Div_Value�Blt_Fast_Eq�stm_input�X242473725F73746172745F6D6F64756C652F335F2461757831_2�X2473725F74726561745F7465726D_2�X74656D706F726172795F6E616D65_2�Unget_Byte_2�X6765745F63686172_1�Set_Output_1�X7365745F696E707574_1�Fd_Display_Extra_Cstr�X737566666978_2�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757832_1�Argument_Value_2�Char_Code_2�Unify_Value�X2424746F705F6C6576656C322F305F2461757833_3�X247573655F616C6C5F706C5F62697073_0�Write_Term�X247573655F66645F73796D626F6C6963_0�Add_Dynamic_Clause�SR_Add_Directive_7�type_character�__bss_start�Unify_Local_Value�X242464656275675F7370795F7365742F325F2461757831_3�X63616C6C5F776974685F61726773_1�Assoc_Socket_Streams_3�Write_Term_To_Codes_2�Stream_Prop_Output_1�Mk_Boolean�X6765745F636F6465_2�main�Try_Execute_Top_Level�M_Set_Working_Dir�Read_Token_2�Check_For_Un_List�Vector_Empty�Un_List_Check�X246E756D6265725F766172732F305F2461757831_1�X7075745F636F6465_2�Statistics_Cpu_Time_2�X636F6D706F756E64_1�X2466645F72656C6174696F6E6331_3�Set_Top_Level_Streams_2�X233C23_2�X7072696E74_1�Pred_Without_Aux_4�Rd_In_Byte�X646973706C61795F746F5F636F646573_2�type_in_character�Syntax_Error_Info_4�X2463757272656E745F707265646963617465_1�type_variable�Fct_Fast_Mod�domain_operator_specifier�X24707265645F776974686F75745F617578_4�X63616C6C5F776974685F61726773_11�X233E3D23_2�Socket_Bind_2�Switch_On_Term_Var_Atm_Stc�X247573655F6465633130696F_0�os_argv�X77726974655F63616E6F6E6963616C_2�domain_format_control_sequence�a_power_n_eq_y�Halt_If_No_Top_Level_1�X246765745F63757272656E745F42_1�Fct_Rem�X63757272656E745F6269705F6E616D65_2�Un_In_Code_Check�Hash_Delete_All�Vector_Test_Null_Inter�fd_element�LE_Compl_Init_Match�Get_Code_1�Write_Canonical_To_Atom_2�X675F646563_3�X6C697374_1�Fd_Atmost�Portray_Clause_1�X235C5C3C3D3E_2�Fct_Cos�X246861735F7370795F706F696E74_2�X675F6465636F_2�__libc_start_main@@GLIBC_2.0�X73656C656374_5�permission_type_text_stream�Get_Atom_Tagged�X247468726F7731_2�X2463617463685F6661696C5F6E6F77_1�Call_With_Args_11�Fd_Sel_Array_Pick_Var_4�Find_Linedit_Completion_Alt_0�X64656C6574655F66696C65_1�Blt_Float�X247365745F6C6162656C696E675F64656661756C7473_0�X7072696E74_2�X73746174697374696373_0�Sqrt_Dn�M_User_Time�X63616C6C5F776974685F61726773_9�X24246765745F73725F6F7074696F6E73322F315F2461757831_1�X2424737461742F335F2461757832_1�Put_Structure�X6E6F6E5F66645F766172_1�New_Object�Fd_Max_Integer_1�Blt_Non_Generic_Var�X61626F7274_0�Set_Input_1�X24246C697374696E675F616C6C2F315F2461757831_2�X242463616C6C5F696E7465726E616C2F325F2461757831_1�X2473747265616D5F70726F706572747931_2�truth_x_eq_c_F�type_callable�Close_Input_Term_Stream_1�X66645F656C656D656E74_3�X726561645F7465726D5F66726F6D5F61746F6D_3�Add_Str_Stream�BC_Call_Terminal_Pred_3�File_Prop_Absolute_File_Name_2�exp@@GLIBC_2.0�X73725F77726974655F6572726F72_2�X246C656173685F6D616B655F6D61736B_2�X2466645F6C6162656C696E67_2�X6E756D62657276617273_3�Display_2�X7472616365_0�permission_operation_access�atom_past�X2466696C655F70726F705F7065726D_2�fd_atleast�X24636C6F7365_2�Fct_Floor�Put_Byte_1�X2463757272656E745F61746F6D5F616E79_1�Mk_Code�New_Atom_3�x_nimply_y_eq_b�reg_bank�Current_Alias_Alt_0�Rd_Compound_Check�X2464656275675F706F727432_6�M_Host_Name_From_Adr�SR_Close_1�dup2@@GLIBC_2.0�X7368656C6C_0�ax_plus_by_plus_z_eq_t�X7065656B5F636F6465_2�X2464656275675F646973705F616E635F6C737431_1�X246765745F707265645F696E646963_3�Read_Token_From_Chars_2�SR_Update_Position_0�M_Randomize�Fct_Round�X675F6C696E6B_2�truth_x_neq_y�Rd_Chars�realloc@@GLIBC_2.0�Statistics_User_Time_2�X6465627567_0�Statistics_0�M_Get_Seed�X246765745F77726974655F6F7074696F6E7331_1�X24746F705F6C6576656C5F61626F7274_0�strcat@@GLIBC_2.0�Print_1�Get_Linedit_Prompt_1�permission_operation_close�Del_Mirror_From_Stream�__environ@@GLIBC_2.0�permission_operation_reposition�X73725F636C6F7365_1�Close_Output_Term_Stream_2�fd_variable_size�X675F696E636F_2�X636F70795F7465726D_2�Check_For_Un_Positive�truth_x_neq_c�Exit_With_Value�X24736F636B65745F6163636570742F345F2461757831_1�Rd_Boolean_Check�data_start�Fct_Fast_Mul�X73725F77726974655F6D657373616765_6�File_Prop_Type_2�Fct_Acos�X2466696E64616C6C_4�Stream_End_Of_Stream�Pl_Err_Representation�X7075745F62797465_1�X7072656469636174655F70726F7065727479_2�existence_procedure�Fct_Div�Fd_Min_2�Fct_Fast_Rem�Current_Atom_2�Power�Scan_Token�Delete_Stream�Put_Atom�X2473725F6F70656E2F335F2461757832_1�X6F70656E5F696E7075745F63686172735F73747265616D_2�Extend_Array�Vector_Add_Value�X7065726D75746174696F6E_2�max_x_a_eq_z�ax_eq_y�X66645F65786163746C79_3�Pl_Err_Resource�X736F727430_2�X403D3C_2�X66645F646F6D61696E_2�truth_x_neq_c_F�Peek_Byte_1�X726561645F7465726D5F66726F6D5F6368617273_3�X6162736F6C7574655F66696C655F6E616D65_2�Write_To_Chars_2�bind@@GLIBC_2.0�X736574617267_4�Format_2�X24246765745F77726974655F6F7074696F6E73322F315F2461757832_1�fd_element_var�X24666F726B5F70726F6C6F672F315F2461757831_1�Check_For_Un_In_Code�_fini�X24636865636B5F61746F6D5F6F725F61746F6D5F6C69737432_1�X2473686F775F6C65617368696E675F696E666F_0�lseek@@GLIBC_2.0�fcntl@@GLIBC_2.0�Put_Integer�X24636F6E73756C7432_1�memcpy@@GLIBC_2.0�Get_Byte_2�Unknown_Pred_Error�sqrt@@GLIBC_2.0�def_global_size�Stream_Get_Key�type_boolean�truth_x_plus_c_gte_y�x_or_y_eq_b�X73725F6572726F725F66726F6D5F657863657074696F6E_2�X24636865636B5F696E5F6368617261637465725F636F6465_1�permission_operation_create�X24746F705F6C6576656C32_0�Set_C_Bip_Name�X66696C655F70726F7065727479_2�X2473725F77726974655F6572726F722F325F2461757831_6�X2424657865635F71756572792F325F2461757831_3�X2473725F726561645F7465726D2F345F2461757831_3�Lookup_Oper_Any_Type�X7365746F66_3�ax_eq_y_F�X73725F6765745F696E636C7564655F6C697374_2�Blt_G_Test_Set_Bit�Fd_Element_Var_I_To_V�BC_Emulate_Pred�fclose@@GLIBC_2.1�Rd_Callable�X24747261696C5F68616E646C6572_1�Fd_Domain_Bool_1�X65786563_4�X247365745F77726974655F64656661756C7473_0�Blt_Term_Lt�M_Mktemp�X242477726974655F696E64696361746F722F305F2461757832_2�__ctype_toupper_loc@@GLIBC_2.3�Socket_Connect_4�LE_Printf�le_hook_displ_str�getsockname@@GLIBC_2.0�strrchr@@GLIBC_2.0�Unify_Nil�a_power_n_eq_y_F�X24706C5F6572725F74797065_2�X736565696E67_1�Delete_Str_Stream�X2473686F775F6C65617368696E675F696E666F32_1�Unify_Variable�Pred_Prop_Prolog_File_2�Rd_In_Byte_Check�X726561645F6E756D626572_1�Unify_Atom_Tagged�Create_Choice_Point4�X696E7465676572_1�ensure_reserved�X2473686F775F756E646566696E65645F616374696F6E_0�Current_Char_Conversion_Alt_0�__strdup@@GLIBC_2.0�Read_Number�x_eq_y�X675F746573745F7365745F626974_2�X675F646563_2�X24246765745F636C6F73655F6F7074696F6E73322F315F2461757831_1�Open_3�Stream_Set_Position_LC�Strdup_Check�rmdir@@GLIBC_2.0�Pred_Prop_Static_1�Temporary_File_3�X74656D706F726172795F66696C65_3�Stdio_Set_Buffering�Fd_Element_Var_I�X233D23_2�X6765745F636F6465_1�le_hook_kbd_is_not_empty�Mk_Codes�X6372656174655F70697065_2�type_integer�Current_Mirror_Alt_0�Stream_Line_Column_3�truth_x_eq_y_F�Read_Term_From_Chars_5�Check_For_Un_In_Char�Sys_Var_Put_2�Delete_Dynamic_Clause�domain_io_mode�closedir@@GLIBC_2.0�X6B6579736F7274_2�domain_close_option�X2463616C6C5F696E7465726E616C_2�Call_With_Args_7�gettimeofday@@GLIBC_2.0�X7365745F73656564_1�Make_Directory_1�Blt_Term_Eq�Fct_Exp�M_System_Time�Add_Stream_Mirror_2�X24706C5F6572725F6576616C756174696F6E_1�X726561645F6E756D626572_2�m_os_type�X736F636B65745F6C697374656E_2�X247573655F6361746368_0�Blt_G_Inco�X247379735F7661725F72657365745F626974_2�srand@@GLIBC_2.0�Display_1�Fd_Prolog_To_Array_Fdv�X247365745F64656275676765725F73747265616D73_2�Range_Mod_Range�LE_Emit_Beep�x_neq_y�Blt_G_Dec�X247379735F7661725F696E63_1�X246463675F7472616E735F626F6479_4�X2473686F775F756E646566696E65645F616374696F6E31_1�X7368656C6C_2�X247573655F6C697374_0�Stream_Gets_Prompt�X2473725F73696D706C5F6572726F72_5�opendir@@GLIBC_2.0�Rd_Callable_Check�X77726974655F7465726D5F746F5F636F646573_3�domain_stream_or_alias�X6F70656E5F696E7075745F61746F6D5F73747265616D_2�X235C5C5C5C2F_2�gethostname@@GLIBC_2.0�Get_Char_2�Hash_Find�Fd_Create_C_Frame�X24246261676F662F345F2461757832_2�open@@GLIBC_2.0�Mk_String�X24656E7669726F6E5F616C74_0�X736F636B65745F636F6E6E656374_4�Write_To_Atom_2�X242464656275675F706F72745F69676E6F72652F345F2461757831_3�X66645F6861735F766563746F72_1�X2463757272656E745F616C696173_2�type_in_byte�X73747265616D5F70726F7065727479_2�atom_top_level_input�X2473725F77726974655F6572726F722F345F2461757831_4�X246C656E677468_3�Un_In_Char�abs_x_minus_y_eq_z�x_eq_c�X246173736F635F736F636B65745F73747265616D73_3�vec_size�X7772697465715F746F5F636F646573_2�m_architecture�X72616E646F6D_1�X6E616D65_2�Stream_Prop_Reposition_2�LE_Compl_Del_Word�X24636865636B5F68656164_1�Rd_Proper_List_Check�Mk_Float�X24756E77696E64_1�X247365745F62696E645F7661726961626C65735F64656661756C7473_0�LE_Get_Key�X6F70_3�M_Spawn_Redirect�stm_stdin�gethostbyname@@GLIBC_2.0�atom_binary�sigemptyset@@GLIBC_2.0�atom_debugger_input�Fct_Asin�Un_Integer_Check�At_End_Of_Stream_1�Blt_G_Inc�Rd_String�LE_Open_Terminal�Nl_0�Stream_Prop_File_Name_2�X2463757272656E745F73747265616D5F616C74_0�X24636C61757365_3�X232F5C5C_2�X6E7468_3�X242464656275675F657865635F636D642F365F2461757831_1�X7365745F6C696E656469745F70726F6D7074_1�Switch_On_Integer�Fct_Float_Integ_Part�Fd_Assign_Value�X24706F72747261795F636C61757365_2�X242466645F6C6162656C696E672F325F2461757831_4�Full_Var_Div_Var�Stream_Printf�X24246765745F77726974655F6F7074696F6E73322F315F2461757836_1�byte_len�Hash_Table_Size�Current_Op_Alt_0�Blt_Non_Fd_Var�Copy_Term�getpwnam@@GLIBC_2.0�X2464656275675F69735F64656275675F707265646963617465_1�Stop_Prolog�X247573655F7372635F726472_0�X73725F6765745F6572726F725F636F756E74657273_3�X6E6C_0�exit@@GLIBC_2.0�Format_To_Codes_3�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757831_1�atom_top_level_output�X2463616C6C5F696E7465726E616C5F6F72_4�X24746F705F6C6576656C5F73746F70_0�Fct_Atan�Mk_Proper_List�Add_Alias_To_Stream�X242473725F74726561745F7465726D2F325F2461757831_2�X66645F73697A65_2�X24617070656E642F315F2461757831_2�Check_For_Un_Float�Get_Print_Stm_1�X73656E645F7369676E616C_2�X73725F6F70656E_3�X247365652F315F2461757831_2�calloc@@GLIBC_2.0�Read_Pl_State_File�X6973_2�X247573655F66645F76616C756573_0�X246D61785F6C69737431_3�Vector_Full�X2464656275675F706F72745F707265747479_2�atom_stream_position�X2463686F6963655F706F696E745F696E666F_4�Environ_Alt_0�Rd_Codes_Check�Father_Of_Aux_Name_3�Get_Key_No_Echo_1�ax_plus_y_eq_z_F�X6C696E655F706F736974696F6E_2�Un_String_Check�Full_Nth_Root�X65786563_5�Create_Allocate_Atom�X247573655F707265747479_0�X736F727430_1�Line_Count_2�Mk_Byte�X2464656275675F706F72745F69676E6F7265_4�X666C6F6174_1�X2464656275675F7377697463685F6F6E_1�Hash_First�Define_Vector_Size�Un_Chars�Atom_Concat_3�Range_To_String�sscanf@@GLIBC_2.0�X70726F6C6F675F66696C655F6E616D65_2�Get_Current_Bip�_edata�X3E_2�X246765745F636C6F73655F6F7074696F6E7331_1�X247363616E5F64796E5F6A756D705F616C74_0�atom_tbl�min_x_y_eq_z�__i686.get_pc_thunk.bx�_IO_putc@@GLIBC_2.0�Sub_Atom_Alt_0�Sqrt_Exact�X66645F6C6162656C696E67_2�Switch_On_Term�Sys_Var_Set_Bit_2�X736F636B65745F62696E64_2�fd_atmost�free@@GLIBC_2.0�Create_Atom�Read_2�Fd_Add_List_Dependency�_end�X2E_2�Get_Key_1�ioctl@@GLIBC_2.0�X2463757272656E745F7072656469636174655F62697073_1�X66696E645F6C696E656469745F636F6D706C6574696F6E_2�X675F72657365745F626974_2�Start_Prolog�X63616C6C5F776974685F61726773_4�Prime_Range�X756E6765745F63686172_2�X61626F6C697368_1�truth_x_lt_y�X73725F6765745F706F736974696F6E_3�Stream_Set_Position�Check_For_Un_String�X72616E646F6D697A65_0�X2465786563_5�X3C_2�min_x_a_eq_z�Un_Callable�X675F746573745F72657365745F626974_2�X2463757272656E745F61746F6D5F616C74_0�Blt_Non_Var�X24636865636B5F707265645F70726F70_1�getcwd@@GLIBC_2.0�X24726574726163745F6C6173745F666F756E64_0�X24246765745F77726974655F6F7074696F6E73322F315F2461757835_1�Copy_Clause_To_Heap�Fd_Atleast�Un_Proper_List_Check�X2424657870616E645F7465726D312F325F2461757831_2�Peek_Byte_2�Blt_Gte�Realloc_Check�isatty@@GLIBC_2.0�X24246765745F6F70656E5F73746D2F325F2461757831_2�stm_top_level_output�Un_Char�Range_Sub_Range�X77726974655F666F66_1�Create_Swt_Table�acos@@GLIBC_2.0�memset@@GLIBC_2.0�X726561645F696E7465676572_1�Un_Code�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757833_1�connect@@GLIBC_2.0�Rd_List�X233D3D3E_2�stdin@@GLIBC_2.0�X2463686F6963655F706F696E745F617267_3�X247573655F636F6E73745F696F_0�X2464656275675F636865636B5F626970_2�X66696C655F7065726D697373696F6E_2�X235C5C2F_2�Un_Proper_List�X736565_1�X666F726D6174_2�Create_Pred�X62696E645F7661726961626C6573_2�resource_print_object_not_linked�Unify_Void�Write_Term_1�X6C6F6164_1�X2466696E645F6C696E656469745F636F6D706C6574696F6E5F616C74_0�Call_With_Args_10�X72656164_1�X617267756D656E745F76616C7565_2�Detect_If_Aux_Name�X6C65617368_1�atom_true�X246E746832_4�existence_sr_descriptor�Most_Significant_Bit�Reset_Prolog_In_Signal�Create_Functor_Arity_Tagged�X246C61737431_3�Format_To_Chars_3�Full_Sqrt_Var�X617263686974656374757265_1�X247468726F775F696E7465726E616C_2�Globalize_If_In_Local�X66645F646F6D_2�X2463757272656E745F636861725F636F6E76657273696F6E5F616C74_0�Sys_Var_Read_2�Vector_Mul_Value�SR_Set_Error_Counters_3�Range_Next_After�X247365745F6F70656E5F64656661756C7473_0�Calloc_Check�Rd_Chars_Str_Check�Sub_Atom_5�truth_x_lte_c�X73725F77726974655F6572726F72_4�Fd_All_Different_1�X246C6F616431_1�X242464656275675F706F72745F69676E6F72652F345F2461757833_3�Syntax_Error�Blt_Atomic�X726561645F696E7465676572_2�M_Spawn�Fct_Fast_Abs�Statistics_Local_Stack_2�X246765745F686561645F616E645F626F6479_3�X2464656275675F63616C6C31_8�strncpy@@GLIBC_2.0�Range_Set_Value�X24636865636B5F6C697374_1�domain_character_code_list�Un_Number_Check�X2424636F6E73756C74322F315F2461757833_2�X247573655F6C655F696E74657266_0�Group_Solutions_Alt_0�Writeq_To_Codes_2�X24636174636831_4�Set_Last_Syntax_Error�X24657865635F636D6431_1�X24726561645F72657475726E_0�X636C6F73655F696E7075745F63686172735F73747265616D_1�Fct_Dec�x_plus_c_eq_y�Dcg_Trans_Body_4�Format_3�Blt_Compare�Fct_Sin�fopen@@GLIBC_2.1�dup@@GLIBC_2.0�Call_With_Args_2�type_fd_bool_evaluable�Fct_Inc�X3D_2�domain_os_path�permission_operation_input�Call_With_Args_8�Put_List�X67656E657269635F766172_1�X61746F6D5F636F646573_2�Mk_Compound�X2424657865635F636D645F6C696E655F676F616C2F315F2461757831_1�_setjmp@@GLIBC_2.0�X24666F725F616C74_0�Fct_Sub�truth_x_plus_c_neq_y�X675F696E63_3�X6765745F62797465_2�Put_Char_2�SR_Get_Include_Stream_List_2�Context_Error_1�Vector_Mod_Vector�X242473725F646972656374697665312F325F2461757833_2�X7368656C6C_1�X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757833_1�X2464656275675F646973705F68656C70_0�M_Shell�X646973706C61795F746F5F6368617273_2�le_hook_get_char0�Hash_Next�SR_Stop_Module_3�X7375626C697374_2�M_Sys_Err_String�tag_tbl�Check_For_Un_Integer�SR_Get_Module_3�Fd_Bool_Meta_3�X726561645F7465726D5F66726F6D5F636F646573_3�X24636865636B5F6C6973745F6F725F7061727469616C5F6C697374_1�X63616C6C5F776974685F61726773_3�Peek_Code_2�Rd_In_Code_Check�escape_char�Blt_G_Test_Reset_Bit�Un_Compound�Set_Debugger_Streams_2�_IO_stdin_used�X7365745F73747265616D5F706F736974696F6E_2�X726561645F746F6B656E5F66726F6D5F6368617273_2�X726561645F746F6B656E_2�Directory_Files_2�X2463616C6C5F7465726D5F657870616E73696F6E_2�Put_Code_2�Stdio_Desc_Of_Stream�char_type�X233D_2�X756E6C696E6B_1�Blt_Term_Gte�Fd_Tell_Range_Range�X247363616E5F64796E5F746573745F616C74_0�Blt_Term_Neq�X2464656275675F706F72745F70726F6D7074_6�X242472656D6F76655F756E64657273636F72655F766172732F325F2461757831_2�X247472795F706F7274726179_1�Unset_C_Bip_Name�X726561645F7465726D_3�Call_Prolog_Next_Sol�X247573655F636861725F696F_0�strtok@@GLIBC_2.0�X2473725F73746172745F6D6F64756C65_3�sys_var�kill@@GLIBC_2.0�X77726974655F63616E6F6E6963616C_1�X246765745F62696E645F7661726961626C65735F6F7074696F6E73_4�X2424726561645F71756572792F325F2461757831_1�permission_type_operator�Delete_Oper�truth_x_lte_y�Update_Choice_Point2�SR_Check_Descriptor_1�Blt_Fast_Gte�X2463617463685F615F7468726F77_5�X77616974_2�getc@@GLIBC_2.0�SR_Start_Module_3�domain_os_file_permission�le_hook_message_box�truth_x_plus_c_eq_y�parse_dico_var�token�X2463757272656E745F70726F6C6F675F666C61675F616C74_0�Un_Char_Check�Dcg_Trans_Rule_2�permission_operation_modify�X24737461746973746963732F325F2461757831_3�Check_For_Un_Byte�Blt_G_Inc_3�X756E6966795F776974685F6F63637572735F636865636B_2�Set_Bip_Name_2�X247365745F726561645F64656661756C7473_0�Add_Mirror_To_Stream�atom_end_of_file�x_power_a_eq_y_F�X63757272656E745F6F70_3�Set_Ctrl_C_Handler_0�Hash_Insert�stm_output�Blt_List�Flush_All_Streams�X7365656B_4�Find_Stream_From_PStm�parse_nb_var�X7072696E745F746F5F6368617273_2�domain_stream_seek_method�X726561645F66726F6D5F6368617273_2�Rd_Number�Full_Find_Expon�Float_To_String�atom_user_output�Rd_Integer�Load_Left_Right�X2464656275675F706F727431_6�sprintf@@GLIBC_2.0�X403E_2�Fd_Lte_2�x_lt_y�Untrail�Read_From_Chars_2�fwrite@@GLIBC_2.0�Scan_Dynamic_Pred_Alt_0�X6368617261637465725F636F756E74_2�X247573655F66645F7072696D65_0�Fd_Size_2�Unify_Atom�Fct_Fast_Sub�X77726974655F63616E6F6E6963616C5F746F5F6368617273_2�X246372656174655F636F6C756D6E_3�__data_start�Scan_Next_Number�Blt_Gt�Fd_Dom_2�realpath@@GLIBC_2.3�sin@@GLIBC_2.0�X617267756D656E745F6C697374_1�Read_Term_From_Atom_5�Fd_Domain_2�X706F7274726179_1�X2462696E645F7661726961626C6573_4�Fd_Prolog_To_Array_Any�X73725F6765745F73697A655F636F756E74657273_3�socket@@GLIBC_2.0�Current_Prolog_Flag_2�X24636865636B5F6F776E65725F66696C6573_3�Fd_Set_Vector_Max_1�Term_Ref_2�Not_Prime_Range�X617070656E64_3�X247365745F73747265616D5F656F665F616374696F6E2F325F2461757831_1�X646174655F74696D65_1�File_Prop_Size_2�Un_Byte�_IO_getc@@GLIBC_2.0�Vector_Inter�readdir@@GLIBC_2.0�X246765745F62696E645F7661726961626C65735F6F7074696F6E7332_1�Check_Valid_Mirror_1�X24636865636B5F6C6973745F617267_2�_Jv_RegisterClasses�__ctype_b_loc@@GLIBC_2.3�X2463616C6C5F66726F6D5F6465627567676572_2�Fct_Float�le_hook_erase�X247379735F7661725F6765745F626974_3�X736574617267_3�Unify_Structure�Find_Expon_Exact�X2462635F73746172745F656D6974_0�Pl_Err_Type�X7365656E_0�Socket_2�rand@@GLIBC_2.0�Fd_List_Int_To_Range�truth_x_eq_c�X6765745F62797465_1�Recover_Generator_1�X2473725F6F70656E5F6E65775F70726F6C6F675F66696C65_1�X73796E7461785F6572726F725F696E666F_4�Read_Token_From_Codes_2�evluation_underflow�x_plus_c_neq_y�full_ac�Hash_Free_Table�Fct_Neg�X235C5C3D3D3E_2�X247573655F61726974685F696E6C_0�Blt_Arg�Rd_Codes_Str_Check�X2464656275675F657865635F636D64_6�X636C6F7365_2�X242464656275675F63616C6C5F706F72742F355F2461757831_3�Writeq_To_Atom_2�Save_Call_Info_3�X636F6E73756C74_1�Rd_Char_Check�bsearch@@GLIBC_2.0�log@@GLIBC_2.0�fd_copy_variable�X2424746F705F6C6576656C322F305F2461757832_1�X7365745F70726F6C6F675F666C6167_2�X73797374656D_2�quot_rem_x_a_r_eq_z�X77616D5F6465627567_0�Real_Time_1�fd_unify_with_integer�X3D2E2E_2�X242464656275675F706F72745F69676E6F72652F345F2461757832_5�X242464656275675F77726974655F676F616C2F345F2461757831_2�Emit_Ctrl_C�X24696E69745F6465627567676572_0�X247365745F73747265616D5F656F665F616374696F6E2F325F2461757832_2�Call_With_Args_1�Fd_Prolog_To_Range�escape_symbol�Char_Conversion_2�tcgetattr@@GLIBC_2.0�LE_Put_Char�Un_Codes_Check�X2424636865636B5F696E5F6368617261637465725F636F64652F315F2461757831_1�read@@GLIBC_2.0�Print_To_Chars_2�representation_too_many_variables�Indomain_2�quot_rem_a_y_r_eq_z_F�X736F636B65745F616363657074_3�Blt_Lt�glob_dico_var�X247379735F7661725F7772697465_2�X24696E646F6D61696E5F6D696E5F616C74_0�Stop_Mark_1�Copy_Contiguous_Term�TP�X24657865635F7175657279_2�Current_Input_1�X2463617463685F696E7465726E616C_4�x_plus_c_gte_y�X675F646563_1�Get_Structure_Tagged�LE_Ins_Mode�Range_Reset_Value�pi_arity_word�Portray_Clause_2�X2463757272656E745F73747265616D_1�Io_Fileno_Of_Stream�X63616C6C5F776974685F61726773_7�X246765745F6F70656E5F6F7074696F6E73_1�X666F726D61745F746F5F6368617273_3�Create_Choice_Point2�Peek_Char_1�LE_Kbd_Is_Not_Empty�Get_Key_No_Echo_2�Sys_Var_Reset_Bit_2�Range_Test_Value�X64656C6574655F6469726563746F7279_1�X2466645F646F6D61696E_3�Socket_Listen_2�X247375626C69737431_3�X66696C655F657869737473_1�X2424746F705F6C6576656C322F305F2461757834_3�ax_plus_y_plus_z_eq_t_F�Get_Nil�x_or_y_eq_1�LE_Screen_Size�Pred_Prop_Built_In_1�Read_From_Atom_2�X73746174697374696373_2�X636C6F73655F6F75747075745F63686172735F73747265616D_2�Absolute_File_Name_2�type_number�Fd_Vector_Max_1�Sort_List_1�atom_void�__gmon_start__�strcpy@@GLIBC_2.0�Recover_After_Error�min_x_a_eq_z_F�X247573655F6F735F696E74657266_0�le_hook_displ�Unget_Byte_1�
  2171 61940:5�OA������abi-note.S�../sysdeps/i386/elf/start.S�init.c�initfini.c�/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crti.S�call_gmon_start�crtstuff.c�__CTOR_LIST__�__DTOR_LIST__�__JCR_LIST__�p.0�completed.1�__do_global_dtors_aux�frame_dummy�__CTOR_END__�__DTOR_END__�__FRAME_END__�__JCR_END__�__do_global_ctors_aux�/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crtn.S�obj_begin.c�fail�Lpred1_3�Lpred1_1�st�Lpred1_2�Lpred1_sub_0�Lpred1_14�Lpred1_sub_1�Lpred1_16�Lpred1_18�Lpred1_5�Lpred1_4�fn�ta�Lpred1_7�Lpred1_6�Lpred1_9�Lpred1_8�Lpred1_11�Lpred1_10�Lpred1_13�Lpred1_12�Lpred1_15�Lpred1_17�Lpred1_19�Lpred1_20�Lpred4_1�directive_1�directive_2�directive_3�directive_4�directive_5�directive_6�directive_7�directive_8�directive_9�directive_10�directive_11�directive_12�directive_13�directive_14�directive_15�directive_16�directive_17�directive_18�directive_19�directive_20�Object_Initializer�System_Directives�User_Directives�at�obj_chain_start�obj_chain_stop�Lpred3_1�Lpred10_1�Lpred12_1�Lpred13_1�Lpred14_1�Lpred15_1�Lpred16_1�Lpred17_1�Lpred18_1�Lpred18_2�Lpred19_1�Lpred20_2�Lpred20_1�Lpred20_4�Lpred20_3�Lpred20_6�Lpred20_5�Lpred20_7�Lpred21_1�Lpred22_1�Lpred24_1�Lpred25_1�Lpred27_2�Lpred27_3�Lpred27_1�Lpred27_sub_0�Lpred27_5�Lpred27_7�Lpred27_4�Lpred27_6�Lpred28_1�Lpred29_1�Lpred30_1�Lpred31_1�Lpred31_2�Lpred31_4�Lpred31_3�Lpred33_10�Lpred33_2�Lpred33_1�Lpred33_5�Lwork0�Lpred33_3�Lpred33_9�Lpred33_7�Lpred33_4�Lpred33_6�Lpred33_8�Lpred34_1�Lpred36_1�ensure_linked�Lpred10_2�Lpred10_4�Lpred10_3�Lpred10_6�Lpred10_5�Lpred10_7�Lpred12_13�Lpred12_3�Lpred12_2�Lpred12_5�Lpred12_4�Lpred12_7�Lpred12_6�Lpred12_9�Lpred12_8�Lpred12_11�Lpred12_10�Lpred12_12�Lpred12_14�Lpred13_2�Lpred13_4�Lpred13_3�Lpred18_4�Lpred18_3�Lpred18_6�Lpred18_5�Lpred18_8�Lpred18_7�Lpred18_10�Lpred18_9�Lpred18_11�Lpred21_2�Lpred23_1�Lpred26_1�Lpred29_2�Lpred29_4�Lpred29_3�Lpred32_1�Lpred35_1�Lpred36_8�Lpred36_2�Lpred36_3�Lpred36_5�Lpred36_7�Lpred36_4�Lpred36_6�Lpred36_9�Lpred37_1�Lpred37_2�Lpred37_3�Lpred38_1�Lpred39_1�Lpred39_2�Lpred40_1�Lpred41_23�Lpred41_3�Lpred41_1�Lpred41_2�Lpred41_5�Lpred41_4�Lpred41_7�Lpred41_6�Lpred41_9�Lpred41_8�Lpred41_11�Lpred41_10�Lpred41_13�Lpred41_12�Lpred41_15�Lpred41_14�Lpred41_17�Lpred41_16�Lpred41_19�Lpred41_18�Lpred41_21�Lpred41_20�Lpred41_22�Lpred42_1�Lpred42_2�Lpred42_4�Lpred42_3�Lpred43_1�Lpred43_2�Lpred44_1�Lpred46_1�Lpred47_1�Lpred50_1�Lpred51_1�Lpred52_4�Lpred52_1�Lpred52_3�Lpred52_2�Lpred52_sub_0�Lpred52_7�Lpred52_9�Lpred52_6�Lpred52_5�Lpred52_8�Lpred52_10�Lpred52_12�Lpred52_11�Lpred52_14�Lpred52_13�Lpred52_15�Lpred53_1�Lpred54_1�Lpred55_1�Lpred57_1�Lpred60_1�Lpred60_66�Lpred60_6�Lpred60_2�Lpred60_3�Lpred60_sub_0�Lpred60_11�Lpred60_13�Lpred60_4�Lpred60_sub_1�Lpred60_17�Lpred60_19�Lpred60_5�Lpred60_sub_2�Lpred60_21�Lpred60_23�Lpred60_8�Lpred60_7�Lpred60_10�Lpred60_9�Lpred60_12�Lpred60_14�Lpred60_16�Lpred60_15�Lpred60_18�Lpred60_20�Lpred60_22�Lpred60_24�Lpred60_26�Lpred60_25�Lpred60_28�Lpred60_27�Lpred60_30�Lpred60_29�Lpred60_32�Lpred60_31�Lpred60_34�Lpred60_33�Lpred60_36�Lpred60_35�Lpred60_38�Lpred60_37�Lpred60_40�Lpred60_39�Lpred60_42�Lpred60_41�Lpred60_44�Lpred60_43�Lpred60_46�Lpred60_45�Lpred60_48�Lpred60_47�Lpred60_50�Lpred60_49�Lpred60_52�Lpred60_51�Lpred60_54�Lpred60_53�Lpred60_56�Lpred60_55�Lpred60_58�Lpred60_57�Lpred60_60�Lpred60_59�Lpred60_62�Lpred60_61�Lpred60_64�Lpred60_63�Lpred60_65�Lpred61_1�Lpred62_1�Lpred63_1�Lpred64_1�Lpred65_1�Lpred66_1�Lpred67_2�Lpred67_1�Lpred67_4�Lpred67_3�Lpred67_6�Lpred67_5�Lpred67_7�Lpred69_1�Lpred70_2�Lpred70_1�Lpred70_4�Lpred70_3�Lpred70_6�Lpred70_5�Lpred70_8�Lpred70_7�Lpred70_10�Lpred70_9�Lpred70_12�Lpred70_11�Lpred70_13�Lpred72_1�Lpred72_2�Lpred72_4�Lpred72_3�Lpred74_1�Lpred74_2�Lpred74_4�Lpred74_3�Lpred75_1�Lpred76_1�Lpred76_2�Lpred76_8�Lpred76_4�Lpred76_3�Lpred76_6�Lpred76_5�Lpred76_7�Lpred76_9�Lpred77_1�Lpred78_1�Lpred81_1�Lpred11_1�Lpred14_2�Lpred14_4�Lpred14_3�Lpred15_11�Lpred15_3�Lpred15_2�Lpred15_5�Lpred15_4�Lpred15_7�Lpred15_6�Lpred15_9�Lpred15_8�Lpred15_10�Lpred16_2�Lpred16_4�Lpred16_3�Lpred16_5�Lpred17_2�Lpred17_4�Lpred17_3�Lpred17_6�Lpred17_5�Lpred17_8�Lpred17_7�Lpred17_10�Lpred17_9�Lpred17_11�Lpred18_12�Lpred18_14�Lpred18_13�Lpred18_16�Lpred18_15�Lpred18_17�Indomain_Min�Indomain_Max�Indomain_Middle�Indomain_Limits�Indomain_Random�Cmp_First_Fail�Cmp_Most_Constrained�Cmp_Smallest�Cmp_Largest�Cmp_Max_Regret�fd_domain_bloc_1�fd_domain_r_bloc_1�x_plus_c_eq_y_bloc_1�x_plus_c_eq_y_bloc_2�x_plus_c_eq_y_F_bloc_1�x_plus_c_eq_y_F_bloc_2�x_plus_c_neq_y_bloc_1�x_plus_c_neq_y_bloc_2�x_plus_c_lte_y_bloc_1�x_plus_c_lte_y_bloc_2�x_plus_c_gte_y_bloc_1�x_plus_c_gte_y_bloc_2�ax_eq_y_bloc_1�ax_eq_y_bloc_2�x_plus_y_eq_z_bloc_1�x_plus_y_eq_z_bloc_2�x_plus_y_eq_z_bloc_3�ax_plus_y_eq_z_bloc_1�ax_plus_y_eq_z_bloc_2�ax_plus_y_eq_z_bloc_3�ax_plus_by_eq_z_bloc_1�ax_plus_by_eq_z_bloc_2�ax_plus_by_eq_z_bloc_3�x_plus_y_plus_z_eq_t_bloc_1�x_plus_y_plus_z_eq_t_bloc_2�x_plus_y_plus_z_eq_t_bloc_3�x_plus_y_plus_z_eq_t_bloc_4�ax_plus_y_plus_z_eq_t_bloc_1�ax_plus_y_plus_z_eq_t_bloc_2�ax_plus_y_plus_z_eq_t_bloc_3�ax_plus_y_plus_z_eq_t_bloc_4�ax_plus_by_plus_z_eq_t_bloc_1�ax_plus_by_plus_z_eq_t_bloc_2�ax_plus_by_plus_z_eq_t_bloc_3�ax_plus_by_plus_z_eq_t_bloc_4�ax_eq_y_F_bloc_1�ax_eq_y_F_bloc_2�x_plus_y_eq_z_F_bloc_1�x_plus_y_eq_z_F_bloc_2�x_plus_y_eq_z_F_bloc_3�ax_plus_y_eq_z_F_bloc_1�ax_plus_y_eq_z_F_bloc_2�ax_plus_y_eq_z_F_bloc_3�ax_plus_by_eq_z_F_bloc_1�ax_plus_by_eq_z_F_bloc_2�ax_plus_by_eq_z_F_bloc_3�x_plus_y_plus_z_eq_t_F_bloc_1�x_plus_y_plus_z_eq_t_F_bloc_2�x_plus_y_plus_z_eq_t_F_bloc_3�x_plus_y_plus_z_eq_t_F_bloc_4�ax_plus_y_plus_z_eq_t_F_bloc_1�ax_plus_y_plus_z_eq_t_F_bloc_2�ax_plus_y_plus_z_eq_t_F_bloc_3�ax_plus_y_plus_z_eq_t_F_bloc_4�ax_plus_by_plus_z_eq_t_F_bloc_1�ax_plus_by_plus_z_eq_t_F_bloc_2�ax_plus_by_plus_z_eq_t_F_bloc_3�ax_plus_by_plus_z_eq_t_F_bloc_4�a_power_n_eq_y_bloc_1�a_power_n_eq_y_bloc_2�x_power_a_eq_y_bloc_1�x_power_a_eq_y_bloc_2�xy_eq_z_bloc_1�xy_eq_z_bloc_2�xy_eq_z_bloc_3�a_power_n_eq_y_F_bloc_1�a_power_n_eq_y_F_bloc_2�x_power_a_eq_y_F_bloc_1�x_power_a_eq_y_F_bloc_2�xy_eq_z_F_bloc_1�xy_eq_z_F_switch_1_inst�min_x_y_eq_z_bloc_1�min_x_y_eq_z_bloc_2�min_x_y_eq_z_bloc_3�min_x_y_eq_z_bloc_4�min_x_y_eq_z_bloc_5�min_x_y_eq_z_switch_1_inst�min_x_a_eq_z_bloc_1�min_x_a_eq_z_bloc_2�min_x_a_eq_z_bloc_3�min_x_a_eq_z_bloc_4�min_x_a_eq_z_switch_1�min_x_a_eq_z_case_group_1�min_x_y_eq_z_F_bloc_1�min_x_y_eq_z_F_bloc_2�min_x_y_eq_z_F_bloc_3�min_x_y_eq_z_F_bloc_4�min_x_y_eq_z_F_bloc_5�min_x_y_eq_z_F_switch_1_inst�min_x_a_eq_z_F_bloc_1�min_x_a_eq_z_F_bloc_2�min_x_a_eq_z_F_bloc_3�min_x_a_eq_z_F_bloc_4�min_x_a_eq_z_F_switch_1�min_x_a_eq_z_F_case_group_1�max_x_y_eq_z_bloc_1�max_x_y_eq_z_bloc_2�max_x_y_eq_z_bloc_3�max_x_y_eq_z_bloc_4�max_x_y_eq_z_bloc_5�max_x_y_eq_z_switch_1_inst�max_x_a_eq_z_bloc_1�max_x_a_eq_z_bloc_2�max_x_a_eq_z_bloc_3�max_x_a_eq_z_bloc_4�max_x_a_eq_z_switch_1�max_x_a_eq_z_case_group_1�max_x_y_eq_z_F_bloc_1�max_x_y_eq_z_F_bloc_2�max_x_y_eq_z_F_bloc_3�max_x_y_eq_z_F_bloc_4�max_x_y_eq_z_F_bloc_5�max_x_y_eq_z_F_switch_1_inst�max_x_a_eq_z_F_bloc_1�max_x_a_eq_z_F_bloc_2�max_x_a_eq_z_F_bloc_3�max_x_a_eq_z_F_bloc_4�max_x_a_eq_z_F_switch_1�max_x_a_eq_z_F_case_group_1�abs_x_minus_y_eq_z_bloc_1�abs_x_minus_y_eq_z_bloc_2�abs_x_minus_y_eq_z_bloc_3�abs_x_minus_y_eq_z_switch_1_inst�abs_x_minus_a_eq_z_bloc_1�abs_x_minus_a_eq_z_bloc_2�abs_x_minus_a_eq_z_switch_1�abs_x_minus_a_eq_z_case_group_2�abs_x_minus_a_eq_z_case_group_1�abs_x_minus_y_eq_z_F_bloc_1�abs_x_minus_y_eq_z_F_bloc_2�abs_x_minus_y_eq_z_F_bloc_3�abs_x_minus_y_eq_z_F_switch_1_inst�abs_x_minus_a_eq_z_F_bloc_1�abs_x_minus_a_eq_z_F_bloc_2�abs_x_minus_a_eq_z_F_switch_1�abs_x_minus_a_eq_z_F_case_group_2�abs_x_minus_a_eq_z_F_case_group_1�quot_rem_x_y_r_eq_z_bloc_1�quot_rem_x_y_r_eq_z_bloc_2�quot_rem_x_y_r_eq_z_bloc_3�quot_rem_x_y_r_eq_z_bloc_4�quot_rem_x_y_r_eq_z_bloc_5�quot_rem_x_y_r_eq_z_bloc_6�quot_rem_x_y_r_eq_z_bloc_7�quot_rem_x_y_r_eq_z_switch_1�quot_rem_x_y_r_eq_z_bloc_8_inst�quot_rem_a_y_r_eq_z_bloc_1�quot_rem_a_y_r_eq_z_bloc_2�quot_rem_a_y_r_eq_z_bloc_3�quot_rem_a_y_r_eq_z_bloc_4�quot_rem_a_y_r_eq_z_bloc_5�quot_rem_a_y_r_eq_z_switch_1�quot_rem_a_y_r_eq_z_bloc_6_inst�quot_rem_x_a_r_eq_z_bloc_1�quot_rem_x_a_r_eq_z_bloc_2�quot_rem_x_a_r_eq_z_bloc_3�quot_rem_x_a_r_eq_z_bloc_4�quot_rem_x_a_r_eq_z_bloc_5�quot_rem_x_y_r_eq_z_F_bloc_1�quot_rem_x_y_r_eq_z_F_bloc_2�quot_rem_x_y_r_eq_z_F_bloc_3�quot_rem_x_y_r_eq_z_F_bloc_4�quot_rem_x_y_r_eq_z_F_bloc_5�quot_rem_x_y_r_eq_z_F_bloc_6�quot_rem_x_y_r_eq_z_F_bloc_7�quot_rem_x_y_r_eq_z_F_switch_1�quot_rem_x_y_r_eq_z_F_bloc_8_inst�quot_rem_a_y_r_eq_z_F_bloc_1�quot_rem_a_y_r_eq_z_F_bloc_2�quot_rem_a_y_r_eq_z_F_bloc_3�quot_rem_a_y_r_eq_z_F_bloc_4�quot_rem_a_y_r_eq_z_F_bloc_5�quot_rem_a_y_r_eq_z_F_switch_1�quot_rem_a_y_r_eq_z_F_bloc_6_inst�quot_rem_x_a_r_eq_z_F_bloc_1�quot_rem_x_a_r_eq_z_F_bloc_2�quot_rem_x_a_r_eq_z_F_bloc_3�quot_rem_x_a_r_eq_z_F_bloc_4�quot_rem_x_a_r_eq_z_F_bloc_5�x_eq_y_bloc_1�x_eq_y_bloc_2�x_eq_y_F_bloc_1�x_eq_y_F_bloc_2�x_neq_y_bloc_1_inst�x_neq_y_bloc_2_inst�x_lt_y_bloc_1�x_lt_y_bloc_2�x_lte_c_bloc_1�x_lte_y_bloc_1�x_lte_y_bloc_2�x_gte_c_bloc_1�zero_power_n_eq_y_bloc_1�zero_power_n_eq_y_bloc_2�x2_eq_y_bloc_1�x2_eq_y_bloc_2�x2_eq_y_F_bloc_1�x2_eq_y_F_bloc_2�x_neq_y_bloc_1�x_neq_y_bloc_2�xy_eq_z_F_switch_1�min_x_y_eq_z_switch_1�min_x_y_eq_z_case_group_2�min_x_y_eq_z_case_group_1�min_x_a_eq_z_bloc_5�min_x_a_eq_z_bloc_6�min_x_y_eq_z_F_switch_1�min_x_a_eq_z_F_bloc_5�min_x_a_eq_z_F_bloc_6�max_x_y_eq_z_switch_1�max_x_y_eq_z_case_group_2�max_x_y_eq_z_case_group_1�max_x_a_eq_z_bloc_5�max_x_a_eq_z_bloc_6�max_x_y_eq_z_F_switch_1�max_x_a_eq_z_F_bloc_5�max_x_a_eq_z_F_bloc_6�abs_x_minus_y_eq_z_switch_1�abs_x_minus_y_eq_z_case_group_2�abs_x_minus_y_eq_z_case_group_1�abs_x_minus_a_eq_z_bloc_3�abs_x_minus_a_eq_z_bloc_4�abs_x_minus_a_eq_z_bloc_5�abs_x_minus_a_eq_z_bloc_6�abs_x_minus_y_eq_z_F_switch_1�abs_x_minus_y_eq_z_F_case_group_2�abs_x_minus_y_eq_z_F_case_group_1�abs_x_minus_a_eq_z_F_bloc_3�abs_x_minus_a_eq_z_F_bloc_4�abs_x_minus_a_eq_z_F_bloc_5�abs_x_minus_a_eq_z_F_bloc_6�quot_rem_x_y_r_eq_z_bloc_8�quot_rem_a_y_r_eq_z_bloc_6�quot_rem_x_y_r_eq_z_F_bloc_8�quot_rem_a_y_r_eq_z_F_bloc_6�xy_eq_z_F_case_group_1�xy_eq_z_F_bloc_5�xy_eq_z_F_bloc_6�min_x_y_eq_z_bloc_6�min_x_y_eq_z_bloc_7�min_x_y_eq_z_bloc_8�min_x_y_eq_z_bloc_9�min_x_y_eq_z_F_case_group_1�min_x_y_eq_z_F_case_group_2�max_x_y_eq_z_bloc_6�max_x_y_eq_z_bloc_7�max_x_y_eq_z_bloc_8�max_x_y_eq_z_bloc_9�max_x_y_eq_z_F_case_group_1�max_x_y_eq_z_F_case_group_2�abs_x_minus_y_eq_z_bloc_4�abs_x_minus_y_eq_z_bloc_5�abs_x_minus_y_eq_z_bloc_6�abs_x_minus_y_eq_z_bloc_7�abs_x_minus_y_eq_z_bloc_8�abs_x_minus_y_eq_z_bloc_9�abs_x_minus_y_eq_z_F_bloc_4�abs_x_minus_y_eq_z_F_bloc_5�abs_x_minus_y_eq_z_F_bloc_6�abs_x_minus_y_eq_z_F_bloc_7�abs_x_minus_y_eq_z_F_bloc_8�abs_x_minus_y_eq_z_F_bloc_9�xy_eq_z_F_bloc_2�xy_eq_z_F_bloc_3�xy_eq_z_F_bloc_4�min_x_y_eq_z_F_bloc_6�min_x_y_eq_z_F_bloc_7�min_x_y_eq_z_F_bloc_8�min_x_y_eq_z_F_bloc_9�max_x_y_eq_z_F_bloc_6�max_x_y_eq_z_F_bloc_7�max_x_y_eq_z_F_bloc_8�max_x_y_eq_z_F_bloc_9�Fd_Bool_Initializer�bool_tbl�bool_xor�Set_Not�func_tbl�Set_Equiv�Set_Nequiv�Set_Imply�Set_Nimply�Set_And�Set_Nand�Set_Or�Set_Nor�Set_Eq�Set_Neq�Set_Lt�Set_Lte�Set_Zero�Set_One�stack�sp�vars_tbl�vars_sp�Simplify�Load_Bool_Into_Word�Add_Fd_Variables�Set_Var�x_equiv_y_eq_b_bloc_1�x_equiv_y_eq_b_bloc_2�x_equiv_y_eq_b_bloc_3�x_nequiv_y_eq_b_bloc_1�x_nequiv_y_eq_b_bloc_2�x_nequiv_y_eq_b_bloc_3�x_imply_y_eq_b_bloc_1�x_imply_y_eq_b_bloc_2�x_imply_y_eq_b_bloc_3�x_nimply_y_eq_b_bloc_1�x_nimply_y_eq_b_bloc_2�x_nimply_y_eq_b_bloc_3�x_and_y_eq_b_bloc_1�x_and_y_eq_b_bloc_2�x_and_y_eq_b_bloc_3�x_nand_y_eq_b_bloc_1�x_nand_y_eq_b_bloc_2�x_nand_y_eq_b_bloc_3�x_or_y_eq_b_bloc_1�x_or_y_eq_b_bloc_2�x_or_y_eq_b_bloc_3�x_nor_y_eq_b_bloc_1�x_nor_y_eq_b_bloc_2�x_nor_y_eq_b_bloc_3�truth_x_eq_c_switch_1_inst�truth_x_eq_y_switch_1_inst�truth_x_plus_c_eq_y_switch_1_inst�truth_x_eq_c_F_switch_1_inst�truth_x_eq_y_F_switch_1_inst�truth_x_plus_c_eq_y_F_switch_1_inst�truth_x_neq_c_switch_1_inst�truth_x_neq_y_switch_1_inst�truth_x_plus_c_neq_y_switch_1_inst�truth_x_neq_c_F_switch_1_inst�truth_x_neq_y_F_switch_1_inst�truth_x_plus_c_neq_y_F_switch_1_inst�truth_x_lt_y_switch_1_inst�truth_x_lte_c_switch_1_inst�truth_x_lte_y_switch_1_inst�truth_x_plus_c_lte_y_switch_1_inst�truth_x_gte_c_switch_1_inst�truth_x_plus_c_gte_y_switch_1_inst�not_x_eq_b_bloc_1_inst�not_x_eq_b_bloc_2_inst�x_imply_y_eq_1_bloc_1�x_imply_y_eq_1_bloc_2�x_and_y_eq_0_bloc_1�x_and_y_eq_0_bloc_2�x_or_y_eq_1_bloc_1�x_or_y_eq_1_bloc_2�not_x_eq_b_bloc_1�not_x_eq_b_bloc_2�truth_x_eq_c_switch_1�truth_x_eq_y_switch_1�truth_x_plus_c_eq_y_switch_1�truth_x_eq_c_F_switch_1�truth_x_eq_y_F_switch_1�truth_x_plus_c_eq_y_F_switch_1�truth_x_neq_c_switch_1�truth_x_neq_y_switch_1�truth_x_plus_c_neq_y_switch_1�truth_x_neq_c_F_switch_1�truth_x_neq_y_F_switch_1�truth_x_plus_c_neq_y_F_switch_1�truth_x_lt_y_switch_1�truth_x_lte_c_switch_1�truth_x_lte_y_switch_1�truth_x_plus_c_lte_y_switch_1�truth_x_gte_c_switch_1�truth_x_plus_c_gte_y_switch_1�truth_x_eq_c_bloc_3�truth_x_eq_c_bloc_4�truth_x_eq_c_bloc_2�truth_x_eq_c_bloc_1�truth_x_eq_y_bloc_5�truth_x_eq_y_bloc_6�truth_x_eq_y_case_group_2�truth_x_eq_y_case_group_1�truth_x_plus_c_eq_y_bloc_5�truth_x_plus_c_eq_y_bloc_6�truth_x_plus_c_eq_y_case_group_2�truth_x_plus_c_eq_y_case_group_1�truth_x_eq_c_F_bloc_4�truth_x_eq_c_F_bloc_3�truth_x_eq_c_F_bloc_2�truth_x_eq_c_F_bloc_1�truth_x_eq_y_F_bloc_6�truth_x_eq_y_F_bloc_5�truth_x_eq_y_F_case_group_2�truth_x_eq_y_F_case_group_1�truth_x_plus_c_eq_y_F_bloc_6�truth_x_plus_c_eq_y_F_bloc_5�truth_x_plus_c_eq_y_F_case_group_2�truth_x_plus_c_eq_y_F_case_group_1�truth_x_neq_c_bloc_4�truth_x_neq_c_bloc_3�truth_x_neq_c_bloc_2�truth_x_neq_c_bloc_1�truth_x_neq_y_bloc_6�truth_x_neq_y_bloc_5�truth_x_neq_y_case_group_2�truth_x_neq_y_case_group_1�truth_x_plus_c_neq_y_bloc_6�truth_x_plus_c_neq_y_bloc_5�truth_x_plus_c_neq_y_case_group_2�truth_x_plus_c_neq_y_case_group_1�truth_x_neq_c_F_bloc_4�truth_x_neq_c_F_bloc_3�truth_x_neq_c_F_bloc_2�truth_x_neq_c_F_bloc_1�truth_x_neq_y_F_bloc_6�truth_x_neq_y_F_bloc_5�truth_x_neq_y_F_case_group_2�truth_x_neq_y_F_case_group_1�truth_x_plus_c_neq_y_F_bloc_6�truth_x_plus_c_neq_y_F_bloc_5�truth_x_plus_c_neq_y_F_case_group_2�truth_x_plus_c_neq_y_F_case_group_1�truth_x_lt_y_bloc_6�truth_x_lt_y_bloc_5�truth_x_lt_y_case_group_2�truth_x_lt_y_case_group_1�truth_x_lte_c_bloc_4�truth_x_lte_c_bloc_3�truth_x_lte_c_bloc_2�truth_x_lte_c_bloc_1�truth_x_lte_y_bloc_6�truth_x_lte_y_bloc_5�truth_x_lte_y_case_group_2�truth_x_lte_y_case_group_1�truth_x_plus_c_lte_y_bloc_6�truth_x_plus_c_lte_y_bloc_5�truth_x_plus_c_lte_y_case_group_2�truth_x_plus_c_lte_y_case_group_1�truth_x_gte_c_bloc_4�truth_x_gte_c_bloc_3�truth_x_gte_c_bloc_2�truth_x_gte_c_bloc_1�truth_x_plus_c_gte_y_bloc_6�truth_x_plus_c_gte_y_bloc_5�truth_x_plus_c_gte_y_case_group_2�truth_x_plus_c_gte_y_case_group_1�truth_x_eq_y_bloc_1_inst�truth_x_eq_y_bloc_2_inst�truth_x_eq_y_bloc_3�truth_x_eq_y_bloc_4�truth_x_plus_c_eq_y_bloc_1_inst�truth_x_plus_c_eq_y_bloc_2_inst�truth_x_plus_c_eq_y_bloc_3�truth_x_plus_c_eq_y_bloc_4�truth_x_eq_y_F_bloc_1_inst�truth_x_eq_y_F_bloc_2_inst�truth_x_eq_y_F_bloc_3�truth_x_eq_y_F_bloc_4�truth_x_plus_c_eq_y_F_bloc_1_inst�truth_x_plus_c_eq_y_F_bloc_2_inst�truth_x_plus_c_eq_y_F_bloc_3�truth_x_plus_c_eq_y_F_bloc_4�truth_x_neq_y_bloc_1�truth_x_neq_y_bloc_2�truth_x_neq_y_bloc_3_inst�truth_x_neq_y_bloc_4_inst�truth_x_plus_c_neq_y_bloc_1�truth_x_plus_c_neq_y_bloc_2�truth_x_plus_c_neq_y_bloc_3_inst�truth_x_plus_c_neq_y_bloc_4_inst�truth_x_neq_y_F_bloc_1�truth_x_neq_y_F_bloc_2�truth_x_neq_y_F_bloc_3_inst�truth_x_neq_y_F_bloc_4_inst�truth_x_plus_c_neq_y_F_bloc_1�truth_x_plus_c_neq_y_F_bloc_2�truth_x_plus_c_neq_y_F_bloc_3_inst�truth_x_plus_c_neq_y_F_bloc_4_inst�truth_x_lt_y_bloc_1�truth_x_lt_y_bloc_2�truth_x_lt_y_bloc_3�truth_x_lt_y_bloc_4�truth_x_lte_y_bloc_1�truth_x_lte_y_bloc_2�truth_x_lte_y_bloc_3�truth_x_lte_y_bloc_4�truth_x_plus_c_lte_y_bloc_1�truth_x_plus_c_lte_y_bloc_2�truth_x_plus_c_lte_y_bloc_3�truth_x_plus_c_lte_y_bloc_4�truth_x_plus_c_gte_y_bloc_1�truth_x_plus_c_gte_y_bloc_2�truth_x_plus_c_gte_y_bloc_3�truth_x_plus_c_gte_y_bloc_4�truth_x_eq_y_bloc_1�truth_x_eq_y_bloc_2�truth_x_plus_c_eq_y_bloc_1�truth_x_plus_c_eq_y_bloc_2�truth_x_eq_y_F_bloc_1�truth_x_eq_y_F_bloc_2�truth_x_plus_c_eq_y_F_bloc_1�truth_x_plus_c_eq_y_F_bloc_2�truth_x_neq_y_bloc_3�truth_x_neq_y_bloc_4�truth_x_plus_c_neq_y_bloc_3�truth_x_plus_c_neq_y_bloc_4�truth_x_neq_y_F_bloc_3�truth_x_neq_y_F_bloc_4�truth_x_plus_c_neq_y_F_bloc_3�truth_x_plus_c_neq_y_F_bloc_4�prime_x_bloc_1�not_prime_x_bloc_1�Lpred11_2�Lpred11_4�Lpred11_3�Fd_All_Different_Rec�fd_element_bloc_1�fd_element_bloc_2�fd_element_bloc_3�fd_element_var_bloc_1�fd_element_var_bloc_2�fd_element_var_bloc_3�fd_element_var_bloc_4�fd_atmost_bloc_1_inst�fd_atleast_bloc_1_inst�fd_exactly_bloc_1_inst�fd_atmost_bloc_1�fd_atleast_bloc_1�fd_exactly_bloc_1�Lpred5_1�Math_Supp_Initializer�delay_cstr_stack�delay_sp�Load_Delay_Cstr_Part�Normalize�arith_tbl�sort�Load_Term_Into_Word�Load_Poly�Load_Poly_Rec�Load_Left_Right_Rec�Compar_Monom�txp.0�Find_Expon_General�prime_vec_size�Compute_Prime_Range�prime_range�not_prime_range�always_date�never_date�All_Propagations�dummy_fd_var�buff.0�nb_bits_in_byte.1�unify_x_y_bloc_1�unify_x_y_bloc_2�Error_Supp_Initializer�last_err_file�c_bip_func_str�c_bip_arity�cur_bip_func�cur_bip_arity�last_err_col�last_err_line�last_err_msg�Init_Stream_Supp�static_str_stream_rd�static_str_stream_wr�tty_ptr�stream_1�atom_constant_term_stream�word_current_input_stream�word_current_output_stream�TTY_Getc�TTY_Clearerr�Find_Free_Stream�tty_linedit_depth.0�tty_buff�tty_first_buff�Str_Stream_Getc�Str_Stream_Putc�h.1�Lpred2_1�Lpred3_9�Lpred3_3�Lpred3_2�Lpred3_5�Lpred3_4�Lpred3_7�Lpred3_6�Lpred3_8�Lpred5_2�Lpred6_1�Lpred7_1�Lpred8_1�Lpred8_6�Lpred8_2�Lpred8_3�Lpred8_5�Lpred8_4�Lpred9_1�Lpred9_2�Lpred7_2�Clause_Alt�last_clause�Retract_Alt�Lpred9_4�Lpred9_3�Lpred10_13�Lpred10_9�Lpred10_8�Lpred10_11�Lpred10_10�Lpred10_12�Lpred11_5�Lpred15_19�Lpred15_13�Lpred15_12�Lpred15_15�Lpred15_14�Lpred15_17�Lpred15_16�Lpred15_18�Lpred19_2�Lpred19_4�Lpred19_3�Lpred19_5�Lpred21_4�Lpred21_3�Lpred21_5�Lpred4_2�Lpred4_4�Lpred4_3�Oper_Initializer�atom_specif_tbl�Detect_Oper_Specif�Lpred10_24�Lpred10_14�Lpred10_16�Lpred10_15�Lpred10_18�Lpred10_17�Lpred10_20�Lpred10_19�Lpred10_22�Lpred10_21�Lpred10_23�Lpred11_7�Lpred11_6�Lpred11_9�Lpred11_8�Lpred11_11�Lpred11_10�Lpred11_13�Lpred11_12�Lpred11_15�Lpred11_14�Lpred11_17�Lpred11_16�Lpred11_19�Lpred11_18�Lpred11_21�Lpred11_20�Lpred11_22�Lpred23_18�Lpred23_4�Lpred23_2�Lpred23_3�Lpred23_6�Lpred23_5�Lpred23_8�Lpred23_7�Lpred23_10�Lpred23_9�Lpred23_12�Lpred23_11�Lpred23_14�Lpred23_13�Lpred23_16�Lpred23_15�Lpred23_17�Lpred24_3�Lpred24_2�Lpred24_5�Lpred24_4�Lpred24_7�Lpred24_6�Lpred24_9�Lpred24_8�Lpred24_11�Lpred24_10�Lpred24_13�Lpred24_12�Lpred24_15�Lpred24_14�Lpred24_16�Create_Malloc_Atom�Compute_Next_BLA�String_To_Number�Lpred13_21�Lpred13_5�Lpred13_7�Lpred13_6�Lpred13_9�Lpred13_8�Lpred13_11�Lpred13_10�Lpred13_13�Lpred13_12�Lpred13_15�Lpred13_14�Lpred13_17�Lpred13_16�Lpred13_19�Lpred13_18�Lpred13_20�Call_With_Args�Flag_Initializer�atom_flag_tbl�atom_down�atom_toward_zero�atom_on�atom_off�atom_error�atom_warning�atom_fail�atom_chars�atom_codes�atom_atom�atom_chars_no_escape�atom_codes_no_escape�atom_atom_no_escape�atom_prolog�Unif_Flag�cv.0�Arith_Initializer�Load_Math_Expression�fix_bug.0�G_Var_Initializer�G_Assign_Array�G_Alloc_Array�G_Assign_Element�G_Free_Element�G_Copy_Element�Get_Target_From_Selector�Get_Target_From_Gvar�Get_Int_From_Word�Get_Term_Addr_From_Target�Get_Int_Addr_From_Gvar�g_target�atom_g_array�G_Trail_For_Backtrack�G_Untrail�G_Read_Element�atom_g_array_auto�atom_g_array_extend�g_var_tbl�All_Solut_Initializer�dummy�sol�Existential_Variables�exist_2�Bound_Var�key_var_ptr�Handle_Key_Variables�save_key_var_ptr�next_key_var_ptr�Link_Key_Var�Group�bound_var_ptr�Free_Var�new_gen_word�free_var_base�Sort_Initializer�Merge_Sort�Keysort_Cmp�minus_2�Lpred2_2�Lpred2_4�Lpred2_3�Lpred7_4�Lpred7_3�Lpred9_sub_0�Lpred9_5�Lpred9_7�Lpred9_6�Lpred15_sub_0�Lpred23_sub_0�Lpred25_2�Lpred25_3�Lpred25_sub_0�Lpred25_5�Lpred25_7�Lpred25_4�Lpred25_6�Lpred5_21�Lpred5_3�Lpred5_5�Lpred5_4�Lpred5_7�Lpred5_6�Lpred5_9�Lpred5_8�Lpred5_11�Lpred5_10�Lpred5_13�Lpred5_12�Lpred5_15�Lpred5_14�Lpred5_17�Lpred5_16�Lpred5_19�Lpred5_18�Lpred5_20�Lpred6_3�Lpred6_2�Lpred6_5�Lpred6_4�Lpred6_7�Lpred6_6�Lpred6_9�Lpred6_8�Lpred6_11�Lpred6_10�Lpred6_13�Lpred6_12�Lpred6_15�Lpred6_14�Lpred6_16�last_user_time�last_system_time�last_cpu_time�last_real_time�n.0�Stack_Size�Lpred21_6�Lpred21_7�Lpred22_2�Lpred22_4�Lpred22_3�Lpred22_6�Lpred22_5�Lpred22_7�Lpred26_2�Lpred26_4�Lpred26_3�Lpred32_2�Lpred38_2�Lpred38_4�Lpred38_3�Lpred38_5�Lpred44_2�Lpred44_4�Lpred44_3�Lpred44_6�Lpred44_5�Lpred44_7�Lpred45_1�Lpred53_28�Lpred53_4�Lpred53_2�Lpred53_3�Lpred53_6�Lpred53_5�Lpred53_8�Lpred53_7�Lpred53_10�Lpred53_9�Lpred53_12�Lpred53_11�Lpred53_14�Lpred53_13�Lpred53_16�Lpred53_15�Lpred53_18�Lpred53_17�Lpred53_20�Lpred53_19�Lpred53_22�Lpred53_21�Lpred53_24�Lpred53_23�Lpred53_26�Lpred53_25�Lpred53_27�Lpred54_3�Lpred54_2�Lpred54_5�Lpred54_4�Lpred54_7�Lpred54_6�Lpred54_9�Lpred54_8�Lpred54_11�Lpred54_10�Lpred54_13�Lpred54_12�Lpred54_15�Lpred54_14�Lpred54_17�Lpred54_16�Lpred54_19�Lpred54_18�Lpred54_21�Lpred54_20�Lpred54_23�Lpred54_22�Lpred54_25�Lpred54_24�Lpred54_26�Lpred58_1�Lpred2_11�Lpred2_sub_0�Lpred2_8�Lpred2_5�Lpred2_7�Lpred2_6�Lpred2_9�Lpred2_10�Lpred2_12�Format�Arg_Atom�Arg_Integer�Arg_Float�Read_Arg�Lpred14_6�Lpred14_5�Lpred14_8�Lpred14_7�Lpred14_10�Lpred14_9�Lpred14_12�Lpred14_11�Lpred14_14�Lpred14_13�Lpred14_16�Lpred14_15�Lpred14_17�Os_Interf_Initializer�atom_dt�atom_read�atom_write�atom_execute�atom_search�atom_regular�atom_directory�atom_fifo�atom_socket�atom_character_device�atom_block_device�atom_unknown�tsig�nb_sig�Get_Path_Name�Flag_Of_Permission�Date_Time_To_Prolog�atom_host_name.0�Select_Init_Set�Select_Init_Ready_List�Expand_Initializer�dcg_2�top�opt_term_unif�Dcg_Head�Dcg_Body�atom_clause�Dcg_Body_On_Stack�Dcg_Term_List_On_Stack�Dcg_Compound2�atom_phrase�atom_if�Lpred30_2�Lpred30_4�Lpred30_3�Pretty_Initializer�Check_Structure�prec.0�Show_Body�Start_Line�equal_2�atom_dollar_varname�nb_to_try�Collect_Excluded_Rec�Var_Name_To_Var_Number�Exclude_A_Var_Number�Bind_Variable�dollar_var_1�dollar_varname_1�Portray_Clause�Collect_Singleton�singl_var_ptr�nb_singl_var�atom_dcg�atom_dollar_var�Ctrl_C_Manager�Debug_Initializer�envir_name�choice_name�trail_tag_name�pstm_i�pstm_o�dbg_jumper�Debugger_Signal_Handler�Scan_Command�Find_Function�nb_read_arg�read_arg�cmd.0�Write_Data_Modify�Where�What�Dereference�Environment�Backtrack�Help�Read_Bank_Adr�reg_copy�Print_Bank_Name_Offset�Print_Wam_Word�Modify_Wam_Word�Read_An_Integer�Detect_Stack�Detect_Pred_From_Code�My_System_Directives�Lpred8_14�Lpred8_8�Lpred8_7�Lpred8_10�Lpred8_9�Lpred8_12�Lpred8_11�Lpred8_13�Lpred28_2�Lpred28_4�Lpred28_3�Lpred28_6�Lpred28_5�Lpred28_8�Lpred28_7�Lpred28_10�Lpred28_9�Lpred28_12�Lpred28_11�Lpred28_14�Lpred28_13�Lpred28_16�Lpred28_15�Lpred28_17�Lpred32_4�Lpred32_3�Lpred32_6�Lpred32_5�Lpred32_8�Lpred32_7�Lpred32_10�Lpred32_9�Lpred32_12�Lpred32_11�Lpred32_14�Lpred32_13�Lpred32_15�Lpred56_1�Lpred58_8�Lpred58_2�Lpred58_4�Lpred58_3�Lpred58_6�Lpred58_5�Lpred58_7�Lpred61_7�Lpred61_3�Lpred61_2�Lpred61_sub_0�Lpred61_4�Lpred61_6�Lpred61_5�sr_tbl�sr_tbl_size�sr_last_used�cur_sr�Get_Descriptor�Common_Clean�Exec_One_Directive�Undo_Directives�Close_Current_Module�Write_Location�Socket_Initializer�atom_AF_UNIX�atom_AF_INET�Create_Socket_Streams�end_vars�vars�Copy_Term_Rec�base_copy�top_vars�Parse_Supp_Initializer�jumper�tok_present�buff_save_machine_regs�Parse_Term�Parse_Error�Lookup_In_Dico_Var�Create_Structure�Parse_Args_Of_Functor�Parse_Bracketed_Term�Parse_List�atom_var�atom_string�atom_back_quotes�atom_punct�atom_full_stop�atom_extend�Write_Supp_Initializer�last_prefix_op�Show_Term�Show_Global_Var�ignore_op�Show_List_Arg�Show_Structure�Show_Atom�Show_Float�Show_Fd_Variable�Show_Integer�Try_Portray�atom_dots�quoted�space_args�name_vars�number_vars�curly_brackets_1�try_portray_code.1�portrayed�Out_Char�erase_stamp�first_dyn_with_erase�size_of_erased�Add_To_2Chain�Index_From_First_Arg�Alloc_Init_Dyn_Info�Unlink_Clause�Free_Clause�Get_Scan_Choice_Point�Scan_Dynamic_Pred_Next�Clean_Erased_Clauses�save_call_info�Byte_Code_Initializer�op_tbl�Compar_Inst_Code_Op�nb_op�bc_nb_block�bc�atom_dynamic�atom_public�atom_built_in�atom_built_in_fd�caller_arity�caller_func�bc_sp�BC_Arg_X_Or_Y�BC_Arg_Func_Arity�debug_call�BC_Emulate_Pred_Alt�BC_Emulate_Clause�glob_func�glob_dyn�BC_Emulate_Byte_Code�Prep_Debug_Call�err_msg�c�c_orig�c_type�Scan_Quoted�Scan_Number�Scan_Quoted_Char�obj_end.c�start_user_time�start_system_time�start_real_time�cur_seed�page_size�SIGSEGV_Handler�buff.1�cur_work_dir.2�msg.3�buff.4�arg.0�nb_arg.1�value.2�letters.3�arg.4�Hash_Locate�nb_obj�obj_tbl�nb_user_directives�init_buff_regs�heap_actual_start�Call_Prolog_Fail�Call_Prolog_Success�Call_Next�p_buff_save�p_jumper�cont_jmp�Check_If_Var_Occurs�hash_weight_tbl�hash_inv_tbl�str_char�Locate_Atom�Hash_String�gen_sym_buff�Fd_Solver_Missing�separators�ins_mode�clipboard�hist_start�hist_end�comp_start�prompt_length�global_str�Tab_To_Spaces�History_Add_Line�global_pos�global_end�Display_Help�New_Char�Completion_Print_All�Skip�Completion_Do_Match�comp_last_match�comp_first_match�History_Update_Line�History_Get_Line�hist_tbl�Is_A_Separator�ctrl_c_ret_val�comp_nb_match�comp_match_max_lg�comp_cur_match�use_gui�use_ansi�fd_in�fd_out�initialized.0�le_hook_present.1�Parse_Env_Var�Choose_Fd_Out�LE_Get_Char0�Backd�Forwd�Displ�Erase�Displ_Str�pos�nb_cols�old_stty_in�old_stty_out�is_tty_in�is_tty_out�interrupt_key�new_stty_out�nb_rows�new_stty_in�from_callback�ret_val�Wrapper_Handler�ctrl_c_handler�inside_ctrl_c�_DYNAMIC�__fini_array_end�__fini_array_start�__init_array_end�_GLOBAL_OFFSET_TABLE_�__init_array_start�X736B6970_1�Fct_Shr�X6765745F63686172_2�Fd_Eq_2�X24696E646F6D61696E5F6C696D6974735F616C74_0�stm_debugger_input�Write_1�Wait_2�Nth_Root_Up�X72656E616D655F66696C65_2�Remove_Stream_Mirror_2�X2473686F775F6C65617368696E675F696E666F31_1�X247573655F6F706572_0�domain_socket_address�fd_domain�X636861725F636F6465_2�X242473725F74726561745F7465726D2F325F2461757832_4�Write_Pl_State_File�X756E6765745F636F6465_2�Vector_Sub_Vector�Full_Coeff_Power_Var�Write_Canonical_To_Chars_2�Math_Fast_Load_Value�X757365725F74696D65_1�evluation_int_overflow�Fd_Tell_Int_Range�X2424636865636B5F73747265616D5F6F725F7661722F325F2461757831_1�Fd_Reset_Solver�X247573655F657870616E64_0�X246C696E65735F746F5F636F6C756D6E73_2�Read_Token_1�Copy_Term_2�X666F726D6174_3�X246765745F7072656469636174655F66696C655F696E666F_3�X24247265696E69745F61667465725F657863657074696F6E2F305F2461757831_0�max_x_a_eq_z_F�Print_2�atom_curly_brackets�Fd_Lt_2�quot_rem_x_y_r_eq_z_F�X2463757272656E745F6F705F616C74_0�X63616C6C5F776974685F61726773_10�Os_Version_1�Blt_Fd_Var�Rd_Number_Check�Put_Atom_Tagged�Init_Oper�Add_Stream_For_Stdio_Desc�X74656C6C_1�X233C_2�X6F6E6365_1�X777269746571_2�Fd_Element_V_To_Xi�pred_tbl�x_nand_y_eq_b�X24636F6E73756C7431_1�X247365745F73725F64656661756C7473_0�Vector_Mod_Value�X242464656275675F63616C6C312F385F2461757831_3�Blt_G_Dec_2�Un_Term�X235C5C3D23_2�X2464656275675F69735F6E6F745F6C656173686564_1�usleep@@GLIBC_2.0�BC_Start_Emit_0�mkdir@@GLIBC_2.0�X6E6F6465627567_0�Read_1�Blt_Fast_Gt�X61746F6D5F70726F7065727479_2�Blt_Lte�fd_reset_solver�ttyname@@GLIBC_2.0�X247465726D5F746F5F676F616C31_2�Current_Predicate_Alt_0�x2_eq_y_F�X61746F6D5F6C656E677468_2�cos@@GLIBC_2.0�Fct_Min�Init_Pred�X247465726D5F746F5F676F616C_3�X6C6F7765725F7570706572_2�X2424706F72747261795F636C617573652F325F2461757832_1�X2464656275675F706F72745F6D61736B_2�X66756E63746F72_3�X6D656D626572_2�Create_Oper�Init_Machine1�Install_Ctrl_C_Handler�X7365745F6F7574707574_1�type_list�Switch_On_Term_Var_Atm�X6E65775F61746F6D_2�Call_With_Args_4�X2466645F73656C5F61727261795F66726F6D5F6C697374_2�Mk_Atom�Vector_Next_Before�X2464656275675F646973705F616C7465726E61746976657331_2�SR_Get_File_Name_2�Fct_Abs�Sys_Var_Dec_1�X24657865632F355F2461757831_1�Full_Var_Power_Coeff�Fd_Variable_Size0�X247365746172675F696E5F6C6173745F666F756E64_2�Cut�X73725F77726974655F6572726F72_6�X2473725F64697265637469766531_2�domain_not_less_than_zero�LE_Initialize�existence_source_sink�Load_Call_Info_Arg_1�X2463616C6C31_2�X246C697374696E675F616C6C_1�X73725F6765745F73747265616D_2�X24246765745F726561645F6F7074696F6E73322F315F2461757831_1�Read_Term_5�File_Prop_Date_2�def_trail_size�rename@@GLIBC_2.0�X235C5C2F5C5C_2�Put_Structure_Tagged�X247573655F7772697465_0�X242473746F72655F736F6C7574696F6E732F345F2461757831_3�X24636F6E73756C7433_2�Set_Predicate_File_Info_3�Write_Term_2�X726561645F746F6B656E_1�Vector_Compl�Fd_Tell_Not_Value�Os_Error�X2464656275675F7370795F7265736574_1�Set_Debug_Call_Code_0�X77726974655F746F5F61746F6D_2�Aux_Name_1�Exec_5�atom_append�domain_term_stream_or_alias�X2464656275675F6C6973745F6F665F70726564_2�X756E6765745F62797465_1�Mk_Chars�X246765745F726561645F6F7074696F6E7331_1�Check_For_Un_Compound�ax_plus_by_eq_z�Delete_Choice_Point1�Unget_Char_1�fd_unify_with_fd_var�atom_false�not_prime_x�X247573655F736F636B657473_0�LE_Compl_Add_Word�Vector_Add_Vector�Blt_Fast_Lt�x_lte_c�Init_Machine�Test_Alias_Not_Assigned_1�X68616C74_1�X66645F6D696E696D697A65_2�X2466645F6D696E696D697A652F325F2461757831_5�X246765745F6C6162656C696E675F6F7074696F6E7332_1�X66645F616C6C5F646966666572656E74_1�vsprintf@@GLIBC_2.0�strchr@@GLIBC_2.0�Fd_Unify_With_Fd_Var0�Blt_Univ�X756E6765745F636F6465_1�truth_x_plus_c_lte_y�X2424706F72747261795F636C617573652F325F2461757831_1�Create_Atom_Tagged�X63616C6C5F776974685F61726773_2�X2472656D6F76655F756E64657273636F72655F76617273_2�X646562756767696E67_0�Rd_In_Char�X756E6765745F63686172_1�Fd_Variable_To_String0�Unget_Code_2�Blt_G_Read�x_eq_y_F�Stream_Puts�Rd_Codes_Str�X24246765745F726561645F6F7074696F6E73322F315F2461757832_1�X24706C5F6572725F726570726573656E746174696F6E_1�X6C6173745F726561645F73746172745F6C696E655F636F6C756D6E_2�X24706C5F6572725F73796E746178_1�X7075745F636F6465_1�Range_Nb_Elem�Nth_Root_Dn�Current_Atom_Alt_0�Pred_Prop_Public_1�Atom_Property_6�fdopen@@GLIBC_2.1�Stream_Putc�X6E6F737079_1�X66645F6F6E6C795F6F6E65_1�Unget_Char_2�System_Time_1�X233E23_2�Name_Singleton_Vars_1�X246765745F726561645F6F7074696F6E73_4�X2463616C6C5F696E7465726E616C31_2�X246C6F61645F70726564_2�X706F72747261795F636C61757365_1�Read_Atom�X242477726974655F696E64696361746F722F305F2461757831_2�Blt_Compound�permission_type_past_end_of_stream�Sys_Var_Inc_1�SR_Get_Stm_For_Read_Term_1�X2477726974655F736F6C7574696F6E_3�X24627265616B2F305F2461757831_1�Write_Canonical_2�Open_Output_Term_Stream_1�Rd_Proper_List�Statistics_Global_Stack_2�Get_Char_1�alias_tbl�Current_Bip_Name_2�Halt_1�X2473747265616D5F70726F70657274792F325F2461757831_3�Blt_G_Reset_Bit�X24247370795F746573745F636F6E646974696F6E2F335F2461757831_2�X73725F7365745F6572726F725F636F756E74657273_3�atan@@GLIBC_2.0�X246C6F61645F66696C65_1�Fct_Fast_Sign�X3D3A3D_2�X737061776E_3�X247365745F746F705F6C6576656C5F73747265616D73_2�X7065656B5F62797465_1�X7065656B5F636F6465_1�Retractall_If_Empty_Head_1�type_byte�evluation_zero_divisor�Find_Linked_Objects�Read_Integer_1�x_imply_y_eq_b�Delete_Choice_Point3�X726561645F7465726D_2�X24706C5F6572725F696E7374616E74696174696F6E_0�fd_init_solver�X666F726D61745F746F5F61746F6D_3�X66645F6C6162656C696E676666_1�reg_tbl�M_Real_Time�Fd_Unify_With_Integer0�X72657665727365_2�SR_Write_Message_8�X746162_1�atom_debugger_output�X247573655F66645F6F7074696D_0�Malloc_Check�Nth_Root_Exact�X246765745F6C696E656469745F70726F6D7074_1�X6E6F6E5F67656E657269635F766172_1�X2424636F6E73756C74322F315F2461757831_2�X24696E646F6D61696E5F72616E646F6D5F616C74_0�getpid@@GLIBC_2.0�X666F726D61745F746F5F636F646573_3�X246D696E5F6C69737431_3�Blt_Number�Fatal_Error�Range_Test_Null_Inter�Rd_String_Check�Open_Input_Term_Stream_2�X246765745F636C6F73655F6F7074696F6E73_1�Nl_1�Rd_Float�Fork_Prolog_1�X2463617463685F696E7465726E616C31_5�X2424636865636B5F686561642F315F2461757831_1�X2463757272656E745F6D6972726F72_2�X247573655F73746174_0�__ctype_tolower_loc@@GLIBC_2.3�domain_stream_position�Create_Choice_Point3�X2464656275675F63616C6C_2�X246164645F636C617573655F7465726D_1�init_stream_supp�Range_Compl�SR_Init_Open_2�X242464656275675F657865635F636D642F365F2461757833_2�Read_Number_1�Un_In_Code�Vector_Union�LE_Get_Current_Word�X2473725F63757272656E745F64657363726970746F725F616C74_0�atom_bof�Write_Term_To_Atom_2�X66645F646F6D61696E_3�X246D656D6265722F325F2461757831_3�X66645F656C656D656E745F766172_3�Put_Nil�X66645F6D6178_2�Switch_On_Term_Var_Stc�X7365745F73747265616D5F6C696E655F636F6C756D6E_3�X675F696E63_1�Fct_Truncate�last_writing�Math_Load_Value�le_hook_exit_process�Set_Seed_1�Hash_Alloc_Table�X2463616C6C_4�X66645F72656C6174696F6E_2�X6F70656E5F696E7075745F636F6465735F73747265616D_2�X247365745F73747265616D5F627566666572696E672F325F2461757831_1�Stream_Close�Fct_Fast_Or�type_fd_evaluable�Put_X_Variable�X247468726F77_4�X24696E646F6D61696E5F6D61785F616C74_0�X247365745F7072656469636174655F66696C655F696E666F_3�stm_last_used�atom_stream�X246765745F77726974655F6F7074696F6E73_1�x_equiv_y_eq_b�representation_min_integer�Fd_Stop_Constraint�X66645F63617264696E616C697479_2�X736F7274_1�Reset_Prolog�Un_Boolean_Check�type_evaluable�Range_From_Vector�X2472657472616374_2�domain_stream_property�Rd_In_Code�Range_Div_Value�Fct_Fast_Dec�Sys_Var_Get_Bit_3�X776F726B696E675F6469726563746F7279_1�Blt_G_Assignb�M_Create_Shell_Command�Read_Token_From_Atom_2�Un_Code_Check�X6C696E655F636F756E74_2�X72616E646F6D_3�Argument_List_1�write@@GLIBC_2.0�X2424636F6E73756C74322F315F2461757832_2�localtime@@GLIBC_2.0�Scan_Peek_Char�X2462635F656D756C6174655F636F6E74_0�Flush_Output_1�Update_Water_Mark�Fct_Sign�X24246765745F77726974655F6F7074696F6E73322F315F2461757833_1�Pred_Prop_User_1�X2464656275675F726561645F636D64_1�X242466645F6C6162656C696E672F325F2461757832_1�Exit_With_Exception�fileno@@GLIBC_2.0�X403E3D_2�Set_Stream_Eof_Action_2�Statistics_Trail_Stack_2�Op_3�X66645F6D6178696D697A65_2�X5C5C3D3D_2�SR_Get_Position_3�X7365745F73747265616D5F627566666572696E67_2�X6370755F74696D65_1�X2424636865636B5F6F776E65725F66696C65732F335F2461757831_6�strcmp@@GLIBC_2.0�X6F70656E5F6F75747075745F61746F6D5F73747265616D_1�Choice_Point_Info_4�Fd_Exactly�Set_Stream_Buffering_2�stm_tbl�Current_Stream_1�representation_character_code�X24657870616E645F7465726D31_2�X726561645F66726F6D5F61746F6D_2�base_fd�X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757831_1�use_le_prompt�Fd_Prolog_To_Value�Switch_On_Term_Var_Atm_Lst�X666F72_3�X246361746368_6�X2473725F6765745F666F726D61745F617267735F6572726F72_6�last_output_sora�Store_Solution_1�close@@GLIBC_2.0�asin@@GLIBC_2.0�Range_Mul_Value�Fd_Check_For_Bool_Var�x_plus_c_lte_y�Fd_Math_Unify_X_Y�X2466645F6C6162656C696E675F737464_2�Fd_Tell_Interv_Interv�Stream_Getc�_fp_hw�Peek_Char_2�fd_domain_r�Read_Term_From_Codes_5�byte_code�Fd_Sel_Array_From_List_2�X24246765745F73725F6F7074696F6E73322F315F2461757832_1�Unify_Integer�Check_Stream_Type�X246861735F6E6F5F7370795F706F696E74_1�X246C6F61645F6469726563746976655F657863657074696F6E_3�Fd_Element_V_To_I�X6E756D6265725F6368617273_2�Fd_Element_Var_V_To_I�X66645F61746C65617374_3�Read_Integer�Fd_Element_I_To_V�X242464656275675F6C6973745F6F665F70726564312F345F2461757831_4�Rd_Chars_Check�atom_line�X242464656275675F657865635F636D642F365F2461757836_1�X6E616D655F73696E676C65746F6E5F76617273_1�X73725F6765745F6D6F64756C65_3�Rd_In_Char_Check�X246765745F6F70656E5F6F7074696F6E7332_1�X73756D5F6C697374_2�permission_type_stream�Sleep_1�X247573655F675F7661725F696E6C_0�SR_Current_Descriptor_1�X2463757272656E745F7072656469636174655F616E79_1�fprintf@@GLIBC_2.0�X2473725F6572726F725F66726F6D5F657863657074696F6E_2�fork@@GLIBC_2.0�M_Tempnam�X246765745F73725F6F7074696F6E7331_1�Unify_Structure_Tagged�Fct_Fast_Neg�Delete_Choice_Point4�Father_Pred_Of_Aux�getenv@@GLIBC_2.0�M_Random_Float�X63757272656E745F61746F6D_1�X6765745F73656564_1�X6B6579736F7274_1�signal@@GLIBC_2.0�X6765745F6C696E656469745F70726F6D7074_1�Fd_New_Variable�fmod@@GLIBC_2.0�Range_Becomes_Sparse�Rd_Float_Check�Fct_Fast_Inc�X2464656275675F7370795F736574_2�fd_variable_to_string�X246765745F636C6F73655F6F7074696F6E7332_1�Atom_Length_2�Fd_Use_Vector�fflush@@GLIBC_2.0�X247573655F636F6E73756C74_0�Stream_Prop_Type_2�domain_g_argument_selector�Blt_G_Inc_2�X247365745F71756572795F766172735F6E616D6573_2�pclose@@GLIBC_2.1�SR_Get_Error_Counters_3�X2473725F726561645F7465726D2F345F2461757832_2�Display_To_Atom_2�Range_Mul_Range�X2473725F6E65775F706173732F315F2461757831_1�Write_Simple�Read_Atom_2�X233D3C23_2�Fct_Ceiling�X7075745F62797465_2�X6C697374696E67_1�Call_Info_Bip_Name_1�X247573655F666C6167_0�X24247468726F775F696E7465726E616C2F325F2461757831_2�X247573655F747970655F696E6C_0�Blt_G_Link�Mk_In_Char�X403C_2�Get_Predicate_File_Info_3�Bind_Variables_4�Fd_Before_Add_Cstr�Get_Pred_Indic_3�Range_Next_Before�quot_rem_x_a_r_eq_z_F�Fct_Add�Fd_Element_I�X247573655F63616C6C_0�mallopt@@GLIBC_2.0�X24746F705F6C6576656C31_0�ax_plus_by_eq_z_F�X686F73745F6E616D65_1�Pl_Err_Instantiation�unlink@@GLIBC_2.0�Pred_Prop_Built_In_Fd_1�Decompose_File_Name_4�Fd_Init_Solver0�M_Cmd_Line_To_Argv�domain_source_sink�X63757272656E745F707265646963617465_1�Un_Atom�Fd_Init_Solver�X617267756D656E745F636F756E746572_1�X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757832_1�Current_Stream_Alt_0�X247365745F73747265616D5F747970652F325F2461757832_2�X66645F72656C6174696F6E63_2�Arith_Eval_2�Fd_Prolog_To_Fd_Var�getrusage@@GLIBC_2.0�Delete_File_1�X636F6D70617265_3�Name_2�Mk_List�Rd_Code�Atom_Concat_Alt_0�X2462635F656D6974_1�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757835_1�X24636865636B5F61746F6D5F6F725F61746F6D5F6C69737431_1�X247573655F63616C6C5F61726773_0�X6173736572747A_1�X247573655F66696C65_0�Current_Alias_2�X246C6F616432_1�Stream_Prop_Buffering_2�X242464656275675F6C6973745F6F665F70726564312F345F2461757832_5�Update_Choice_Point3�X2473725F6572726F725F66726F6D5F657863657074696F6E2F325F2461757831_1�Set_Stream_Position_2�Un_Byte_Check�X3D3D_2�Retract_2�fd_exactly�le_initialize�X66645F7573655F766563746F72_1�X68616C74_0�X6765745F6B6579_1�X77726974655F63616E6F6E6963616C5F746F5F61746F6D_2�X247365656E2F305F2461757831_1�X2467726F75705F736F6C7574696F6E73_3�X24246765745F73725F6F7074696F6E73322F315F2461757833_1�X73725F6E65775F70617373_1�X6F735F76657273696F6E_1�BC_Start_Pred_7�X24246C6F6164322F315F2461757832_2�Check_For_Un_Boolean�X247265696E69745F61667465725F657863657074696F6E_0�permission_operation_open�Last_Read_Start_Line_Column_2�Mk_Variable�X24737079706F696E745F636F6E646974696F6E31_3�x_imply_y_eq_1�X63616C6C5F776974685F61726773_5�Stream_Ungetc�Un_Float_Check�Mk_In_Byte�Stream_Position_2�Writeq_1�Remove_One_Choice_Point_1�select@@GLIBC_2.0�type_fd_variable�Vector_From_Interval�X756E6765745F62797465_2�X247573655F66645F6D617468_0�X24247465726D5F746F5F676F616C322F325F2461757831_3�Line_Position_2�X7465726D5F726566_2�Mk_Number�Lower_Upper_2�x_plus_y_plus_z_eq_t_F�Pred_Without_Aux�X235C5C_1�query_exception�X24246C6F61645F66696C652F315F2461757831_3�Pl_Err_Syntax�X6D616B655F6469726563746F7279_1�Remove_Predicate_2�wmark_count�X72657472616374_1�X77726974655F746F5F6368617273_2�domain_socket_domain�Blt_G_Dec_3�x_and_y_eq_b�Un_Integer�Sqrt_Up�Allocate�X24696E646F6D61696E_2�File_Permission_2�vsnprintf@@GLIBC_2.0�X24246765745F77726974655F6F7074696F6E73322F315F2461757834_1�X246765745F6C6162656C696E675F6F7074696F6E7331_1�strerror@@GLIBC_2.0�X707574_1�Execute_Directive�Cpu_Time_1�Term_Math_Loading�BC_Emit_Inst_1�Check_For_Un_Number�Fct_Fast_Shr�__dso_handle�Stream_Get_Position�Check_For_Un_Atom�Rd_Code_Check�representation_max_integer�X247573655F66645F696E666F73_0�Set_Linedit_Prompt_1�Stream_Prop_Input_1�x_plus_y_eq_z_F�Global_Push_Float�Hash_Delete�Put_Integer_Tagged�Call_With_Args_3�SR_Current_Descriptor_Alt_0�X636C6F73655F696E7075745F636F6465735F73747265616D_1�Fd_New_Bool_Variable�X706F72747261795F636C61757365_2�Call_With_Args_9�truth_x_gte_c�Blt_G_Deco�base_fl�X246164645F6D6972726F72735F746F5F73747265616D_2�X2472656D6F76655F707265646963617465_2�X63757272656E745F636861725F636F6E76657273696F6E_2�mmap@@GLIBC_2.0�X24636865636B5F61746F6D5F70726F70_1�X6E6F737079616C6C_0�Check_For_Un_Variable�Unify_Occurs_Check�__libc_csu_fini�X2461746F6D5F636F6E6361745F616C74_0�Fd_After_Add_Cstr�Set_Prolog_Flag_2�Reassign_Alias�Check_For_Un_Char�X61746F6D5F636F6E636174_3�X24706C5F6572725F646F6D61696E_2�Call_Prolog�X2473747265616D5F706F736974696F6E_2�Get_Key_2�X246765742F315F2461757831_2�tcsetattr@@GLIBC_2.0�Add_Stream_For_Stdio_File�permission_type_flag�obj_chain_begin�Argument_Counter_1�Pred_Prop_Prolog_Line_2�Sys_Var_Write_2�X2474656C6C2F315F2461757831_2�Blt_Generic_Var�Fct_Fast_Not�Put_Unsafe_Value�setlocale@@GLIBC_2.0�wmark�X2466645F6C6162656C696E6731_4�query_top_b�X66645F6861735F65787472615F63737472_1�X2473725F7365745F74726561745F706173735F62697473_3�X73656C656374_3�Extend_Table_If_Needed�X242464656275675F706F72745F70726F6D70742F365F2461757831_5�X70726F6C6F675F706964_1�X2467726F75705F736F6C7574696F6E735F616C74_0�X6469726563746F72795F66696C6573_2�X2464656275675F646973705F616C74_2�X242464656275675F657865635F636D642F365F2461757835_3�X61745F656E645F6F665F73747265616D_0�X2473686F775F7370795F706F696E7473_0�Fct_Shl�X24746F705F6C6576656C5F657863657074696F6E_1�Hash_Realloc_Table�domain_operator_priority�X686F73746E616D655F61646472657373_2�Fd_New_Int_Variable�Free_Variables_4�X2473686F775F64656275676765725F6D6F646531_1�X247365745F73747265616D5F627566666572696E672F325F2461757832_2�Fd_Neq_2�X676574_1�representation_in_character_code�Prolog_File_Name_2�X2473746174_3�Fd_Add_Dependency�buff_signal_reg�truth_x_neq_y_F�Un_Compound_Check�X73725F77726974655F6D657373616765_8�X242473725F74726561745F7465726D2F325F2461757833_2�Un_Atom_Check�Term_Write_Str_Stream�X2466645F63617264696E616C69747931_2�Make_Stream_Tagged_Word�X246661746865725F6F665F6175785F6E616D65_3�Scan_Choice_Point_Pred�Write_2�X7365745F6269705F6E616D65_2�X2464656275675F646973705F616C7431_3�Fct_Float_Div�X242463617463685F73796E635F666F725F6661696C5F61742F315F2461757831_2�X247573655F7072696E74_0�unify_x_y�__errno_location@@GLIBC_2.0�pow@@GLIBC_2.0�quot_rem_x_y_r_eq_z�Write_A_Char�X2466696C655F70726F70_2�environ@@GLIBC_2.0�X726561645F61746F6D_1�xy_eq_z_F�existence_stream�resource_too_big_fd_constraint�X246D616B655F6175785F6E616D65_4�X2473686F775F64656275676765725F6D6F6465_0�X6F70656E5F6F75747075745F636F6465735F73747265616D_1�Check_For_Un_Codes�X6E65775F61746F6D_1�X63757272656E745F6D6972726F72_2�X242477726974655F736F6C7574696F6E2F335F2461757831_2�x2_eq_y�Get_Stream_Or_Alias�Indomain_Middle_Alt_0�X7265616C5F74696D65_1�X24627265616B2F305F2461757832_1�Find_Next_Atom�Update_Dynamic_Pred�Vector_Next_After�Hostname_Address_2�BC_Emulate_Cont_0�X707265666978_2�X63757272656E745F6F7574707574_1�Fd_Has_Vector_1�ftell@@GLIBC_2.0�SR_Write_Message_6�max_x_y_eq_z�List_Length�X246F7032_3�X2473725F6F70656E2F335F2461757831_1�Shell_2�SR_Get_Include_List_2�X6765745F6B65795F6E6F5F6563686F_2�Stdio_Is_Repositionable�X246463675F7472616E735F72756C65_2�X2464656275675F706F7274_5�X233C3D3E_2�Consult_2�Blt_G_Array_Size�representation_character�Write_Canonical_To_Codes_2�X24696E646F6D61696E5F6D6964646C655F616C74_0�System_2�domain_non_empty_list�Range_Union�Writeq_2�domain_g_array_index�Fd_Use_Vector_1�accept@@GLIBC_2.0�gethostbyaddr@@GLIBC_2.0�Random_1�Blt_Eq�system@@GLIBC_2.0�zero_power_n_eq_y�X247379735F7661725F7365745F626974_2�X242466696E645F6578697374696E675F73747265616D2F335F2461757831_3�X675F696E63_2�Read_Number_2�Mk_Callable�domain_read_option�X247573655F617373657274_0�LE_Is_Interrupt_Key�X2473725F73746F705F6D6F64756C65_3�X66645F61745F6C656173745F6F6E65_1�X2463757272656E745F616C6961732F325F2461757831_2�X247379735F7661725F72656164_2�Set_Current_B_1�Get_Integer�X63757272656E745F70726F6C6F675F666C6167_2�X247573655F736F7274_0�SR_Get_Size_Counters_3�X2464656275675F726561645F696E7465676572_1�X66645F646F6D61696E5F626F6F6C_1�Blt_Atom�X247573655F7465726D5F696E6C_0�access@@GLIBC_2.0�Prolog_Pid_1�X736F636B6574_2�X72656D6F76655F73747265616D5F6D6972726F72_2�Stream_Flush�setvbuf@@GLIBC_2.0�X73725F6765745F696E636C7564655F73747265616D5F6C697374_2�X246765745F73725F6F7074696F6E7332_1�X242464656275675F657865635F636D642F365F2461757837_3�Put_Byte_2�os_argc�Writeq_To_Chars_2�X233E3D_2�Rd_Chars_Str�inet_ntoa@@GLIBC_2.0�Pl_Err_System�Write_To_Codes_2�X63757272656E745F73747265616D_1�X2461726974685F6576616C_2�LE_Compl_Find_Match�domain_stream�X7075745F63686172_2�X3E3D_2�Current_Op_3�M_Set_Seed�X6F70656E5F6F75747075745F63686172735F73747265616D_1�X63616C6C_2�Blt_Callable�X66645F6C6162656C696E67_1�Pred_Prop_Dynamic_1�Load_Cut_Level�Change_Directory_1�Sys_Var_Get_2�type_float�puts@@GLIBC_2.0�X24636865636B5F73747265616D5F6F725F766172_2�le_prompt�Select_5�Term_Compare�_init�X6E6C_1�X5C5C3D_2�X2466645F656C656D656E74_3�Setarg_Of_Last_Found_2�X247573655F73747265616D_0�popen@@GLIBC_2.1�X247573655F756E696679_0�Current_Mirror_2�truth_x_plus_c_neq_y_F�Rd_Positive_Check�Create_Pipe_2�X246462675F696E64696361746F72_2�Call_Compiled�X247379735F7661725F707574_2�Switch_On_Atom�X2462635F73746F705F656D6974_0�X6261676F66_3�Write_Term_To_Chars_2�x_neq_c�X24657865635F636D645F657272_2�X2466645F73656C5F61727261795F7069636B5F766172_4�Architecture_1�listen@@GLIBC_2.0�X74656C6C696E67_1�Current_Output_1�Unlink_1�stk_tbl�X706F70656E_3�Print_To_Codes_2�Indomain_Random_Alt_0�permission_type_static_procedure�Create_Choice_Point1�X73725F6368616E67655F6F7074696F6E73_2�X247573655F7468726F77_0�X7365745F73747265616D5F656F665F616374696F6E_2�X7065656B5F62797465_2�nb_atom�X675F61737369676E_2�type_compound�X2473725F657865635F646972656374697665_2�Seek_4�ax_plus_y_eq_z�Scan_Next_Atom�stm_top_level_input�X736C656570_1�Get_Atom�x_nequiv_y_eq_b�malloc@@GLIBC_2.0�type_predicate_indicator�X726561645F706C5F73746174655F66696C65_1�X7072696E745F746F5F61746F6D_2�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757836_1�X6E65775F61746F6D_3�last_read_line�Fct_Mul�X5C5C2B_1�Random_3�X246C6F61642F315F2461757831_1�X242464656275675F657865635F636D642F365F2461757834_2�Socket_Accept_4�Call_With_Args_6�Pl_Err_Existence�domain_prolog_flag�X646973706C6179_2�X2473756D5F6C69737431_3�X3D3C_2�Range_Inter�Rename_File_2�glob_buff�X247465726D5F746F5F676F616C32_2�domain_selectable_item�X7065656B5F63686172_2�X246765745F77726974655F6F7074696F6E7332_1�Rd_List_Check�X24696E7374616E63655F666F725F736574617267_2�debug_call_code�Date_Time_1�Fct_Identity�X737079706F696E745F636F6E646974696F6E_3�X73725F726561645F7465726D_4�X63757272656E745F616C696173_2�X61745F656E645F6F665F73747265616D_1�abs_x_minus_y_eq_z_F�Create_Water_Mark�X24657865635F636D645F6C696E655F656E7472795F676F616C73_1�X242464656275675F657865635F636D642F365F2461757832_1�Vector_Mul_Vector�abs_x_minus_a_eq_z_F�Delete_Pred�atom_user_input�munmap@@GLIBC_2.0�M_Get_Status�Fct_Max�Retract_Last_Found_0�X746F6C64_0�X6368616E67655F6469726563746F7279_1�prime_x�Rd_Integer_Check�X77726974655F7465726D5F746F5F6368617273_3�Blt_Var�Find_Stream_By_Alias�permission_type_private_procedure�X247365745F6C696E656469745F70726F6D7074_1�X24726561645F72657475726E_1�pipe@@GLIBC_2.0�not_x_eq_b�Group_Solutions_3�Setarg_4�Blt_Functor�x_and_y_eq_0�Get_Integer_Tagged�Unify_List�X24617373657274_3�X246765745F6C6162656C696E675F6F7074696F6E73_2�X737061776E_2�Rd_Char�ax_plus_by_plus_z_eq_t_F�X7772697465715F746F5F6368617273_2�Un_Boolean�X646973706C6179_1�X2477726974655F736F6C7574696F6E31_1�fread@@GLIBC_2.0�Check_For_Un_Chars�Rd_Compound�quot_rem_a_y_r_eq_z�LE_FGets�Get_List�X77726974655F7465726D5F746F5F61746F6D_3�Rd_Byte�Atom_Chars_2�clearerr@@GLIBC_2.0�X617267_3�Keep_Rest_For_Prolog�Statistics_Real_Time_2�At_End_Of_Stream_0�X2473725F6F705F74797065_2�X766172_1�X2462635F656D69745F696E7374_1�M_Absolute_Path_Name�Current_Predicate_2�Extra_Cstr_Alt_0�Fd_Reset_Solver0�X63616C6C5F776974685F61726773_8�X246F702F335F2461757831_3�X656E7669726F6E_2�X247573655F666F726D6174_0�Create_Swt_Stc_Element�Create_Swt_Atm_Element�X6E756D6265725F76617273_0�Put_Y_Variable�atom_text�wmp�X242463616C6C5F696E7465726E616C5F6F722F345F2461757831_6�X3D5C5C3D_2�Un_Number�X746F705F6C6576656C_0�X6C6973745F6F725F7061727469616C5F6C697374_1�X72656164_2�X63616C6C61626C65_1�X242464656275675F646973705F616C74312F335F2461757832_3�Host_Name_1�X77726974655F7465726D_2�x_power_a_eq_y�X246D656D62657263686B2F325F2461757831_4�X246164645F616C69617365735F746F5F73747265616D_2�Atom_Hash_2�X2463757272656E745F61746F6D_1�Character_Count_2�X2424737461742F335F2461757831_2�Call_With_Args_5�Reset_Debug_Call_Code_0�rint@@GLIBC_2.0�X657870616E645F7465726D_2�X2464656275675F646973705F616E635F6C7374_1�X242464656275675F6C6973745F6F665F70726564312F345F2461757833_4�X247370795F746573745F636F6E646974696F6E_3�LE_Get_Current_Position�fixed_sizes�X6164645F73747265616D5F6D6972726F72_2�X247072656469636174655F70726F70657274795F616E79_2�X73725F63757272656E745F64657363726970746F72_1�Switch_On_Structure�atom_at�X6E6F6E766172_1�X24246765745F73725F6F7074696F6E73322F315F2461757834_1�Indomain_Limits_Alt_0�Name_Query_Vars_2�X66645F61745F6D6F73745F6F6E65_1�X247573655F72656164_0�X7772697465_2�X6E756D62657276617273_1�X247375625F61746F6D5F616C74_0�Recover_Solutions_2�X726561645F746F6B656E5F66726F6D5F636F646573_2�Add_Stream�X726561645F66726F6D5F636F646573_2�X6765745F6B6579_2�X246765745F726561645F6F7074696F6E7332_1�Range_Add_Value�X247365745F73747265616D5F747970652F325F2461757831_1�X2464656275675F6C6973745F6F665F7072656431_4�Un_Chars_Check�LE_Close_Terminal�Blt_Term_Gt�Fd_Domain_3�X6465636F6D706F73655F66696C655F6E616D65_4�X63757272656E745F696E707574_1�Peek_Code_1�le_hook_set_line_buffering�permission_type_binary_stream�stm_tbl_size�X2473725F77726974655F6572726F722F365F2461757831_4�X666C7573685F6F7574707574_1�stdout@@GLIBC_2.0�Current_Prolog_Flag_Alt_0�Fd_Tell_Value�stderr@@GLIBC_2.0�Blt_G_Set_Bit�X2424746F705F6C6576656C322F305F2461757835_1�def_local_size�Read_Token�Check_For_Un_In_Byte�Unify_Integer_Tagged�Delete_Choice_Point2�X24706C5F6572725F7265736F75726365_1�truth_x_plus_c_eq_y_F�X66645F7072696D65_1�Indomain_Max_Alt_0�X66645F61746D6F7374_3�Indomain_Min_Alt_0�SR_Get_Stm_2�Fct_And�X247573655F616C6C5F736F6C7574_0�Delete_Directory_1�X666F726B5F70726F6C6F67_1�atom_reposition�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757834_1�Rd_Positive�Blt_Fast_Lte�Get_Float�domain_flag_value�X2461746F6D5F70726F706572747932_7�Fct_Pow�mprotect@@GLIBC_2.0�Close_Stm�X2465787472615F637374725F616C74_0�X636C6F7365_1�Read_Term�le_hook_backd�X73725F77726974655F6D657373616765_4�X77726974655F706C5F73746174655F66696C65_1�X73746F70_0�le_hook_forwd�Mk_Positive�Un_Codes�Un_In_Byte_Check�stm_debugger_output�X246261676F66_4�Blt_Neq�X63616C6C5F776974685F61726773_6�X242463617463685F696E7465726E616C312F355F2461757831_3�File_Prop_Real_File_Name_2�Unget_Code_1�min_x_y_eq_z_F�X6E6F7472616365_0�SR_Change_Options_0�atom_eof�Range_Div_Range�X2463757272656E745F616C6961735F616C74_0�__xstat@@GLIBC_2.0�X617070656E64_1�Fd_Prolog_To_Array_Int�X6F70656E_3�Fct_Log�X77726974655F63616E6F6E6963616C5F746F5F636F646573_2�Un_In_Byte�Delete_Choice_Point�Environ_2�X675F72656164_2�getpagesize@@GLIBC_2.0�For_Alt_0�X2463616C6C5F696E7465726E616C5F776974685F637574_3�type_atom�Send_Signal_2�X247379735F7661725F646563_1�X726561645F61746F6D_2�X6765745F7072696E745F73747265616D_1�X706872617365_3�Prop_And_Stdio_Mode�execv@@GLIBC_2.0�inet_aton@@GLIBC_2.0�For_3�X247573655F636F6E74726F6C_0�Fd_Max_2�X2461746F6D5F70726F70657274795F616E79_2�Get_Pred_Indicator�X66645F6D696E_2�Init_Atom�DATE�Display_To_Codes_2�X777269746571_1�X247072656469636174655F70726F706572747931_2�stm_stdout�X6C697374696E67_0�Vector_Div_Vector�Format_To_Atom_3�X24636865636B5F73747265616D5F70726F70_1�Read_Term_4�Define_Math_Bip_2�Update_Choice_Point�Stream_Prop_End_Of_Stream_2�X2464656275675F63616C6C5F706F7274_5�LE_Set_Separators�X627265616B_0�abs_x_minus_a_eq_z�Add_Stream_Alias_2�domain_write_option�X2462635F73746172745F70726564_7�fseek@@GLIBC_2.0�waitpid@@GLIBC_2.0�x_lte_y�X675F61727261795F73697A65_2�X61737365727461_1�Check_For_Un_Callable�X247573655F616C6C5F66645F62697073_0�X2463757272656E745F6D6972726F725F616C74_0�X73797374656D_1�X24726561645F7175657279_2�Fct_Fast_Div�Rd_Atom�X247573655F70726564_0�Statistics_System_Time_2�X24726561645F7465726D_3�Abolish_1�Fct_Not�Scan_Dynamic_Pred�SR_EOF_Reached_1�Read_Integer_2�Un_Float�Treat_Vars_Of_Term�X646973706C61795F746F5F61746F6D_2�Read_From_Codes_2�Get_Byte_1�Un_Callable_Check�Flush_Output_0�Pred_Prop_Native_Code_1�X24657865635F636D645F6C696E655F676F616C_1�X6D696E5F6C697374_2�ax_plus_y_plus_z_eq_t�X7061727469616C5F6C697374_1�X24706C5F6572726F72_1�time@@GLIBC_2.0�X7772697465_1�X726561645F746F6B656E5F66726F6D5F61746F6D_2�Check_For_Un_Code�Get_Seed_1�X6E756D6265725F61746F6D_2�X2323_2�X2464656275675F657863657074696F6E5F706F7274_5�X2464656275675F77726974655F676F616C_4�X66645F6E6F745F7072696D65_1�Fct_Fast_Add�X636C6F73655F6F75747075745F636F6465735F73747265616D_2�Un_In_Char_Check�Un_String�Full_Var_Power_2�X235C5C3D_2�Pl_Err_Evaluation�_start�Vector_Nb_Elem�le_hook_ins_mode�X24246765745F77726974655F6F7074696F6E73322F315F2461757831_1�X247573655F61746F6D_0�x_gte_c�Un_List�X247379735F7661725F676574_2�Stream_Gets�X2424746F705F6C6576656C322F305F2461757831_2�Un_Positive�x_nor_y_eq_b�Blt_Fast_Neq�Obtain_Float�X636C6F73655F696E7075745F61746F6D5F73747265616D_1�X246E746831_3�SR_Is_Bit_Set_1�Spawn_3�Vector_Ith_Elem�X636C6F73655F6F75747075745F61746F6D5F73747265616D_2�Blt_Term_Lte�X24706C5F6572725F7065726D697373696F6E_3�M_Host_Name_From_Name�X247573655F72616E646F6D_0�Lookup_Pred�Fct_Sqrt�Print_To_Atom_2�Number_Chars_2�X6E756D6265725F636F646573_2�X242464656275675F7370795F72657365742F315F2461757831_3�le_hook_flush�domain_stream_option�Blt_Integer�X24636865636B5F737461745F6B6579_1�SR_New_Pass_1�Pl_Err_Permission�Range_Add_Range�evluation_undefined�Read_Atom_1�Create_Choice_Point�Debug_Wam�X246765745F62696E645F7661726961626C65735F6F7074696F6E7331_1�X66645F7365745F766563746F725F6D6178_1�Gen_New_Atom�Write_Canonical_1�X2463757272656E745F7072656469636174655F616C74_0�le_hook_put_char�Find_Expon_Dn�X2424657865635F71756572792F325F2461757832_2�X247072656469636174655F70726F706572747932_2�Find_Atom�def_cstr_size�X66645F63617264696E616C697479_3�X24636865636B5F66696C655F70726F70_1�X245C5C2B2F315F2461757831_1�le_hook_start�Put_Code_1�chdir@@GLIBC_2.0�Scan_Choice_Point_Info_3�M_Allocate_Stacks�Vector_Copy�X61746F6D5F68617368_2�X77726974655F746F5F636F646573_2�X77726974655F7465726D_3�Throw_2�pi_name_word�Set_Stream_Buffering�X66645F6D61785F696E7465676572_1�Fct_Fast_And�X737079_1�LE_Get_Prompt_Length�Sort_List_2�Check_Prop_Perm_And_File_2�Pl_Err_Domain�Blt_List_Or_Partial_List�X6C656E677468_2�X24706C5F6572725F6578697374656E6365_2�Make_Aux_Name�X2424636865636B5F707265645F747970652F335F2461757831_4�File_Exists_1�le_hook_confirm_box�Update_Choice_Point1�Socket_Close_1�X6E756D626572_1�LE_Get_Ctrl_C_Return_Value�strstr@@GLIBC_2.0�permission_type_source_sink�strlen@@GLIBC_2.0�X247365745F63757272656E745F42_1�longjmp@@GLIBC_2.0�X72657472616374616C6C_1�permission_operation_output�X24706C5F6572725F73797374656D_1�Rd_Atom_Check�X73797374656D5F74696D65_1�SR_Write_Message_4�From_Alias_To_Stream_2�X2464656275675F646973705F616C7432_1�X2463616C6C2F325F2461757831_1�X24246C6F61645F707265642F325F2461757831_3�LE_Get_Char�sigaddset@@GLIBC_2.0�Rd_Boolean�X233D3C_2�obj_chain_end�le_hook_get_line_buffering�Add_Linedit_Completion_1�Set_Stream_Line_Column_3�Assert_4�X2466645F63617264696E616C697479_2�X24636F6E73756C742F315F2461757831_1�X6F70656E_4�X6D61785F6C697374_2�type_atomic�Set_Heap_Actual_Start�le_hook_screen_size�Put_Float�X2466645F6D6178696D697A652F325F2461757831_6�Term_Size�X66645F766172_1�X706872617365_2�X6D656D62657263686B_2�Atom_Codes_2�Range_Copy�__lxstat@@GLIBC_2.0�X636C61757365_2�Pred_Prop_Private_1�X66645F766563746F725F6D6178_1�X246765745F6F70656E5F73746D_2�Fct_Float_Fract_Part�X73747265616D5F706F736974696F6E_2�Put_Char_1�atom_none�X6765745F6B65795F6E6F5F6563686F_1�Unify�X246F70656E_4�X73747265616D5F6C696E655F636F6C756D6E_3�X246F7031_3�Least_Significant_Bit�X2464656275675F656E645F63616C6C_6�uname@@GLIBC_2.0�oper_tbl�X2466696E645F6578697374696E675F73747265616D_3�Fct_Xor�atom_block�Un_Positive_Check�__strtol_internal@@GLIBC_2.0�Current_Char_Conversion_2�Blt_Partial_List�X61746F6D5F6368617273_2�X242464656275675F646973705F616C74312F335F2461757831_2�qsort@@GLIBC_2.0�Statistics_Cstr_Stack_2�X242473725F646972656374697665312F325F2461757832_2�X666C7573685F6F7574707574_0�x_plus_y_plus_z_eq_t�Hash_Nb_Elements�Mk_Integer�X2424737079706F696E745F636F6E646974696F6E312F335F2461757831_5�X24246261676F662F345F2461757831_2�X6164645F6C696E656469745F636F6D706C6574696F6E_1�BC_Stop_Emit_0�Rd_Codes�X2473725F74726561745F706173735F6E6F_3�Number_Atom_2�M_Random_Integer�X24706872617365_4�X73725F6765745F66696C655F6E616D65_2�X61746F6D6963_1�domain_date_time�X2474727574685F6F66_2�X2461746F6D5F70726F706572747931_2�Fct_Mod�Display_To_Chars_2�X2463617463685F73796E635F666F725F6661696C5F6174_1�Close_1�LE_Get_Separators�evluation_float_overflow�X7375625F61746F6D_5�X726570656174_0�Make_Aux_Name_4�representation_max_arity�X233E_2�X736F636B65745F616363657074_4�X7072696E745F746F5F636F646573_2�last_input_sora�X736F636B65745F636C6F7365_1�Mk_Char�Fd_Set_Full_Ac_Flag_1�Fd_Has_Extra_Cstr_1�X6164645F73747265616D5F616C696173_2�LE_Gets�Range_Ith_Elem�X24746F6C642F305F2461757831_1�xy_eq_z�X246164645F636C617573655F7465726D5F616E645F6263_2�X675F61737369676E62_2�x_plus_y_eq_z�X67657430_1�Find_Expon_Up�X2473746F72655F736F6C7574696F6E73_4�X24246C6F61645F707265642F325F2461757832_3�Lookup_Oper�execvp@@GLIBC_2.0�X24636865636B5F707265645F74797065_3�X247265766572736531_3�le_hook_emit_beep�Get_Structure�X636861725F636F6E76657273696F6E_2�tzset@@GLIBC_2.0�Find_Linedit_Completion_2�X675F7365745F626974_2�Stream_Prop_Mode_2�X24246C6F6164322F315F2461757831_3�X61746F6D_1�X736F7274_2�X246765745F6F70656E5F6F7074696F6E7331_1�Execute_A_Continuation�Blt_G_Assign�Set_Stream_Type_2�Stream_Peekc�X2463616C6C2F325F2461757832_3�char_conv�X2466645F6C6162656C696E675F6D7468_4�X2464656275675F7377697463685F6F6666_0�setlinebuf@@GLIBC_2.0�X6E616D655F71756572795F76617273_2�X246765745F73725F6F7074696F6E73_2�X7065656B5F63686172_1�x_plus_c_eq_y_F�M_Get_Working_Dir�atom_not�X242473725F646972656374697665312F325F2461757831_4�m_os_version�X246175785F6E616D65_1�max_x_y_eq_z_F�X246D616B655F6C697374_2�Update_Choice_Point4�X64656C657465_3�atom_current�X7772697465715F746F5F61746F6D_2�Choice_Point_Arg_3�Fct_Fast_Xor�X2477726974655F696E64696361746F72_0�sigprocmask@@GLIBC_2.0�X246C697374696E675F6F6E65_1�Get_Code_2�Range_Mod_Value�atom_eof_code�X242464656275675F63616C6C2F325F2461757831_2�strncmp@@GLIBC_2.0�X242473725F73746F705F6D6F64756C652F335F2461757831_2�Popen_3�Fct_Or�Fct_Fast_Shl�X24636865636B5F61746F6D5F6F725F61746F6D5F6C697374_1�X66696E64616C6C_3�Get_Current_B_1�atom_reset�X7075745F63686172_1�Fd_Copy_Variable0�Deallocate�SR_Open_File_2�X2464656275675F646973705F616C7465726E617469766573_2�X6C617374_2�Stream_Prop_Eof_Action_2�last_read_col�X7365745F73747265616D5F74797065_2�Clause_3�fputc@@GLIBC_2.0�User_Time_1�__libc_csu_init�Temporary_Name_2�truth_x_eq_y�vec_max_integer�Number_Codes_2�X247573655F66645F626F6F6C_0�Working_Directory_1�X242463617463685F615F7468726F772F355F2461757831_2�Mk_In_Code�Rd_Byte_Check�Vector_Div_Value�Blt_Fast_Eq�stm_input�X242473725F73746172745F6D6F64756C652F335F2461757831_2�X2473725F74726561745F7465726D_2�X74656D706F726172795F6E616D65_2�Unget_Byte_2�X6765745F63686172_1�Set_Output_1�X7365745F696E707574_1�Fd_Display_Extra_Cstr�X737566666978_2�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757832_1�Argument_Value_2�Char_Code_2�Unify_Value�X2424746F705F6C6576656C322F305F2461757833_3�X247573655F616C6C5F706C5F62697073_0�Write_Term�X247573655F66645F73796D626F6C6963_0�Add_Dynamic_Clause�SR_Add_Directive_7�type_character�__bss_start�Unify_Local_Value�X242464656275675F7370795F7365742F325F2461757831_3�X63616C6C5F776974685F61726773_1�Assoc_Socket_Streams_3�Write_Term_To_Codes_2�Stream_Prop_Output_1�Mk_Boolean�X6765745F636F6465_2�main�Try_Execute_Top_Level�M_Set_Working_Dir�Read_Token_2�Check_For_Un_List�Vector_Empty�Un_List_Check�X246E756D6265725F766172732F305F2461757831_1�X7075745F636F6465_2�Statistics_Cpu_Time_2�X636F6D706F756E64_1�X2466645F72656C6174696F6E6331_3�Set_Top_Level_Streams_2�X233C23_2�X7072696E74_1�Pred_Without_Aux_4�Rd_In_Byte�X646973706C61795F746F5F636F646573_2�type_in_character�Syntax_Error_Info_4�X2463757272656E745F707265646963617465_1�type_variable�Fct_Fast_Mod�domain_operator_specifier�X24707265645F776974686F75745F617578_4�X63616C6C5F776974685F61726773_11�X233E3D23_2�Socket_Bind_2�Switch_On_Term_Var_Atm_Stc�X247573655F6465633130696F_0�os_argv�X77726974655F63616E6F6E6963616C_2�domain_format_control_sequence�a_power_n_eq_y�Halt_If_No_Top_Level_1�X246765745F63757272656E745F42_1�Fct_Rem�X63757272656E745F6269705F6E616D65_2�Un_In_Code_Check�Hash_Delete_All�Vector_Test_Null_Inter�fd_element�LE_Compl_Init_Match�Get_Code_1�Write_Canonical_To_Atom_2�X675F646563_3�X6C697374_1�Fd_Atmost�Portray_Clause_1�X235C5C3C3D3E_2�Fct_Cos�X246861735F7370795F706F696E74_2�X675F6465636F_2�__libc_start_main@@GLIBC_2.0�X73656C656374_5�permission_type_text_stream�Get_Atom_Tagged�X247468726F7731_2�X2463617463685F6661696C5F6E6F77_1�Call_With_Args_11�Fd_Sel_Array_Pick_Var_4�Find_Linedit_Completion_Alt_0�X64656C6574655F66696C65_1�Blt_Float�X247365745F6C6162656C696E675F64656661756C7473_0�X7072696E74_2�X73746174697374696373_0�Sqrt_Dn�M_User_Time�X63616C6C5F776974685F61726773_9�X24246765745F73725F6F7074696F6E73322F315F2461757831_1�X2424737461742F335F2461757832_1�Put_Structure�X6E6F6E5F66645F766172_1�New_Object�Fd_Max_Integer_1�Blt_Non_Generic_Var�X61626F7274_0�Set_Input_1�X24246C697374696E675F616C6C2F315F2461757831_2�X242463616C6C5F696E7465726E616C2F325F2461757831_1�X2473747265616D5F70726F706572747931_2�truth_x_eq_c_F�type_callable�Close_Input_Term_Stream_1�X66645F656C656D656E74_3�X726561645F7465726D5F66726F6D5F61746F6D_3�Add_Str_Stream�BC_Call_Terminal_Pred_3�File_Prop_Absolute_File_Name_2�exp@@GLIBC_2.0�X73725F77726974655F6572726F72_2�X246C656173685F6D616B655F6D61736B_2�X2466645F6C6162656C696E67_2�X6E756D62657276617273_3�Display_2�X7472616365_0�permission_operation_access�atom_past�X2466696C655F70726F705F7065726D_2�fd_atleast�X24636C6F7365_2�Fct_Floor�Put_Byte_1�X2463757272656E745F61746F6D5F616E79_1�Mk_Code�New_Atom_3�x_nimply_y_eq_b�reg_bank�Current_Alias_Alt_0�Rd_Compound_Check�X2464656275675F706F727432_6�M_Host_Name_From_Adr�SR_Close_1�dup2@@GLIBC_2.0�X7368656C6C_0�ax_plus_by_plus_z_eq_t�X7065656B5F636F6465_2�X2464656275675F646973705F616E635F6C737431_1�X246765745F707265645F696E646963_3�Read_Token_From_Chars_2�SR_Update_Position_0�M_Randomize�Fct_Round�X675F6C696E6B_2�truth_x_neq_y�Rd_Chars�realloc@@GLIBC_2.0�Statistics_User_Time_2�X6465627567_0�Statistics_0�M_Get_Seed�X246765745F77726974655F6F7074696F6E7331_1�X24746F705F6C6576656C5F61626F7274_0�strcat@@GLIBC_2.0�Print_1�Get_Linedit_Prompt_1�permission_operation_close�Del_Mirror_From_Stream�__environ@@GLIBC_2.0�permission_operation_reposition�X73725F636C6F7365_1�Close_Output_Term_Stream_2�fd_variable_size�X675F696E636F_2�X636F70795F7465726D_2�Check_For_Un_Positive�truth_x_neq_c�Exit_With_Value�X24736F636B65745F6163636570742F345F2461757831_1�Rd_Boolean_Check�data_start�Fct_Fast_Mul�X73725F77726974655F6D657373616765_6�File_Prop_Type_2�Fct_Acos�X2466696E64616C6C_4�Stream_End_Of_Stream�Pl_Err_Representation�X7075745F62797465_1�X7072656469636174655F70726F7065727479_2�existence_procedure�Fct_Div�Fd_Min_2�Fct_Fast_Rem�Current_Atom_2�Power�Scan_Token�Delete_Stream�Put_Atom�X2473725F6F70656E2F335F2461757832_1�X6F70656E5F696E7075745F63686172735F73747265616D_2�Extend_Array�Vector_Add_Value�X7065726D75746174696F6E_2�max_x_a_eq_z�ax_eq_y�X66645F65786163746C79_3�Pl_Err_Resource�X736F727430_2�X403D3C_2�X66645F646F6D61696E_2�truth_x_neq_c_F�Peek_Byte_1�X726561645F7465726D5F66726F6D5F6368617273_3�X6162736F6C7574655F66696C655F6E616D65_2�Write_To_Chars_2�bind@@GLIBC_2.0�X736574617267_4�Format_2�X24246765745F77726974655F6F7074696F6E73322F315F2461757832_1�fd_element_var�X24666F726B5F70726F6C6F672F315F2461757831_1�Check_For_Un_In_Code�_fini�X24636865636B5F61746F6D5F6F725F61746F6D5F6C69737432_1�X2473686F775F6C65617368696E675F696E666F_0�lseek@@GLIBC_2.0�fcntl@@GLIBC_2.0�Put_Integer�X24636F6E73756C7432_1�memcpy@@GLIBC_2.0�Get_Byte_2�Unknown_Pred_Error�sqrt@@GLIBC_2.0�def_global_size�Stream_Get_Key�type_boolean�truth_x_plus_c_gte_y�x_or_y_eq_b�X73725F6572726F725F66726F6D5F657863657074696F6E_2�X24636865636B5F696E5F6368617261637465725F636F6465_1�permission_operation_create�X24746F705F6C6576656C32_0�Set_C_Bip_Name�X66696C655F70726F7065727479_2�X2473725F77726974655F6572726F722F325F2461757831_6�X2424657865635F71756572792F325F2461757831_3�X2473725F726561645F7465726D2F345F2461757831_3�Lookup_Oper_Any_Type�X7365746F66_3�ax_eq_y_F�X73725F6765745F696E636C7564655F6C697374_2�Blt_G_Test_Set_Bit�Fd_Element_Var_I_To_V�BC_Emulate_Pred�fclose@@GLIBC_2.1�Rd_Callable�X24747261696C5F68616E646C6572_1�Fd_Domain_Bool_1�X65786563_4�X247365745F77726974655F64656661756C7473_0�Blt_Term_Lt�M_Mktemp�X242477726974655F696E64696361746F722F305F2461757832_2�__ctype_toupper_loc@@GLIBC_2.3�Socket_Connect_4�LE_Printf�le_hook_displ_str�getsockname@@GLIBC_2.0�strrchr@@GLIBC_2.0�Unify_Nil�a_power_n_eq_y_F�X24706C5F6572725F74797065_2�X736565696E67_1�Delete_Str_Stream�X2473686F775F6C65617368696E675F696E666F32_1�Unify_Variable�Pred_Prop_Prolog_File_2�Rd_In_Byte_Check�X726561645F6E756D626572_1�Unify_Atom_Tagged�Create_Choice_Point4�X696E7465676572_1�ensure_reserved�X2473686F775F756E646566696E65645F616374696F6E_0�Current_Char_Conversion_Alt_0�__strdup@@GLIBC_2.0�Read_Number�x_eq_y�X675F746573745F7365745F626974_2�X675F646563_2�X24246765745F636C6F73655F6F7074696F6E73322F315F2461757831_1�Open_3�Stream_Set_Position_LC�Strdup_Check�rmdir@@GLIBC_2.0�Pred_Prop_Static_1�Temporary_File_3�X74656D706F726172795F66696C65_3�Stdio_Set_Buffering�Fd_Element_Var_I�X233D23_2�X6765745F636F6465_1�le_hook_kbd_is_not_empty�Mk_Codes�X6372656174655F70697065_2�type_integer�Current_Mirror_Alt_0�Stream_Line_Column_3�truth_x_eq_y_F�Read_Term_From_Chars_5�Check_For_Un_In_Char�Sys_Var_Put_2�Delete_Dynamic_Clause�domain_io_mode�closedir@@GLIBC_2.0�X6B6579736F7274_2�domain_close_option�X2463616C6C5F696E7465726E616C_2�Call_With_Args_7�gettimeofday@@GLIBC_2.0�X7365745F73656564_1�Make_Directory_1�Blt_Term_Eq�Fct_Exp�M_System_Time�Add_Stream_Mirror_2�X24706C5F6572725F6576616C756174696F6E_1�X726561645F6E756D626572_2�m_os_type�X736F636B65745F6C697374656E_2�X247573655F6361746368_0�Blt_G_Inco�X247379735F7661725F72657365745F626974_2�srand@@GLIBC_2.0�Display_1�Fd_Prolog_To_Array_Fdv�X247365745F64656275676765725F73747265616D73_2�Range_Mod_Range�LE_Emit_Beep�x_neq_y�Blt_G_Dec�X247379735F7661725F696E63_1�X246463675F7472616E735F626F6479_4�X2473686F775F756E646566696E65645F616374696F6E31_1�X7368656C6C_2�X247573655F6C697374_0�Stream_Gets_Prompt�X2473725F73696D706C5F6572726F72_5�opendir@@GLIBC_2.0�Rd_Callable_Check�X77726974655F7465726D5F746F5F636F646573_3�domain_stream_or_alias�X6F70656E5F696E7075745F61746F6D5F73747265616D_2�X235C5C5C5C2F_2�gethostname@@GLIBC_2.0�Get_Char_2�Hash_Find�Fd_Create_C_Frame�X24246261676F662F345F2461757832_2�open@@GLIBC_2.0�Mk_String�X24656E7669726F6E5F616C74_0�X736F636B65745F636F6E6E656374_4�Write_To_Atom_2�X242464656275675F706F72745F69676E6F72652F345F2461757831_3�X66645F6861735F766563746F72_1�X2463757272656E745F616C696173_2�type_in_byte�X73747265616D5F70726F7065727479_2�atom_top_level_input�X2473725F77726974655F6572726F722F345F2461757831_4�X246C656E677468_3�Un_In_Char�abs_x_minus_y_eq_z�x_eq_c�X246173736F635F736F636B65745F73747265616D73_3�vec_size�X7772697465715F746F5F636F646573_2�m_architecture�X72616E646F6D_1�X6E616D65_2�Stream_Prop_Reposition_2�LE_Compl_Del_Word�X24636865636B5F68656164_1�Rd_Proper_List_Check�Mk_Float�X24756E77696E64_1�X247365745F62696E645F7661726961626C65735F64656661756C7473_0�LE_Get_Key�X6F70_3�M_Spawn_Redirect�stm_stdin�gethostbyname@@GLIBC_2.0�atom_binary�sigemptyset@@GLIBC_2.0�atom_debugger_input�Fct_Asin�Un_Integer_Check�At_End_Of_Stream_1�Blt_G_Inc�Rd_String�LE_Open_Terminal�Nl_0�Stream_Prop_File_Name_2�X2463757272656E745F73747265616D5F616C74_0�X24636C61757365_3�X232F5C5C_2�X6E7468_3�X242464656275675F657865635F636D642F365F2461757831_1�X7365745F6C696E656469745F70726F6D7074_1�Switch_On_Integer�Fct_Float_Integ_Part�Fd_Assign_Value�X24706F72747261795F636C61757365_2�X242466645F6C6162656C696E672F325F2461757831_4�Full_Var_Div_Var�Stream_Printf�X24246765745F77726974655F6F7074696F6E73322F315F2461757836_1�byte_len�Hash_Table_Size�Current_Op_Alt_0�Blt_Non_Fd_Var�Copy_Term�getpwnam@@GLIBC_2.0�X2464656275675F69735F64656275675F707265646963617465_1�Stop_Prolog�X247573655F7372635F726472_0�X73725F6765745F6572726F725F636F756E74657273_3�X6E6C_0�exit@@GLIBC_2.0�Format_To_Codes_3�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757831_1�atom_top_level_output�X2463616C6C5F696E7465726E616C5F6F72_4�X24746F705F6C6576656C5F73746F70_0�Fct_Atan�Mk_Proper_List�Add_Alias_To_Stream�X242473725F74726561745F7465726D2F325F2461757831_2�X66645F73697A65_2�X24617070656E642F315F2461757831_2�Check_For_Un_Float�Get_Print_Stm_1�X73656E645F7369676E616C_2�X73725F6F70656E_3�X247365652F315F2461757831_2�calloc@@GLIBC_2.0�Read_Pl_State_File�X6973_2�X247573655F66645F76616C756573_0�X246D61785F6C69737431_3�Vector_Full�X2464656275675F706F72745F707265747479_2�atom_stream_position�X2463686F6963655F706F696E745F696E666F_4�Environ_Alt_0�Rd_Codes_Check�Father_Of_Aux_Name_3�Get_Key_No_Echo_1�ax_plus_y_eq_z_F�X6C696E655F706F736974696F6E_2�Un_String_Check�Full_Nth_Root�X65786563_5�Create_Allocate_Atom�X247573655F707265747479_0�X736F727430_1�Line_Count_2�Mk_Byte�X2464656275675F706F72745F69676E6F7265_4�X666C6F6174_1�X2464656275675F7377697463685F6F6E_1�Hash_First�Define_Vector_Size�Un_Chars�Atom_Concat_3�Range_To_String�sscanf@@GLIBC_2.0�X70726F6C6F675F66696C655F6E616D65_2�Get_Current_Bip�_edata�X3E_2�X246765745F636C6F73655F6F7074696F6E7331_1�X247363616E5F64796E5F6A756D705F616C74_0�atom_tbl�min_x_y_eq_z�__i686.get_pc_thunk.bx�_IO_putc@@GLIBC_2.0�Sub_Atom_Alt_0�Sqrt_Exact�X66645F6C6162656C696E67_2�Switch_On_Term�Sys_Var_Set_Bit_2�X736F636B65745F62696E64_2�fd_atmost�free@@GLIBC_2.0�Create_Atom�Read_2�Fd_Add_List_Dependency�_end�X2E_2�Get_Key_1�ioctl@@GLIBC_2.0�X2463757272656E745F7072656469636174655F62697073_1�X66696E645F6C696E656469745F636F6D706C6574696F6E_2�X675F72657365745F626974_2�Start_Prolog�X63616C6C5F776974685F61726773_4�Prime_Range�X756E6765745F63686172_2�X61626F6C697368_1�truth_x_lt_y�X73725F6765745F706F736974696F6E_3�Stream_Set_Position�Check_For_Un_String�X72616E646F6D697A65_0�X2465786563_5�X3C_2�min_x_a_eq_z�Un_Callable�X675F746573745F72657365745F626974_2�X2463757272656E745F61746F6D5F616C74_0�Blt_Non_Var�X24636865636B5F707265645F70726F70_1�getcwd@@GLIBC_2.0�X24726574726163745F6C6173745F666F756E64_0�X24246765745F77726974655F6F7074696F6E73322F315F2461757835_1�Copy_Clause_To_Heap�Fd_Atleast�Un_Proper_List_Check�X2424657870616E645F7465726D312F325F2461757831_2�Peek_Byte_2�Blt_Gte�Realloc_Check�isatty@@GLIBC_2.0�X24246765745F6F70656E5F73746D2F325F2461757831_2�stm_top_level_output�Un_Char�Range_Sub_Range�X77726974655F666F66_1�Create_Swt_Table�acos@@GLIBC_2.0�memset@@GLIBC_2.0�X726561645F696E7465676572_1�Un_Code�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757833_1�connect@@GLIBC_2.0�Rd_List�X233D3D3E_2�stdin@@GLIBC_2.0�X2463686F6963655F706F696E745F617267_3�X247573655F636F6E73745F696F_0�X2464656275675F636865636B5F626970_2�X66696C655F7065726D697373696F6E_2�X235C5C2F_2�Un_Proper_List�X736565_1�X666F726D6174_2�Create_Pred�X62696E645F7661726961626C6573_2�resource_print_object_not_linked�Unify_Void�Write_Term_1�X6C6F6164_1�X2466696E645F6C696E656469745F636F6D706C6574696F6E5F616C74_0�Call_With_Args_10�X72656164_1�X617267756D656E745F76616C7565_2�Detect_If_Aux_Name�X6C65617368_1�atom_true�X246E746832_4�existence_sr_descriptor�Most_Significant_Bit�Reset_Prolog_In_Signal�Create_Functor_Arity_Tagged�X246C61737431_3�Format_To_Chars_3�Full_Sqrt_Var�X617263686974656374757265_1�X247468726F775F696E7465726E616C_2�Globalize_If_In_Local�X66645F646F6D_2�X2463757272656E745F636861725F636F6E76657273696F6E5F616C74_0�Sys_Var_Read_2�Vector_Mul_Value�SR_Set_Error_Counters_3�Range_Next_After�X247365745F6F70656E5F64656661756C7473_0�Calloc_Check�Rd_Chars_Str_Check�Sub_Atom_5�truth_x_lte_c�X73725F77726974655F6572726F72_4�Fd_All_Different_1�X246C6F616431_1�X242464656275675F706F72745F69676E6F72652F345F2461757833_3�Syntax_Error�Blt_Atomic�X726561645F696E7465676572_2�M_Spawn�Fct_Fast_Abs�Statistics_Local_Stack_2�X246765745F686561645F616E645F626F6479_3�X2464656275675F63616C6C31_8�strncpy@@GLIBC_2.0�Range_Set_Value�X24636865636B5F6C697374_1�domain_character_code_list�Un_Number_Check�X2424636F6E73756C74322F315F2461757833_2�X247573655F6C655F696E74657266_0�Group_Solutions_Alt_0�Writeq_To_Codes_2�X24636174636831_4�Set_Last_Syntax_Error�X24657865635F636D6431_1�X24726561645F72657475726E_0�X636C6F73655F696E7075745F63686172735F73747265616D_1�Fct_Dec�x_plus_c_eq_y�Dcg_Trans_Body_4�Format_3�Blt_Compare�Fct_Sin�fopen@@GLIBC_2.1�dup@@GLIBC_2.0�Call_With_Args_2�type_fd_bool_evaluable�Fct_Inc�X3D_2�domain_os_path�permission_operation_input�Call_With_Args_8�Put_List�X67656E657269635F766172_1�X61746F6D5F636F646573_2�Mk_Compound�X2424657865635F636D645F6C696E655F676F616C2F315F2461757831_1�_setjmp@@GLIBC_2.0�X24666F725F616C74_0�Fct_Sub�truth_x_plus_c_neq_y�X675F696E63_3�X6765745F62797465_2�Put_Char_2�SR_Get_Include_Stream_List_2�Context_Error_1�Vector_Mod_Vector�X242473725F646972656374697665312F325F2461757833_2�X7368656C6C_1�X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757833_1�X2464656275675F646973705F68656C70_0�M_Shell�X646973706C61795F746F5F6368617273_2�le_hook_get_char0�Hash_Next�SR_Stop_Module_3�X7375626C697374_2�M_Sys_Err_String�tag_tbl�Check_For_Un_Integer�SR_Get_Module_3�Fd_Bool_Meta_3�X726561645F7465726D5F66726F6D5F636F646573_3�X24636865636B5F6C6973745F6F725F7061727469616C5F6C697374_1�X63616C6C5F776974685F61726773_3�Peek_Code_2�Rd_In_Code_Check�escape_char�Blt_G_Test_Reset_Bit�Un_Compound�Set_Debugger_Streams_2�_IO_stdin_used�X7365745F73747265616D5F706F736974696F6E_2�X726561645F746F6B656E5F66726F6D5F6368617273_2�X726561645F746F6B656E_2�Directory_Files_2�X2463616C6C5F7465726D5F657870616E73696F6E_2�Put_Code_2�Stdio_Desc_Of_Stream�char_type�X233D_2�X756E6C696E6B_1�Blt_Term_Gte�Fd_Tell_Range_Range�X247363616E5F64796E5F746573745F616C74_0�Blt_Term_Neq�X2464656275675F706F72745F70726F6D7074_6�X242472656D6F76655F756E64657273636F72655F766172732F325F2461757831_2�X247472795F706F7274726179_1�Unset_C_Bip_Name�X726561645F7465726D_3�Call_Prolog_Next_Sol�X247573655F636861725F696F_0�strtok@@GLIBC_2.0�X2473725F73746172745F6D6F64756C65_3�sys_var�kill@@GLIBC_2.0�X77726974655F63616E6F6E6963616C_1�X246765745F62696E645F7661726961626C65735F6F7074696F6E73_4�X2424726561645F71756572792F325F2461757831_1�permission_type_operator�Delete_Oper�truth_x_lte_y�Update_Choice_Point2�SR_Check_Descriptor_1�Blt_Fast_Gte�X2463617463685F615F7468726F77_5�X77616974_2�getc@@GLIBC_2.0�SR_Start_Module_3�domain_os_file_permission�le_hook_message_box�truth_x_plus_c_eq_y�parse_dico_var�token�X2463757272656E745F70726F6C6F675F666C61675F616C74_0�Un_Char_Check�Dcg_Trans_Rule_2�permission_operation_modify�X24737461746973746963732F325F2461757831_3�Check_For_Un_Byte�Blt_G_Inc_3�X756E6966795F776974685F6F63637572735F636865636B_2�Set_Bip_Name_2�X247365745F726561645F64656661756C7473_0�Add_Mirror_To_Stream�atom_end_of_file�x_power_a_eq_y_F�X63757272656E745F6F70_3�Set_Ctrl_C_Handler_0�Hash_Insert�stm_output�Blt_List�Flush_All_Streams�X7365656B_4�Find_Stream_From_PStm�parse_nb_var�X7072696E745F746F5F6368617273_2�domain_stream_seek_method�X726561645F66726F6D5F6368617273_2�Rd_Number�Full_Find_Expon�Float_To_String�atom_user_output�Rd_Integer�Load_Left_Right�X2464656275675F706F727431_6�sprintf@@GLIBC_2.0�X403E_2�Fd_Lte_2�x_lt_y�Untrail�Read_From_Chars_2�fwrite@@GLIBC_2.0�Scan_Dynamic_Pred_Alt_0�X6368617261637465725F636F756E74_2�X247573655F66645F7072696D65_0�Fd_Size_2�Unify_Atom�Fct_Fast_Sub�X77726974655F63616E6F6E6963616C5F746F5F6368617273_2�X246372656174655F636F6C756D6E_3�__data_start�Scan_Next_Number�Blt_Gt�Fd_Dom_2�realpath@@GLIBC_2.3�sin@@GLIBC_2.0�X617267756D656E745F6C697374_1�Read_Term_From_Atom_5�Fd_Domain_2�X706F7274726179_1�X2462696E645F7661726961626C6573_4�Fd_Prolog_To_Array_Any�X73725F6765745F73697A655F636F756E74657273_3�socket@@GLIBC_2.0�Current_Prolog_Flag_2�X24636865636B5F6F776E65725F66696C6573_3�Fd_Set_Vector_Max_1�Term_Ref_2�Not_Prime_Range�X617070656E64_3�X247365745F73747265616D5F656F665F616374696F6E2F325F2461757831_1�X646174655F74696D65_1�File_Prop_Size_2�Un_Byte�_IO_getc@@GLIBC_2.0�Vector_Inter�readdir@@GLIBC_2.0�X246765745F62696E645F7661726961626C65735F6F7074696F6E7332_1�Check_Valid_Mirror_1�X24636865636B5F6C6973745F617267_2�_Jv_RegisterClasses�__ctype_b_loc@@GLIBC_2.3�X2463616C6C5F66726F6D5F6465627567676572_2�Fct_Float�le_hook_erase�X247379735F7661725F6765745F626974_3�X736574617267_3�Unify_Structure�Find_Expon_Exact�X2462635F73746172745F656D6974_0�Pl_Err_Type�X7365656E_0�Socket_2�rand@@GLIBC_2.0�Fd_List_Int_To_Range�truth_x_eq_c�X6765745F62797465_1�Recover_Generator_1�X2473725F6F70656E5F6E65775F70726F6C6F675F66696C65_1�X73796E7461785F6572726F725F696E666F_4�Read_Token_From_Codes_2�evluation_underflow�x_plus_c_neq_y�full_ac�Hash_Free_Table�Fct_Neg�X235C5C3D3D3E_2�X247573655F61726974685F696E6C_0�Blt_Arg�Rd_Codes_Str_Check�X2464656275675F657865635F636D64_6�X636C6F7365_2�X242464656275675F63616C6C5F706F72742F355F2461757831_3�Writeq_To_Atom_2�Save_Call_Info_3�X636F6E73756C74_1�Rd_Char_Check�bsearch@@GLIBC_2.0�log@@GLIBC_2.0�fd_copy_variable�X2424746F705F6C6576656C322F305F2461757832_1�X7365745F70726F6C6F675F666C6167_2�X73797374656D_2�quot_rem_x_a_r_eq_z�X77616D5F6465627567_0�Real_Time_1�fd_unify_with_integer�X3D2E2E_2�X242464656275675F706F72745F69676E6F72652F345F2461757832_5�X242464656275675F77726974655F676F616C2F345F2461757831_2�Emit_Ctrl_C�X24696E69745F6465627567676572_0�X247365745F73747265616D5F656F665F616374696F6E2F325F2461757832_2�Call_With_Args_1�Fd_Prolog_To_Range�escape_symbol�Char_Conversion_2�tcgetattr@@GLIBC_2.0�LE_Put_Char�Un_Codes_Check�X2424636865636B5F696E5F6368617261637465725F636F64652F315F2461757831_1�read@@GLIBC_2.0�Print_To_Chars_2�representation_too_many_variables�Indomain_2�quot_rem_a_y_r_eq_z_F�X736F636B65745F616363657074_3�Blt_Lt�glob_dico_var�X247379735F7661725F7772697465_2�X24696E646F6D61696E5F6D696E5F616C74_0�Stop_Mark_1�Copy_Contiguous_Term�TP�X24657865635F7175657279_2�Current_Input_1�X2463617463685F696E7465726E616C_4�x_plus_c_gte_y�X675F646563_1�Get_Structure_Tagged�LE_Ins_Mode�Range_Reset_Value�pi_arity_word�Portray_Clause_2�X2463757272656E745F73747265616D_1�Io_Fileno_Of_Stream�X63616C6C5F776974685F61726773_7�X246765745F6F70656E5F6F7074696F6E73_1�X666F726D61745F746F5F6368617273_3�Create_Choice_Point2�Peek_Char_1�LE_Kbd_Is_Not_Empty�Get_Key_No_Echo_2�Sys_Var_Reset_Bit_2�Range_Test_Value�X64656C6574655F6469726563746F7279_1�X2466645F646F6D61696E_3�Socket_Listen_2�X247375626C69737431_3�X66696C655F657869737473_1�X2424746F705F6C6576656C322F305F2461757834_3�ax_plus_y_plus_z_eq_t_F�Get_Nil�x_or_y_eq_1�LE_Screen_Size�Pred_Prop_Built_In_1�Read_From_Atom_2�X73746174697374696373_2�X636C6F73655F6F75747075745F63686172735F73747265616D_2�Absolute_File_Name_2�type_number�Fd_Vector_Max_1�Sort_List_1�atom_void�__gmon_start__�strcpy@@GLIBC_2.0�Recover_After_Error�min_x_a_eq_z_F�X247573655F6F735F696E74657266_0�le_hook_displ�Unget_Byte_1�
  2171 70604:5�OA������abi-note.S�../sysdeps/i386/elf/start.S�init.c�initfini.c�/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crti.S�call_gmon_start�crtstuff.c�__CTOR_LIST__�__DTOR_LIST__�__JCR_LIST__�p.0�completed.1�__do_global_dtors_aux�frame_dummy�__CTOR_END__�__DTOR_END__�__FRAME_END__�__JCR_END__�__do_global_ctors_aux�/build/buildd/glibc-2.3.6/build-tree/i386-libc/csu/crtn.S�obj_begin.c�fail�Lpred1_3�Lpred1_1�st�Lpred1_2�Lpred1_sub_0�Lpred1_14�Lpred1_sub_1�Lpred1_16�Lpred1_18�Lpred1_5�Lpred1_4�fn�ta�Lpred1_7�Lpred1_6�Lpred1_9�Lpred1_8�Lpred1_11�Lpred1_10�Lpred1_13�Lpred1_12�Lpred1_15�Lpred1_17�Lpred1_19�Lpred1_20�Lpred4_1�directive_1�directive_2�directive_3�directive_4�directive_5�directive_6�directive_7�directive_8�directive_9�directive_10�directive_11�directive_12�directive_13�directive_14�directive_15�directive_16�directive_17�directive_18�directive_19�directive_20�Object_Initializer�System_Directives�User_Directives�at�obj_chain_start�obj_chain_stop�Lpred3_1�Lpred10_1�Lpred12_1�Lpred13_1�Lpred14_1�Lpred15_1�Lpred16_1�Lpred17_1�Lpred18_1�Lpred18_2�Lpred19_1�Lpred20_2�Lpred20_1�Lpred20_4�Lpred20_3�Lpred20_6�Lpred20_5�Lpred20_7�Lpred21_1�Lpred22_1�Lpred24_1�Lpred25_1�Lpred27_2�Lpred27_3�Lpred27_1�Lpred27_sub_0�Lpred27_5�Lpred27_7�Lpred27_4�Lpred27_6�Lpred28_1�Lpred29_1�Lpred30_1�Lpred31_1�Lpred31_2�Lpred31_4�Lpred31_3�Lpred33_10�Lpred33_2�Lpred33_1�Lpred33_5�Lwork0�Lpred33_3�Lpred33_9�Lpred33_7�Lpred33_4�Lpred33_6�Lpred33_8�Lpred34_1�Lpred36_1�ensure_linked�Lpred10_2�Lpred10_4�Lpred10_3�Lpred10_6�Lpred10_5�Lpred10_7�Lpred12_13�Lpred12_3�Lpred12_2�Lpred12_5�Lpred12_4�Lpred12_7�Lpred12_6�Lpred12_9�Lpred12_8�Lpred12_11�Lpred12_10�Lpred12_12�Lpred12_14�Lpred13_2�Lpred13_4�Lpred13_3�Lpred18_4�Lpred18_3�Lpred18_6�Lpred18_5�Lpred18_8�Lpred18_7�Lpred18_10�Lpred18_9�Lpred18_11�Lpred21_2�Lpred23_1�Lpred26_1�Lpred29_2�Lpred29_4�Lpred29_3�Lpred32_1�Lpred35_1�Lpred36_8�Lpred36_2�Lpred36_3�Lpred36_5�Lpred36_7�Lpred36_4�Lpred36_6�Lpred36_9�Lpred37_1�Lpred37_2�Lpred37_3�Lpred38_1�Lpred39_1�Lpred39_2�Lpred40_1�Lpred41_23�Lpred41_3�Lpred41_1�Lpred41_2�Lpred41_5�Lpred41_4�Lpred41_7�Lpred41_6�Lpred41_9�Lpred41_8�Lpred41_11�Lpred41_10�Lpred41_13�Lpred41_12�Lpred41_15�Lpred41_14�Lpred41_17�Lpred41_16�Lpred41_19�Lpred41_18�Lpred41_21�Lpred41_20�Lpred41_22�Lpred42_1�Lpred42_2�Lpred42_4�Lpred42_3�Lpred43_1�Lpred43_2�Lpred44_1�Lpred46_1�Lpred47_1�Lpred50_1�Lpred51_1�Lpred52_4�Lpred52_1�Lpred52_3�Lpred52_2�Lpred52_sub_0�Lpred52_7�Lpred52_9�Lpred52_6�Lpred52_5�Lpred52_8�Lpred52_10�Lpred52_12�Lpred52_11�Lpred52_14�Lpred52_13�Lpred52_15�Lpred53_1�Lpred54_1�Lpred55_1�Lpred57_1�Lpred60_1�Lpred60_66�Lpred60_6�Lpred60_2�Lpred60_3�Lpred60_sub_0�Lpred60_11�Lpred60_13�Lpred60_4�Lpred60_sub_1�Lpred60_17�Lpred60_19�Lpred60_5�Lpred60_sub_2�Lpred60_21�Lpred60_23�Lpred60_8�Lpred60_7�Lpred60_10�Lpred60_9�Lpred60_12�Lpred60_14�Lpred60_16�Lpred60_15�Lpred60_18�Lpred60_20�Lpred60_22�Lpred60_24�Lpred60_26�Lpred60_25�Lpred60_28�Lpred60_27�Lpred60_30�Lpred60_29�Lpred60_32�Lpred60_31�Lpred60_34�Lpred60_33�Lpred60_36�Lpred60_35�Lpred60_38�Lpred60_37�Lpred60_40�Lpred60_39�Lpred60_42�Lpred60_41�Lpred60_44�Lpred60_43�Lpred60_46�Lpred60_45�Lpred60_48�Lpred60_47�Lpred60_50�Lpred60_49�Lpred60_52�Lpred60_51�Lpred60_54�Lpred60_53�Lpred60_56�Lpred60_55�Lpred60_58�Lpred60_57�Lpred60_60�Lpred60_59�Lpred60_62�Lpred60_61�Lpred60_64�Lpred60_63�Lpred60_65�Lpred61_1�Lpred62_1�Lpred63_1�Lpred64_1�Lpred65_1�Lpred66_1�Lpred67_2�Lpred67_1�Lpred67_4�Lpred67_3�Lpred67_6�Lpred67_5�Lpred67_7�Lpred69_1�Lpred70_2�Lpred70_1�Lpred70_4�Lpred70_3�Lpred70_6�Lpred70_5�Lpred70_8�Lpred70_7�Lpred70_10�Lpred70_9�Lpred70_12�Lpred70_11�Lpred70_13�Lpred72_1�Lpred72_2�Lpred72_4�Lpred72_3�Lpred74_1�Lpred74_2�Lpred74_4�Lpred74_3�Lpred75_1�Lpred76_1�Lpred76_2�Lpred76_8�Lpred76_4�Lpred76_3�Lpred76_6�Lpred76_5�Lpred76_7�Lpred76_9�Lpred77_1�Lpred78_1�Lpred81_1�Lpred11_1�Lpred14_2�Lpred14_4�Lpred14_3�Lpred15_11�Lpred15_3�Lpred15_2�Lpred15_5�Lpred15_4�Lpred15_7�Lpred15_6�Lpred15_9�Lpred15_8�Lpred15_10�Lpred16_2�Lpred16_4�Lpred16_3�Lpred16_5�Lpred17_2�Lpred17_4�Lpred17_3�Lpred17_6�Lpred17_5�Lpred17_8�Lpred17_7�Lpred17_10�Lpred17_9�Lpred17_11�Lpred18_12�Lpred18_14�Lpred18_13�Lpred18_16�Lpred18_15�Lpred18_17�Indomain_Min�Indomain_Max�Indomain_Middle�Indomain_Limits�Indomain_Random�Cmp_First_Fail�Cmp_Most_Constrained�Cmp_Smallest�Cmp_Largest�Cmp_Max_Regret�fd_domain_bloc_1�fd_domain_r_bloc_1�x_plus_c_eq_y_bloc_1�x_plus_c_eq_y_bloc_2�x_plus_c_eq_y_F_bloc_1�x_plus_c_eq_y_F_bloc_2�x_plus_c_neq_y_bloc_1�x_plus_c_neq_y_bloc_2�x_plus_c_lte_y_bloc_1�x_plus_c_lte_y_bloc_2�x_plus_c_gte_y_bloc_1�x_plus_c_gte_y_bloc_2�ax_eq_y_bloc_1�ax_eq_y_bloc_2�x_plus_y_eq_z_bloc_1�x_plus_y_eq_z_bloc_2�x_plus_y_eq_z_bloc_3�ax_plus_y_eq_z_bloc_1�ax_plus_y_eq_z_bloc_2�ax_plus_y_eq_z_bloc_3�ax_plus_by_eq_z_bloc_1�ax_plus_by_eq_z_bloc_2�ax_plus_by_eq_z_bloc_3�x_plus_y_plus_z_eq_t_bloc_1�x_plus_y_plus_z_eq_t_bloc_2�x_plus_y_plus_z_eq_t_bloc_3�x_plus_y_plus_z_eq_t_bloc_4�ax_plus_y_plus_z_eq_t_bloc_1�ax_plus_y_plus_z_eq_t_bloc_2�ax_plus_y_plus_z_eq_t_bloc_3�ax_plus_y_plus_z_eq_t_bloc_4�ax_plus_by_plus_z_eq_t_bloc_1�ax_plus_by_plus_z_eq_t_bloc_2�ax_plus_by_plus_z_eq_t_bloc_3�ax_plus_by_plus_z_eq_t_bloc_4�ax_eq_y_F_bloc_1�ax_eq_y_F_bloc_2�x_plus_y_eq_z_F_bloc_1�x_plus_y_eq_z_F_bloc_2�x_plus_y_eq_z_F_bloc_3�ax_plus_y_eq_z_F_bloc_1�ax_plus_y_eq_z_F_bloc_2�ax_plus_y_eq_z_F_bloc_3�ax_plus_by_eq_z_F_bloc_1�ax_plus_by_eq_z_F_bloc_2�ax_plus_by_eq_z_F_bloc_3�x_plus_y_plus_z_eq_t_F_bloc_1�x_plus_y_plus_z_eq_t_F_bloc_2�x_plus_y_plus_z_eq_t_F_bloc_3�x_plus_y_plus_z_eq_t_F_bloc_4�ax_plus_y_plus_z_eq_t_F_bloc_1�ax_plus_y_plus_z_eq_t_F_bloc_2�ax_plus_y_plus_z_eq_t_F_bloc_3�ax_plus_y_plus_z_eq_t_F_bloc_4�ax_plus_by_plus_z_eq_t_F_bloc_1�ax_plus_by_plus_z_eq_t_F_bloc_2�ax_plus_by_plus_z_eq_t_F_bloc_3�ax_plus_by_plus_z_eq_t_F_bloc_4�a_power_n_eq_y_bloc_1�a_power_n_eq_y_bloc_2�x_power_a_eq_y_bloc_1�x_power_a_eq_y_bloc_2�xy_eq_z_bloc_1�xy_eq_z_bloc_2�xy_eq_z_bloc_3�a_power_n_eq_y_F_bloc_1�a_power_n_eq_y_F_bloc_2�x_power_a_eq_y_F_bloc_1�x_power_a_eq_y_F_bloc_2�xy_eq_z_F_bloc_1�xy_eq_z_F_switch_1_inst�min_x_y_eq_z_bloc_1�min_x_y_eq_z_bloc_2�min_x_y_eq_z_bloc_3�min_x_y_eq_z_bloc_4�min_x_y_eq_z_bloc_5�min_x_y_eq_z_switch_1_inst�min_x_a_eq_z_bloc_1�min_x_a_eq_z_bloc_2�min_x_a_eq_z_bloc_3�min_x_a_eq_z_bloc_4�min_x_a_eq_z_switch_1�min_x_a_eq_z_case_group_1�min_x_y_eq_z_F_bloc_1�min_x_y_eq_z_F_bloc_2�min_x_y_eq_z_F_bloc_3�min_x_y_eq_z_F_bloc_4�min_x_y_eq_z_F_bloc_5�min_x_y_eq_z_F_switch_1_inst�min_x_a_eq_z_F_bloc_1�min_x_a_eq_z_F_bloc_2�min_x_a_eq_z_F_bloc_3�min_x_a_eq_z_F_bloc_4�min_x_a_eq_z_F_switch_1�min_x_a_eq_z_F_case_group_1�max_x_y_eq_z_bloc_1�max_x_y_eq_z_bloc_2�max_x_y_eq_z_bloc_3�max_x_y_eq_z_bloc_4�max_x_y_eq_z_bloc_5�max_x_y_eq_z_switch_1_inst�max_x_a_eq_z_bloc_1�max_x_a_eq_z_bloc_2�max_x_a_eq_z_bloc_3�max_x_a_eq_z_bloc_4�max_x_a_eq_z_switch_1�max_x_a_eq_z_case_group_1�max_x_y_eq_z_F_bloc_1�max_x_y_eq_z_F_bloc_2�max_x_y_eq_z_F_bloc_3�max_x_y_eq_z_F_bloc_4�max_x_y_eq_z_F_bloc_5�max_x_y_eq_z_F_switch_1_inst�max_x_a_eq_z_F_bloc_1�max_x_a_eq_z_F_bloc_2�max_x_a_eq_z_F_bloc_3�max_x_a_eq_z_F_bloc_4�max_x_a_eq_z_F_switch_1�max_x_a_eq_z_F_case_group_1�abs_x_minus_y_eq_z_bloc_1�abs_x_minus_y_eq_z_bloc_2�abs_x_minus_y_eq_z_bloc_3�abs_x_minus_y_eq_z_switch_1_inst�abs_x_minus_a_eq_z_bloc_1�abs_x_minus_a_eq_z_bloc_2�abs_x_minus_a_eq_z_switch_1�abs_x_minus_a_eq_z_case_group_2�abs_x_minus_a_eq_z_case_group_1�abs_x_minus_y_eq_z_F_bloc_1�abs_x_minus_y_eq_z_F_bloc_2�abs_x_minus_y_eq_z_F_bloc_3�abs_x_minus_y_eq_z_F_switch_1_inst�abs_x_minus_a_eq_z_F_bloc_1�abs_x_minus_a_eq_z_F_bloc_2�abs_x_minus_a_eq_z_F_switch_1�abs_x_minus_a_eq_z_F_case_group_2�abs_x_minus_a_eq_z_F_case_group_1�quot_rem_x_y_r_eq_z_bloc_1�quot_rem_x_y_r_eq_z_bloc_2�quot_rem_x_y_r_eq_z_bloc_3�quot_rem_x_y_r_eq_z_bloc_4�quot_rem_x_y_r_eq_z_bloc_5�quot_rem_x_y_r_eq_z_bloc_6�quot_rem_x_y_r_eq_z_bloc_7�quot_rem_x_y_r_eq_z_switch_1�quot_rem_x_y_r_eq_z_bloc_8_inst�quot_rem_a_y_r_eq_z_bloc_1�quot_rem_a_y_r_eq_z_bloc_2�quot_rem_a_y_r_eq_z_bloc_3�quot_rem_a_y_r_eq_z_bloc_4�quot_rem_a_y_r_eq_z_bloc_5�quot_rem_a_y_r_eq_z_switch_1�quot_rem_a_y_r_eq_z_bloc_6_inst�quot_rem_x_a_r_eq_z_bloc_1�quot_rem_x_a_r_eq_z_bloc_2�quot_rem_x_a_r_eq_z_bloc_3�quot_rem_x_a_r_eq_z_bloc_4�quot_rem_x_a_r_eq_z_bloc_5�quot_rem_x_y_r_eq_z_F_bloc_1�quot_rem_x_y_r_eq_z_F_bloc_2�quot_rem_x_y_r_eq_z_F_bloc_3�quot_rem_x_y_r_eq_z_F_bloc_4�quot_rem_x_y_r_eq_z_F_bloc_5�quot_rem_x_y_r_eq_z_F_bloc_6�quot_rem_x_y_r_eq_z_F_bloc_7�quot_rem_x_y_r_eq_z_F_switch_1�quot_rem_x_y_r_eq_z_F_bloc_8_inst�quot_rem_a_y_r_eq_z_F_bloc_1�quot_rem_a_y_r_eq_z_F_bloc_2�quot_rem_a_y_r_eq_z_F_bloc_3�quot_rem_a_y_r_eq_z_F_bloc_4�quot_rem_a_y_r_eq_z_F_bloc_5�quot_rem_a_y_r_eq_z_F_switch_1�quot_rem_a_y_r_eq_z_F_bloc_6_inst�quot_rem_x_a_r_eq_z_F_bloc_1�quot_rem_x_a_r_eq_z_F_bloc_2�quot_rem_x_a_r_eq_z_F_bloc_3�quot_rem_x_a_r_eq_z_F_bloc_4�quot_rem_x_a_r_eq_z_F_bloc_5�x_eq_y_bloc_1�x_eq_y_bloc_2�x_eq_y_F_bloc_1�x_eq_y_F_bloc_2�x_neq_y_bloc_1_inst�x_neq_y_bloc_2_inst�x_lt_y_bloc_1�x_lt_y_bloc_2�x_lte_c_bloc_1�x_lte_y_bloc_1�x_lte_y_bloc_2�x_gte_c_bloc_1�zero_power_n_eq_y_bloc_1�zero_power_n_eq_y_bloc_2�x2_eq_y_bloc_1�x2_eq_y_bloc_2�x2_eq_y_F_bloc_1�x2_eq_y_F_bloc_2�x_neq_y_bloc_1�x_neq_y_bloc_2�xy_eq_z_F_switch_1�min_x_y_eq_z_switch_1�min_x_y_eq_z_case_group_2�min_x_y_eq_z_case_group_1�min_x_a_eq_z_bloc_5�min_x_a_eq_z_bloc_6�min_x_y_eq_z_F_switch_1�min_x_a_eq_z_F_bloc_5�min_x_a_eq_z_F_bloc_6�max_x_y_eq_z_switch_1�max_x_y_eq_z_case_group_2�max_x_y_eq_z_case_group_1�max_x_a_eq_z_bloc_5�max_x_a_eq_z_bloc_6�max_x_y_eq_z_F_switch_1�max_x_a_eq_z_F_bloc_5�max_x_a_eq_z_F_bloc_6�abs_x_minus_y_eq_z_switch_1�abs_x_minus_y_eq_z_case_group_2�abs_x_minus_y_eq_z_case_group_1�abs_x_minus_a_eq_z_bloc_3�abs_x_minus_a_eq_z_bloc_4�abs_x_minus_a_eq_z_bloc_5�abs_x_minus_a_eq_z_bloc_6�abs_x_minus_y_eq_z_F_switch_1�abs_x_minus_y_eq_z_F_case_group_2�abs_x_minus_y_eq_z_F_case_group_1�abs_x_minus_a_eq_z_F_bloc_3�abs_x_minus_a_eq_z_F_bloc_4�abs_x_minus_a_eq_z_F_bloc_5�abs_x_minus_a_eq_z_F_bloc_6�quot_rem_x_y_r_eq_z_bloc_8�quot_rem_a_y_r_eq_z_bloc_6�quot_rem_x_y_r_eq_z_F_bloc_8�quot_rem_a_y_r_eq_z_F_bloc_6�xy_eq_z_F_case_group_1�xy_eq_z_F_bloc_5�xy_eq_z_F_bloc_6�min_x_y_eq_z_bloc_6�min_x_y_eq_z_bloc_7�min_x_y_eq_z_bloc_8�min_x_y_eq_z_bloc_9�min_x_y_eq_z_F_case_group_1�min_x_y_eq_z_F_case_group_2�max_x_y_eq_z_bloc_6�max_x_y_eq_z_bloc_7�max_x_y_eq_z_bloc_8�max_x_y_eq_z_bloc_9�max_x_y_eq_z_F_case_group_1�max_x_y_eq_z_F_case_group_2�abs_x_minus_y_eq_z_bloc_4�abs_x_minus_y_eq_z_bloc_5�abs_x_minus_y_eq_z_bloc_6�abs_x_minus_y_eq_z_bloc_7�abs_x_minus_y_eq_z_bloc_8�abs_x_minus_y_eq_z_bloc_9�abs_x_minus_y_eq_z_F_bloc_4�abs_x_minus_y_eq_z_F_bloc_5�abs_x_minus_y_eq_z_F_bloc_6�abs_x_minus_y_eq_z_F_bloc_7�abs_x_minus_y_eq_z_F_bloc_8�abs_x_minus_y_eq_z_F_bloc_9�xy_eq_z_F_bloc_2�xy_eq_z_F_bloc_3�xy_eq_z_F_bloc_4�min_x_y_eq_z_F_bloc_6�min_x_y_eq_z_F_bloc_7�min_x_y_eq_z_F_bloc_8�min_x_y_eq_z_F_bloc_9�max_x_y_eq_z_F_bloc_6�max_x_y_eq_z_F_bloc_7�max_x_y_eq_z_F_bloc_8�max_x_y_eq_z_F_bloc_9�Fd_Bool_Initializer�bool_tbl�bool_xor�Set_Not�func_tbl�Set_Equiv�Set_Nequiv�Set_Imply�Set_Nimply�Set_And�Set_Nand�Set_Or�Set_Nor�Set_Eq�Set_Neq�Set_Lt�Set_Lte�Set_Zero�Set_One�stack�sp�vars_tbl�vars_sp�Simplify�Load_Bool_Into_Word�Add_Fd_Variables�Set_Var�x_equiv_y_eq_b_bloc_1�x_equiv_y_eq_b_bloc_2�x_equiv_y_eq_b_bloc_3�x_nequiv_y_eq_b_bloc_1�x_nequiv_y_eq_b_bloc_2�x_nequiv_y_eq_b_bloc_3�x_imply_y_eq_b_bloc_1�x_imply_y_eq_b_bloc_2�x_imply_y_eq_b_bloc_3�x_nimply_y_eq_b_bloc_1�x_nimply_y_eq_b_bloc_2�x_nimply_y_eq_b_bloc_3�x_and_y_eq_b_bloc_1�x_and_y_eq_b_bloc_2�x_and_y_eq_b_bloc_3�x_nand_y_eq_b_bloc_1�x_nand_y_eq_b_bloc_2�x_nand_y_eq_b_bloc_3�x_or_y_eq_b_bloc_1�x_or_y_eq_b_bloc_2�x_or_y_eq_b_bloc_3�x_nor_y_eq_b_bloc_1�x_nor_y_eq_b_bloc_2�x_nor_y_eq_b_bloc_3�truth_x_eq_c_switch_1_inst�truth_x_eq_y_switch_1_inst�truth_x_plus_c_eq_y_switch_1_inst�truth_x_eq_c_F_switch_1_inst�truth_x_eq_y_F_switch_1_inst�truth_x_plus_c_eq_y_F_switch_1_inst�truth_x_neq_c_switch_1_inst�truth_x_neq_y_switch_1_inst�truth_x_plus_c_neq_y_switch_1_inst�truth_x_neq_c_F_switch_1_inst�truth_x_neq_y_F_switch_1_inst�truth_x_plus_c_neq_y_F_switch_1_inst�truth_x_lt_y_switch_1_inst�truth_x_lte_c_switch_1_inst�truth_x_lte_y_switch_1_inst�truth_x_plus_c_lte_y_switch_1_inst�truth_x_gte_c_switch_1_inst�truth_x_plus_c_gte_y_switch_1_inst�not_x_eq_b_bloc_1_inst�not_x_eq_b_bloc_2_inst�x_imply_y_eq_1_bloc_1�x_imply_y_eq_1_bloc_2�x_and_y_eq_0_bloc_1�x_and_y_eq_0_bloc_2�x_or_y_eq_1_bloc_1�x_or_y_eq_1_bloc_2�not_x_eq_b_bloc_1�not_x_eq_b_bloc_2�truth_x_eq_c_switch_1�truth_x_eq_y_switch_1�truth_x_plus_c_eq_y_switch_1�truth_x_eq_c_F_switch_1�truth_x_eq_y_F_switch_1�truth_x_plus_c_eq_y_F_switch_1�truth_x_neq_c_switch_1�truth_x_neq_y_switch_1�truth_x_plus_c_neq_y_switch_1�truth_x_neq_c_F_switch_1�truth_x_neq_y_F_switch_1�truth_x_plus_c_neq_y_F_switch_1�truth_x_lt_y_switch_1�truth_x_lte_c_switch_1�truth_x_lte_y_switch_1�truth_x_plus_c_lte_y_switch_1�truth_x_gte_c_switch_1�truth_x_plus_c_gte_y_switch_1�truth_x_eq_c_bloc_3�truth_x_eq_c_bloc_4�truth_x_eq_c_bloc_2�truth_x_eq_c_bloc_1�truth_x_eq_y_bloc_5�truth_x_eq_y_bloc_6�truth_x_eq_y_case_group_2�truth_x_eq_y_case_group_1�truth_x_plus_c_eq_y_bloc_5�truth_x_plus_c_eq_y_bloc_6�truth_x_plus_c_eq_y_case_group_2�truth_x_plus_c_eq_y_case_group_1�truth_x_eq_c_F_bloc_4�truth_x_eq_c_F_bloc_3�truth_x_eq_c_F_bloc_2�truth_x_eq_c_F_bloc_1�truth_x_eq_y_F_bloc_6�truth_x_eq_y_F_bloc_5�truth_x_eq_y_F_case_group_2�truth_x_eq_y_F_case_group_1�truth_x_plus_c_eq_y_F_bloc_6�truth_x_plus_c_eq_y_F_bloc_5�truth_x_plus_c_eq_y_F_case_group_2�truth_x_plus_c_eq_y_F_case_group_1�truth_x_neq_c_bloc_4�truth_x_neq_c_bloc_3�truth_x_neq_c_bloc_2�truth_x_neq_c_bloc_1�truth_x_neq_y_bloc_6�truth_x_neq_y_bloc_5�truth_x_neq_y_case_group_2�truth_x_neq_y_case_group_1�truth_x_plus_c_neq_y_bloc_6�truth_x_plus_c_neq_y_bloc_5�truth_x_plus_c_neq_y_case_group_2�truth_x_plus_c_neq_y_case_group_1�truth_x_neq_c_F_bloc_4�truth_x_neq_c_F_bloc_3�truth_x_neq_c_F_bloc_2�truth_x_neq_c_F_bloc_1�truth_x_neq_y_F_bloc_6�truth_x_neq_y_F_bloc_5�truth_x_neq_y_F_case_group_2�truth_x_neq_y_F_case_group_1�truth_x_plus_c_neq_y_F_bloc_6�truth_x_plus_c_neq_y_F_bloc_5�truth_x_plus_c_neq_y_F_case_group_2�truth_x_plus_c_neq_y_F_case_group_1�truth_x_lt_y_bloc_6�truth_x_lt_y_bloc_5�truth_x_lt_y_case_group_2�truth_x_lt_y_case_group_1�truth_x_lte_c_bloc_4�truth_x_lte_c_bloc_3�truth_x_lte_c_bloc_2�truth_x_lte_c_bloc_1�truth_x_lte_y_bloc_6�truth_x_lte_y_bloc_5�truth_x_lte_y_case_group_2�truth_x_lte_y_case_group_1�truth_x_plus_c_lte_y_bloc_6�truth_x_plus_c_lte_y_bloc_5�truth_x_plus_c_lte_y_case_group_2�truth_x_plus_c_lte_y_case_group_1�truth_x_gte_c_bloc_4�truth_x_gte_c_bloc_3�truth_x_gte_c_bloc_2�truth_x_gte_c_bloc_1�truth_x_plus_c_gte_y_bloc_6�truth_x_plus_c_gte_y_bloc_5�truth_x_plus_c_gte_y_case_group_2�truth_x_plus_c_gte_y_case_group_1�truth_x_eq_y_bloc_1_inst�truth_x_eq_y_bloc_2_inst�truth_x_eq_y_bloc_3�truth_x_eq_y_bloc_4�truth_x_plus_c_eq_y_bloc_1_inst�truth_x_plus_c_eq_y_bloc_2_inst�truth_x_plus_c_eq_y_bloc_3�truth_x_plus_c_eq_y_bloc_4�truth_x_eq_y_F_bloc_1_inst�truth_x_eq_y_F_bloc_2_inst�truth_x_eq_y_F_bloc_3�truth_x_eq_y_F_bloc_4�truth_x_plus_c_eq_y_F_bloc_1_inst�truth_x_plus_c_eq_y_F_bloc_2_inst�truth_x_plus_c_eq_y_F_bloc_3�truth_x_plus_c_eq_y_F_bloc_4�truth_x_neq_y_bloc_1�truth_x_neq_y_bloc_2�truth_x_neq_y_bloc_3_inst�truth_x_neq_y_bloc_4_inst�truth_x_plus_c_neq_y_bloc_1�truth_x_plus_c_neq_y_bloc_2�truth_x_plus_c_neq_y_bloc_3_inst�truth_x_plus_c_neq_y_bloc_4_inst�truth_x_neq_y_F_bloc_1�truth_x_neq_y_F_bloc_2�truth_x_neq_y_F_bloc_3_inst�truth_x_neq_y_F_bloc_4_inst�truth_x_plus_c_neq_y_F_bloc_1�truth_x_plus_c_neq_y_F_bloc_2�truth_x_plus_c_neq_y_F_bloc_3_inst�truth_x_plus_c_neq_y_F_bloc_4_inst�truth_x_lt_y_bloc_1�truth_x_lt_y_bloc_2�truth_x_lt_y_bloc_3�truth_x_lt_y_bloc_4�truth_x_lte_y_bloc_1�truth_x_lte_y_bloc_2�truth_x_lte_y_bloc_3�truth_x_lte_y_bloc_4�truth_x_plus_c_lte_y_bloc_1�truth_x_plus_c_lte_y_bloc_2�truth_x_plus_c_lte_y_bloc_3�truth_x_plus_c_lte_y_bloc_4�truth_x_plus_c_gte_y_bloc_1�truth_x_plus_c_gte_y_bloc_2�truth_x_plus_c_gte_y_bloc_3�truth_x_plus_c_gte_y_bloc_4�truth_x_eq_y_bloc_1�truth_x_eq_y_bloc_2�truth_x_plus_c_eq_y_bloc_1�truth_x_plus_c_eq_y_bloc_2�truth_x_eq_y_F_bloc_1�truth_x_eq_y_F_bloc_2�truth_x_plus_c_eq_y_F_bloc_1�truth_x_plus_c_eq_y_F_bloc_2�truth_x_neq_y_bloc_3�truth_x_neq_y_bloc_4�truth_x_plus_c_neq_y_bloc_3�truth_x_plus_c_neq_y_bloc_4�truth_x_neq_y_F_bloc_3�truth_x_neq_y_F_bloc_4�truth_x_plus_c_neq_y_F_bloc_3�truth_x_plus_c_neq_y_F_bloc_4�prime_x_bloc_1�not_prime_x_bloc_1�Lpred11_2�Lpred11_4�Lpred11_3�Fd_All_Different_Rec�fd_element_bloc_1�fd_element_bloc_2�fd_element_bloc_3�fd_element_var_bloc_1�fd_element_var_bloc_2�fd_element_var_bloc_3�fd_element_var_bloc_4�fd_atmost_bloc_1_inst�fd_atleast_bloc_1_inst�fd_exactly_bloc_1_inst�fd_atmost_bloc_1�fd_atleast_bloc_1�fd_exactly_bloc_1�Lpred5_1�Math_Supp_Initializer�delay_cstr_stack�delay_sp�Load_Delay_Cstr_Part�Normalize�arith_tbl�sort�Load_Term_Into_Word�Load_Poly�Load_Poly_Rec�Load_Left_Right_Rec�Compar_Monom�txp.0�Find_Expon_General�prime_vec_size�Compute_Prime_Range�prime_range�not_prime_range�always_date�never_date�All_Propagations�dummy_fd_var�buff.0�nb_bits_in_byte.1�unify_x_y_bloc_1�unify_x_y_bloc_2�Error_Supp_Initializer�last_err_file�c_bip_func_str�c_bip_arity�cur_bip_func�cur_bip_arity�last_err_col�last_err_line�last_err_msg�Init_Stream_Supp�static_str_stream_rd�static_str_stream_wr�tty_ptr�stream_1�atom_constant_term_stream�word_current_input_stream�word_current_output_stream�TTY_Getc�TTY_Clearerr�Find_Free_Stream�tty_linedit_depth.0�tty_buff�tty_first_buff�Str_Stream_Getc�Str_Stream_Putc�h.1�Lpred2_1�Lpred3_9�Lpred3_3�Lpred3_2�Lpred3_5�Lpred3_4�Lpred3_7�Lpred3_6�Lpred3_8�Lpred5_2�Lpred6_1�Lpred7_1�Lpred8_1�Lpred8_6�Lpred8_2�Lpred8_3�Lpred8_5�Lpred8_4�Lpred9_1�Lpred9_2�Lpred7_2�Clause_Alt�last_clause�Retract_Alt�Lpred9_4�Lpred9_3�Lpred10_13�Lpred10_9�Lpred10_8�Lpred10_11�Lpred10_10�Lpred10_12�Lpred11_5�Lpred15_19�Lpred15_13�Lpred15_12�Lpred15_15�Lpred15_14�Lpred15_17�Lpred15_16�Lpred15_18�Lpred19_2�Lpred19_4�Lpred19_3�Lpred19_5�Lpred21_4�Lpred21_3�Lpred21_5�Lpred4_2�Lpred4_4�Lpred4_3�Oper_Initializer�atom_specif_tbl�Detect_Oper_Specif�Lpred10_24�Lpred10_14�Lpred10_16�Lpred10_15�Lpred10_18�Lpred10_17�Lpred10_20�Lpred10_19�Lpred10_22�Lpred10_21�Lpred10_23�Lpred11_7�Lpred11_6�Lpred11_9�Lpred11_8�Lpred11_11�Lpred11_10�Lpred11_13�Lpred11_12�Lpred11_15�Lpred11_14�Lpred11_17�Lpred11_16�Lpred11_19�Lpred11_18�Lpred11_21�Lpred11_20�Lpred11_22�Lpred23_18�Lpred23_4�Lpred23_2�Lpred23_3�Lpred23_6�Lpred23_5�Lpred23_8�Lpred23_7�Lpred23_10�Lpred23_9�Lpred23_12�Lpred23_11�Lpred23_14�Lpred23_13�Lpred23_16�Lpred23_15�Lpred23_17�Lpred24_3�Lpred24_2�Lpred24_5�Lpred24_4�Lpred24_7�Lpred24_6�Lpred24_9�Lpred24_8�Lpred24_11�Lpred24_10�Lpred24_13�Lpred24_12�Lpred24_15�Lpred24_14�Lpred24_16�Create_Malloc_Atom�Compute_Next_BLA�String_To_Number�Lpred13_21�Lpred13_5�Lpred13_7�Lpred13_6�Lpred13_9�Lpred13_8�Lpred13_11�Lpred13_10�Lpred13_13�Lpred13_12�Lpred13_15�Lpred13_14�Lpred13_17�Lpred13_16�Lpred13_19�Lpred13_18�Lpred13_20�Call_With_Args�Flag_Initializer�atom_flag_tbl�atom_down�atom_toward_zero�atom_on�atom_off�atom_error�atom_warning�atom_fail�atom_chars�atom_codes�atom_atom�atom_chars_no_escape�atom_codes_no_escape�atom_atom_no_escape�atom_prolog�Unif_Flag�cv.0�Arith_Initializer�Load_Math_Expression�fix_bug.0�G_Var_Initializer�G_Assign_Array�G_Alloc_Array�G_Assign_Element�G_Free_Element�G_Copy_Element�Get_Target_From_Selector�Get_Target_From_Gvar�Get_Int_From_Word�Get_Term_Addr_From_Target�Get_Int_Addr_From_Gvar�g_target�atom_g_array�G_Trail_For_Backtrack�G_Untrail�G_Read_Element�atom_g_array_auto�atom_g_array_extend�g_var_tbl�All_Solut_Initializer�dummy�sol�Existential_Variables�exist_2�Bound_Var�key_var_ptr�Handle_Key_Variables�save_key_var_ptr�next_key_var_ptr�Link_Key_Var�Group�bound_var_ptr�Free_Var�new_gen_word�free_var_base�Sort_Initializer�Merge_Sort�Keysort_Cmp�minus_2�Lpred2_2�Lpred2_4�Lpred2_3�Lpred7_4�Lpred7_3�Lpred9_sub_0�Lpred9_5�Lpred9_7�Lpred9_6�Lpred15_sub_0�Lpred23_sub_0�Lpred25_2�Lpred25_3�Lpred25_sub_0�Lpred25_5�Lpred25_7�Lpred25_4�Lpred25_6�Lpred5_21�Lpred5_3�Lpred5_5�Lpred5_4�Lpred5_7�Lpred5_6�Lpred5_9�Lpred5_8�Lpred5_11�Lpred5_10�Lpred5_13�Lpred5_12�Lpred5_15�Lpred5_14�Lpred5_17�Lpred5_16�Lpred5_19�Lpred5_18�Lpred5_20�Lpred6_3�Lpred6_2�Lpred6_5�Lpred6_4�Lpred6_7�Lpred6_6�Lpred6_9�Lpred6_8�Lpred6_11�Lpred6_10�Lpred6_13�Lpred6_12�Lpred6_15�Lpred6_14�Lpred6_16�last_user_time�last_system_time�last_cpu_time�last_real_time�n.0�Stack_Size�Lpred21_6�Lpred21_7�Lpred22_2�Lpred22_4�Lpred22_3�Lpred22_6�Lpred22_5�Lpred22_7�Lpred26_2�Lpred26_4�Lpred26_3�Lpred32_2�Lpred38_2�Lpred38_4�Lpred38_3�Lpred38_5�Lpred44_2�Lpred44_4�Lpred44_3�Lpred44_6�Lpred44_5�Lpred44_7�Lpred45_1�Lpred53_28�Lpred53_4�Lpred53_2�Lpred53_3�Lpred53_6�Lpred53_5�Lpred53_8�Lpred53_7�Lpred53_10�Lpred53_9�Lpred53_12�Lpred53_11�Lpred53_14�Lpred53_13�Lpred53_16�Lpred53_15�Lpred53_18�Lpred53_17�Lpred53_20�Lpred53_19�Lpred53_22�Lpred53_21�Lpred53_24�Lpred53_23�Lpred53_26�Lpred53_25�Lpred53_27�Lpred54_3�Lpred54_2�Lpred54_5�Lpred54_4�Lpred54_7�Lpred54_6�Lpred54_9�Lpred54_8�Lpred54_11�Lpred54_10�Lpred54_13�Lpred54_12�Lpred54_15�Lpred54_14�Lpred54_17�Lpred54_16�Lpred54_19�Lpred54_18�Lpred54_21�Lpred54_20�Lpred54_23�Lpred54_22�Lpred54_25�Lpred54_24�Lpred54_26�Lpred58_1�Lpred2_11�Lpred2_sub_0�Lpred2_8�Lpred2_5�Lpred2_7�Lpred2_6�Lpred2_9�Lpred2_10�Lpred2_12�Format�Arg_Atom�Arg_Integer�Arg_Float�Read_Arg�Lpred14_6�Lpred14_5�Lpred14_8�Lpred14_7�Lpred14_10�Lpred14_9�Lpred14_12�Lpred14_11�Lpred14_14�Lpred14_13�Lpred14_16�Lpred14_15�Lpred14_17�Os_Interf_Initializer�atom_dt�atom_read�atom_write�atom_execute�atom_search�atom_regular�atom_directory�atom_fifo�atom_socket�atom_character_device�atom_block_device�atom_unknown�tsig�nb_sig�Get_Path_Name�Flag_Of_Permission�Date_Time_To_Prolog�atom_host_name.0�Select_Init_Set�Select_Init_Ready_List�Expand_Initializer�dcg_2�top�opt_term_unif�Dcg_Head�Dcg_Body�atom_clause�Dcg_Body_On_Stack�Dcg_Term_List_On_Stack�Dcg_Compound2�atom_phrase�atom_if�Lpred30_2�Lpred30_4�Lpred30_3�Pretty_Initializer�Check_Structure�prec.0�Show_Body�Start_Line�equal_2�atom_dollar_varname�nb_to_try�Collect_Excluded_Rec�Var_Name_To_Var_Number�Exclude_A_Var_Number�Bind_Variable�dollar_var_1�dollar_varname_1�Portray_Clause�Collect_Singleton�singl_var_ptr�nb_singl_var�atom_dcg�atom_dollar_var�Ctrl_C_Manager�Debug_Initializer�envir_name�choice_name�trail_tag_name�pstm_i�pstm_o�dbg_jumper�Debugger_Signal_Handler�Scan_Command�Find_Function�nb_read_arg�read_arg�cmd.0�Write_Data_Modify�Where�What�Dereference�Environment�Backtrack�Help�Read_Bank_Adr�reg_copy�Print_Bank_Name_Offset�Print_Wam_Word�Modify_Wam_Word�Read_An_Integer�Detect_Stack�Detect_Pred_From_Code�My_System_Directives�Lpred8_14�Lpred8_8�Lpred8_7�Lpred8_10�Lpred8_9�Lpred8_12�Lpred8_11�Lpred8_13�Lpred28_2�Lpred28_4�Lpred28_3�Lpred28_6�Lpred28_5�Lpred28_8�Lpred28_7�Lpred28_10�Lpred28_9�Lpred28_12�Lpred28_11�Lpred28_14�Lpred28_13�Lpred28_16�Lpred28_15�Lpred28_17�Lpred32_4�Lpred32_3�Lpred32_6�Lpred32_5�Lpred32_8�Lpred32_7�Lpred32_10�Lpred32_9�Lpred32_12�Lpred32_11�Lpred32_14�Lpred32_13�Lpred32_15�Lpred56_1�Lpred58_8�Lpred58_2�Lpred58_4�Lpred58_3�Lpred58_6�Lpred58_5�Lpred58_7�Lpred61_7�Lpred61_3�Lpred61_2�Lpred61_sub_0�Lpred61_4�Lpred61_6�Lpred61_5�sr_tbl�sr_tbl_size�sr_last_used�cur_sr�Get_Descriptor�Common_Clean�Exec_One_Directive�Undo_Directives�Close_Current_Module�Write_Location�Socket_Initializer�atom_AF_UNIX�atom_AF_INET�Create_Socket_Streams�end_vars�vars�Copy_Term_Rec�base_copy�top_vars�Parse_Supp_Initializer�jumper�tok_present�buff_save_machine_regs�Parse_Term�Parse_Error�Lookup_In_Dico_Var�Create_Structure�Parse_Args_Of_Functor�Parse_Bracketed_Term�Parse_List�atom_var�atom_string�atom_back_quotes�atom_punct�atom_full_stop�atom_extend�Write_Supp_Initializer�last_prefix_op�Show_Term�Show_Global_Var�ignore_op�Show_List_Arg�Show_Structure�Show_Atom�Show_Float�Show_Fd_Variable�Show_Integer�Try_Portray�atom_dots�quoted�space_args�name_vars�number_vars�curly_brackets_1�try_portray_code.1�portrayed�Out_Char�erase_stamp�first_dyn_with_erase�size_of_erased�Add_To_2Chain�Index_From_First_Arg�Alloc_Init_Dyn_Info�Unlink_Clause�Free_Clause�Get_Scan_Choice_Point�Scan_Dynamic_Pred_Next�Clean_Erased_Clauses�save_call_info�Byte_Code_Initializer�op_tbl�Compar_Inst_Code_Op�nb_op�bc_nb_block�bc�atom_dynamic�atom_public�atom_built_in�atom_built_in_fd�caller_arity�caller_func�bc_sp�BC_Arg_X_Or_Y�BC_Arg_Func_Arity�debug_call�BC_Emulate_Pred_Alt�BC_Emulate_Clause�glob_func�glob_dyn�BC_Emulate_Byte_Code�Prep_Debug_Call�err_msg�c�c_orig�c_type�Scan_Quoted�Scan_Number�Scan_Quoted_Char�obj_end.c�start_user_time�start_system_time�start_real_time�cur_seed�page_size�SIGSEGV_Handler�buff.1�cur_work_dir.2�msg.3�buff.4�arg.0�nb_arg.1�value.2�letters.3�arg.4�Hash_Locate�nb_obj�obj_tbl�nb_user_directives�init_buff_regs�heap_actual_start�Call_Prolog_Fail�Call_Prolog_Success�Call_Next�p_buff_save�p_jumper�cont_jmp�Check_If_Var_Occurs�hash_weight_tbl�hash_inv_tbl�str_char�Locate_Atom�Hash_String�gen_sym_buff�Fd_Solver_Missing�separators�ins_mode�clipboard�hist_start�hist_end�comp_start�prompt_length�global_str�Tab_To_Spaces�History_Add_Line�global_pos�global_end�Display_Help�New_Char�Completion_Print_All�Skip�Completion_Do_Match�comp_last_match�comp_first_match�History_Update_Line�History_Get_Line�hist_tbl�Is_A_Separator�ctrl_c_ret_val�comp_nb_match�comp_match_max_lg�comp_cur_match�use_gui�use_ansi�fd_in�fd_out�initialized.0�le_hook_present.1�Parse_Env_Var�Choose_Fd_Out�LE_Get_Char0�Backd�Forwd�Displ�Erase�Displ_Str�pos�nb_cols�old_stty_in�old_stty_out�is_tty_in�is_tty_out�interrupt_key�new_stty_out�nb_rows�new_stty_in�from_callback�ret_val�Wrapper_Handler�ctrl_c_handler�inside_ctrl_c�_DYNAMIC�__fini_array_end�__fini_array_start�__init_array_end�_GLOBAL_OFFSET_TABLE_�__init_array_start�X736B6970_1�Fct_Shr�X6765745F63686172_2�Fd_Eq_2�X24696E646F6D61696E5F6C696D6974735F616C74_0�stm_debugger_input�Write_1�Wait_2�Nth_Root_Up�X72656E616D655F66696C65_2�Remove_Stream_Mirror_2�X2473686F775F6C65617368696E675F696E666F31_1�X247573655F6F706572_0�domain_socket_address�fd_domain�X636861725F636F6465_2�X242473725F74726561745F7465726D2F325F2461757832_4�Write_Pl_State_File�X756E6765745F636F6465_2�Vector_Sub_Vector�Full_Coeff_Power_Var�Write_Canonical_To_Chars_2�Math_Fast_Load_Value�X757365725F74696D65_1�evluation_int_overflow�Fd_Tell_Int_Range�X2424636865636B5F73747265616D5F6F725F7661722F325F2461757831_1�Fd_Reset_Solver�X247573655F657870616E64_0�X246C696E65735F746F5F636F6C756D6E73_2�Read_Token_1�Copy_Term_2�X666F726D6174_3�X246765745F7072656469636174655F66696C655F696E666F_3�X24247265696E69745F61667465725F657863657074696F6E2F305F2461757831_0�max_x_a_eq_z_F�Print_2�atom_curly_brackets�Fd_Lt_2�quot_rem_x_y_r_eq_z_F�X2463757272656E745F6F705F616C74_0�X63616C6C5F776974685F61726773_10�Os_Version_1�Blt_Fd_Var�Rd_Number_Check�Put_Atom_Tagged�Init_Oper�Add_Stream_For_Stdio_Desc�X74656C6C_1�X233C_2�X6F6E6365_1�X777269746571_2�Fd_Element_V_To_Xi�pred_tbl�x_nand_y_eq_b�X24636F6E73756C7431_1�X247365745F73725F64656661756C7473_0�Vector_Mod_Value�X242464656275675F63616C6C312F385F2461757831_3�Blt_G_Dec_2�Un_Term�X235C5C3D23_2�X2464656275675F69735F6E6F745F6C656173686564_1�usleep@@GLIBC_2.0�BC_Start_Emit_0�mkdir@@GLIBC_2.0�X6E6F6465627567_0�Read_1�Blt_Fast_Gt�X61746F6D5F70726F7065727479_2�Blt_Lte�fd_reset_solver�ttyname@@GLIBC_2.0�X247465726D5F746F5F676F616C31_2�Current_Predicate_Alt_0�x2_eq_y_F�X61746F6D5F6C656E677468_2�cos@@GLIBC_2.0�Fct_Min�Init_Pred�X247465726D5F746F5F676F616C_3�X6C6F7765725F7570706572_2�X2424706F72747261795F636C617573652F325F2461757832_1�X2464656275675F706F72745F6D61736B_2�X66756E63746F72_3�X6D656D626572_2�Create_Oper�Init_Machine1�Install_Ctrl_C_Handler�X7365745F6F7574707574_1�type_list�Switch_On_Term_Var_Atm�X6E65775F61746F6D_2�Call_With_Args_4�X2466645F73656C5F61727261795F66726F6D5F6C697374_2�Mk_Atom�Vector_Next_Before�X2464656275675F646973705F616C7465726E61746976657331_2�SR_Get_File_Name_2�Fct_Abs�Sys_Var_Dec_1�X24657865632F355F2461757831_1�Full_Var_Power_Coeff�Fd_Variable_Size0�X247365746172675F696E5F6C6173745F666F756E64_2�Cut�X73725F77726974655F6572726F72_6�X2473725F64697265637469766531_2�domain_not_less_than_zero�LE_Initialize�existence_source_sink�Load_Call_Info_Arg_1�X2463616C6C31_2�X246C697374696E675F616C6C_1�X73725F6765745F73747265616D_2�X24246765745F726561645F6F7074696F6E73322F315F2461757831_1�Read_Term_5�File_Prop_Date_2�def_trail_size�rename@@GLIBC_2.0�X235C5C2F5C5C_2�Put_Structure_Tagged�X247573655F7772697465_0�X242473746F72655F736F6C7574696F6E732F345F2461757831_3�X24636F6E73756C7433_2�Set_Predicate_File_Info_3�Write_Term_2�X726561645F746F6B656E_1�Vector_Compl�Fd_Tell_Not_Value�Os_Error�X2464656275675F7370795F7265736574_1�Set_Debug_Call_Code_0�X77726974655F746F5F61746F6D_2�Aux_Name_1�Exec_5�atom_append�domain_term_stream_or_alias�X2464656275675F6C6973745F6F665F70726564_2�X756E6765745F62797465_1�Mk_Chars�X246765745F726561645F6F7074696F6E7331_1�Check_For_Un_Compound�ax_plus_by_eq_z�Delete_Choice_Point1�Unget_Char_1�fd_unify_with_fd_var�atom_false�not_prime_x�X247573655F736F636B657473_0�LE_Compl_Add_Word�Vector_Add_Vector�Blt_Fast_Lt�x_lte_c�Init_Machine�Test_Alias_Not_Assigned_1�X68616C74_1�X66645F6D696E696D697A65_2�X2466645F6D696E696D697A652F325F2461757831_5�X246765745F6C6162656C696E675F6F7074696F6E7332_1�X66645F616C6C5F646966666572656E74_1�vsprintf@@GLIBC_2.0�strchr@@GLIBC_2.0�Fd_Unify_With_Fd_Var0�Blt_Univ�X756E6765745F636F6465_1�truth_x_plus_c_lte_y�X2424706F72747261795F636C617573652F325F2461757831_1�Create_Atom_Tagged�X63616C6C5F776974685F61726773_2�X2472656D6F76655F756E64657273636F72655F76617273_2�X646562756767696E67_0�Rd_In_Char�X756E6765745F63686172_1�Fd_Variable_To_String0�Unget_Code_2�Blt_G_Read�x_eq_y_F�Stream_Puts�Rd_Codes_Str�X24246765745F726561645F6F7074696F6E73322F315F2461757832_1�X24706C5F6572725F726570726573656E746174696F6E_1�X6C6173745F726561645F73746172745F6C696E655F636F6C756D6E_2�X24706C5F6572725F73796E746178_1�X7075745F636F6465_1�Range_Nb_Elem�Nth_Root_Dn�Current_Atom_Alt_0�Pred_Prop_Public_1�Atom_Property_6�fdopen@@GLIBC_2.1�Stream_Putc�X6E6F737079_1�X66645F6F6E6C795F6F6E65_1�Unget_Char_2�System_Time_1�X233E23_2�Name_Singleton_Vars_1�X246765745F726561645F6F7074696F6E73_4�X2463616C6C5F696E7465726E616C31_2�X246C6F61645F70726564_2�X706F72747261795F636C61757365_1�Read_Atom�X242477726974655F696E64696361746F722F305F2461757831_2�Blt_Compound�permission_type_past_end_of_stream�Sys_Var_Inc_1�SR_Get_Stm_For_Read_Term_1�X2477726974655F736F6C7574696F6E_3�X24627265616B2F305F2461757831_1�Write_Canonical_2�Open_Output_Term_Stream_1�Rd_Proper_List�Statistics_Global_Stack_2�Get_Char_1�alias_tbl�Current_Bip_Name_2�Halt_1�X2473747265616D5F70726F70657274792F325F2461757831_3�Blt_G_Reset_Bit�X24247370795F746573745F636F6E646974696F6E2F335F2461757831_2�X73725F7365745F6572726F725F636F756E74657273_3�atan@@GLIBC_2.0�X246C6F61645F66696C65_1�Fct_Fast_Sign�X3D3A3D_2�X737061776E_3�X247365745F746F705F6C6576656C5F73747265616D73_2�X7065656B5F62797465_1�X7065656B5F636F6465_1�Retractall_If_Empty_Head_1�type_byte�evluation_zero_divisor�Find_Linked_Objects�Read_Integer_1�x_imply_y_eq_b�Delete_Choice_Point3�X726561645F7465726D_2�X24706C5F6572725F696E7374616E74696174696F6E_0�fd_init_solver�X666F726D61745F746F5F61746F6D_3�X66645F6C6162656C696E676666_1�reg_tbl�M_Real_Time�Fd_Unify_With_Integer0�X72657665727365_2�SR_Write_Message_8�X746162_1�atom_debugger_output�X247573655F66645F6F7074696D_0�Malloc_Check�Nth_Root_Exact�X246765745F6C696E656469745F70726F6D7074_1�X6E6F6E5F67656E657269635F766172_1�X2424636F6E73756C74322F315F2461757831_2�X24696E646F6D61696E5F72616E646F6D5F616C74_0�getpid@@GLIBC_2.0�X666F726D61745F746F5F636F646573_3�X246D696E5F6C69737431_3�Blt_Number�Fatal_Error�Range_Test_Null_Inter�Rd_String_Check�Open_Input_Term_Stream_2�X246765745F636C6F73655F6F7074696F6E73_1�Nl_1�Rd_Float�Fork_Prolog_1�X2463617463685F696E7465726E616C31_5�X2424636865636B5F686561642F315F2461757831_1�X2463757272656E745F6D6972726F72_2�X247573655F73746174_0�__ctype_tolower_loc@@GLIBC_2.3�domain_stream_position�Create_Choice_Point3�X2464656275675F63616C6C_2�X246164645F636C617573655F7465726D_1�init_stream_supp�Range_Compl�SR_Init_Open_2�X242464656275675F657865635F636D642F365F2461757833_2�Read_Number_1�Un_In_Code�Vector_Union�LE_Get_Current_Word�X2473725F63757272656E745F64657363726970746F725F616C74_0�atom_bof�Write_Term_To_Atom_2�X66645F646F6D61696E_3�X246D656D6265722F325F2461757831_3�X66645F656C656D656E745F766172_3�Put_Nil�X66645F6D6178_2�Switch_On_Term_Var_Stc�X7365745F73747265616D5F6C696E655F636F6C756D6E_3�X675F696E63_1�Fct_Truncate�last_writing�Math_Load_Value�le_hook_exit_process�Set_Seed_1�Hash_Alloc_Table�X2463616C6C_4�X66645F72656C6174696F6E_2�X6F70656E5F696E7075745F636F6465735F73747265616D_2�X247365745F73747265616D5F627566666572696E672F325F2461757831_1�Stream_Close�Fct_Fast_Or�type_fd_evaluable�Put_X_Variable�X247468726F77_4�X24696E646F6D61696E5F6D61785F616C74_0�X247365745F7072656469636174655F66696C655F696E666F_3�stm_last_used�atom_stream�X246765745F77726974655F6F7074696F6E73_1�x_equiv_y_eq_b�representation_min_integer�Fd_Stop_Constraint�X66645F63617264696E616C697479_2�X736F7274_1�Reset_Prolog�Un_Boolean_Check�type_evaluable�Range_From_Vector�X2472657472616374_2�domain_stream_property�Rd_In_Code�Range_Div_Value�Fct_Fast_Dec�Sys_Var_Get_Bit_3�X776F726B696E675F6469726563746F7279_1�Blt_G_Assignb�M_Create_Shell_Command�Read_Token_From_Atom_2�Un_Code_Check�X6C696E655F636F756E74_2�X72616E646F6D_3�Argument_List_1�write@@GLIBC_2.0�X2424636F6E73756C74322F315F2461757832_2�localtime@@GLIBC_2.0�Scan_Peek_Char�X2462635F656D756C6174655F636F6E74_0�Flush_Output_1�Update_Water_Mark�Fct_Sign�X24246765745F77726974655F6F7074696F6E73322F315F2461757833_1�Pred_Prop_User_1�X2464656275675F726561645F636D64_1�X242466645F6C6162656C696E672F325F2461757832_1�Exit_With_Exception�fileno@@GLIBC_2.0�X403E3D_2�Set_Stream_Eof_Action_2�Statistics_Trail_Stack_2�Op_3�X66645F6D6178696D697A65_2�X5C5C3D3D_2�SR_Get_Position_3�X7365745F73747265616D5F627566666572696E67_2�X6370755F74696D65_1�X2424636865636B5F6F776E65725F66696C65732F335F2461757831_6�strcmp@@GLIBC_2.0�X6F70656E5F6F75747075745F61746F6D5F73747265616D_1�Choice_Point_Info_4�Fd_Exactly�Set_Stream_Buffering_2�stm_tbl�Current_Stream_1�representation_character_code�X24657870616E645F7465726D31_2�X726561645F66726F6D5F61746F6D_2�base_fd�X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757831_1�use_le_prompt�Fd_Prolog_To_Value�Switch_On_Term_Var_Atm_Lst�X666F72_3�X246361746368_6�X2473725F6765745F666F726D61745F617267735F6572726F72_6�last_output_sora�Store_Solution_1�close@@GLIBC_2.0�asin@@GLIBC_2.0�Range_Mul_Value�Fd_Check_For_Bool_Var�x_plus_c_lte_y�Fd_Math_Unify_X_Y�X2466645F6C6162656C696E675F737464_2�Fd_Tell_Interv_Interv�Stream_Getc�_fp_hw�Peek_Char_2�fd_domain_r�Read_Term_From_Codes_5�byte_code�Fd_Sel_Array_From_List_2�X24246765745F73725F6F7074696F6E73322F315F2461757832_1�Unify_Integer�Check_Stream_Type�X246861735F6E6F5F7370795F706F696E74_1�X246C6F61645F6469726563746976655F657863657074696F6E_3�Fd_Element_V_To_I�X6E756D6265725F6368617273_2�Fd_Element_Var_V_To_I�X66645F61746C65617374_3�Read_Integer�Fd_Element_I_To_V�X242464656275675F6C6973745F6F665F70726564312F345F2461757831_4�Rd_Chars_Check�atom_line�X242464656275675F657865635F636D642F365F2461757836_1�X6E616D655F73696E676C65746F6E5F76617273_1�X73725F6765745F6D6F64756C65_3�Rd_In_Char_Check�X246765745F6F70656E5F6F7074696F6E7332_1�X73756D5F6C697374_2�permission_type_stream�Sleep_1�X247573655F675F7661725F696E6C_0�SR_Current_Descriptor_1�X2463757272656E745F7072656469636174655F616E79_1�fprintf@@GLIBC_2.0�X2473725F6572726F725F66726F6D5F657863657074696F6E_2�fork@@GLIBC_2.0�M_Tempnam�X246765745F73725F6F7074696F6E7331_1�Unify_Structure_Tagged�Fct_Fast_Neg�Delete_Choice_Point4�Father_Pred_Of_Aux�getenv@@GLIBC_2.0�M_Random_Float�X63757272656E745F61746F6D_1�X6765745F73656564_1�X6B6579736F7274_1�signal@@GLIBC_2.0�X6765745F6C696E656469745F70726F6D7074_1�Fd_New_Variable�fmod@@GLIBC_2.0�Range_Becomes_Sparse�Rd_Float_Check�Fct_Fast_Inc�X2464656275675F7370795F736574_2�fd_variable_to_string�X246765745F636C6F73655F6F7074696F6E7332_1�Atom_Length_2�Fd_Use_Vector�fflush@@GLIBC_2.0�X247573655F636F6E73756C74_0�Stream_Prop_Type_2�domain_g_argument_selector�Blt_G_Inc_2�X247365745F71756572795F766172735F6E616D6573_2�pclose@@GLIBC_2.1�SR_Get_Error_Counters_3�X2473725F726561645F7465726D2F345F2461757832_2�Display_To_Atom_2�Range_Mul_Range�X2473725F6E65775F706173732F315F2461757831_1�Write_Simple�Read_Atom_2�X233D3C23_2�Fct_Ceiling�X7075745F62797465_2�X6C697374696E67_1�Call_Info_Bip_Name_1�X247573655F666C6167_0�X24247468726F775F696E7465726E616C2F325F2461757831_2�X247573655F747970655F696E6C_0�Blt_G_Link�Mk_In_Char�X403C_2�Get_Predicate_File_Info_3�Bind_Variables_4�Fd_Before_Add_Cstr�Get_Pred_Indic_3�Range_Next_Before�quot_rem_x_a_r_eq_z_F�Fct_Add�Fd_Element_I�X247573655F63616C6C_0�mallopt@@GLIBC_2.0�X24746F705F6C6576656C31_0�ax_plus_by_eq_z_F�X686F73745F6E616D65_1�Pl_Err_Instantiation�unlink@@GLIBC_2.0�Pred_Prop_Built_In_Fd_1�Decompose_File_Name_4�Fd_Init_Solver0�M_Cmd_Line_To_Argv�domain_source_sink�X63757272656E745F707265646963617465_1�Un_Atom�Fd_Init_Solver�X617267756D656E745F636F756E746572_1�X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757832_1�Current_Stream_Alt_0�X247365745F73747265616D5F747970652F325F2461757832_2�X66645F72656C6174696F6E63_2�Arith_Eval_2�Fd_Prolog_To_Fd_Var�getrusage@@GLIBC_2.0�Delete_File_1�X636F6D70617265_3�Name_2�Mk_List�Rd_Code�Atom_Concat_Alt_0�X2462635F656D6974_1�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757835_1�X24636865636B5F61746F6D5F6F725F61746F6D5F6C69737431_1�X247573655F63616C6C5F61726773_0�X6173736572747A_1�X247573655F66696C65_0�Current_Alias_2�X246C6F616432_1�Stream_Prop_Buffering_2�X242464656275675F6C6973745F6F665F70726564312F345F2461757832_5�Update_Choice_Point3�X2473725F6572726F725F66726F6D5F657863657074696F6E2F325F2461757831_1�Set_Stream_Position_2�Un_Byte_Check�X3D3D_2�Retract_2�fd_exactly�le_initialize�X66645F7573655F766563746F72_1�X68616C74_0�X6765745F6B6579_1�X77726974655F63616E6F6E6963616C5F746F5F61746F6D_2�X247365656E2F305F2461757831_1�X2467726F75705F736F6C7574696F6E73_3�X24246765745F73725F6F7074696F6E73322F315F2461757833_1�X73725F6E65775F70617373_1�X6F735F76657273696F6E_1�BC_Start_Pred_7�X24246C6F6164322F315F2461757832_2�Check_For_Un_Boolean�X247265696E69745F61667465725F657863657074696F6E_0�permission_operation_open�Last_Read_Start_Line_Column_2�Mk_Variable�X24737079706F696E745F636F6E646974696F6E31_3�x_imply_y_eq_1�X63616C6C5F776974685F61726773_5�Stream_Ungetc�Un_Float_Check�Mk_In_Byte�Stream_Position_2�Writeq_1�Remove_One_Choice_Point_1�select@@GLIBC_2.0�type_fd_variable�Vector_From_Interval�X756E6765745F62797465_2�X247573655F66645F6D617468_0�X24247465726D5F746F5F676F616C322F325F2461757831_3�Line_Position_2�X7465726D5F726566_2�Mk_Number�Lower_Upper_2�x_plus_y_plus_z_eq_t_F�Pred_Without_Aux�X235C5C_1�query_exception�X24246C6F61645F66696C652F315F2461757831_3�Pl_Err_Syntax�X6D616B655F6469726563746F7279_1�Remove_Predicate_2�wmark_count�X72657472616374_1�X77726974655F746F5F6368617273_2�domain_socket_domain�Blt_G_Dec_3�x_and_y_eq_b�Un_Integer�Sqrt_Up�Allocate�X24696E646F6D61696E_2�File_Permission_2�vsnprintf@@GLIBC_2.0�X24246765745F77726974655F6F7074696F6E73322F315F2461757834_1�X246765745F6C6162656C696E675F6F7074696F6E7331_1�strerror@@GLIBC_2.0�X707574_1�Execute_Directive�Cpu_Time_1�Term_Math_Loading�BC_Emit_Inst_1�Check_For_Un_Number�Fct_Fast_Shr�__dso_handle�Stream_Get_Position�Check_For_Un_Atom�Rd_Code_Check�representation_max_integer�X247573655F66645F696E666F73_0�Set_Linedit_Prompt_1�Stream_Prop_Input_1�x_plus_y_eq_z_F�Global_Push_Float�Hash_Delete�Put_Integer_Tagged�Call_With_Args_3�SR_Current_Descriptor_Alt_0�X636C6F73655F696E7075745F636F6465735F73747265616D_1�Fd_New_Bool_Variable�X706F72747261795F636C61757365_2�Call_With_Args_9�truth_x_gte_c�Blt_G_Deco�base_fl�X246164645F6D6972726F72735F746F5F73747265616D_2�X2472656D6F76655F707265646963617465_2�X63757272656E745F636861725F636F6E76657273696F6E_2�mmap@@GLIBC_2.0�X24636865636B5F61746F6D5F70726F70_1�X6E6F737079616C6C_0�Check_For_Un_Variable�Unify_Occurs_Check�__libc_csu_fini�X2461746F6D5F636F6E6361745F616C74_0�Fd_After_Add_Cstr�Set_Prolog_Flag_2�Reassign_Alias�Check_For_Un_Char�X61746F6D5F636F6E636174_3�X24706C5F6572725F646F6D61696E_2�Call_Prolog�X2473747265616D5F706F736974696F6E_2�Get_Key_2�X246765742F315F2461757831_2�tcsetattr@@GLIBC_2.0�Add_Stream_For_Stdio_File�permission_type_flag�obj_chain_begin�Argument_Counter_1�Pred_Prop_Prolog_Line_2�Sys_Var_Write_2�X2474656C6C2F315F2461757831_2�Blt_Generic_Var�Fct_Fast_Not�Put_Unsafe_Value�setlocale@@GLIBC_2.0�wmark�X2466645F6C6162656C696E6731_4�query_top_b�X66645F6861735F65787472615F63737472_1�X2473725F7365745F74726561745F706173735F62697473_3�X73656C656374_3�Extend_Table_If_Needed�X242464656275675F706F72745F70726F6D70742F365F2461757831_5�X70726F6C6F675F706964_1�X2467726F75705F736F6C7574696F6E735F616C74_0�X6469726563746F72795F66696C6573_2�X2464656275675F646973705F616C74_2�X242464656275675F657865635F636D642F365F2461757835_3�X61745F656E645F6F665F73747265616D_0�X2473686F775F7370795F706F696E7473_0�Fct_Shl�X24746F705F6C6576656C5F657863657074696F6E_1�Hash_Realloc_Table�domain_operator_priority�X686F73746E616D655F61646472657373_2�Fd_New_Int_Variable�Free_Variables_4�X2473686F775F64656275676765725F6D6F646531_1�X247365745F73747265616D5F627566666572696E672F325F2461757832_2�Fd_Neq_2�X676574_1�representation_in_character_code�Prolog_File_Name_2�X2473746174_3�Fd_Add_Dependency�buff_signal_reg�truth_x_neq_y_F�Un_Compound_Check�X73725F77726974655F6D657373616765_8�X242473725F74726561745F7465726D2F325F2461757833_2�Un_Atom_Check�Term_Write_Str_Stream�X2466645F63617264696E616C69747931_2�Make_Stream_Tagged_Word�X246661746865725F6F665F6175785F6E616D65_3�Scan_Choice_Point_Pred�Write_2�X7365745F6269705F6E616D65_2�X2464656275675F646973705F616C7431_3�Fct_Float_Div�X242463617463685F73796E635F666F725F6661696C5F61742F315F2461757831_2�X247573655F7072696E74_0�unify_x_y�__errno_location@@GLIBC_2.0�pow@@GLIBC_2.0�quot_rem_x_y_r_eq_z�Write_A_Char�X2466696C655F70726F70_2�environ@@GLIBC_2.0�X726561645F61746F6D_1�xy_eq_z_F�existence_stream�resource_too_big_fd_constraint�X246D616B655F6175785F6E616D65_4�X2473686F775F64656275676765725F6D6F6465_0�X6F70656E5F6F75747075745F636F6465735F73747265616D_1�Check_For_Un_Codes�X6E65775F61746F6D_1�X63757272656E745F6D6972726F72_2�X242477726974655F736F6C7574696F6E2F335F2461757831_2�x2_eq_y�Get_Stream_Or_Alias�Indomain_Middle_Alt_0�X7265616C5F74696D65_1�X24627265616B2F305F2461757832_1�Find_Next_Atom�Update_Dynamic_Pred�Vector_Next_After�Hostname_Address_2�BC_Emulate_Cont_0�X707265666978_2�X63757272656E745F6F7574707574_1�Fd_Has_Vector_1�ftell@@GLIBC_2.0�SR_Write_Message_6�max_x_y_eq_z�List_Length�X246F7032_3�X2473725F6F70656E2F335F2461757831_1�Shell_2�SR_Get_Include_List_2�X6765745F6B65795F6E6F5F6563686F_2�Stdio_Is_Repositionable�X246463675F7472616E735F72756C65_2�X2464656275675F706F7274_5�X233C3D3E_2�Consult_2�Blt_G_Array_Size�representation_character�Write_Canonical_To_Codes_2�X24696E646F6D61696E5F6D6964646C655F616C74_0�System_2�domain_non_empty_list�Range_Union�Writeq_2�domain_g_array_index�Fd_Use_Vector_1�accept@@GLIBC_2.0�gethostbyaddr@@GLIBC_2.0�Random_1�Blt_Eq�system@@GLIBC_2.0�zero_power_n_eq_y�X247379735F7661725F7365745F626974_2�X242466696E645F6578697374696E675F73747265616D2F335F2461757831_3�X675F696E63_2�Read_Number_2�Mk_Callable�domain_read_option�X247573655F617373657274_0�LE_Is_Interrupt_Key�X2473725F73746F705F6D6F64756C65_3�X66645F61745F6C656173745F6F6E65_1�X2463757272656E745F616C6961732F325F2461757831_2�X247379735F7661725F72656164_2�Set_Current_B_1�Get_Integer�X63757272656E745F70726F6C6F675F666C6167_2�X247573655F736F7274_0�SR_Get_Size_Counters_3�X2464656275675F726561645F696E7465676572_1�X66645F646F6D61696E5F626F6F6C_1�Blt_Atom�X247573655F7465726D5F696E6C_0�access@@GLIBC_2.0�Prolog_Pid_1�X736F636B6574_2�X72656D6F76655F73747265616D5F6D6972726F72_2�Stream_Flush�setvbuf@@GLIBC_2.0�X73725F6765745F696E636C7564655F73747265616D5F6C697374_2�X246765745F73725F6F7074696F6E7332_1�X242464656275675F657865635F636D642F365F2461757837_3�Put_Byte_2�os_argc�Writeq_To_Chars_2�X233E3D_2�Rd_Chars_Str�inet_ntoa@@GLIBC_2.0�Pl_Err_System�Write_To_Codes_2�X63757272656E745F73747265616D_1�X2461726974685F6576616C_2�LE_Compl_Find_Match�domain_stream�X7075745F63686172_2�X3E3D_2�Current_Op_3�M_Set_Seed�X6F70656E5F6F75747075745F63686172735F73747265616D_1�X63616C6C_2�Blt_Callable�X66645F6C6162656C696E67_1�Pred_Prop_Dynamic_1�Load_Cut_Level�Change_Directory_1�Sys_Var_Get_2�type_float�puts@@GLIBC_2.0�X24636865636B5F73747265616D5F6F725F766172_2�le_prompt�Select_5�Term_Compare�_init�X6E6C_1�X5C5C3D_2�X2466645F656C656D656E74_3�Setarg_Of_Last_Found_2�X247573655F73747265616D_0�popen@@GLIBC_2.1�X247573655F756E696679_0�Current_Mirror_2�truth_x_plus_c_neq_y_F�Rd_Positive_Check�Create_Pipe_2�X246462675F696E64696361746F72_2�Call_Compiled�X247379735F7661725F707574_2�Switch_On_Atom�X2462635F73746F705F656D6974_0�X6261676F66_3�Write_Term_To_Chars_2�x_neq_c�X24657865635F636D645F657272_2�X2466645F73656C5F61727261795F7069636B5F766172_4�Architecture_1�listen@@GLIBC_2.0�X74656C6C696E67_1�Current_Output_1�Unlink_1�stk_tbl�X706F70656E_3�Print_To_Codes_2�Indomain_Random_Alt_0�permission_type_static_procedure�Create_Choice_Point1�X73725F6368616E67655F6F7074696F6E73_2�X247573655F7468726F77_0�X7365745F73747265616D5F656F665F616374696F6E_2�X7065656B5F62797465_2�nb_atom�X675F61737369676E_2�type_compound�X2473725F657865635F646972656374697665_2�Seek_4�ax_plus_y_eq_z�Scan_Next_Atom�stm_top_level_input�X736C656570_1�Get_Atom�x_nequiv_y_eq_b�malloc@@GLIBC_2.0�type_predicate_indicator�X726561645F706C5F73746174655F66696C65_1�X7072696E745F746F5F61746F6D_2�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757836_1�X6E65775F61746F6D_3�last_read_line�Fct_Mul�X5C5C2B_1�Random_3�X246C6F61642F315F2461757831_1�X242464656275675F657865635F636D642F365F2461757834_2�Socket_Accept_4�Call_With_Args_6�Pl_Err_Existence�domain_prolog_flag�X646973706C6179_2�X2473756D5F6C69737431_3�X3D3C_2�Range_Inter�Rename_File_2�glob_buff�X247465726D5F746F5F676F616C32_2�domain_selectable_item�X7065656B5F63686172_2�X246765745F77726974655F6F7074696F6E7332_1�Rd_List_Check�X24696E7374616E63655F666F725F736574617267_2�debug_call_code�Date_Time_1�Fct_Identity�X737079706F696E745F636F6E646974696F6E_3�X73725F726561645F7465726D_4�X63757272656E745F616C696173_2�X61745F656E645F6F665F73747265616D_1�abs_x_minus_y_eq_z_F�Create_Water_Mark�X24657865635F636D645F6C696E655F656E7472795F676F616C73_1�X242464656275675F657865635F636D642F365F2461757832_1�Vector_Mul_Vector�abs_x_minus_a_eq_z_F�Delete_Pred�atom_user_input�munmap@@GLIBC_2.0�M_Get_Status�Fct_Max�Retract_Last_Found_0�X746F6C64_0�X6368616E67655F6469726563746F7279_1�prime_x�Rd_Integer_Check�X77726974655F7465726D5F746F5F6368617273_3�Blt_Var�Find_Stream_By_Alias�permission_type_private_procedure�X247365745F6C696E656469745F70726F6D7074_1�X24726561645F72657475726E_1�pipe@@GLIBC_2.0�not_x_eq_b�Group_Solutions_3�Setarg_4�Blt_Functor�x_and_y_eq_0�Get_Integer_Tagged�Unify_List�X24617373657274_3�X246765745F6C6162656C696E675F6F7074696F6E73_2�X737061776E_2�Rd_Char�ax_plus_by_plus_z_eq_t_F�X7772697465715F746F5F6368617273_2�Un_Boolean�X646973706C6179_1�X2477726974655F736F6C7574696F6E31_1�fread@@GLIBC_2.0�Check_For_Un_Chars�Rd_Compound�quot_rem_a_y_r_eq_z�LE_FGets�Get_List�X77726974655F7465726D5F746F5F61746F6D_3�Rd_Byte�Atom_Chars_2�clearerr@@GLIBC_2.0�X617267_3�Keep_Rest_For_Prolog�Statistics_Real_Time_2�At_End_Of_Stream_0�X2473725F6F705F74797065_2�X766172_1�X2462635F656D69745F696E7374_1�M_Absolute_Path_Name�Current_Predicate_2�Extra_Cstr_Alt_0�Fd_Reset_Solver0�X63616C6C5F776974685F61726773_8�X246F702F335F2461757831_3�X656E7669726F6E_2�X247573655F666F726D6174_0�Create_Swt_Stc_Element�Create_Swt_Atm_Element�X6E756D6265725F76617273_0�Put_Y_Variable�atom_text�wmp�X242463616C6C5F696E7465726E616C5F6F722F345F2461757831_6�X3D5C5C3D_2�Un_Number�X746F705F6C6576656C_0�X6C6973745F6F725F7061727469616C5F6C697374_1�X72656164_2�X63616C6C61626C65_1�X242464656275675F646973705F616C74312F335F2461757832_3�Host_Name_1�X77726974655F7465726D_2�x_power_a_eq_y�X246D656D62657263686B2F325F2461757831_4�X246164645F616C69617365735F746F5F73747265616D_2�Atom_Hash_2�X2463757272656E745F61746F6D_1�Character_Count_2�X2424737461742F335F2461757831_2�Call_With_Args_5�Reset_Debug_Call_Code_0�rint@@GLIBC_2.0�X657870616E645F7465726D_2�X2464656275675F646973705F616E635F6C7374_1�X242464656275675F6C6973745F6F665F70726564312F345F2461757833_4�X247370795F746573745F636F6E646974696F6E_3�LE_Get_Current_Position�fixed_sizes�X6164645F73747265616D5F6D6972726F72_2�X247072656469636174655F70726F70657274795F616E79_2�X73725F63757272656E745F64657363726970746F72_1�Switch_On_Structure�atom_at�X6E6F6E766172_1�X24246765745F73725F6F7074696F6E73322F315F2461757834_1�Indomain_Limits_Alt_0�Name_Query_Vars_2�X66645F61745F6D6F73745F6F6E65_1�X247573655F72656164_0�X7772697465_2�X6E756D62657276617273_1�X247375625F61746F6D5F616C74_0�Recover_Solutions_2�X726561645F746F6B656E5F66726F6D5F636F646573_2�Add_Stream�X726561645F66726F6D5F636F646573_2�X6765745F6B6579_2�X246765745F726561645F6F7074696F6E7332_1�Range_Add_Value�X247365745F73747265616D5F747970652F325F2461757831_1�X2464656275675F6C6973745F6F665F7072656431_4�Un_Chars_Check�LE_Close_Terminal�Blt_Term_Gt�Fd_Domain_3�X6465636F6D706F73655F66696C655F6E616D65_4�X63757272656E745F696E707574_1�Peek_Code_1�le_hook_set_line_buffering�permission_type_binary_stream�stm_tbl_size�X2473725F77726974655F6572726F722F365F2461757831_4�X666C7573685F6F7574707574_1�stdout@@GLIBC_2.0�Current_Prolog_Flag_Alt_0�Fd_Tell_Value�stderr@@GLIBC_2.0�Blt_G_Set_Bit�X2424746F705F6C6576656C322F305F2461757835_1�def_local_size�Read_Token�Check_For_Un_In_Byte�Unify_Integer_Tagged�Delete_Choice_Point2�X24706C5F6572725F7265736F75726365_1�truth_x_plus_c_eq_y_F�X66645F7072696D65_1�Indomain_Max_Alt_0�X66645F61746D6F7374_3�Indomain_Min_Alt_0�SR_Get_Stm_2�Fct_And�X247573655F616C6C5F736F6C7574_0�Delete_Directory_1�X666F726B5F70726F6C6F67_1�atom_reposition�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757834_1�Rd_Positive�Blt_Fast_Lte�Get_Float�domain_flag_value�X2461746F6D5F70726F706572747932_7�Fct_Pow�mprotect@@GLIBC_2.0�Close_Stm�X2465787472615F637374725F616C74_0�X636C6F7365_1�Read_Term�le_hook_backd�X73725F77726974655F6D657373616765_4�X77726974655F706C5F73746174655F66696C65_1�X73746F70_0�le_hook_forwd�Mk_Positive�Un_Codes�Un_In_Byte_Check�stm_debugger_output�X246261676F66_4�Blt_Neq�X63616C6C5F776974685F61726773_6�X242463617463685F696E7465726E616C312F355F2461757831_3�File_Prop_Real_File_Name_2�Unget_Code_1�min_x_y_eq_z_F�X6E6F7472616365_0�SR_Change_Options_0�atom_eof�Range_Div_Range�X2463757272656E745F616C6961735F616C74_0�__xstat@@GLIBC_2.0�X617070656E64_1�Fd_Prolog_To_Array_Int�X6F70656E_3�Fct_Log�X77726974655F63616E6F6E6963616C5F746F5F636F646573_2�Un_In_Byte�Delete_Choice_Point�Environ_2�X675F72656164_2�getpagesize@@GLIBC_2.0�For_Alt_0�X2463616C6C5F696E7465726E616C5F776974685F637574_3�type_atom�Send_Signal_2�X247379735F7661725F646563_1�X726561645F61746F6D_2�X6765745F7072696E745F73747265616D_1�X706872617365_3�Prop_And_Stdio_Mode�execv@@GLIBC_2.0�inet_aton@@GLIBC_2.0�For_3�X247573655F636F6E74726F6C_0�Fd_Max_2�X2461746F6D5F70726F70657274795F616E79_2�Get_Pred_Indicator�X66645F6D696E_2�Init_Atom�DATE�Display_To_Codes_2�X777269746571_1�X247072656469636174655F70726F706572747931_2�stm_stdout�X6C697374696E67_0�Vector_Div_Vector�Format_To_Atom_3�X24636865636B5F73747265616D5F70726F70_1�Read_Term_4�Define_Math_Bip_2�Update_Choice_Point�Stream_Prop_End_Of_Stream_2�X2464656275675F63616C6C5F706F7274_5�LE_Set_Separators�X627265616B_0�abs_x_minus_a_eq_z�Add_Stream_Alias_2�domain_write_option�X2462635F73746172745F70726564_7�fseek@@GLIBC_2.0�waitpid@@GLIBC_2.0�x_lte_y�X675F61727261795F73697A65_2�X61737365727461_1�Check_For_Un_Callable�X247573655F616C6C5F66645F62697073_0�X2463757272656E745F6D6972726F725F616C74_0�X73797374656D_1�X24726561645F7175657279_2�Fct_Fast_Div�Rd_Atom�X247573655F70726564_0�Statistics_System_Time_2�X24726561645F7465726D_3�Abolish_1�Fct_Not�Scan_Dynamic_Pred�SR_EOF_Reached_1�Read_Integer_2�Un_Float�Treat_Vars_Of_Term�X646973706C61795F746F5F61746F6D_2�Read_From_Codes_2�Get_Byte_1�Un_Callable_Check�Flush_Output_0�Pred_Prop_Native_Code_1�X24657865635F636D645F6C696E655F676F616C_1�X6D696E5F6C697374_2�ax_plus_y_plus_z_eq_t�X7061727469616C5F6C697374_1�X24706C5F6572726F72_1�time@@GLIBC_2.0�X7772697465_1�X726561645F746F6B656E5F66726F6D5F61746F6D_2�Check_For_Un_Code�Get_Seed_1�X6E756D6265725F61746F6D_2�X2323_2�X2464656275675F657863657074696F6E5F706F7274_5�X2464656275675F77726974655F676F616C_4�X66645F6E6F745F7072696D65_1�Fct_Fast_Add�X636C6F73655F6F75747075745F636F6465735F73747265616D_2�Un_In_Char_Check�Un_String�Full_Var_Power_2�X235C5C3D_2�Pl_Err_Evaluation�_start�Vector_Nb_Elem�le_hook_ins_mode�X24246765745F77726974655F6F7074696F6E73322F315F2461757831_1�X247573655F61746F6D_0�x_gte_c�Un_List�X247379735F7661725F676574_2�Stream_Gets�X2424746F705F6C6576656C322F305F2461757831_2�Un_Positive�x_nor_y_eq_b�Blt_Fast_Neq�Obtain_Float�X636C6F73655F696E7075745F61746F6D5F73747265616D_1�X246E746831_3�SR_Is_Bit_Set_1�Spawn_3�Vector_Ith_Elem�X636C6F73655F6F75747075745F61746F6D5F73747265616D_2�Blt_Term_Lte�X24706C5F6572725F7065726D697373696F6E_3�M_Host_Name_From_Name�X247573655F72616E646F6D_0�Lookup_Pred�Fct_Sqrt�Print_To_Atom_2�Number_Chars_2�X6E756D6265725F636F646573_2�X242464656275675F7370795F72657365742F315F2461757831_3�le_hook_flush�domain_stream_option�Blt_Integer�X24636865636B5F737461745F6B6579_1�SR_New_Pass_1�Pl_Err_Permission�Range_Add_Range�evluation_undefined�Read_Atom_1�Create_Choice_Point�Debug_Wam�X246765745F62696E645F7661726961626C65735F6F7074696F6E7331_1�X66645F7365745F766563746F725F6D6178_1�Gen_New_Atom�Write_Canonical_1�X2463757272656E745F7072656469636174655F616C74_0�le_hook_put_char�Find_Expon_Dn�X2424657865635F71756572792F325F2461757832_2�X247072656469636174655F70726F706572747932_2�Find_Atom�def_cstr_size�X66645F63617264696E616C697479_3�X24636865636B5F66696C655F70726F70_1�X245C5C2B2F315F2461757831_1�le_hook_start�Put_Code_1�chdir@@GLIBC_2.0�Scan_Choice_Point_Info_3�M_Allocate_Stacks�Vector_Copy�X61746F6D5F68617368_2�X77726974655F746F5F636F646573_2�X77726974655F7465726D_3�Throw_2�pi_name_word�Set_Stream_Buffering�X66645F6D61785F696E7465676572_1�Fct_Fast_And�X737079_1�LE_Get_Prompt_Length�Sort_List_2�Check_Prop_Perm_And_File_2�Pl_Err_Domain�Blt_List_Or_Partial_List�X6C656E677468_2�X24706C5F6572725F6578697374656E6365_2�Make_Aux_Name�X2424636865636B5F707265645F747970652F335F2461757831_4�File_Exists_1�le_hook_confirm_box�Update_Choice_Point1�Socket_Close_1�X6E756D626572_1�LE_Get_Ctrl_C_Return_Value�strstr@@GLIBC_2.0�permission_type_source_sink�strlen@@GLIBC_2.0�X247365745F63757272656E745F42_1�longjmp@@GLIBC_2.0�X72657472616374616C6C_1�permission_operation_output�X24706C5F6572725F73797374656D_1�Rd_Atom_Check�X73797374656D5F74696D65_1�SR_Write_Message_4�From_Alias_To_Stream_2�X2464656275675F646973705F616C7432_1�X2463616C6C2F325F2461757831_1�X24246C6F61645F707265642F325F2461757831_3�LE_Get_Char�sigaddset@@GLIBC_2.0�Rd_Boolean�X233D3C_2�obj_chain_end�le_hook_get_line_buffering�Add_Linedit_Completion_1�Set_Stream_Line_Column_3�Assert_4�X2466645F63617264696E616C697479_2�X24636F6E73756C742F315F2461757831_1�X6F70656E_4�X6D61785F6C697374_2�type_atomic�Set_Heap_Actual_Start�le_hook_screen_size�Put_Float�X2466645F6D6178696D697A652F325F2461757831_6�Term_Size�X66645F766172_1�X706872617365_2�X6D656D62657263686B_2�Atom_Codes_2�Range_Copy�__lxstat@@GLIBC_2.0�X636C61757365_2�Pred_Prop_Private_1�X66645F766563746F725F6D6178_1�X246765745F6F70656E5F73746D_2�Fct_Float_Fract_Part�X73747265616D5F706F736974696F6E_2�Put_Char_1�atom_none�X6765745F6B65795F6E6F5F6563686F_1�Unify�X246F70656E_4�X73747265616D5F6C696E655F636F6C756D6E_3�X246F7031_3�Least_Significant_Bit�X2464656275675F656E645F63616C6C_6�uname@@GLIBC_2.0�oper_tbl�X2466696E645F6578697374696E675F73747265616D_3�Fct_Xor�atom_block�Un_Positive_Check�__strtol_internal@@GLIBC_2.0�Current_Char_Conversion_2�Blt_Partial_List�X61746F6D5F6368617273_2�X242464656275675F646973705F616C74312F335F2461757831_2�qsort@@GLIBC_2.0�Statistics_Cstr_Stack_2�X242473725F646972656374697665312F325F2461757832_2�X666C7573685F6F7574707574_0�x_plus_y_plus_z_eq_t�Hash_Nb_Elements�Mk_Integer�X2424737079706F696E745F636F6E646974696F6E312F335F2461757831_5�X24246261676F662F345F2461757831_2�X6164645F6C696E656469745F636F6D706C6574696F6E_1�BC_Stop_Emit_0�Rd_Codes�X2473725F74726561745F706173735F6E6F_3�Number_Atom_2�M_Random_Integer�X24706872617365_4�X73725F6765745F66696C655F6E616D65_2�X61746F6D6963_1�domain_date_time�X2474727574685F6F66_2�X2461746F6D5F70726F706572747931_2�Fct_Mod�Display_To_Chars_2�X2463617463685F73796E635F666F725F6661696C5F6174_1�Close_1�LE_Get_Separators�evluation_float_overflow�X7375625F61746F6D_5�X726570656174_0�Make_Aux_Name_4�representation_max_arity�X233E_2�X736F636B65745F616363657074_4�X7072696E745F746F5F636F646573_2�last_input_sora�X736F636B65745F636C6F7365_1�Mk_Char�Fd_Set_Full_Ac_Flag_1�Fd_Has_Extra_Cstr_1�X6164645F73747265616D5F616C696173_2�LE_Gets�Range_Ith_Elem�X24746F6C642F305F2461757831_1�xy_eq_z�X246164645F636C617573655F7465726D5F616E645F6263_2�X675F61737369676E62_2�x_plus_y_eq_z�X67657430_1�Find_Expon_Up�X2473746F72655F736F6C7574696F6E73_4�X24246C6F61645F707265642F325F2461757832_3�Lookup_Oper�execvp@@GLIBC_2.0�X24636865636B5F707265645F74797065_3�X247265766572736531_3�le_hook_emit_beep�Get_Structure�X636861725F636F6E76657273696F6E_2�tzset@@GLIBC_2.0�Find_Linedit_Completion_2�X675F7365745F626974_2�Stream_Prop_Mode_2�X24246C6F6164322F315F2461757831_3�X61746F6D_1�X736F7274_2�X246765745F6F70656E5F6F7074696F6E7331_1�Execute_A_Continuation�Blt_G_Assign�Set_Stream_Type_2�Stream_Peekc�X2463616C6C2F325F2461757832_3�char_conv�X2466645F6C6162656C696E675F6D7468_4�X2464656275675F7377697463685F6F6666_0�setlinebuf@@GLIBC_2.0�X6E616D655F71756572795F76617273_2�X246765745F73725F6F7074696F6E73_2�X7065656B5F63686172_1�x_plus_c_eq_y_F�M_Get_Working_Dir�atom_not�X242473725F646972656374697665312F325F2461757831_4�m_os_version�X246175785F6E616D65_1�max_x_y_eq_z_F�X246D616B655F6C697374_2�Update_Choice_Point4�X64656C657465_3�atom_current�X7772697465715F746F5F61746F6D_2�Choice_Point_Arg_3�Fct_Fast_Xor�X2477726974655F696E64696361746F72_0�sigprocmask@@GLIBC_2.0�X246C697374696E675F6F6E65_1�Get_Code_2�Range_Mod_Value�atom_eof_code�X242464656275675F63616C6C2F325F2461757831_2�strncmp@@GLIBC_2.0�X242473725F73746F705F6D6F64756C652F335F2461757831_2�Popen_3�Fct_Or�Fct_Fast_Shl�X24636865636B5F61746F6D5F6F725F61746F6D5F6C697374_1�X66696E64616C6C_3�Get_Current_B_1�atom_reset�X7075745F63686172_1�Fd_Copy_Variable0�Deallocate�SR_Open_File_2�X2464656275675F646973705F616C7465726E617469766573_2�X6C617374_2�Stream_Prop_Eof_Action_2�last_read_col�X7365745F73747265616D5F74797065_2�Clause_3�fputc@@GLIBC_2.0�User_Time_1�__libc_csu_init�Temporary_Name_2�truth_x_eq_y�vec_max_integer�Number_Codes_2�X247573655F66645F626F6F6C_0�Working_Directory_1�X242463617463685F615F7468726F772F355F2461757831_2�Mk_In_Code�Rd_Byte_Check�Vector_Div_Value�Blt_Fast_Eq�stm_input�X242473725F73746172745F6D6F64756C652F335F2461757831_2�X2473725F74726561745F7465726D_2�X74656D706F726172795F6E616D65_2�Unget_Byte_2�X6765745F63686172_1�Set_Output_1�X7365745F696E707574_1�Fd_Display_Extra_Cstr�X737566666978_2�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757832_1�Argument_Value_2�Char_Code_2�Unify_Value�X2424746F705F6C6576656C322F305F2461757833_3�X247573655F616C6C5F706C5F62697073_0�Write_Term�X247573655F66645F73796D626F6C6963_0�Add_Dynamic_Clause�SR_Add_Directive_7�type_character�__bss_start�Unify_Local_Value�X242464656275675F7370795F7365742F325F2461757831_3�X63616C6C5F776974685F61726773_1�Assoc_Socket_Streams_3�Write_Term_To_Codes_2�Stream_Prop_Output_1�Mk_Boolean�X6765745F636F6465_2�main�Try_Execute_Top_Level�M_Set_Working_Dir�Read_Token_2�Check_For_Un_List�Vector_Empty�Un_List_Check�X246E756D6265725F766172732F305F2461757831_1�X7075745F636F6465_2�Statistics_Cpu_Time_2�X636F6D706F756E64_1�X2466645F72656C6174696F6E6331_3�Set_Top_Level_Streams_2�X233C23_2�X7072696E74_1�Pred_Without_Aux_4�Rd_In_Byte�X646973706C61795F746F5F636F646573_2�type_in_character�Syntax_Error_Info_4�X2463757272656E745F707265646963617465_1�type_variable�Fct_Fast_Mod�domain_operator_specifier�X24707265645F776974686F75745F617578_4�X63616C6C5F776974685F61726773_11�X233E3D23_2�Socket_Bind_2�Switch_On_Term_Var_Atm_Stc�X247573655F6465633130696F_0�os_argv�X77726974655F63616E6F6E6963616C_2�domain_format_control_sequence�a_power_n_eq_y�Halt_If_No_Top_Level_1�X246765745F63757272656E745F42_1�Fct_Rem�X63757272656E745F6269705F6E616D65_2�Un_In_Code_Check�Hash_Delete_All�Vector_Test_Null_Inter�fd_element�LE_Compl_Init_Match�Get_Code_1�Write_Canonical_To_Atom_2�X675F646563_3�X6C697374_1�Fd_Atmost�Portray_Clause_1�X235C5C3C3D3E_2�Fct_Cos�X246861735F7370795F706F696E74_2�X675F6465636F_2�__libc_start_main@@GLIBC_2.0�X73656C656374_5�permission_type_text_stream�Get_Atom_Tagged�X247468726F7731_2�X2463617463685F6661696C5F6E6F77_1�Call_With_Args_11�Fd_Sel_Array_Pick_Var_4�Find_Linedit_Completion_Alt_0�X64656C6574655F66696C65_1�Blt_Float�X247365745F6C6162656C696E675F64656661756C7473_0�X7072696E74_2�X73746174697374696373_0�Sqrt_Dn�M_User_Time�X63616C6C5F776974685F61726773_9�X24246765745F73725F6F7074696F6E73322F315F2461757831_1�X2424737461742F335F2461757832_1�Put_Structure�X6E6F6E5F66645F766172_1�New_Object�Fd_Max_Integer_1�Blt_Non_Generic_Var�X61626F7274_0�Set_Input_1�X24246C697374696E675F616C6C2F315F2461757831_2�X242463616C6C5F696E7465726E616C2F325F2461757831_1�X2473747265616D5F70726F706572747931_2�truth_x_eq_c_F�type_callable�Close_Input_Term_Stream_1�X66645F656C656D656E74_3�X726561645F7465726D5F66726F6D5F61746F6D_3�Add_Str_Stream�BC_Call_Terminal_Pred_3�File_Prop_Absolute_File_Name_2�exp@@GLIBC_2.0�X73725F77726974655F6572726F72_2�X246C656173685F6D616B655F6D61736B_2�X2466645F6C6162656C696E67_2�X6E756D62657276617273_3�Display_2�X7472616365_0�permission_operation_access�atom_past�X2466696C655F70726F705F7065726D_2�fd_atleast�X24636C6F7365_2�Fct_Floor�Put_Byte_1�X2463757272656E745F61746F6D5F616E79_1�Mk_Code�New_Atom_3�x_nimply_y_eq_b�reg_bank�Current_Alias_Alt_0�Rd_Compound_Check�X2464656275675F706F727432_6�M_Host_Name_From_Adr�SR_Close_1�dup2@@GLIBC_2.0�X7368656C6C_0�ax_plus_by_plus_z_eq_t�X7065656B5F636F6465_2�X2464656275675F646973705F616E635F6C737431_1�X246765745F707265645F696E646963_3�Read_Token_From_Chars_2�SR_Update_Position_0�M_Randomize�Fct_Round�X675F6C696E6B_2�truth_x_neq_y�Rd_Chars�realloc@@GLIBC_2.0�Statistics_User_Time_2�X6465627567_0�Statistics_0�M_Get_Seed�X246765745F77726974655F6F7074696F6E7331_1�X24746F705F6C6576656C5F61626F7274_0�strcat@@GLIBC_2.0�Print_1�Get_Linedit_Prompt_1�permission_operation_close�Del_Mirror_From_Stream�__environ@@GLIBC_2.0�permission_operation_reposition�X73725F636C6F7365_1�Close_Output_Term_Stream_2�fd_variable_size�X675F696E636F_2�X636F70795F7465726D_2�Check_For_Un_Positive�truth_x_neq_c�Exit_With_Value�X24736F636B65745F6163636570742F345F2461757831_1�Rd_Boolean_Check�data_start�Fct_Fast_Mul�X73725F77726974655F6D657373616765_6�File_Prop_Type_2�Fct_Acos�X2466696E64616C6C_4�Stream_End_Of_Stream�Pl_Err_Representation�X7075745F62797465_1�X7072656469636174655F70726F7065727479_2�existence_procedure�Fct_Div�Fd_Min_2�Fct_Fast_Rem�Current_Atom_2�Power�Scan_Token�Delete_Stream�Put_Atom�X2473725F6F70656E2F335F2461757832_1�X6F70656E5F696E7075745F63686172735F73747265616D_2�Extend_Array�Vector_Add_Value�X7065726D75746174696F6E_2�max_x_a_eq_z�ax_eq_y�X66645F65786163746C79_3�Pl_Err_Resource�X736F727430_2�X403D3C_2�X66645F646F6D61696E_2�truth_x_neq_c_F�Peek_Byte_1�X726561645F7465726D5F66726F6D5F6368617273_3�X6162736F6C7574655F66696C655F6E616D65_2�Write_To_Chars_2�bind@@GLIBC_2.0�X736574617267_4�Format_2�X24246765745F77726974655F6F7074696F6E73322F315F2461757832_1�fd_element_var�X24666F726B5F70726F6C6F672F315F2461757831_1�Check_For_Un_In_Code�_fini�X24636865636B5F61746F6D5F6F725F61746F6D5F6C69737432_1�X2473686F775F6C65617368696E675F696E666F_0�lseek@@GLIBC_2.0�fcntl@@GLIBC_2.0�Put_Integer�X24636F6E73756C7432_1�memcpy@@GLIBC_2.0�Get_Byte_2�Unknown_Pred_Error�sqrt@@GLIBC_2.0�def_global_size�Stream_Get_Key�type_boolean�truth_x_plus_c_gte_y�x_or_y_eq_b�X73725F6572726F725F66726F6D5F657863657074696F6E_2�X24636865636B5F696E5F6368617261637465725F636F6465_1�permission_operation_create�X24746F705F6C6576656C32_0�Set_C_Bip_Name�X66696C655F70726F7065727479_2�X2473725F77726974655F6572726F722F325F2461757831_6�X2424657865635F71756572792F325F2461757831_3�X2473725F726561645F7465726D2F345F2461757831_3�Lookup_Oper_Any_Type�X7365746F66_3�ax_eq_y_F�X73725F6765745F696E636C7564655F6C697374_2�Blt_G_Test_Set_Bit�Fd_Element_Var_I_To_V�BC_Emulate_Pred�fclose@@GLIBC_2.1�Rd_Callable�X24747261696C5F68616E646C6572_1�Fd_Domain_Bool_1�X65786563_4�X247365745F77726974655F64656661756C7473_0�Blt_Term_Lt�M_Mktemp�X242477726974655F696E64696361746F722F305F2461757832_2�__ctype_toupper_loc@@GLIBC_2.3�Socket_Connect_4�LE_Printf�le_hook_displ_str�getsockname@@GLIBC_2.0�strrchr@@GLIBC_2.0�Unify_Nil�a_power_n_eq_y_F�X24706C5F6572725F74797065_2�X736565696E67_1�Delete_Str_Stream�X2473686F775F6C65617368696E675F696E666F32_1�Unify_Variable�Pred_Prop_Prolog_File_2�Rd_In_Byte_Check�X726561645F6E756D626572_1�Unify_Atom_Tagged�Create_Choice_Point4�X696E7465676572_1�ensure_reserved�X2473686F775F756E646566696E65645F616374696F6E_0�Current_Char_Conversion_Alt_0�__strdup@@GLIBC_2.0�Read_Number�x_eq_y�X675F746573745F7365745F626974_2�X675F646563_2�X24246765745F636C6F73655F6F7074696F6E73322F315F2461757831_1�Open_3�Stream_Set_Position_LC�Strdup_Check�rmdir@@GLIBC_2.0�Pred_Prop_Static_1�Temporary_File_3�X74656D706F726172795F66696C65_3�Stdio_Set_Buffering�Fd_Element_Var_I�X233D23_2�X6765745F636F6465_1�le_hook_kbd_is_not_empty�Mk_Codes�X6372656174655F70697065_2�type_integer�Current_Mirror_Alt_0�Stream_Line_Column_3�truth_x_eq_y_F�Read_Term_From_Chars_5�Check_For_Un_In_Char�Sys_Var_Put_2�Delete_Dynamic_Clause�domain_io_mode�closedir@@GLIBC_2.0�X6B6579736F7274_2�domain_close_option�X2463616C6C5F696E7465726E616C_2�Call_With_Args_7�gettimeofday@@GLIBC_2.0�X7365745F73656564_1�Make_Directory_1�Blt_Term_Eq�Fct_Exp�M_System_Time�Add_Stream_Mirror_2�X24706C5F6572725F6576616C756174696F6E_1�X726561645F6E756D626572_2�m_os_type�X736F636B65745F6C697374656E_2�X247573655F6361746368_0�Blt_G_Inco�X247379735F7661725F72657365745F626974_2�srand@@GLIBC_2.0�Display_1�Fd_Prolog_To_Array_Fdv�X247365745F64656275676765725F73747265616D73_2�Range_Mod_Range�LE_Emit_Beep�x_neq_y�Blt_G_Dec�X247379735F7661725F696E63_1�X246463675F7472616E735F626F6479_4�X2473686F775F756E646566696E65645F616374696F6E31_1�X7368656C6C_2�X247573655F6C697374_0�Stream_Gets_Prompt�X2473725F73696D706C5F6572726F72_5�opendir@@GLIBC_2.0�Rd_Callable_Check�X77726974655F7465726D5F746F5F636F646573_3�domain_stream_or_alias�X6F70656E5F696E7075745F61746F6D5F73747265616D_2�X235C5C5C5C2F_2�gethostname@@GLIBC_2.0�Get_Char_2�Hash_Find�Fd_Create_C_Frame�X24246261676F662F345F2461757832_2�open@@GLIBC_2.0�Mk_String�X24656E7669726F6E5F616C74_0�X736F636B65745F636F6E6E656374_4�Write_To_Atom_2�X242464656275675F706F72745F69676E6F72652F345F2461757831_3�X66645F6861735F766563746F72_1�X2463757272656E745F616C696173_2�type_in_byte�X73747265616D5F70726F7065727479_2�atom_top_level_input�X2473725F77726974655F6572726F722F345F2461757831_4�X246C656E677468_3�Un_In_Char�abs_x_minus_y_eq_z�x_eq_c�X246173736F635F736F636B65745F73747265616D73_3�vec_size�X7772697465715F746F5F636F646573_2�m_architecture�X72616E646F6D_1�X6E616D65_2�Stream_Prop_Reposition_2�LE_Compl_Del_Word�X24636865636B5F68656164_1�Rd_Proper_List_Check�Mk_Float�X24756E77696E64_1�X247365745F62696E645F7661726961626C65735F64656661756C7473_0�LE_Get_Key�X6F70_3�M_Spawn_Redirect�stm_stdin�gethostbyname@@GLIBC_2.0�atom_binary�sigemptyset@@GLIBC_2.0�atom_debugger_input�Fct_Asin�Un_Integer_Check�At_End_Of_Stream_1�Blt_G_Inc�Rd_String�LE_Open_Terminal�Nl_0�Stream_Prop_File_Name_2�X2463757272656E745F73747265616D5F616C74_0�X24636C61757365_3�X232F5C5C_2�X6E7468_3�X242464656275675F657865635F636D642F365F2461757831_1�X7365745F6C696E656469745F70726F6D7074_1�Switch_On_Integer�Fct_Float_Integ_Part�Fd_Assign_Value�X24706F72747261795F636C61757365_2�X242466645F6C6162656C696E672F325F2461757831_4�Full_Var_Div_Var�Stream_Printf�X24246765745F77726974655F6F7074696F6E73322F315F2461757836_1�byte_len�Hash_Table_Size�Current_Op_Alt_0�Blt_Non_Fd_Var�Copy_Term�getpwnam@@GLIBC_2.0�X2464656275675F69735F64656275675F707265646963617465_1�Stop_Prolog�X247573655F7372635F726472_0�X73725F6765745F6572726F725F636F756E74657273_3�X6E6C_0�exit@@GLIBC_2.0�Format_To_Codes_3�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757831_1�atom_top_level_output�X2463616C6C5F696E7465726E616C5F6F72_4�X24746F705F6C6576656C5F73746F70_0�Fct_Atan�Mk_Proper_List�Add_Alias_To_Stream�X242473725F74726561745F7465726D2F325F2461757831_2�X66645F73697A65_2�X24617070656E642F315F2461757831_2�Check_For_Un_Float�Get_Print_Stm_1�X73656E645F7369676E616C_2�X73725F6F70656E_3�X247365652F315F2461757831_2�calloc@@GLIBC_2.0�Read_Pl_State_File�X6973_2�X247573655F66645F76616C756573_0�X246D61785F6C69737431_3�Vector_Full�X2464656275675F706F72745F707265747479_2�atom_stream_position�X2463686F6963655F706F696E745F696E666F_4�Environ_Alt_0�Rd_Codes_Check�Father_Of_Aux_Name_3�Get_Key_No_Echo_1�ax_plus_y_eq_z_F�X6C696E655F706F736974696F6E_2�Un_String_Check�Full_Nth_Root�X65786563_5�Create_Allocate_Atom�X247573655F707265747479_0�X736F727430_1�Line_Count_2�Mk_Byte�X2464656275675F706F72745F69676E6F7265_4�X666C6F6174_1�X2464656275675F7377697463685F6F6E_1�Hash_First�Define_Vector_Size�Un_Chars�Atom_Concat_3�Range_To_String�sscanf@@GLIBC_2.0�X70726F6C6F675F66696C655F6E616D65_2�Get_Current_Bip�_edata�X3E_2�X246765745F636C6F73655F6F7074696F6E7331_1�X247363616E5F64796E5F6A756D705F616C74_0�atom_tbl�min_x_y_eq_z�__i686.get_pc_thunk.bx�_IO_putc@@GLIBC_2.0�Sub_Atom_Alt_0�Sqrt_Exact�X66645F6C6162656C696E67_2�Switch_On_Term�Sys_Var_Set_Bit_2�X736F636B65745F62696E64_2�fd_atmost�free@@GLIBC_2.0�Create_Atom�Read_2�Fd_Add_List_Dependency�_end�X2E_2�Get_Key_1�ioctl@@GLIBC_2.0�X2463757272656E745F7072656469636174655F62697073_1�X66696E645F6C696E656469745F636F6D706C6574696F6E_2�X675F72657365745F626974_2�Start_Prolog�X63616C6C5F776974685F61726773_4�Prime_Range�X756E6765745F63686172_2�X61626F6C697368_1�truth_x_lt_y�X73725F6765745F706F736974696F6E_3�Stream_Set_Position�Check_For_Un_String�X72616E646F6D697A65_0�X2465786563_5�X3C_2�min_x_a_eq_z�Un_Callable�X675F746573745F72657365745F626974_2�X2463757272656E745F61746F6D5F616C74_0�Blt_Non_Var�X24636865636B5F707265645F70726F70_1�getcwd@@GLIBC_2.0�X24726574726163745F6C6173745F666F756E64_0�X24246765745F77726974655F6F7074696F6E73322F315F2461757835_1�Copy_Clause_To_Heap�Fd_Atleast�Un_Proper_List_Check�X2424657870616E645F7465726D312F325F2461757831_2�Peek_Byte_2�Blt_Gte�Realloc_Check�isatty@@GLIBC_2.0�X24246765745F6F70656E5F73746D2F325F2461757831_2�stm_top_level_output�Un_Char�Range_Sub_Range�X77726974655F666F66_1�Create_Swt_Table�acos@@GLIBC_2.0�memset@@GLIBC_2.0�X726561645F696E7465676572_1�Un_Code�X24246765745F6F70656E5F6F7074696F6E73322F315F2461757833_1�connect@@GLIBC_2.0�Rd_List�X233D3D3E_2�stdin@@GLIBC_2.0�X2463686F6963655F706F696E745F617267_3�X247573655F636F6E73745F696F_0�X2464656275675F636865636B5F626970_2�X66696C655F7065726D697373696F6E_2�X235C5C2F_2�Un_Proper_List�X736565_1�X666F726D6174_2�Create_Pred�X62696E645F7661726961626C6573_2�resource_print_object_not_linked�Unify_Void�Write_Term_1�X6C6F6164_1�X2466696E645F6C696E656469745F636F6D706C6574696F6E5F616C74_0�Call_With_Args_10�X72656164_1�X617267756D656E745F76616C7565_2�Detect_If_Aux_Name�X6C65617368_1�atom_true�X246E746832_4�existence_sr_descriptor�Most_Significant_Bit�Reset_Prolog_In_Signal�Create_Functor_Arity_Tagged�X246C61737431_3�Format_To_Chars_3�Full_Sqrt_Var�X617263686974656374757265_1�X247468726F775F696E7465726E616C_2�Globalize_If_In_Local�X66645F646F6D_2�X2463757272656E745F636861725F636F6E76657273696F6E5F616C74_0�Sys_Var_Read_2�Vector_Mul_Value�SR_Set_Error_Counters_3�Range_Next_After�X247365745F6F70656E5F64656661756C7473_0�Calloc_Check�Rd_Chars_Str_Check�Sub_Atom_5�truth_x_lte_c�X73725F77726974655F6572726F72_4�Fd_All_Different_1�X246C6F616431_1�X242464656275675F706F72745F69676E6F72652F345F2461757833_3�Syntax_Error�Blt_Atomic�X726561645F696E7465676572_2�M_Spawn�Fct_Fast_Abs�Statistics_Local_Stack_2�X246765745F686561645F616E645F626F6479_3�X2464656275675F63616C6C31_8�strncpy@@GLIBC_2.0�Range_Set_Value�X24636865636B5F6C697374_1�domain_character_code_list�Un_Number_Check�X2424636F6E73756C74322F315F2461757833_2�X247573655F6C655F696E74657266_0�Group_Solutions_Alt_0�Writeq_To_Codes_2�X24636174636831_4�Set_Last_Syntax_Error�X24657865635F636D6431_1�X24726561645F72657475726E_0�X636C6F73655F696E7075745F63686172735F73747265616D_1�Fct_Dec�x_plus_c_eq_y�Dcg_Trans_Body_4�Format_3�Blt_Compare�Fct_Sin�fopen@@GLIBC_2.1�dup@@GLIBC_2.0�Call_With_Args_2�type_fd_bool_evaluable�Fct_Inc�X3D_2�domain_os_path�permission_operation_input�Call_With_Args_8�Put_List�X67656E657269635F766172_1�X61746F6D5F636F646573_2�Mk_Compound�X2424657865635F636D645F6C696E655F676F616C2F315F2461757831_1�_setjmp@@GLIBC_2.0�X24666F725F616C74_0�Fct_Sub�truth_x_plus_c_neq_y�X675F696E63_3�X6765745F62797465_2�Put_Char_2�SR_Get_Include_Stream_List_2�Context_Error_1�Vector_Mod_Vector�X242473725F646972656374697665312F325F2461757833_2�X7368656C6C_1�X24246765745F6C6162656C696E675F6F7074696F6E73322F315F2461757833_1�X2464656275675F646973705F68656C70_0�M_Shell�X646973706C61795F746F5F6368617273_2�le_hook_get_char0�Hash_Next�SR_Stop_Module_3�X7375626C697374_2�M_Sys_Err_String�tag_tbl�Check_For_Un_Integer�SR_Get_Module_3�Fd_Bool_Meta_3�X726561645F7465726D5F66726F6D5F636F646573_3�X24636865636B5F6C6973745F6F725F7061727469616C5F6C697374_1�X63616C6C5F776974685F61726773_3�Peek_Code_2�Rd_In_Code_Check�escape_char�Blt_G_Test_Reset_Bit�Un_Compound�Set_Debugger_Streams_2�_IO_stdin_used�X7365745F73747265616D5F706F736974696F6E_2�X726561645F746F6B656E5F66726F6D5F6368617273_2�X726561645F746F6B656E_2�Directory_Files_2�X2463616C6C5F7465726D5F657870616E73696F6E_2�Put_Code_2�Stdio_Desc_Of_Stream�char_type�X233D_2�X756E6C696E6B_1�Blt_Term_Gte�Fd_Tell_Range_Range�X247363616E5F64796E5F746573745F616C74_0�Blt_Term_Neq�X2464656275675F706F72745F70726F6D7074_6�X242472656D6F76655F756E64657273636F72655F766172732F325F2461757831_2�X247472795F706F7274726179_1�Unset_C_Bip_Name�X726561645F7465726D_3�Call_Prolog_Next_Sol�X247573655F636861725F696F_0�strtok@@GLIBC_2.0�X2473725F73746172745F6D6F64756C65_3�sys_var�kill@@GLIBC_2.0�X77726974655F63616E6F6E6963616C_1�X246765745F62696E645F7661726961626C65735F6F7074696F6E73_4�X2424726561645F71756572792F325F2461757831_1�permission_type_operator�Delete_Oper�truth_x_lte_y�Update_Choice_Point2�SR_Check_Descriptor_1�Blt_Fast_Gte�X2463617463685F615F7468726F77_5�X77616974_2�getc@@GLIBC_2.0�SR_Start_Module_3�domain_os_file_permission�le_hook_message_box�truth_x_plus_c_eq_y�parse_dico_var�token�X2463757272656E745F70726F6C6F675F666C61675F616C74_0�Un_Char_Check�Dcg_Trans_Rule_2�permission_operation_modify�X24737461746973746963732F325F2461757831_3�Check_For_Un_Byte�Blt_G_Inc_3�X756E6966795F776974685F6F63637572735F636865636B_2�Set_Bip_Name_2�X247365745F726561645F64656661756C7473_0�Add_Mirror_To_Stream�atom_end_of_file�x_power_a_eq_y_F�X63757272656E745F6F70_3�Set_Ctrl_C_Handler_0�Hash_Insert�stm_output�Blt_List�Flush_All_Streams�X7365656B_4�Find_Stream_From_PStm�parse_nb_var�X7072696E745F746F5F6368617273_2�domain_stream_seek_method�X726561645F66726F6D5F6368617273_2�Rd_Number�Full_Find_Expon�Float_To_String�atom_user_output�Rd_Integer�Load_Left_Right�X2464656275675F706F727431_6�sprintf@@GLIBC_2.0�X403E_2�Fd_Lte_2�x_lt_y�Untrail�Read_From_Chars_2�fwrite@@GLIBC_2.0�Scan_Dynamic_Pred_Alt_0�X6368617261637465725F636F756E74_2�X247573655F66645F7072696D65_0�Fd_Size_2�Unify_Atom�Fct_Fast_Sub�X77726974655F63616E6F6E6963616C5F746F5F6368617273_2�X246372656174655F636F6C756D6E_3�__data_start�Scan_Next_Number�Blt_Gt�Fd_Dom_2�realpath@@GLIBC_2.3�sin@@GLIBC_2.0�X617267756D656E745F6C697374_1�Read_Term_From_Atom_5�Fd_Domain_2�X706F7274726179_1�X2462696E645F7661726961626C6573_4�Fd_Prolog_To_Array_Any�X73725F6765745F73697A655F636F756E74657273_3�socket@@GLIBC_2.0�Current_Prolog_Flag_2�X24636865636B5F6F776E65725F66696C6573_3�Fd_Set_Vector_Max_1�Term_Ref_2�Not_Prime_Range�X617070656E64_3�X247365745F73747265616D5F656F665F616374696F6E2F325F2461757831_1�X646174655F74696D65_1�File_Prop_Size_2�Un_Byte�_IO_getc@@GLIBC_2.0�Vector_Inter�readdir@@GLIBC_2.0�X246765745F62696E645F7661726961626C65735F6F7074696F6E7332_1�Check_Valid_Mirror_1�X24636865636B5F6C6973745F617267_2�_Jv_RegisterClasses�__ctype_b_loc@@GLIBC_2.3�X2463616C6C5F66726F6D5F6465627567676572_2�Fct_Float�le_hook_erase�X247379735F7661725F6765745F626974_3�X736574617267_3�Unify_Structure�Find_Expon_Exact�X2462635F73746172745F656D6974_0�Pl_Err_Type�X7365656E_0�Socket_2�rand@@GLIBC_2.0�Fd_List_Int_To_Range�truth_x_eq_c�X6765745F62797465_1�Recover_Generator_1�X2473725F6F70656E5F6E65775F70726F6C6F675F66696C65_1�X73796E7461785F6572726F725F696E666F_4�Read_Token_From_Codes_2�evluation_underflow�x_plus_c_neq_y�full_ac�Hash_Free_Table�Fct_Neg�X235C5C3D3D3E_2�X247573655F61726974685F696E6C_0�Blt_Arg�Rd_Codes_Str_Check�X2464656275675F657865635F636D64_6�X636C6F7365_2�X242464656275675F63616C6C5F706F72742F355F2461757831_3�Writeq_To_Atom_2�Save_Call_Info_3�X636F6E73756C74_1�Rd_Char_Check�bsearch@@GLIBC_2.0�log@@GLIBC_2.0�fd_copy_variable�X2424746F705F6C6576656C322F305F2461757832_1�X7365745F70726F6C6F675F666C6167_2�X73797374656D_2�quot_rem_x_a_r_eq_z�X77616D5F6465627567_0�Real_Time_1�fd_unify_with_integer�X3D2E2E_2�X242464656275675F706F72745F69676E6F72652F345F2461757832_5�X242464656275675F77726974655F676F616C2F345F2461757831_2�Emit_Ctrl_C�X24696E69745F6465627567676572_0�X247365745F73747265616D5F656F665F616374696F6E2F325F2461757832_2�Call_With_Args_1�Fd_Prolog_To_Range�escape_symbol�Char_Conversion_2�tcgetattr@@GLIBC_2.0�LE_Put_Char�Un_Codes_Check�X2424636865636B5F696E5F6368617261637465725F636F64652F315F2461757831_1�read@@GLIBC_2.0�Print_To_Chars_2�representation_too_many_variables�Indomain_2�quot_rem_a_y_r_eq_z_F�X736F636B65745F616363657074_3�Blt_Lt�glob_dico_var�X247379735F7661725F7772697465_2�X24696E646F6D61696E5F6D696E5F616C74_0�Stop_Mark_1�Copy_Contiguous_Term�TP�X24657865635F7175657279_2�Current_Input_1�X2463617463685F696E7465726E616C_4�x_plus_c_gte_y�X675F646563_1�Get_Structure_Tagged�LE_Ins_Mode�Range_Reset_Value�pi_arity_word�Portray_Clause_2�X2463757272656E745F73747265616D_1�Io_Fileno_Of_Stream�X63616C6C5F776974685F61726773_7�X246765745F6F70656E5F6F7074696F6E73_1�X666F726D61745F746F5F6368617273_3�Create_Choice_Point2�Peek_Char_1�LE_Kbd_Is_Not_Empty�Get_Key_No_Echo_2�Sys_Var_Reset_Bit_2�Range_Test_Value�X64656C6574655F6469726563746F7279_1�X2466645F646F6D61696E_3�Socket_Listen_2�X247375626C69737431_3�X66696C655F657869737473_1�X2424746F705F6C6576656C322F305F2461757834_3�ax_plus_y_plus_z_eq_t_F�Get_Nil�x_or_y_eq_1�LE_Screen_Size�Pred_Prop_Built_In_1�Read_From_Atom_2�X73746174697374696373_2�X636C6F73655F6F75747075745F63686172735F73747265616D_2�Absolute_File_Name_2�type_number�Fd_Vector_Max_1�Sort_List_1�atom_void�__gmon_start__�strcpy@@GLIBC_2.0�Recover_After_Error�min_x_a_eq_z_F�X247573655F6F735F696E74657266_0�le_hook_displ�Unget_Byte_1�
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\MaLARea\bin\paradox
  3422 2445:�����+ #����������+ #����������+ #����������+ #����������+ #����������+ #����������+ 1���������+ 1��������+ 1��������+ 2����7����+ 2����7����+ 2����������+ 2����������+ 2����������+ %��������+ %���������+ %��������+ %��������+ 2������?����+ 2������?����+ ���� �+ ����� �+ 2����������+ !����@����+ �����@�+ !����@����+ !����@����+ 2�����������+ 2������������$��$��$��$h�$�%��$��$d�$��$ؠ$h�$t�$��$��$X�$(�$H�$��$��$�$��$l�$�$(�$��$��$��$d�$��$�$,�$��$L�$\�$l�$|�$��$��$��$��$�$,�$T�$d�$��$��$��$��$L3 -����������L3 -����������t3 ���5"�@|3 �����|3 �����t3 ���5"�@L3 *����������d3 ���	��d3 ���	��d3 ���	��p3 ����@�d3 ���	��L3 *�������{��\3 !���������\3  ������\3  ������\3  ������\3 !���������L3 *�������c��L3 )�������c��L3 )������c��L3 '�����c���p3 �����0p3 �����L3 '�����c���L3 '�����c���t3 ���5"�@|3 �����|3 �����t3 ���5"�@L3 )���ֈ�c��L3 )�����c��L3 )���!��c��L3 )���!��c��L3 )���!��c��L3 )���!��c��L3 )���!��c��L3 )�������c��L3 )�������c��L3 *�������c��L3 *����������P3 ,�����?����3 ������3 ���A�8��3 ������3 ������3 ������3 ������3 ������3 ������3 ������3 ������3 �����P3 ���� P3 ����� P3 ,�����?���P3 ,�����?���P3 ,�����?���L3 -�����������$x�$�$�$�$�$�$��$ and ���' used with different arities ��Symbol '����l�$./Paradox/AnalysisTypes.hs:(258,16)-(267,46)|function transTerm�8�$./Paradox/AnalysisTypes.hs:244:18-39|ts Form.:-> _��Types: no fun type��h�$��$Types: no type��h�$��$�$`�$�$T�$�$�$8�$./Paradox/AnalysisTypes.hs:260:18-40|ts Form.:-> t'�8�$./Paradox/AnalysisTypes.hs:236:18-39|ts Form.:-> t��8�$./Paradox/AnalysisTypes.hs:231:18-39|ts Form.:-> t����$|�$��$��$��$��$��$��$��$��$��$��$��$`�$�$t�$ �$��$H�$var not in scope����(�$��$(�$��$|�$��$h�$(�$@�$��$8�$H�$X�$t�$��$��$��$��$|�$��$��$��$(�$h�$��$��$0�$��$T�$��$��$@�$��$��$h�$��$��$��$��$��$��$ �$H�$X�$h�$H�$��$�9 �������9 �������9 �������9 �������9 �������9 �������9 �������9 �������9 �������9 �������9 ������L�$X�$ForAllNew ��ForAll �predef???���h�$��$l�$./Paradox/Instantiate.hs:(211,4)-(221,6)|function atLeastOne����l�$./Paradox/Instantiate.hs:(224,4)-(242,8)|function atMostOne�l�$./Paradox/Instantiate.hs:(157,2)-(242,8)|function parts���$T�$�$@�$h�$`�$�$t�$��$��$��$t�$��$��$(�$��$��$��$�$T�$�$$�$�$ؠ$�$d�$��$��$@�$��$(�$��$��$|�$��$��$��$�$�$@�$P�$h�$��$��$��$�$�; �������; ������; ������; ������; ������; ������; ������; ������; ������; ������; ������; ������; ������; ������; �����; �����; ������; ������; ������; �����; �����; �����; �����; �����; ������; �����P�; �����P��; �����P��; �����P��; �����P��; �����P��; ����
P��; ���	�P��; ���	���; ���	���; ���	���; ���	���; ���	���; ���	���; ���	�P��; ���	���; ���	���; ���	���; ���	�P��; ���	�P��; ���	�P��; ���	�P��; �����P��; �������; ����
P��; �����P��; �����P��; �����P�4�$�$H�$D�$T�$T�$\�$\�$\�$�$x�$��$��$l�%��$��$��$��$��$<�%��$��$<�$��$��$H�$��$x�$��$x�$��$��$��$��$��$��$��$��$��$��$��$��$��$|�$|�$|�$|�$|�$|�$|�$��$��$|�$��$��$��$��$��$��$��$��$��$��$�$��$�$��$�$<�$�$�$��$x�$��$(�$��$x�$��$��$ �%h�%��$��$Loc �����$�$��%$�$��$��$ �%h�%��$��$ArgV ���ArgN ���D�$L�$��%T�$��$8�$��$��$�$$�$<�$�$��$l�$��$l�$��$\�$l�$��$Sat.hs:(268,0)-(270,26)|function fromLBool����$��$�$l�$h�$ �$��$\�$l�$��$��$�$��$��$x�$��$��$x�$x�$��$,�$,�$,�$��$��$4�$�$l�$h�$ �$��$\�$l�$��$��$��$�$�$<�$L�$\�$ A ������ A ����� A ���
�� A ����� A ����� A �����P�%t�$P�%��$��%��$��$��$ �%h�%��$�$��$ :@ ������$��$��%��$��$��$P�%�$(�$��$\�$��$��$8�$h�$��$�$��$��$��$��$L�$��$��$x�$��$��$��$��$��$x�$l�$��$0�$<�$�$��$��$��$��$��$��$x�$\�$l�$��$�$��$��$�$��$��$��$��$x�$��$��$��$��$x�$��$��$��$��$x�$\�$l�$��$0�$P�%0�$l�%0�$��$4�$��$0�$��$$�$��$T�$�$$�$flatten: not in var-table: �T�$D�$��$l�$./Paradox/Flatten.hs:(226,4)-(229,29)|function norm�T�$D�$��$l�$./Paradox/Flatten.hs:(157,6)-(158,58)|function replace��clique: not in table����h�$�$8�$./Paradox/Flatten.hs:74:10-30|tps Form.:-> tp���h�$(�$T�$(�$T�$(�$L�$\�$d�$p�$ �$�$��$��$��$x�$��$X�$��$X�$\�$��$T�$h�$T�$$�$��$��$��$Į$t�$Į$��$�$X�$��$X�$�$��$��$��$T�$��$T�$X�$��$X�$T�$ �$�$��$t�$X�$��$�$\�$��$@�$4�$��$��$��$��$��$��$�$�$�D �������D ��������$(�$T�$(�$T�$(�$T�$t�$��$@�$t�$��$H�$��$T�$d�$h�$t�$(�$l�$h�$p�$\�$��$��$$�$,�$4�$@�$H�$T�$��$X�$��$��$@�$|�$|�$`�$�$t�$��$��$��$t�$��$ȡ$��$@�$��$p�$x�$��$|�$��$T�$D�$��$Į$ȡ$X�$h�$0�$��$��$��$��$��$��$��$��$��$P�$��$(�$��$(�$��$��$0�$T�$�$��$(�$Į$\�$l�$��$\�$��$��$��$�$H�$T�$ı$ؠ$��$��$@�$(�$\�$��$��$��$8�$@�$(�$@�$��$ �$0�$@�$H�$H�$T�$��$��$`�$��$�$(�$��$��$h�$��$(�$��$��$��$p�$(�$Į$p�$x�$`�$h�$x�$��$d�$��$X�$��$��$@�$|�$X�$��$h�$ؠ$��$t�$��$X�$X�$t�$h�$��$��$��$��$��$��$��$��$��$�G �������G ����,��G ������G ������G ������G ������G ������G ����n��G ����o��G ������G ������G �������$��$��$��$��$l�$./Paradox/Flatten.hs:82:9-37|lambda�l�$0�$��$h�$��$��$��$��$��$X�$��$h�$��$��$�$D�$h�$��$��$|�$��$H�$��$��$��$��$��$��$��$�H �������H ������H ���
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\motel\fss.env
  1175 52:conceptEqualSets(env(t5570),user,[],concept12,and([atleast(1,truth_mod),atmost(1,truth_mod)]),axiom109):-true.
  1177 49:conceptEqualSets(env(t5570),system,[],concept13,atleast(1,truth_mod),axiom111):-true.
  1180 39:conceptEqualSets(env(t5570),system,[],atleast(2,truth_mod),not(concept14),axiom114):-true.
  1183 52:conceptEqualSets(env(t5570),user,[],concept20,and([atleast(1,det),atmost(1,det)]),axiom124):-true.
  1185 49:conceptEqualSets(env(t5570),system,[],concept21,atleast(1,det),axiom126):-true.
  1188 39:conceptEqualSets(env(t5570),system,[],atleast(2,det),not(concept22),axiom129):-true.
  1189 52:conceptEqualSets(env(t5570),user,[],concept27,and([atleast(1,deictic_mod),atmost(1,deictic_mod)]),axiom135):-true.
  1191 49:conceptEqualSets(env(t5570),system,[],concept28,atleast(1,deictic_mod),axiom137):-true.
  1194 39:conceptEqualSets(env(t5570),system,[],atleast(2,deictic_mod),not(concept29),axiom140):-true.
  1195 52:conceptEqualSets(env(t5570),user,[],concept34,and([atleast(1,named),atmost(1,named)]),axiom146):-true.
  1197 49:conceptEqualSets(env(t5570),system,[],concept35,atleast(1,named),axiom148):-true.
  1200 39:conceptEqualSets(env(t5570),system,[],atleast(2,named),not(concept36),axiom151):-true.
  1203 52:conceptEqualSets(env(t5570),user,[],concept42,and([atleast(1,subject),atmost(1,subject)]),axiom159):-true.
  1205 49:conceptEqualSets(env(t5570),system,[],concept43,atleast(1,subject),axiom161):-true.
  1208 39:conceptEqualSets(env(t5570),system,[],atleast(2,subject),not(concept44),axiom164):-true.
  1209 52:conceptEqualSets(env(t5570),user,[],concept49,and([atleast(1,purpose),atmost(1,purpose)]),axiom170):-true.
  1211 49:conceptEqualSets(env(t5570),system,[],concept50,atleast(1,purpose),axiom172):-true.
  1214 39:conceptEqualSets(env(t5570),system,[],atleast(2,purpose),not(concept51),axiom175):-true.
  1215 52:conceptEqualSets(env(t5570),user,[],concept56,and([atleast(1,time),atmost(1,time)]),axiom181):-true.
  1217 49:conceptEqualSets(env(t5570),system,[],concept57,atleast(1,time),axiom183):-true.
  1220 39:conceptEqualSets(env(t5570),system,[],atleast(2,time),not(concept58),axiom186):-true.
  1221 52:conceptEqualSets(env(t5570),user,[],concept63,and([atleast(1,illoc),atmost(1,illoc)]),axiom192):-true.
  1223 49:conceptEqualSets(env(t5570),system,[],concept64,atleast(1,illoc),axiom194):-true.
  1226 39:conceptEqualSets(env(t5570),system,[],atleast(2,illoc),not(concept65),axiom197):-true.
  1227 52:conceptEqualSets(env(t5570),user,[],concept70,and([atleast(1,cause),atmost(1,cause)]),axiom203):-true.
  1229 49:conceptEqualSets(env(t5570),system,[],concept71,atleast(1,cause),axiom205):-true.
  1232 39:conceptEqualSets(env(t5570),system,[],atleast(2,cause),not(concept72),axiom208):-true.
  1233 52:conceptEqualSets(env(t5570),user,[],concept77,and([atleast(1,result),atmost(1,result)]),axiom214):-true.
  1235 49:conceptEqualSets(env(t5570),system,[],concept78,atleast(1,result),axiom216):-true.
  1238 39:conceptEqualSets(env(t5570),system,[],atleast(2,result),not(concept79),axiom219):-true.
  1239 52:conceptEqualSets(env(t5570),user,[],concept84,and([atleast(1,location),atmost(1,location)]),axiom225):-true.
  1241 49:conceptEqualSets(env(t5570),system,[],concept85,atleast(1,location),axiom227):-true.
  1244 39:conceptEqualSets(env(t5570),system,[],atleast(2,location),not(concept86),axiom230):-true.
  1245 47:conceptEqualSets(env(t5570),user,[],concept90,atleast(1,subject),axiom231):-true.
  1251 52:conceptEqualSets(env(t5570),user,[],concept96,and([atleast(1,volition),atmost(1,volition)]),axiom248):-true.
  1253 49:conceptEqualSets(env(t5570),system,[],concept97,atleast(1,volition),axiom250):-true.
  1256 39:conceptEqualSets(env(t5570),system,[],atleast(2,volition),not(concept98),axiom253):-true.
  1259 53:conceptEqualSets(env(t5570),user,[],concept104,and([atleast(1,origin_mod),atmost(1,origin_mod)]),axiom261):-true.
  1261 50:conceptEqualSets(env(t5570),system,[],concept105,atleast(1,origin_mod),axiom263):-true.
  1264 39:conceptEqualSets(env(t5570),system,[],atleast(2,origin_mod),not(concept106),axiom266):-true.
  1271 53:conceptEqualSets(env(t5570),user,[],concept116,and([atleast(1,colour_mod),atmost(1,colour_mod)]),axiom296):-true.
  1273 50:conceptEqualSets(env(t5570),system,[],concept117,atleast(1,colour_mod),axiom298):-true.
  1276 39:conceptEqualSets(env(t5570),system,[],atleast(2,colour_mod),not(concept118),axiom301):-true.
  1279 53:conceptEqualSets(env(t5570),user,[],concept124,and([atleast(1,relative_mod),atmost(1,relative_mod)]),axiom311):-true.
  1281 50:conceptEqualSets(env(t5570),system,[],concept125,atleast(1,relative_mod),axiom313):-true.
  1284 39:conceptEqualSets(env(t5570),system,[],atleast(2,relative_mod),not(concept126),axiom316):-true.
  1289 53:conceptEqualSets(env(t5570),user,[],concept132,and([atleast(1,material_mod),atmost(1,material_mod)]),axiom328):-true.
  1291 50:conceptEqualSets(env(t5570),system,[],concept133,atleast(1,material_mod),axiom330):-true.
  1294 39:conceptEqualSets(env(t5570),system,[],atleast(2,material_mod),not(concept134),axiom333):-true.
  1297 53:conceptEqualSets(env(t5570),user,[],concept140,and([atleast(1,weight_mod),atmost(1,weight_mod)]),axiom343):-true.
  1299 50:conceptEqualSets(env(t5570),system,[],concept141,atleast(1,weight_mod),axiom345):-true.
  1302 39:conceptEqualSets(env(t5570),system,[],atleast(2,weight_mod),not(concept142),axiom348):-true.
  1307 53:conceptEqualSets(env(t5570),user,[],concept150,and([atleast(1,instrument),atmost(1,instrument)]),axiom359):-true.
  1309 50:conceptEqualSets(env(t5570),system,[],concept151,atleast(1,instrument),axiom361):-true.
  1312 39:conceptEqualSets(env(t5570),system,[],atleast(2,instrument),not(concept152),axiom364):-true.
  1313 53:conceptEqualSets(env(t5570),user,[],concept157,and([atleast(1,concerned),atmost(1,concerned)]),axiom370):-true.
  1315 50:conceptEqualSets(env(t5570),system,[],concept158,atleast(1,concerned),axiom372):-true.
  1318 39:conceptEqualSets(env(t5570),system,[],atleast(2,concerned),not(concept159),axiom375):-true.
  1321 53:conceptEqualSets(env(t5570),user,[],concept165,and([atleast(1,destination),atmost(1,destination)]),axiom393):-true.
  1323 50:conceptEqualSets(env(t5570),system,[],concept166,atleast(1,destination),axiom395):-true.
  1326 39:conceptEqualSets(env(t5570),system,[],atleast(2,destination),not(concept167),axiom398):-true.
  1327 53:conceptEqualSets(env(t5570),user,[],concept172,and([atleast(1,source),atmost(1,source)]),axiom404):-true.
  1329 50:conceptEqualSets(env(t5570),system,[],concept173,atleast(1,source),axiom406):-true.
  1332 39:conceptEqualSets(env(t5570),system,[],atleast(2,source),not(concept174),axiom409):-true.
  1335 48:conceptEqualSets(env(t5570),user,[],concept180,atleast(1,means),axiom417):-true.
  1345 48:conceptEqualSets(env(t5570),user,[],concept186,atleast(1,concerned),axiom427):-true.
  1351 48:conceptEqualSets(env(t5570),user,[],concept190,atleast(1,result),axiom438):-true.
  1355 48:conceptEqualSets(env(t5570),user,[],concept194,atleast(1,concerned),axiom447):-true.
  1365 53:conceptEqualSets(env(t5570),user,[],concept202,and([atleast(1,beneficative),atmost(1,beneficative)]),axiom472):-true.
  1367 50:conceptEqualSets(env(t5570),system,[],concept203,atleast(1,beneficative),axiom474):-true.
  1370 39:conceptEqualSets(env(t5570),system,[],atleast(2,beneficative),not(concept204),axiom477):-true.
  1373 48:conceptEqualSets(env(t5570),user,[],concept209,atleast(1,concerned),axiom480):-true.
  1377 48:conceptEqualSets(env(t5570),user,[],concept212,atleast(1,concerned),axiom488):-true.
  1383 53:conceptEqualSets(env(t5570),user,[],concept218,and([atleast(1,measure),atmost(1,measure)]),axiom512):-true.
  1385 50:conceptEqualSets(env(t5570),system,[],concept219,atleast(1,measure),axiom514):-true.
  1388 39:conceptEqualSets(env(t5570),system,[],atleast(2,measure),not(concept220),axiom517):-true.
  1391 48:conceptEqualSets(env(t5570),user,[],concept226,atleast(1,measure),axiom525):-true.
  1401 48:conceptEqualSets(env(t5570),user,[],concept234,atleast(1,quantity),axiom587):-true.
  1411 53:conceptEqualSets(env(t5570),user,[],concept241,and([atleast(1,physis_mod),atmost(1,physis_mod)]),axiom648):-true.
  1413 50:conceptEqualSets(env(t5570),system,[],concept242,atleast(1,physis_mod),axiom650):-true.
  1416 39:conceptEqualSets(env(t5570),system,[],atleast(2,physis_mod),not(concept243),axiom653):-true.
  1429 53:conceptEqualSets(env(t5570),user,[],concept254,and([atleast(1,volition),atmost(1,volition)]),axiom689):-true.
  1447 53:conceptEqualSets(env(t5570),user,[],concept265,and([atleast(1,worth_mod),atmost(1,worth_mod)]),axiom726):-true.
  1449 50:conceptEqualSets(env(t5570),system,[],concept266,atleast(1,worth_mod),axiom728):-true.
  1452 39:conceptEqualSets(env(t5570),system,[],atleast(2,worth_mod),not(concept267),axiom731):-true.
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\motel\fss.save.kb
  13 36:defconcept(fssKB,[],concept12,and([atleast(1,truth_mod),atmost(1,truth_mod)])).
  15 36:defconcept(fssKB,[],concept20,and([atleast(1,det),atmost(1,det)])).
  16 36:defconcept(fssKB,[],concept27,and([atleast(1,deictic_mod),atmost(1,deictic_mod)])).
  17 36:defconcept(fssKB,[],concept34,and([atleast(1,named),atmost(1,named)])).
  19 36:defconcept(fssKB,[],concept42,and([atleast(1,subject),atmost(1,subject)])).
  20 36:defconcept(fssKB,[],concept49,and([atleast(1,purpose),atmost(1,purpose)])).
  21 36:defconcept(fssKB,[],concept56,and([atleast(1,time),atmost(1,time)])).
  22 36:defconcept(fssKB,[],concept63,and([atleast(1,illoc),atmost(1,illoc)])).
  23 36:defconcept(fssKB,[],concept70,and([atleast(1,cause),atmost(1,cause)])).
  24 36:defconcept(fssKB,[],concept77,and([atleast(1,result),atmost(1,result)])).
  25 36:defconcept(fssKB,[],concept84,and([atleast(1,location),atmost(1,location)])).
  26 31:defconcept(fssKB,[],concept90,atleast(1,subject)).
  29 36:defconcept(fssKB,[],concept96,and([atleast(1,volition),atmost(1,volition)])).
  31 37:defconcept(fssKB,[],concept104,and([atleast(1,origin_mod),atmost(1,origin_mod)])).
  35 37:defconcept(fssKB,[],concept116,and([atleast(1,colour_mod),atmost(1,colour_mod)])).
  37 37:defconcept(fssKB,[],concept124,and([atleast(1,relative_mod),atmost(1,relative_mod)])).
  40 37:defconcept(fssKB,[],concept132,and([atleast(1,material_mod),atmost(1,material_mod)])).
  42 37:defconcept(fssKB,[],concept140,and([atleast(1,weight_mod),atmost(1,weight_mod)])).
  45 37:defconcept(fssKB,[],concept150,and([atleast(1,instrument),atmost(1,instrument)])).
  46 37:defconcept(fssKB,[],concept157,and([atleast(1,concerned),atmost(1,concerned)])).
  48 37:defconcept(fssKB,[],concept165,and([atleast(1,destination),atmost(1,destination)])).
  49 37:defconcept(fssKB,[],concept172,and([atleast(1,source),atmost(1,source)])).
  51 32:defconcept(fssKB,[],concept180,atleast(1,means)).
  56 32:defconcept(fssKB,[],concept186,atleast(1,concerned)).
  59 32:defconcept(fssKB,[],concept190,atleast(1,result)).
  61 32:defconcept(fssKB,[],concept194,atleast(1,concerned)).
  66 37:defconcept(fssKB,[],concept202,and([atleast(1,beneficative),atmost(1,beneficative)])).
  68 32:defconcept(fssKB,[],concept209,atleast(1,concerned)).
  70 32:defconcept(fssKB,[],concept212,atleast(1,concerned)).
  73 37:defconcept(fssKB,[],concept218,and([atleast(1,measure),atmost(1,measure)])).
  75 32:defconcept(fssKB,[],concept226,atleast(1,measure)).
  80 32:defconcept(fssKB,[],concept234,atleast(1,quantity)).
  85 37:defconcept(fssKB,[],concept241,and([atleast(1,physis_mod),atmost(1,physis_mod)])).
  92 37:defconcept(fssKB,[],concept254,and([atleast(1,volition),atmost(1,volition)])).
  101 37:defconcept(fssKB,[],concept265,and([atleast(1,worth_mod),atmost(1,worth_mod)])).
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\motel\misc\bsp2.lisp
  16 76:	       (defconcept parent__with__two__children (and (:list parent (atleast 2 child))))
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\motel\misc\examples.pl
  37 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  91 23:	defconcept(c1,atleast(3,r)),
  92 69:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  92 91:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  117 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  140 28:	defconcept(c1,and([atleast(2,child),atmost(1,child)])),
  150 35:	defconcept(c1,and([person,atleast(2,child)])),
  151 35:	defconcept(c2,and([person,atleast(3,restr(child,lawyer))])).
  168 45:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  168 59:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  169 35:	defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))).
  176 79:	defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])),
  177 46:	defconcept(c2,and([person,all(friend,atleast(1,speciality))])).
  184 28:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  184 59:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  185 27:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  185 44:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  202 44:	defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])),
  569 36:	defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])),
  570 36:	defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])),
  629 35:	defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])),
  638 32:	defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])),
  639 31:	defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])),
  640 31:	defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\motel\motel.dvi
  20 1329:���cmti10�[�(��<����CallArgumen���t��>�����^��ٓ�R�������cmr7�+��j��)�]���������z[�j����< �(��<����CallArgumen���t��>�����^��+��j��)�������
��<��Ϣ�CallArgumen���t��>������%�::=�����z[�[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���,�]���������z[�j����< �[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���]���������z[�j�����< �<����>�Mo�Gde�UUAnnotation��>����<���<�Meta�V��*�ariable��>��������
�<��Ϣ�Argumen���tT�yp�Ges��>������%�::=���������z[�j�����< �<����>�Meta�UUV��*�ariable��>��s�:��q��<��8��T���yp�Ge��>����������z[<����Ay�Argumen���tT�yp�Ges��>��������
�<��Ϣ�Predicate�UUName��>������%�::=������z[�<����Ay�Iden���tier��>��������
�<��Ϣ�Meta�UUV��*�ariable��>������%�::=������z[�<����Ay�Iden���tier��>��������
�<��Ϣ�T���yp�Ge��>������%�::=������z[�<����Ay�Informal�UUDescription��>�������w���In�UUthe�follo���wing�subsections,�w�e�giv�e�further�explanations�for�the�parts�of�a�predicate�description.��,d������0��N��������cmbx12�1.1.1��!H�Call���Argumen���ts���������A�UUpredicate�can�ha���v�e�UUa�v��q�arying�n���um�b�Ger�UUof�argumen���ts.�q�If�w�e�use��-������[�(��<����CallArgumen���t��>�����^��+��j��)�]�������w���e��w�an�t�to�describ�Ge�the�situation�that�the�predicate�has�either�no�argumen�ts�or�atleast�one�argumen�ts�whic�h��
38����m���ust�UUb�Ge�enclosed�in�round�brac�k�ets.�q�The�notation���������(��<����CallArgumen���t��>�����^��+��j��)�������is��used�if�the�predicate�has�atleast�one�argumen���t�whic�h�has�to�b�Ge�enclosed�in�round�brac�k�ets.�G\If�the�predicate������has�UUno�argumen���ts,�w�e�simply�giv�e�no�call�argumen�ts.�����If�UUa�call�argumen���ts�tak�es�the�form���������[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���,�]���������D��3���������������������������������������������9\���썠�:�-��iӍ��{�-�����then��Sit�is�an�optional�argumen���t,��i.e.�it�ma�y�b�Ge�omitted,��and�it�is�follo�w�ed�b�Ge�a�comma�unless�it�is�the�last��
38����argumen���t,�UUi.e.�q�the�last�one�b�Gefore�the�closing�round�brac�k�et.�q�If�w�e�use��38����h��[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���]�������then�UUit�is�an�optional�argumen���t�whic�h�is�nev�er�follo�w�ed�b�y�a�comma.�q�The�last�form�is�������$��<�������Mo�Gde�UUAnnotation��>����<���<�Meta�V��*�ariable��>��������denoting�UUa�non-optional�argumen���t.�����The���mo�Gde�annotations�are�useful�to�tell�w���ether�an�argumen�t�is�input�or�output�or�b�Goth.���They�also������describ�Ge�UUformally�the�instan���tiation�pattern�to�the�call.�����F��*�ollo���wing�UUis�a�complete�description�of�the�mo�Gde�annotations�y�ou�will�nd�in�this�user�man�ual:�������������8�+������Ai�Input�GGargumen���t.�G�This�argumen�t�will�b�Ge�insp�ected�b���y�the�predicate,���and�aects�the�b�eha���viour�of�the����Aipredicate,�UUbut�will�not�b�Ge�further�instan���tiated�b�y�the�predicate.�������������8��
  20 1523:���cmti10�[�(��<����CallArgumen���t��>�����^��ٓ�R�������cmr7�+��j��)�]���������z[�j����< �(��<����CallArgumen���t��>�����^��+��j��)�������
��<��Ϣ�CallArgumen���t��>������%�::=�����z[�[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���,�]���������z[�j����< �[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���]���������z[�j�����< �<����>�Mo�Gde�UUAnnotation��>����<���<�Meta�V��*�ariable��>��������
�<��Ϣ�Argumen���tT�yp�Ges��>������%�::=���������z[�j�����< �<����>�Meta�UUV��*�ariable��>��s�:��q��<��8��T���yp�Ge��>����������z[<����Ay�Argumen���tT�yp�Ges��>��������
�<��Ϣ�Predicate�UUName��>������%�::=������z[�<����Ay�Iden���tier��>��������
�<��Ϣ�Meta�UUV��*�ariable��>������%�::=������z[�<����Ay�Iden���tier��>��������
�<��Ϣ�T���yp�Ge��>������%�::=������z[�<����Ay�Informal�UUDescription��>�������w���In�UUthe�follo���wing�subsections,�w�e�giv�e�further�explanations�for�the�parts�of�a�predicate�description.��,d������0��N��������cmbx12�1.1.1��!H�Call���Argumen���ts���������A�UUpredicate�can�ha���v�e�UUa�v��q�arying�n���um�b�Ger�UUof�argumen���ts.�q�If�w�e�use��-������[�(��<����CallArgumen���t��>�����^��+��j��)�]�������w���e��w�an�t�to�describ�Ge�the�situation�that�the�predicate�has�either�no�argumen�ts�or�atleast�one�argumen�ts�whic�h��
38����m���ust�UUb�Ge�enclosed�in�round�brac�k�ets.�q�The�notation���������(��<����CallArgumen���t��>�����^��+��j��)�������is��used�if�the�predicate�has�atleast�one�argumen���t�whic�h�has�to�b�Ge�enclosed�in�round�brac�k�ets.�G\If�the�predicate������has�UUno�argumen���ts,�w�e�simply�giv�e�no�call�argumen�ts.�����If�UUa�call�argumen���ts�tak�es�the�form���������[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���,�]���������D��3���������������������������������������������9\���썠�:�-��iӍ��{�-�����then��Sit�is�an�optional�argumen���t,��i.e.�it�ma�y�b�Ge�omitted,��and�it�is�follo�w�ed�b�Ge�a�comma�unless�it�is�the�last��
38����argumen���t,�UUi.e.�q�the�last�one�b�Gefore�the�closing�round�brac�k�et.�q�If�w�e�use��38����h��[��<����Mo�Gde�UUAnnotation��>���<���<�Meta�V��*�ariable��>���]�������then�UUit�is�an�optional�argumen���t�whic�h�is�nev�er�follo�w�ed�b�y�a�comma.�q�The�last�form�is�������$��<�������Mo�Gde�UUAnnotation��>����<���<�Meta�V��*�ariable��>��������denoting�UUa�non-optional�argumen���t.�����The���mo�Gde�annotations�are�useful�to�tell�w���ether�an�argumen�t�is�input�or�output�or�b�Goth.���They�also������describ�Ge�UUformally�the�instan���tiation�pattern�to�the�call.�����F��*�ollo���wing�UUis�a�complete�description�of�the�mo�Gde�annotations�y�ou�will�nd�in�this�user�man�ual:�������������8�+������Ai�Input�GGargumen���t.�G�This�argumen�t�will�b�Ge�insp�ected�b���y�the�predicate,���and�aects�the�b�eha���viour�of�the����Aipredicate,�UUbut�will�not�b�Ge�further�instan���tiated�b�y�the�predicate.�������������8��
  23 926:�Ev�ery�concept�name������is�4�a�mo�Gdal�concept�term�and�ev���ery�role�name�is�a�role�term.�f�No�w�let��C����,�;\�C����1��|s�,���:���:�:���
UO�,�C����	0e�r�������cmmi7�k�� m�b�Ge�mo�dal�concept�terms,�������R���,�s��R����1��|s�,���:���:�:���
UO�,�R����l��L�b�Ge�:Irole�terms�already�dened,��O��f�b�Ge�a�mo�dal�op�erator,�s��a��some�agen���t�name,�and�let��n��b�Ge�a������nonnegativ���e�UUin�teger.�q�Then��\�������'������[���and([�C����1��|s�;����:�:�:����;���C����k����])���������ľ�(conjunction)�����
37������[���or([�C����1��|s�;����:�:�:����;���C����k����])���������ľ�(disjunction)�����������[���not(�C����)���������ľ�(negation)�����������[���naf(�C����)���������ľ�(negation�UUas�failure)�����������[���all(�R���,�C����)���������ľ�(v��q�alue�UUrestriction)�����������[���some(�R���,�C����)���������ľ�(exists�UUrestriction)�����������[���atleast(�n�,�R���)���������ľ�(n���um�b�Ger�UUrestriction)�����������[���atmost(�n�,�R���)������������[��b(�O�G�,�a�,�C����)���������ľ�(b�Go���x�UUagen�t�in�tro�Gduction)�����������[���d(�O�G�,�a�,�C����)���������ľ�(diamond�UUagen���t�in�tro�Gduction)�����������[���b(�O�G�,�C����1��|s�,�C����2���)���������ľ�(b�Go���x�UUconcept�in�tro�Gduction)�����������[���d(�O�G�,�C����1��|s�,�C����2���)���������ľ�(diamond�X�concept�in���tro�Gduction)������������are�UUmo�Gdal�concept�terms�and��!>������𞍍����[���and([�R����1��|s�;����:�:�:����;���R����l����])���������ľ�(role�UUconjunction)�����
37������[���inverse(�R���)���������ľ�(role�UUin���v�ersion)�����������[���restr(�R���,�C����)���������ľ�(role�UUrestriction)��������!>�����are�UUrole�terms.��"ޘ������3.2����Mo�u�dal��T����erminological�Axioms�������A�
��mo��}'dal�=�c�ontext�-�is�a�(p�Gossibly�empt���y)�list�of�terms�of�the�form��b(�O��,�a�)�,�<c�d(�O��,�a�)�,��bc(�O��,�A�)�-�or��dc(�O��,�A�)��
38�����where�8��O���is�a�mo�Gdal�op�erator,�>v�a��is�an�agen���t�name�and��A��is�a�concept�name.�h@The�set�of�all�mo�dal�con���texts�is������denoted�UU�MC���W�.���������D�8�������	��������������������������������������e8���썠�:�-��iӍ��{�-����So-called�A��mo��}'dal�m�terminolo�gic�al�axioms�A��are�used�to�in���tro�Gduce�names�for�mo�dal�concept�terms�and�role��
38����terms.�W�A���nite��
  145 2536:�RName1�k�is�a�maximal�subset�of�the�����role�UU�RName2��suc���h�that�eac�h�role�ller�of��RName1��is�in��CName1�.��38�����sb����E���ff�&f��ǫdisjoint(�[����G�+���#��EnvName�,�]���[����G�+����M�,�]�����G�+����>�CName1�,�����G�+����CName2���)������(SB����E���ff�&f���h���ff�&f���VDISJOINT�?��[ENVNAME]���[M]�CNAME1�CNAME2�)����������Argumen���ts:���O��EnvName��������en���vironmen�t�UUname���
37���O��M��������mo�Gdal�UUcon���text������O��CName1��������concept�UUname������O��CName2��������concept�UUname������3�2���declares�UUthe�concepts��CName1��and��CName2��to�b�Ge�disjoin���t.��38�����sb����E���ff�&f��ǫdefelem(�[����G�+���#��EnvName�,�]���[����G�+����M�,�]�����G�+����>�ICName1�,�����G�+����ISp��}'e�cList���)���������Ļ�36�������%��������������������������������������Ơ��썠�:�-��iӍ��{�-�����(SB����E���ff�&f���h���ff�&f���VDEFELEM�?��[ENVNAME]���[M]�ICNAME1�ISPECLIST�)��Ǥ��������Argumen���ts:���O��EnvName��������en���vironmen�t�UUname���
37���O��M��������mo�Gdal�UUcon���text������O��ICName1��������ob���8ject�UUname������O��ISp��}'e�cList��������SB-ONE�UUindividual�sp�Gecication������3�2���in���tro�Gduces��tan�ob���8ject�in�en�vironmen�t��EnvName��and�mo�Gdal�con�text��M��M�whic�h�ob�Geys�the�restrictions��
38���giv���en�UUin��ISp��}'e�cList�.��ڍ��A�UUSB-ONE�individual�sp�Gecication�tak���es�the�follo�wing�form�������n�[isa(����G�+���#��CName�),����G�+����IRSp��}'e�c����1��|s�,������:���:�:������,�������G�+����>�IRSp�e�c����n��q~�]����u��(:LIST�?�(ISA��CNAME�)��IRSPEC����1����Z�:���:�:���e��IRSPEC����n��q~�)�������where�UU�IRSp��}'e�c����i�����is����xg��irole(����G�+���#��RName����i��TL�,���iname(����G�+����IRName����i���),�������G�+����>�IRList����i���)����v�G(IROLE�?��RNAMEi����(INAME��IRNAME����i��TL�)��IRLIST����i���)�������and��.the�argumen���t��IRList����i��z�is�a�list�whic�h�is�either�empt�y�or�con�tains�either��nr(����G�+���#��MinNr����i��TL�,�������G�+����>�MaxNr����i���,�������G�+����DefNr����i���)������(NR�?��MINNR���i���MAXNR�i�DEFNR�i�)�,�UU�vr(����G�+���#��ICName����i��TL�)�(VR�?��ICNAMEi�)�,�or�b�Goth.�����The�� result�of��sb_defelem��is�the�in���tro�Gduction�of�an�ob���8ject��ICName1��whic�h�is�a�mem�b�Ger�of��CName��and������pairs���(�ICName1�,�ICName����i��TL�)�whic���h�are�elemen�ts�of��IRName����i��TL�.��UThe�role��IRName����i��	&�is�a�subset�of��RName����i���and������has�UUatleast��MinNr����i�����role�llers�and�atmost��MaxNr����i���role�llers.�q�The�default�n���um�b�Ger�UUof�role�llers�is��DefNr����i��TL�.��}n�����sb����E���ff�&f��ǫattributes(�[����G�+���#��EnvName�,�]���[����G�+����M�,�]�����G�+����>�CN�,�����G�+����InfoList���)������(SB����E���ff�&f���h���ff�&f���VATTRIBUTES�?��[ENVNAME]���[M]�CN�INF���OLIST�)����������Argumen���ts:���O��EnvName��������en���vironmen�t�UUname���
37���O��M��������mo�Gdal�UUcon���text������O��CN��������concept�UUname������O��InfoList��������list�UUof�info�no�Gdes������3�2���attac���hes���some�attributiv�e�information�to�concept��CN�˕�in�en�vironmen�t��EnvName��and��M�.�The�����information�UUis�tak���en�from��InfoList��whic�h�is�a�list�of�info�no�Gdes�of�the�form�(�A���ttribute�,�V��;�alue�).�����Lisp�UUsyn���tax�for�INF�OLIST:������(:LIST�?�(:LIST��A��;�TTR1���V���PALUE1�)����:���:�:����I�(:LIST��A�TTR���n���V���PALUEn�))��ڍ���sb����E���ff�&f��ǫattributes(�[����G�+���#��EnvName�,�]���[����G�+����M�,�]�����G�+����>�CN�,�����G�+����RN�,�����G�+����InfoList���)������(SB����E���ff�&f���h���ff�&f���VATTRIBUTES�?��[ENVNAME]���[M]�CN�RN�INF���OLIST�)����������Argumen���ts:���O��EnvName��������en���vironmen�t�UUname���
37���O��M��������mo�Gdal�UUcon���text������O��CN��������concept�UUname������O��RN��������role�UUname������O��InfoList��������list�UUof�info�no�Gdes������@�i���attac���hes���some�attributiv�e�information�to�role��RN��K�at�concept��CN��in�en���vironmen�t����EnvName��and��M�.�����The��7information�is�tak���en�from��InfoList��whic�h�is�a�list�of�info�no�Gdes�of�the�form�(�A���ttribute�,�V��;�alue�).�����Lisp�UUsyn���tax�for�INF�OLIST:������(:LIST�?�(:LIST��A��;�TTR1���V���PALUE1�)����:���:�:����I�(:LIST��A�TTR���n���V���PALUEn�))��ڍ���sb����E���ff�&f��ǫfact(�[����G�+���#��EnvName�,�]���[����G�+����M�,�]��isa(����G�+�����c��X�,�����G�+�����?�CT�)��)������(SB����E���ff�&f���h���ff�&f���VFACT�?��[ENVNAME]���[M]��(ISA��X�CT�))����������Argumen���ts:���O��EnvName��������en���vironmen�t�UUname���
37���O��M��������mo�Gdal�UUcon���text������O��X��������ob���8ject�UUname������O��CT��������concept�UUterm�������������Ļ37�������&������������������������������������������썠�:�-��iӍ��{�-����F��*�or�\�a�giv���en�ob���8ject�name��X�\��all�concept�names��CT��suc���h�that��X��is�an�instance�of��CT��in�the�w���orld��
38���description�!will�b�Ge�en���umerated.����Exp��pro�vides�some�explanation�wh�y�this�is�true.���F��*�or�a�giv�en�����concept��uterm�CT��W�all�ob���8ject�names��X��suc���h�that��X��is�an�instance�of��CT��in�the�w���orld�description�����will��b�Ge�en���umerated.�[�The�concept�term��CT���can�b�e�eiter�a�v��q�ariable�or�a�concept�name.�[�Again��Exp������pro���vides�UUsome�explanation�wh�y�this�is�true.��38�����sb����E���ff�&f��ǫfact(�[����G�+���#��EnvName�,�]���[����G�+����M�,�]��irole(����G�+����
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\motel\motel.pl
  3212 13: *      not(atleast(N,R)) -> atmost(N-1,R)
  3213 30: *      not(atmost(N,R))  -> atleast(N+1,R)
  3242 18:normalizeNot(not(atleast(N,R)),atmost(M,R)) :-
  3244 31:normalizeNot(not(atmost(N,R)),atleast(M,R)) :-
  3308 9:flatten(atleast(N,R1),atleast(N,R2)) :-
  3308 23:flatten(atleast(N,R1),atleast(N,R2)) :-
  4947 41:	% Assert X in some(r,c) => X in atleast(1,r)
  4950 23:	% Assert X in atleast(1,r) => X in some(r,'top')
  5154 43:	% Assert x in some(R,top) => x in atleast(1,R)
  5162 30:			     atleast(1,R),X,HYPS,AB,CALLS,PT1,InHead1),
  5167 23:	% Assert x in atleast(1,R) => x in some(R,top)
  5176 29:			    atleast(1,R),X,HYPS,AB,CALLS,PT1,Body),
  5602 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  5656 23:	defconcept(c1,atleast(3,r)),
  5657 69:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  5657 91:	defconcept(c2,and([all(and([r,p]),a),all(and([r,q]),not(a)),atleast(2,and([r,p])),atleast(2,and([r,q]))])).
  5682 57:	defconcept(parent_with_two_children,and([parent,atleast(2,child)])),
  5705 28:	defconcept(c1,and([atleast(2,child),atmost(1,child)])),
  5715 35:	defconcept(c1,and([person,atleast(2,child)])),
  5716 35:	defconcept(c2,and([person,atleast(3,restr(child,lawyer))])).
  5733 45:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  5733 59:	defconcept(c1,atmost(0,restr(r,and([atleast(3,s1),atleast(4,s2)])))),
  5734 35:	defconcept(c2,all(restr(r,atleast(2,s1)),atmost(2,s2))).
  5741 79:	defconcept(c1,and([person,all(friend,doctor),all(restr(friend,doctor),atleast(1,speciality))])),
  5742 46:	defconcept(c2,and([person,all(friend,atleast(1,speciality))])).
  5749 28:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  5749 59:	defconcept(c1,and([atleast(1,restr(child,lawyer)),atleast(1,restr(child,doctor))])),
  5750 27:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  5750 44:	defconcept(c2,or([atleast(2,child),atleast(1,restr(child,and([lawyer,doctor])))])).
  5767 44:	defconcept(c3,and([atmost(4,child),atleast(2,restr(child,female))])),
  6134 36:	defconcept(fourWheels,and([atleast(4,wheels),atmost(4,wheels)])),
  6135 36:	defconcept(fiveWheels,and([atleast(5,wheels),atmost(5,wheels)])),
  6194 35:	defconcept(oneSpouse,and([atleast(1,spouse),atmost(1,spouse)])),
  6203 32:	defconcept(zeroSH,and([atleast(0,sh),atmost(0,sh)])),
  6204 31:	defconcept(oneSH,and([atleast(1,sh),atmost(1,sh)])),
  6205 31:	defconcept(twoSH,and([atleast(2,sh),atmost(2,sh)])),
  8965 13:namesInTerm(atleast(_N,R),L,_) :-
  9107 23:malcToFOL(Trans,U,[X],atleast(N,R),F) :-
  9108 23:	nrToFOL(U,[X],atleast(N,R),F).
  9176 17:nrToFOL(_U,[_X],atleast(0,_R),true) :-
  9178 15:nrToFOL(U,[X],atleast(1,R),exists(Y,F1)) :-
  9181 15:nrToFOL(U,[X],atleast(N,R),F) :-
  10508 46:	defconcept(EnvName,MS,CNameDom, and([atleast(MinNr,RName1),atmost(MaxNr,RName1)])),
  10512 46:%	defconcept(EnvName,MS,CNameDef, and([atleast(DefNr,RName1),atmost(DefNr,RName1)])),
  10664 46:	defconcept(EnvName,MS,CNameDom, and([atleast(MinNr,RName1),atmost(MaxNr,RName1)])),
  10667 46:%	defconcept(EnvName,MS,CNameDef, and([atleast(DefNr,RName1),atmost(DefNr,RName1)])),
  10679 40:	defconcept(EnvName,MS,CNameDom,atleast(1,RName1)),
  10919 50:%	                                    and([atleast(MinNr,RName),
  10946 23:                     [atleast(MinNr,top), atmost(MaxNr,top) | L2]) :-
  11420 30:			and([atleast(MinNr,R1),atmost(MaxNr,R1)]),AX),
  11421 47:        undefconcept(EnvName,MS,CNameDom,and([atleast(MinNr,R1),
  11518 52:	conceptEqualSets(Env,_usr,MS,CNameDom,and([atleast(MinNr,R1),
  11520 47:        undefconcept(EnvName,MS,CNameDom,and([atleast(MinNr,R1),
  11535 47:	conceptEqualSets(Env,_usr,MS,CNameDom,atleast(1,R1),AX),
  11536 42:	undefconcept(EnvName,MS,CNameDom,atleast(1,R1)),
  11737 58:	roleSubsets(Env,_user,MS,IRName,restr(RName,and([atleast(MinNr,RName),
  11742 52:					      and([atleast(MinNr,RName),
  12027 58:assertConceptLInR(Env,rn(AxiomName,_S,Orientation),MS,CN,atleast(N,R)) :-
  12034 50:	convertInConsequence(Env,pr(3),RN1,MS,W1,atleast(N,R),X,
  12298 21:	            atleast(N,R),X,HYPS,AB,CALLS,PT1,Body) :-
  12401 42:convertInConsequence(Env,_Pr,Name,_MS,W1,atleast(N,R),X,
  13268 31:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :-
  13268 72:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :-
  13268 85:unfold(Env,[(Origin,concept,A,atleast(N,R))|L1],[(NewOrigin,concept,A1,atleast(N,R),atleast(N,R1))|DL2]) :-
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\domain.pl
  29 7:F :== atleast(X, N, F)
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\examples\domain.pl
  29 7:F :== atleast(X, N, F)
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\pl\dllearn.pl
  78 14:   modeb( *, atleast_select(+inlist, #relation_path, #concept_name_or_not, #num, +outlist) ),
  83 14:   modeb( *, atleast_select(+inlist, #relation_path, #concept_name_or_not, #num, -list) ),
  88 14:   modeb( *, atleast_select(+list, #relation_path, #concept_name_or_not, #num, +outlist) ),
  93 14:   modeb( *, atleast_select(+list, #relation_path, #concept_name_or_not, #num, -list) ),
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\pl\nfsdl.pl
  30 7:%%    atleast(X,N,A)
  86 5:nnf(atleast(1,X,Fml),FreeV,NNF,Paths) :-
  89 5:nnf(atleast(N,X,Fml),FreeV,NNF,Paths) :-
  92 33:	nnf(dland(exists(X,Fml),atleast(NewN,Y,Fml)),FreeV,NNF,Paths).
  127 22:	 Fml = dlnot(atleast(N,X,F)) -> Fml1 = atmost(N,X,F);
  128 47:	 Fml = dlnot(atmost(N,X,F)) -> Fml1 = atleast(N,X,F);
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\pl\prodlr.pl
  26 55:                   concept_select/3, forall_select/4, atleast_select/5, atmost_select/5, self_select/3,
  318 1:atleast_once(Degrees, P, Deg) :-
  344 3:% atleast_select(+InList, ?Relation, ?Concept, +Min, -OutList)
  346 1:atleast_select([], _, _, _, []).
  347 1:atleast_select([(A, InDeg) | Rest], Relation, Concept, Min, [(A, OutDeg) | OutList]) :-
  353 31:		findall(Deg, (atleast_once(Degrees, Min, Deg1), tnorm(conjunction, Deg1, 1.0, Deg)), CompDegrees),
  360 9:	atleast_select(Rest, Relation, Concept, Min, OutList).
  362 1:atleast_select(InList, Relation, Concept, Min, OutList) :-
  366 9:	atleast_select_MaxMin(InList, Relation, Concept, MaxMin, OutList),
  369 9:	atleast_select(InList, Relation, Concept, Min, OutList).
  371 1:atleast_select_MaxMin(InList, Relation, Concept, MaxMin, OutList) :- 
  372 9:	atleast_select_MaxMin_rec(InList, Relation, Concept, OutList, MaxMin).
  374 1:atleast_select_MaxMin_rec([(Instance, InDeg)], R, C, [(Instance, OutDeg)], Max) :-
  376 9:	atleast_find_max([(Instance, InDeg)], R, C, [(Instance, OutDeg)], 1, Max).
  378 1:atleast_select_MaxMin_rec([(Instance, InDeg)|InList], Relation, Concept, [(Instance, OutDeg)|OutList], MaxMin) :-
  380 9:	atleast_find_max([(Instance, InDeg)], Relation, Concept, [(Instance, OutDeg)], 1, N),
  381 9:	atleast_select_MaxMin_rec(InList, Relation, Concept, OutList, MaxMin2),
  384 1:atleast_find_max([(Instance, _)], Relation, Concept, [(Instance, OutDeg)], _, N) :-
  388 1:atleast_find_max([(Instance,InDeg)], Relation, Concept, [(Instance, _)], K, K2) :-
  390 9:	atleast_select( [(Instance,InDeg)], Relation, Concept, K2, [(Instance, OutDeg2)]),
  394 1:atleast_find_max(InList, Relation, Concept, OutList, K, Max) :-
  396 9:	atleast_find_max(InList, Relation, Concept, OutList, K2, Max).
  410 18:		(atleast_once(Degrees, MaxPlusOne, Deg1), tnorm(implication, Deg1, 0.0, Deg)),
  499 20:thread_itemfunctor(atleast_select/5).
  557 20:legitimate_literal(atleast_select(_, R, C, N, _)) :- num(N), relation_path(R, _, Range), concept_r(C, Range).
  723 35:mkplbody(exists(Rp, C),     I, O, atleast_select(I, Rp, C0, 1, O)) :- mkplconcept(C, C0).
  724 10:mkplbody(atleast(N, Rp, C), I, O, atleast_select(I, Rp, C0, N, O)) :- mkplconcept(C, C0).
  724 35:mkplbody(atleast(N, Rp, C), I, O, atleast_select(I, Rp, C0, N, O)) :- mkplconcept(C, C0).
  736 10:%    | dlatleast([R1, ..], N, C)
  759 33:norm_concept(X, exists(Y, Fmt), atleast(N, [Relation], Concept)) :- !,
  821 7:dlnnf(atleast(N, X,Fml),FreeV,atleast(N,X,NNF),Paths) :- !,
  821 31:dlnnf(atleast(N, X,Fml),FreeV,atleast(N,X,NNF),Paths) :- !,
  845 22:	 Fml = dlnot(atleast(N,X,F)) -> N1 is N - 1, Fml1 = atmost(N1,X,F);
  846 61:	 Fml = dlnot(atmost(N,X,F))  -> N1 is N + 1, Fml1 = atleast(N1,X,F);
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\README.md
  7 9:end and atleast, atmost constructs have to be translated using the
  58 5:    atleast_select( +InList, ?RelationName, ?ConceptName, +Min, -OutList )
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\README.text
  9 9:end and atleast, atmost constructs have to be translated using the
  58 1:atleast_select( +InList, ?RelationName, ?ConceptName, +Min, -OutList )
File W:\home\prologmud_server\lib\swipl\pack\logicmoo_packages\prolog\yadlr\reasoner.pl
  62 7:F :== atleast(X, N, F)
File W:\home\prologmud_server\lib\swipl\pack\pfc\t - Copy\sanity_base\comm_acts.pfc
  46 134:isa:	(tColOfConceptNodesForTaskTypeFn cwIntelligenceAnalysisTaskAllotment), iUI_InformationAndCWsTopic, ttTypicalHumanActivityTypeAtLeastOnce, vEventOrRoleConcept
  89 25:                  *eventAtLeastPartiallyMentalEvent [iUniversalVocabularyMt]
  141 14: . . . *eventAtLeastPartiallyMentalEvent
  146 19:            *eventAtLeastPartiallyMentalEvent [iUniversalVocabularyMt] . . . *see above*
File W:\home\prologmud_server\lib\swipl\pack\pfc\t\sanity_base\comm_acts.pfc
  46 134:isa:	(tColOfConceptNodesForTaskTypeFn cwIntelligenceAnalysisTaskAllotment), iUI_InformationAndCWsTopic, ttTypicalHumanActivityTypeAtLeastOnce, vEventOrRoleConcept
  89 25:                  *eventAtLeastPartiallyMentalEvent [iUniversalVocabularyMt]
  141 14: . . . *eventAtLeastPartiallyMentalEvent
  146 19:            *eventAtLeastPartiallyMentalEvent [iUniversalVocabularyMt] . . . *see above*
File W:\home\prologmud_server\lib\swipl\pack\prologmud\prolog\prologmud\mobs\affordance\simbots.pfc.pl
  64 56:defined_affordance([ subjType=tAgent, actionVerb= "LiveAtLeastAMinute",
  75 112:% TODO hook_one_minute_timer_tick:- \+ suspend_timers, forall(no_repeats(tAgent(X)),agent_command_now(X,actLiveAtLeastAMinute(X))).
  719 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudEnergy, 0, + -1).
  720 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudNonHunger, 0, + -1).
  721 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudBladderEmpty, 0, + -1).
  722 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudHygiene, 0, + -1).
  723 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudSecureRoom, 0, + -1).
  724 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudNonLonelinessSocial, 0, + -1).
  725 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudFun, 0, + -1).
  726 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudSadToHappy, 0, + -1).
  727 24:verb_affordance(actLiveAtLeastAMinute, tAgentSelf, mudComfort, 0, + -1).
  813 22:verb_for_type(actLiveAtLeastAMinute, tAgentSelf).
File W:\home\prologmud_server\lib\swipl\pack\prologmud_samples\prolog\prologmud_sample_games\bootstrap.ttl
  1055 68:PurposefulAction rdfs:comment "A specialization of both Action and AtLeastPartiallyMentalEvent. Each instance of PurposefulAction is an action consciously, volitionally, and purposefully done by (see performedBy) at least one actor.".
File W:\home\prologmud_server\lib\swipl\pack\prologmud_samples\prolog\prologmud_sample_games\tempDir\lib\swipl\pack\colore\ontologies\gwml2\Module7.clif
  49 47:(cl-comment 'A CHGB is a HGB that consists of atleast two distinct SHGBs')